2013-11-28 22:09:27 +00:00
|
|
|
#include <windef.h>
|
|
|
|
|
|
|
|
#include "resource.h"
|
|
|
|
|
|
|
|
#define REACTOS_STR_FILE_DESCRIPTION "Disk Partitioning Tool"
|
|
|
|
#define REACTOS_STR_INTERNAL_NAME "diskpart"
|
|
|
|
#define REACTOS_STR_ORIGINAL_FILENAME "diskpart.exe"
|
|
|
|
#define REACTOS_STR_ORIGINAL_COPYRIGHT "(C) 2011 Lee Schroeder"
|
2011-09-24 10:33:33 +00:00
|
|
|
#include <reactos/version.rc>
|
|
|
|
|
2013-11-28 22:09:27 +00:00
|
|
|
/* UTF-8 */
|
2011-11-12 16:38:00 +00:00
|
|
|
#pragma code_page(65001)
|
2013-11-28 22:09:27 +00:00
|
|
|
|
2012-02-27 22:46:20 +00:00
|
|
|
#ifdef LANGUAGE_EN_US
|
|
|
|
#include "lang/en-US.rc"
|
|
|
|
#endif
|
|
|
|
#ifdef LANGUAGE_RO_RO
|
|
|
|
#include "lang/ro-RO.rc"
|
|
|
|
#endif
|
2014-11-07 15:08:59 +00:00
|
|
|
#ifdef LANGUAGE_RU_RU
|
|
|
|
#include "lang/ru-RU.rc"
|
|
|
|
#endif
|
2013-12-06 15:21:08 +00:00
|
|
|
#ifdef LANGUAGE_SQ_AL
|
|
|
|
#include "lang/sq-AL.rc"
|
2014-01-13 13:07:50 +00:00
|
|
|
#endif
|
2015-06-21 11:20:39 +00:00
|
|
|
#ifdef LANGUAGE_TR_TR
|
|
|
|
#include "lang/tr-TR.rc"
|
|
|
|
#endif
|
2015-11-30 19:01:56 +00:00
|
|
|
#ifdef LANGUAGE_ZH_CN
|
|
|
|
#include "lang/zh-CN.rc"
|
2015-12-02 22:44:03 +00:00
|
|
|
#endif
|
|
|
|
#ifdef LANGUAGE_ZH_TW
|
|
|
|
#include "lang/zh-TW.rc"
|
2015-11-30 19:01:56 +00:00
|
|
|
#endif
|