2015-11-18 19:24:08 +00:00
|
|
|
#include <windef.h>
|
|
|
|
#include <winuser.h>
|
|
|
|
#include <richedit.h>
|
|
|
|
|
|
|
|
#include "resource.h"
|
|
|
|
|
|
|
|
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
|
|
|
|
|
|
|
|
IDI_ICON ICON "res/charmap.ico"
|
|
|
|
|
|
|
|
#define REACTOS_STR_FILE_DESCRIPTION "ReactOS Character Map"
|
|
|
|
#define REACTOS_STR_INTERNAL_NAME "charmap"
|
|
|
|
#define REACTOS_STR_ORIGINAL_FILENAME "charmap.exe"
|
|
|
|
//#include <reactos/version.rc>
|
|
|
|
|
|
|
|
//#include <reactos/manifest_exe.rc>
|
|
|
|
|
|
|
|
/* UTF-8 */
|
|
|
|
#pragma code_page(65001)
|
|
|
|
|
2021-07-09 09:15:34 +00:00
|
|
|
#ifdef LANGUAGE_DE_DE
|
|
|
|
#include "lang/de-DE.rc"
|
|
|
|
#endif
|
2015-11-18 19:24:08 +00:00
|
|
|
#ifdef LANGUAGE_EN_US
|
2017-12-31 21:42:16 +00:00
|
|
|
#include "lang/en-US.rc"
|
2015-11-18 19:24:08 +00:00
|
|
|
#endif
|
|
|
|
#ifdef LANGUAGE_ES_ES
|
2017-12-31 21:42:16 +00:00
|
|
|
#include "lang/es-ES.rc"
|
2015-11-18 19:24:08 +00:00
|
|
|
#endif
|
2018-10-26 21:40:19 +00:00
|
|
|
#ifdef LANGUAGE_ET-EE
|
|
|
|
#include "lang/et-EE.rc"
|
|
|
|
#endif
|
[TRANSLATION] Update Spanish, and add Basque translation (#2667)
Add/update translation for:
charmap_new, logoff, mspaint, notepad, usetup, welcome,
hotplug.cpl, sysdm.cpl, aclui.dll, comctl32.dll, comdlg32.dll,
hhctrl.ocx, kernel32.dll, msi.dll, oledlg.dll, shell32.dll,
tapiui.dll, themeui.dll, wininet.dll, winmm.dll, wldap32.dll,
winsrv.dll.
2020-04-26 03:49:07 +00:00
|
|
|
#ifdef LANGUAGE_EU_ES
|
|
|
|
#include "lang/eu-ES.rc"
|
|
|
|
#endif
|
2015-11-18 19:24:08 +00:00
|
|
|
#ifdef LANGUAGE_IT_IT
|
2017-12-31 21:42:16 +00:00
|
|
|
#include "lang/it-IT.rc"
|
2015-11-18 19:24:08 +00:00
|
|
|
#endif
|
|
|
|
#ifdef LANGUAGE_PL_PL
|
2017-12-31 21:42:16 +00:00
|
|
|
#include "lang/pl-PL.rc"
|
2015-11-18 19:24:08 +00:00
|
|
|
#endif
|
|
|
|
#ifdef LANGUAGE_RO_RO
|
2017-12-31 21:42:16 +00:00
|
|
|
#include "lang/ro-RO.rc"
|
2015-11-18 19:24:08 +00:00
|
|
|
#endif
|
|
|
|
#ifdef LANGUAGE_TR_TR
|
2017-12-31 21:42:16 +00:00
|
|
|
#include "lang/tr-TR.rc"
|
2015-11-18 19:24:08 +00:00
|
|
|
#endif
|
|
|
|
#ifdef LANGUAGE_ZH_CN
|
2017-12-31 21:42:16 +00:00
|
|
|
#include "lang/zh-CN.rc"
|
2015-11-18 19:24:08 +00:00
|
|
|
#endif
|
2021-12-29 21:40:57 +00:00
|
|
|
#ifdef LANGUAGE_ZH_HK
|
|
|
|
#include "lang/zh-HK.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
|