2013-02-17 15:51:07 +00:00
|
|
|
/*
|
2013-11-28 22:12:52 +00:00
|
|
|
* PROJECT: ReactOS Safely Remove Hardware Applet
|
|
|
|
* LICENSE: GPL - See COPYING in the top level directory
|
|
|
|
* FILE: dll/cpl/hotplug/hotplug.rc
|
|
|
|
* PURPOSE: main resource file
|
|
|
|
* PROGRAMMERS: Johannes Anderwald (johannes.anderwald@reactos.org)
|
2013-02-17 15:51:07 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <windef.h>
|
2020-03-29 22:37:45 +00:00
|
|
|
#include <winuser.h>
|
|
|
|
#include <commctrl.h>
|
2013-02-17 15:51:07 +00:00
|
|
|
|
|
|
|
#include "resource.h"
|
|
|
|
|
2020-03-29 22:37:45 +00:00
|
|
|
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
|
|
|
|
|
2013-02-17 15:51:07 +00:00
|
|
|
#define REACTOS_VERSION_DLL
|
2013-11-28 22:12:52 +00:00
|
|
|
#define REACTOS_STR_FILE_DESCRIPTION "ReactOS Hardware Safe Removal Support"
|
|
|
|
#define REACTOS_STR_INTERNAL_NAME "hotplug"
|
|
|
|
#define REACTOS_STR_ORIGINAL_FILENAME "hotplug.dll"
|
2013-02-17 15:51:07 +00:00
|
|
|
#include <reactos/version.rc>
|
2020-03-29 22:37:45 +00:00
|
|
|
|
|
|
|
IDI_HOTPLUG ICON "resources/1.ico"
|
|
|
|
|
|
|
|
#include <reactos/manifest_hosted.rc>
|
|
|
|
|
|
|
|
/* 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] Update Spanish, and add Basque translation (#2667)
Add/update translation for:
charmap_new, logoff, mspaint, notepad, usetup, welcome,
hotplug.cpl, sysdm.cpl, aclui.dll, comctl32.dll, comdlg32.dll,
hhctrl.ocx, kernel32.dll, msi.dll, oledlg.dll, shell32.dll,
tapiui.dll, themeui.dll, wininet.dll, winmm.dll, wldap32.dll,
winsrv.dll.
2020-04-26 03:49:07 +00:00
|
|
|
#ifdef LANGUAGE_ES_ES
|
|
|
|
#include "lang/es-ES.rc"
|
|
|
|
#endif
|
2020-04-09 16:49:45 +00:00
|
|
|
#ifdef LANGUAGE_ID_ID
|
|
|
|
#include "lang/id-ID.rc"
|
|
|
|
#endif
|
2020-05-01 01:52:19 +00:00
|
|
|
#ifdef LANGUAGE_JA_JP
|
|
|
|
#include "lang/ja-JP.rc"
|
|
|
|
#endif
|
2020-09-26 18:42:36 +00:00
|
|
|
#ifdef LANGUAGE_PL_PL
|
|
|
|
#include "lang/pl-PL.rc"
|
|
|
|
#endif
|
2020-04-26 11:06:34 +00:00
|
|
|
#ifdef LANGUAGE_PT_PT
|
|
|
|
#include "lang/pt-PT.rc"
|
|
|
|
#endif
|
2020-04-30 15:24:11 +00:00
|
|
|
#ifdef LANGUAGE_RU_RU
|
|
|
|
#include "lang/ru-RU.rc"
|
|
|
|
#endif
|
2020-11-11 05:24:05 +00:00
|
|
|
#ifdef LANGUAGE_TR_TR
|
|
|
|
#include "lang/tr-TR.rc"
|
|
|
|
#endif
|
2021-12-29 21:40:57 +00:00
|
|
|
#ifdef LANGUAGE_ZH_HK
|
|
|
|
#include "lang/zh-HK.rc"
|
|
|
|
#endif
|
2021-03-09 15:51:37 +00:00
|
|
|
#ifdef LANGUAGE_ZH_TW
|
|
|
|
#include "lang/zh-TW.rc"
|
|
|
|
#endif
|