2018-10-20 19:21:51 +00:00
|
|
|
#include <windef.h>
|
|
|
|
#include "resource.h"
|
2000-09-11 20:17:02 +00:00
|
|
|
|
2016-03-02 22:05:19 +00:00
|
|
|
#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"
|
2004-10-16 22:30:19 +00:00
|
|
|
#include <reactos/version.rc>
|
2018-10-20 19:21:51 +00:00
|
|
|
|
|
|
|
/* UTF-8 */
|
|
|
|
#pragma code_page(65001)
|
|
|
|
|
|
|
|
#ifdef LANGUAGE_EN_US
|
|
|
|
#include "lang/en-US.rc"
|
|
|
|
#endif
|
2018-10-21 09:06:06 +00:00
|
|
|
#ifdef LANGUAGE_FR_FR
|
|
|
|
#include "lang/fr-FR.rc"
|
|
|
|
#endif
|
2018-11-17 14:16:36 +00:00
|
|
|
#ifdef LANGUAGE_IT_IT
|
|
|
|
#include "lang/it-IT.rc"
|
|
|
|
#endif
|
2018-11-11 16:55:01 +00:00
|
|
|
#ifdef LANGUAGE_PL_PL
|
|
|
|
#include "lang/pl-PL.rc"
|
|
|
|
#endif
|
2018-11-17 14:16:36 +00:00
|
|
|
#ifdef LANGUAGE_RO_RO
|
|
|
|
#include "lang/ro-RO.rc"
|
|
|
|
#endif
|
2018-10-20 19:49:37 +00:00
|
|
|
#ifdef LANGUAGE_RU_RU
|
|
|
|
#include "lang/ru-RU.rc"
|
|
|
|
#endif
|
2018-11-16 15:59:09 +00:00
|
|
|
#ifdef LANGUAGE_TR_TR
|
|
|
|
#include "lang/tr-TR.rc"
|
|
|
|
#endif
|
2018-12-10 15:03:00 +00:00
|
|
|
#ifdef LANGUAGE_ZH_CN
|
|
|
|
#include "lang/zh-CN.rc"
|
|
|
|
#endif
|
[TRANSLATION] Chinese Traditional translation improvements (#3085)
- Add Chinese Traditional language support for CHARMAP_NEW, DRWTSN32, UTILMAN, CHKDSK.
- Improve translation for CLIPBRD, MSCONFIG(_NEW), NOTEPAD, SHUTDOWN, SNDREC32, WINHLP32, DISKPART, FORMAT, REGSVR32, RUNDLL32, USERINIT, DESK.CPL and TIMEDATE.CPL.
2020-09-17 22:50:27 +00:00
|
|
|
#ifdef LANGUAGE_ZH_TW
|
|
|
|
#include "lang/zh-TW.rc"
|
|
|
|
#endif
|