mirror of
https://github.com/reactos/reactos.git
synced 2025-08-07 05:43:08 +00:00
[CHKDSK] Implement localization support (#891)
- Make the strings translatable. - Include the English translation within the main resource file. - Use ConResPrintf() and ConResPuts() for resource strings.
This commit is contained in:
parent
e9f993d1b8
commit
8e48f8f2dd
4 changed files with 74 additions and 24 deletions
18
base/system/chkdsk/resource.h
Normal file
18
base/system/chkdsk/resource.h
Normal file
|
@ -0,0 +1,18 @@
|
|||
/* General IDs */
|
||||
|
||||
#define IDS_USAGE 101
|
||||
#define IDS_PERCENT_COMPL 102
|
||||
#define IDS_ABOUT 103
|
||||
#define IDS_FILE_SYSTEM 104
|
||||
|
||||
/* Failure IDs */
|
||||
|
||||
#define IDS_VOLUME_IN_USE 200
|
||||
#define IDS_CHKDSK_FAIL 201
|
||||
#define IDS_NO_ENTRY_POINT 202
|
||||
#define IDS_BAD_ARGUMENT 203
|
||||
#define IDS_NO_CURRENT_DIR 204
|
||||
#define IDS_NO_QUERY_VOL 205
|
||||
#define IDS_VOLUME_IN_USE_PROC 206
|
||||
|
||||
/* EOF */
|
Loading…
Add table
Add a link
Reference in a new issue