mirror of
https://github.com/reactos/reactos.git
synced 2024-12-26 17:14:41 +00:00
Fixed incorrect order of resource strings to identifiers.
svn path=/trunk/; revision=3177
This commit is contained in:
parent
157460c518
commit
d5251a1991
2 changed files with 6 additions and 6 deletions
|
@ -175,9 +175,9 @@ BEGIN
|
||||||
ID_REGISTRY_MENU "Contains commands for working with the whole registry"
|
ID_REGISTRY_MENU "Contains commands for working with the whole registry"
|
||||||
ID_EDIT_MENU "Contains commands for editing values or keys"
|
ID_EDIT_MENU "Contains commands for editing values or keys"
|
||||||
ID_EDIT_NEW_MENU "Contains commands for creating new keys or values"
|
ID_EDIT_NEW_MENU "Contains commands for creating new keys or values"
|
||||||
ID_FILE_MENU "Contains commands for customising the registry window"
|
ID_VIEW_MENU "Contains commands for customising the registry window"
|
||||||
ID_VIEW_MENU "Contains commands for accessing frequently used keys"
|
ID_FAVOURITES_MENU "Contains commands for accessing frequently used keys"
|
||||||
ID_FAVOURITES_MENU "Contains commands for displaying help and information about registry editor"
|
ID_HELP_MENU "Contains commands for displaying help and information about registry editor"
|
||||||
|
|
||||||
ID_REGISTRY_IMPORTREGISTRYFILE "Imports a text file into the registry"
|
ID_REGISTRY_IMPORTREGISTRYFILE "Imports a text file into the registry"
|
||||||
ID_REGISTRY_EXPORTREGISTRYFILE "Exports all or part of the registry to a text file"
|
ID_REGISTRY_EXPORTREGISTRYFILE "Exports all or part of the registry to a text file"
|
||||||
|
|
|
@ -4,9 +4,9 @@
|
||||||
//
|
//
|
||||||
#define ID_REGISTRY_MENU 0
|
#define ID_REGISTRY_MENU 0
|
||||||
#define ID_EDIT_MENU 1
|
#define ID_EDIT_MENU 1
|
||||||
#define ID_FILE_MENU 2
|
#define ID_VIEW_MENU 2
|
||||||
#define ID_VIEW_MENU 3
|
#define ID_FAVOURITES_MENU 3
|
||||||
#define ID_FAVOURITES_MENU 4
|
#define ID_HELP_MENU 4
|
||||||
#define ID_EDIT_NEW_MENU 5
|
#define ID_EDIT_NEW_MENU 5
|
||||||
|
|
||||||
#define IDD_ABOUTBOX 103
|
#define IDD_ABOUTBOX 103
|
||||||
|
|
Loading…
Reference in a new issue