1#include <windef.h> 2#include "resource.h" 3 4#define REACTOS_STR_FILE_DESCRIPTION "ReactOS Disk Checking Utility" 5#define REACTOS_STR_INTERNAL_NAME "chkdsk" 6#define REACTOS_STR_ORIGINAL_FILENAME "chkdsk.exe" 7#define REACTOS_STR_ORIGINAL_COPYRIGHT "1998 Mark Russinovich" 8#include <reactos/version.rc> 9 10/* UTF-8 */ 11#pragma code_page(65001) 12 13#ifdef LANGUAGE_DE_DE 14 #include "lang/de-DE.rc" 15#endif 16#ifdef LANGUAGE_EN_US 17 #include "lang/en-US.rc" 18#endif 19#ifdef LANGUAGE_FR_FR 20 #include "lang/fr-FR.rc" 21#endif 22#ifdef LANGUAGE_IT_IT 23 #include "lang/it-IT.rc" 24#endif 25#ifdef LANGUAGE_PL_PL 26 #include "lang/pl-PL.rc" 27#endif 28#ifdef LANGUAGE_PT_PT 29 #include "lang/pt-PT.rc" 30#endif 31#ifdef LANGUAGE_RO_RO 32 #include "lang/ro-RO.rc" 33#endif 34#ifdef LANGUAGE_RU_RU 35 #include "lang/ru-RU.rc" 36#endif 37#ifdef LANGUAGE_TR_TR 38 #include "lang/tr-TR.rc" 39#endif 40#ifdef LANGUAGE_ZH_CN 41 #include "lang/zh-CN.rc" 42#endif 43#ifdef LANGUAGE_ZH_TW 44 #include "lang/zh-TW.rc" 45#endif 46