2013-01-24 23:00:42 +00:00
|
|
|
#include <windef.h>
|
|
|
|
#include <winuser.h>
|
|
|
|
|
2007-09-27 17:04:44 +00:00
|
|
|
#include "resource.h"
|
|
|
|
|
|
|
|
#define REACTOS_VERSION_DLL
|
2013-11-28 22:15:21 +00:00
|
|
|
#define REACTOS_STR_FILE_DESCRIPTION "ReactOS Processor Shell Extension"
|
|
|
|
#define REACTOS_STR_INTERNAL_NAME "processorext"
|
|
|
|
#define REACTOS_STR_ORIGINAL_FILENAME "processorext.dll"
|
2007-09-27 17:04:44 +00:00
|
|
|
#include <reactos/version.rc>
|
|
|
|
|
2018-09-25 19:51:19 +00:00
|
|
|
/* UTF-8 */
|
|
|
|
#pragma code_page(65001)
|
|
|
|
|
2021-07-09 09:15:34 +00:00
|
|
|
#ifdef LANGUAGE_DE_DE
|
|
|
|
#include "lang/de-DE.rc"
|
|
|
|
#endif
|
2018-09-25 19:51:19 +00:00
|
|
|
#ifdef LANGUAGE_EN_US
|
|
|
|
#include "lang/en-US.rc"
|
2018-09-26 13:15:07 +00:00
|
|
|
#endif
|
2018-09-29 09:36:45 +00:00
|
|
|
#ifdef LANGUAGE_FR_FR
|
|
|
|
#include "lang/fr-FR.rc"
|
|
|
|
#endif
|
2019-03-11 15:52:21 +00:00
|
|
|
#ifdef LANGUAGE_HI_IN
|
|
|
|
#include "lang/hi-IN.rc"
|
|
|
|
#endif
|
2024-06-10 10:45:00 +00:00
|
|
|
#ifdef LANGUAGE_IT_IT
|
|
|
|
#include "lang/it-IT.rc"
|
|
|
|
#endif
|
2023-11-19 11:44:25 +00:00
|
|
|
#ifdef LANGUAGE_JA_JP
|
|
|
|
#include "lang/ja-JP.rc"
|
|
|
|
#endif
|
[TRANSLATION] Polish translation update
Polish translation of net, telnet, diskpart, devcpux, fontext, iernonce, lsasrv, themes, arping, frag, screensavers, ctm, fontsub, WinetestsGUI and localmon.
Update for dxdiag, msgina, msports, netcfgx, shell32 and syssetup.
2018-10-13 10:27:52 +00:00
|
|
|
#ifdef LANGUAGE_PL_PL
|
|
|
|
#include "lang/pl-PL.rc"
|
|
|
|
#endif
|
2020-06-01 18:31:06 +00:00
|
|
|
#ifdef LANGUAGE_PT_PT
|
|
|
|
#include "lang/pt-PT.rc"
|
|
|
|
#endif
|
2019-01-27 19:43:57 +00:00
|
|
|
#ifdef LANGUAGE_RO_RO
|
|
|
|
#include "lang/ro-RO.rc"
|
|
|
|
#endif
|
2018-09-26 13:15:07 +00:00
|
|
|
#ifdef LANGUAGE_RU_RU
|
|
|
|
#include "lang/ru-RU.rc"
|
|
|
|
#endif
|
2021-10-09 20:40:55 +00:00
|
|
|
#ifdef LANGUAGE_TR_TR
|
|
|
|
#include "lang/tr-TR.rc"
|
|
|
|
#endif
|
2018-12-25 08:28:36 +00:00
|
|
|
#ifdef LANGUAGE_ZH_CN
|
|
|
|
#include "lang/zh-CN.rc"
|
|
|
|
#endif
|
2021-12-29 21:40:57 +00:00
|
|
|
#ifdef LANGUAGE_ZH_HK
|
|
|
|
#include "lang/zh-HK.rc"
|
|
|
|
#endif
|
2018-12-25 08:28:36 +00:00
|
|
|
#ifdef LANGUAGE_ZH_TW
|
|
|
|
#include "lang/zh-TW.rc"
|
|
|
|
#endif
|