2019-04-23 05:45:49 +00:00
|
|
|
#include <windef.h>
|
|
|
|
#include <winuser.h>
|
|
|
|
#include <commctrl.h>
|
|
|
|
|
|
|
|
#include "resource.h"
|
|
|
|
|
|
|
|
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
|
|
|
|
|
|
|
|
#define REACTOS_VERSION_DLL
|
|
|
|
#define REACTOS_STR_FILE_DESCRIPTION "Map Network Drives"
|
|
|
|
#define REACTOS_STR_INTERNAL_NAME "netplwiz.dll"
|
|
|
|
#define REACTOS_STR_ORIGINAL_FILENAME "netplwiz.dll"
|
|
|
|
|
|
|
|
#include <reactos/version.rc>
|
|
|
|
|
|
|
|
#include <reactos/manifest_hosted.rc>
|
|
|
|
|
|
|
|
/* Icons */
|
|
|
|
IDI_DISCONNECT_NET_DRIVES ICON "res/4400.ico"
|
|
|
|
|
|
|
|
/* UTF-8 */
|
|
|
|
#pragma code_page(65001)
|
|
|
|
|
2021-07-09 09:15:34 +00:00
|
|
|
#ifdef LANGUAGE_DE_DE
|
|
|
|
#include "lang/de-DE.rc"
|
|
|
|
#endif
|
2019-04-23 05:45:49 +00:00
|
|
|
#ifdef LANGUAGE_EN_US
|
|
|
|
#include "lang/en-US.rc"
|
|
|
|
#endif
|
2019-06-10 17:01:04 +00:00
|
|
|
#ifdef LANGUAGE_FR_FR
|
|
|
|
#include "lang/fr-FR.rc"
|
|
|
|
#endif
|
2019-09-19 19:58:00 +00:00
|
|
|
#ifdef LANGUAGE_IT_IT
|
|
|
|
#include "lang/it-IT.rc"
|
|
|
|
#endif
|
[TRANSLATION] Polish translation update (#1916)
Added translation for netstat, utilman and netplwiz. Updated translation of find, reg, rapps, regedit, sndvol32, usetup, hivesys, mmsys, openglcfg, powercfg, sysdm, shellext, browseui, devmgr, msgina, netcfgx, shell32, syssetup, shortcuts and vcdcontroltool.
2019-09-20 19:51:47 +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
|
2021-10-09 20:40:55 +00:00
|
|
|
#ifdef LANGUAGE_TR_TR
|
|
|
|
#include "lang/tr-TR.rc"
|
|
|
|
#endif
|
2022-03-31 14:10:21 +00:00
|
|
|
#ifdef LANGUAGE_ZH_HK
|
|
|
|
#include "lang/zh-HK.rc"
|
|
|
|
#endif
|
2021-10-10 12:00:44 +00:00
|
|
|
#ifdef LANGUAGE_ZH_TW
|
|
|
|
#include "lang/zh-TW.rc"
|
|
|
|
#endif
|