2015-07-06 12:41:06 +00:00
|
|
|
/*
|
|
|
|
* PROJECT: ReactOS Local Port Monitor
|
|
|
|
* LICENSE: GNU LGPL v2.1 or any later version as published by the Free Software Foundation
|
|
|
|
* PURPOSE: Resource file
|
|
|
|
* COPYRIGHT: Copyright 2015 Colin Finck <colin@reactos.org>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <windef.h>
|
|
|
|
#include "resource.h"
|
|
|
|
|
|
|
|
/* Version Information */
|
2015-05-06 12:47:20 +00:00
|
|
|
#define REACTOS_VERSION_DLL
|
2015-07-06 12:41:06 +00:00
|
|
|
#define REACTOS_STR_FILE_DESCRIPTION "ReactOS Local Port Monitor"
|
2015-05-06 12:47:20 +00:00
|
|
|
#define REACTOS_STR_INTERNAL_NAME "localmon"
|
|
|
|
#define REACTOS_STR_ORIGINAL_FILENAME "localmon.dll"
|
|
|
|
#include <reactos/version.rc>
|
2015-07-06 12:41:06 +00:00
|
|
|
|
|
|
|
/* UTF-8 */
|
|
|
|
#pragma code_page(65001)
|
|
|
|
|
|
|
|
#ifdef LANGUAGE_DE_DE
|
|
|
|
#include "lang/de-DE.rc"
|
|
|
|
#endif
|
|
|
|
#ifdef LANGUAGE_EN_US
|
|
|
|
#include "lang/en-US.rc"
|
|
|
|
#endif
|
[TRANSLATION] Multiple minor fixes and addings. (#2516)
- Applications: eventvwr, fltmgr, servman.
- rosapps: arping, CTM, fontsub, fraginator, imagesoft, systeminfo, vcdcontroltool, vgafontedit.
- CPLs: desk.cpl.
- ReactOS Setup GUI app.
- Screensavers: butterflies, maze, Starfield.
- System: NTVDM, printing/monitors/localmon; the freeze dialog in user32, the error strings in usersrv.
2020-04-09 16:13:46 +00:00
|
|
|
#ifdef LANGUAGE_ES_ES
|
|
|
|
#include "lang/es-ES.rc"
|
|
|
|
#endif
|
2016-11-23 18:29:40 +00:00
|
|
|
#ifdef LANGUAGE_FR_FR
|
|
|
|
#include "lang/fr-FR.rc"
|
|
|
|
#endif
|
2016-11-14 10:58:53 +00:00
|
|
|
#ifdef LANGUAGE_IT_IT
|
|
|
|
#include "lang/it-IT.rc"
|
2016-11-14 11:18:11 +00:00
|
|
|
#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
|
2016-11-27 00:15:02 +00:00
|
|
|
#ifdef LANGUAGE_RO_RO
|
|
|
|
#include "lang/ro-RO.rc"
|
|
|
|
#endif
|
2016-11-14 11:18:11 +00:00
|
|
|
#ifdef LANGUAGE_RU_RU
|
|
|
|
#include "lang/ru-RU.rc"
|
|
|
|
#endif
|
2018-04-01 17:27:08 +00:00
|
|
|
#ifdef LANGUAGE_TR_TR
|
|
|
|
#include "lang/tr-TR.rc"
|
|
|
|
#endif
|
2021-10-10 12:00:44 +00:00
|
|
|
#ifdef LANGUAGE_ZH_TW
|
|
|
|
#include "lang/zh-TW.rc"
|
|
|
|
#endif
|