2013-01-24 23:00:42 +00:00
|
|
|
#include <windef.h>
|
|
|
|
#include <winuser.h>
|
|
|
|
#include <commctrl.h>
|
|
|
|
|
2007-07-09 17:14:36 +00:00
|
|
|
#include "resource.h"
|
|
|
|
|
|
|
|
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
|
|
|
|
|
|
|
|
#define REACTOS_VERSION_DLL
|
2013-11-28 22:12:52 +00:00
|
|
|
#define REACTOS_STR_FILE_DESCRIPTION "ReactOS User Manager Panel"
|
|
|
|
#define REACTOS_STR_INTERNAL_NAME "usrmgr"
|
|
|
|
#define REACTOS_STR_ORIGINAL_FILENAME "usrmgr.cpl"
|
2007-07-09 17:14:36 +00:00
|
|
|
#include <reactos/version.rc>
|
|
|
|
|
2007-12-02 14:35:59 +00:00
|
|
|
IDI_USRMGR_ICON ICON "resources/applet.ico"
|
|
|
|
IDI_USRMGR_ICON2 ICON "resources/applet.ico"
|
|
|
|
|
|
|
|
IDI_USER ICON "resources/user.ico"
|
|
|
|
IDI_LOCKED_USER ICON "resources/locked.ico"
|
|
|
|
IDI_GROUP ICON "resources/group.ico"
|
2007-07-09 17:14:36 +00:00
|
|
|
|
2015-12-02 23:11:28 +00:00
|
|
|
#include <reactos/manifest_hosted.rc>
|
2013-09-16 23:31:38 +00:00
|
|
|
|
2014-12-14 23:52:49 +00:00
|
|
|
/* UTF-8 */
|
|
|
|
#pragma code_page(65001)
|
|
|
|
|
|
|
|
#ifdef LANGUAGE_CS_CZ
|
|
|
|
#include "lang/cs-CZ.rc"
|
|
|
|
#endif
|
2013-11-28 22:12:52 +00:00
|
|
|
#ifdef LANGUAGE_DE_DE
|
|
|
|
#include "lang/de-DE.rc"
|
|
|
|
#endif
|
|
|
|
#ifdef LANGUAGE_EN_US
|
|
|
|
#include "lang/en-US.rc"
|
|
|
|
#endif
|
|
|
|
#ifdef LANGUAGE_ES_ES
|
|
|
|
#include "lang/es-ES.rc"
|
|
|
|
#endif
|
|
|
|
#ifdef LANGUAGE_FR_FR
|
|
|
|
#include "lang/fr-FR.rc"
|
|
|
|
#endif
|
2020-04-23 23:24:32 +00:00
|
|
|
#ifdef LANGUAGE_ID_ID
|
|
|
|
#include "lang/id-ID.rc"
|
|
|
|
#endif
|
2014-12-14 23:52:49 +00:00
|
|
|
#ifdef LANGUAGE_IT_IT
|
|
|
|
#include "lang/it-IT.rc"
|
2014-05-11 19:54:14 +00:00
|
|
|
#endif
|
2016-08-21 10:40:42 +00:00
|
|
|
#ifdef LANGUAGE_JA_JP
|
|
|
|
#include "lang/ja-JP.rc"
|
|
|
|
#endif
|
2013-11-28 22:12:52 +00:00
|
|
|
#ifdef LANGUAGE_PL_PL
|
|
|
|
#include "lang/pl-PL.rc"
|
|
|
|
#endif
|
[TRANSLATIONS] Add/Update Portuguese (neutral) translations. (#1687)
Translations for SYSDM.CPL, SETUPAPI, SHELL32, LSASRV, SAMSRV, SYSSETUP,
USRMGR, THEMEUI, USERENV, WININET, MSCONFIG.
2019-06-22 13:26:40 +00:00
|
|
|
#ifdef LANGUAGE_PT_PT
|
|
|
|
#include "lang/pt-PT.rc"
|
|
|
|
#endif
|
2013-11-28 22:12:52 +00:00
|
|
|
#ifdef LANGUAGE_RO_RO
|
|
|
|
#include "lang/ro-RO.rc"
|
|
|
|
#endif
|
|
|
|
#ifdef LANGUAGE_RU_RU
|
|
|
|
#include "lang/ru-RU.rc"
|
|
|
|
#endif
|
2014-06-30 12:00:07 +00:00
|
|
|
#ifdef LANGUAGE_TR_TR
|
|
|
|
#include "lang/tr-TR.rc"
|
|
|
|
#endif
|
2013-11-28 22:12:52 +00:00
|
|
|
#ifdef LANGUAGE_UK_UA
|
|
|
|
#include "lang/uk-UA.rc"
|
|
|
|
#endif
|
2015-06-01 17:13:53 +00:00
|
|
|
#ifdef LANGUAGE_ZH_CN
|
|
|
|
#include "lang/zh-CN.rc"
|
|
|
|
#endif
|
2015-12-02 22:44:03 +00:00
|
|
|
#ifdef LANGUAGE_ZH_TW
|
|
|
|
#include "lang/zh-TW.rc"
|
|
|
|
#endif
|