mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 06:15:26 +00:00
8e48f8f2dd
- Make the strings translatable. - Include the English translation within the main resource file. - Use ConResPrintf() and ConResPuts() for resource strings.
15 lines
408 B
Text
15 lines
408 B
Text
#include <windef.h>
|
|
#include "resource.h"
|
|
|
|
#define REACTOS_STR_FILE_DESCRIPTION "ReactOS Disk Checking Utility"
|
|
#define REACTOS_STR_INTERNAL_NAME "chkdsk"
|
|
#define REACTOS_STR_ORIGINAL_FILENAME "chkdsk.exe"
|
|
#define REACTOS_STR_ORIGINAL_COPYRIGHT "1998 Mark Russinovich"
|
|
#include <reactos/version.rc>
|
|
|
|
/* UTF-8 */
|
|
#pragma code_page(65001)
|
|
|
|
#ifdef LANGUAGE_EN_US
|
|
#include "lang/en-US.rc"
|
|
#endif
|