2018-05-13 20:15:41 +00:00
|
|
|
/*
|
|
|
|
* PROJECT: ReactOS Clipboard Viewer
|
|
|
|
* LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
|
|
|
|
* PURPOSE: Resources file.
|
|
|
|
* COPYRIGHT: Copyright 2015-2018 Ricardo Hanke
|
|
|
|
*/
|
|
|
|
|
2015-11-01 16:25:19 +00:00
|
|
|
#include <windef.h>
|
|
|
|
#include <winuser.h>
|
|
|
|
|
|
|
|
#include "resources.h"
|
|
|
|
|
2018-05-13 20:15:41 +00:00
|
|
|
#define REACTOS_STR_FILE_DESCRIPTION "ReactOS Clipboard Viewer"
|
|
|
|
#define REACTOS_STR_INTERNAL_NAME "clipbrd"
|
|
|
|
#define REACTOS_STR_ORIGINAL_FILENAME "clipbrd.exe"
|
2015-11-01 16:25:19 +00:00
|
|
|
#include <reactos/version.rc>
|
|
|
|
|
2016-02-13 23:16:19 +00:00
|
|
|
CLIPBRD_ICON ICON "res/clipbrd.ico"
|
|
|
|
CLPFILE_ICON ICON "res/clpfile.ico"
|
2015-11-01 16:25:19 +00:00
|
|
|
|
|
|
|
#include <reactos/manifest_exe.rc>
|
|
|
|
|
|
|
|
/* UTF-8 */
|
|
|
|
#pragma code_page(65001)
|
|
|
|
|
2017-02-01 14:45:59 +00:00
|
|
|
#ifdef LANGUAGE_CS_CZ
|
|
|
|
#include "lang/cs-CZ.rc"
|
|
|
|
#endif
|
2015-11-01 16:25:19 +00:00
|
|
|
#ifdef LANGUAGE_DE_DE
|
|
|
|
#include "lang/de-DE.rc"
|
|
|
|
#endif
|
|
|
|
#ifdef LANGUAGE_EN_US
|
|
|
|
#include "lang/en-US.rc"
|
|
|
|
#endif
|
2015-11-30 18:53:22 +00:00
|
|
|
#ifdef LANGUAGE_ES_ES
|
|
|
|
#include "lang/es-ES.rc"
|
|
|
|
#endif
|
2018-10-26 21:40:19 +00:00
|
|
|
#ifdef LANGUAGE_ET_EE
|
|
|
|
#include "lang/et-EE.rc"
|
|
|
|
#endif
|
2015-11-01 16:25:19 +00:00
|
|
|
#ifdef LANGUAGE_FR_FR
|
|
|
|
#include "lang/fr-FR.rc"
|
|
|
|
#endif
|
2018-01-24 15:00:43 +00:00
|
|
|
#ifdef LANGUAGE_HE_IL
|
|
|
|
#include "lang/he-IL.rc"
|
|
|
|
#endif
|
2019-11-27 00:40:51 +00:00
|
|
|
#ifdef LANGUAGE_ID_ID
|
|
|
|
#include "lang/id-ID.rc"
|
|
|
|
#endif
|
2018-01-29 21:33:22 +00:00
|
|
|
#ifdef LANGUAGE_IT_IT
|
|
|
|
#include "lang/it-IT.rc"
|
|
|
|
#endif
|
2023-09-02 02:27:43 +00:00
|
|
|
#ifdef LANGUAGE_JA_JP
|
|
|
|
#include "lang/ja-JP.rc"
|
|
|
|
#endif
|
2017-09-23 17:32:13 +00:00
|
|
|
#ifdef LANGUAGE_PL_PL
|
|
|
|
#include "lang/pl-PL.rc"
|
|
|
|
#endif
|
2021-08-03 12:30:33 +00:00
|
|
|
#ifdef LANGUAGE_PT_PT
|
|
|
|
#include "lang/pt-PT.rc"
|
|
|
|
#endif
|
2015-12-16 10:22:00 +00:00
|
|
|
#ifdef LANGUAGE_RO_RO
|
|
|
|
#include "lang/ro-RO.rc"
|
|
|
|
#endif
|
2016-08-02 09:16:16 +00:00
|
|
|
#ifdef LANGUAGE_RU_RU
|
|
|
|
#include "lang/ru-RU.rc"
|
|
|
|
#endif
|
2015-12-05 16:57:14 +00:00
|
|
|
#ifdef LANGUAGE_TR_TR
|
|
|
|
#include "lang/tr-TR.rc"
|
|
|
|
#endif
|
2015-11-30 19:01:56 +00:00
|
|
|
#ifdef LANGUAGE_ZH_CN
|
|
|
|
#include "lang/zh-CN.rc"
|
2015-12-02 22:44:03 +00:00
|
|
|
#endif
|
2021-12-29 21:40:57 +00:00
|
|
|
#ifdef LANGUAGE_ZH_HK
|
|
|
|
#include "lang/zh-HK.rc"
|
|
|
|
#endif
|
2015-12-02 22:44:03 +00:00
|
|
|
#ifdef LANGUAGE_ZH_TW
|
|
|
|
#include "lang/zh-TW.rc"
|
2015-12-05 16:57:14 +00:00
|
|
|
#endif
|