2018-12-11 13:24:49 +00:00
|
|
|
#include <windef.h>
|
|
|
|
#include <winuser.h>
|
|
|
|
#include <commctrl.h>
|
|
|
|
|
|
|
|
#include "resource.h"
|
|
|
|
|
|
|
|
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
|
|
|
|
|
|
|
|
#define REACTOS_STR_FILE_DESCRIPTION "Virtual CD Control Tool"
|
|
|
|
#define REACTOS_STR_INTERNAL_NAME "vcdcontroltool"
|
|
|
|
#define REACTOS_STR_ORIGINAL_FILENAME "vcdcontroltool.exe"
|
|
|
|
#include <reactos/version.rc>
|
|
|
|
|
|
|
|
#include <reactos/manifest_exe.rc>
|
|
|
|
|
|
|
|
/* UTF-8 */
|
|
|
|
#pragma code_page(65001)
|
|
|
|
|
|
|
|
#ifdef LANGUAGE_EN_US
|
|
|
|
#include "lang/en-US.rc"
|
|
|
|
#endif
|
2018-12-18 07:20:27 +00:00
|
|
|
#ifdef LANGUAGE_ES_ES
|
|
|
|
#include "lang/es-ES.rc"
|
|
|
|
#endif
|
2018-12-11 18:59:07 +00:00
|
|
|
#ifdef LANGUAGE_FR_FR
|
|
|
|
#include "lang/fr-FR.rc"
|
|
|
|
#endif
|
2019-01-05 13:54:57 +00:00
|
|
|
#ifdef LANGUAGE_IT_IT
|
|
|
|
#include "lang/it-IT.rc"
|
|
|
|
#endif
|
[TRANSLATION] Polish translation update
Polish translation update for calc, fltmc, magnify, notepad, osk, sndvol32, usetup, fdebug, appwiz, mmsys, sysdm, acppage, ziplfdr, browseui, cryptui, jscript, shell32, themeui and inf. Added translation for cyrptext, vcdcontroltool, and (not yet complete) getuname.
2019-04-04 22:01:11 +00:00
|
|
|
#ifdef LANGUAGE_PL_PL
|
|
|
|
#include "lang/pl-PL.rc"
|
|
|
|
#endif
|
2019-01-05 13:54:57 +00:00
|
|
|
#ifdef LANGUAGE_RO_RO
|
|
|
|
#include "lang/ro-RO.rc"
|
|
|
|
#endif
|
2018-12-17 07:09:08 +00:00
|
|
|
#ifdef LANGUAGE_RU_RU
|
|
|
|
#include "lang/ru-RU.rc"
|
|
|
|
#endif
|
[TRANSLATION] Add/Update Turkish (tr-TR) translations (#4959)
Programs: at, charmap, diskpart, drwtsn32, explorer, fc, fontview, format, reg, timeout, where, wmic,
mspaint, regedit, runas, rundll32, subst, utilman, umandlg, w32time, winlogon
Tools: arping, vgafontedit, explorer-old, fraginator, fontsub, systeminfo, vcdcontroltool
CPLs: desk, hotplug, input, sysdm
DLLs: newdev, syssetup, user32
Themes: lunar
Screensavers: blankscr, butterflies, circles, cylfrac, matrix, mazescr, ssstars, starfield
Co-authored-by: Hermès BÉLUSCA - MAÏTO <hermes.belusca-maito@reactos.org>
Co-authored-by: Stanislav Motylkov <x86corez@gmail.com>
2023-02-15 16:29:52 +00:00
|
|
|
#ifdef LANGUAGE_TR_TR
|
|
|
|
#include "lang/tr-TR.rc"
|
|
|
|
#endif
|
2018-12-18 22:21:07 +00:00
|
|
|
#ifdef LANGUAGE_UK_UA
|
|
|
|
#include "lang/uk-UA.rc"
|
|
|
|
#endif
|
2018-12-18 16:24:35 +00:00
|
|
|
#ifdef LANGUAGE_ZH_CN
|
|
|
|
#include "lang/zh-CN.rc"
|
|
|
|
#endif
|
2022-03-31 14:10:21 +00:00
|
|
|
#ifdef LANGUAGE_ZH_HK
|
|
|
|
#include "lang/zh-HK.rc"
|
|
|
|
#endif
|
2018-12-18 16:24:35 +00:00
|
|
|
#ifdef LANGUAGE_ZH_TW
|
|
|
|
#include "lang/zh-TW.rc"
|
|
|
|
#endif
|