2017-12-29 22:45:02 +00:00
|
|
|
#include <windef.h>
|
|
|
|
#include <winuser.h>
|
|
|
|
|
|
|
|
#include "resource.h"
|
|
|
|
|
2022-09-09 18:26:39 +00:00
|
|
|
IDI_ZIPFLDR ICON "res/zipfldr.ico"
|
|
|
|
|
|
|
|
IDB_ZIPFLDR BITMAP "res/zipfldr.bmp"
|
|
|
|
IDB_HEADER BITMAP "res/header.bmp"
|
|
|
|
IDB_WATERMARK BITMAP "res/watermark.bmp"
|
2017-12-29 22:45:02 +00:00
|
|
|
|
|
|
|
#define REACTOS_VERSION_DLL
|
|
|
|
#define REACTOS_STR_FILE_DESCRIPTION "ReactOS Zip Shell Extension"
|
|
|
|
#define REACTOS_STR_INTERNAL_NAME "zipfldr"
|
|
|
|
#define REACTOS_STR_ORIGINAL_FILENAME "zipfldr.dll"
|
|
|
|
#include <reactos/version.rc>
|
|
|
|
|
|
|
|
#include <reactos/manifest_dll.rc>
|
|
|
|
|
|
|
|
IDR_ZIPFLDR REGISTRY "res/zipfldr.rgs"
|
|
|
|
|
2018-04-08 15:15:24 +00:00
|
|
|
/* UTF-8 */
|
|
|
|
#pragma code_page(65001)
|
2017-12-29 22:45:02 +00:00
|
|
|
|
2018-05-04 19:32:12 +00:00
|
|
|
|
|
|
|
#ifdef LANGUAGE_DE_DE
|
|
|
|
#include "lang/de-DE.rc"
|
|
|
|
#endif
|
2018-04-08 15:15:24 +00:00
|
|
|
#ifdef LANGUAGE_EN_US
|
|
|
|
#include "lang/en-US.rc"
|
|
|
|
#endif
|
2018-04-14 18:19:39 +00:00
|
|
|
#ifdef LANGUAGE_ET_EE
|
|
|
|
#include "lang/et-EE.rc"
|
|
|
|
#endif
|
2018-04-15 08:56:00 +00:00
|
|
|
#ifdef LANGUAGE_FR_FR
|
|
|
|
#include "lang/fr-FR.rc"
|
|
|
|
#endif
|
2019-03-11 15:52:21 +00:00
|
|
|
#ifdef LANGUAGE_HI_IN
|
|
|
|
#include "lang/hi-IN.rc"
|
|
|
|
#endif
|
2018-04-08 16:38:19 +00:00
|
|
|
#ifdef LANGUAGE_IT_IT
|
|
|
|
#include "lang/it-IT.rc"
|
|
|
|
#endif
|
2018-08-22 12:26:53 +00:00
|
|
|
#ifdef LANGUAGE_JA_JP
|
|
|
|
#include "lang/ja-JP.rc"
|
|
|
|
#endif
|
[TRANSLATION] Polish translation update (#554)
- Added translations for cmdutils (at, clip, comp, eventcreate, mode, taskkill, wmic) and zipfldr.
- Updated translations for cmdutils (reg), drwtsn32, mmc, eventvwr, shell32 and cpl applets (console, input).
2018-05-19 11:17:49 +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
|
2018-04-08 18:28:28 +00:00
|
|
|
#ifdef LANGUAGE_RO_RO
|
|
|
|
#include "lang/ro-RO.rc"
|
|
|
|
#endif
|
2018-04-22 14:31:21 +00:00
|
|
|
#ifdef LANGUAGE_RU_RU
|
|
|
|
#include "lang/ru-RU.rc"
|
|
|
|
#endif
|
2018-08-21 14:57:01 +00:00
|
|
|
#ifdef LANGUAGE_SV_SE
|
|
|
|
#include "lang/sv-SE.rc"
|
|
|
|
#endif
|
2021-10-09 20:40:55 +00:00
|
|
|
#ifdef LANGUAGE_TR_TR
|
|
|
|
#include "lang/tr-TR.rc"
|
|
|
|
#endif
|
2018-04-15 12:45:31 +00:00
|
|
|
#ifdef LANGUAGE_ZH_CN
|
|
|
|
#include "lang/zh-CN.rc"
|
|
|
|
#endif
|
2021-12-29 21:40:57 +00:00
|
|
|
#ifdef LANGUAGE_ZH_HK
|
|
|
|
#include "lang/zh-HK.rc"
|
|
|
|
#endif
|
2020-08-17 07:20:49 +00:00
|
|
|
#ifdef LANGUAGE_ZH_TW
|
|
|
|
#include "lang/zh-TW.rc"
|
|
|
|
#endif
|