1/*
2 * PROJECT:     ReactOS Event Log Viewer
3 * LICENSE:     GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later)
4 * PURPOSE:     Resources file.
5 * COPYRIGHT:   Copyright 2007 Marc Piulachs <marc.piulachs@codexchange.net>
6 *              Copyright 2008-2016 Eric Kohl <eric.kohl@reactos.org>
7 *              Copyright 2016-2022 Hermès Bélusca-Maïto <hermes.belusca-maito@reactos.org>
8 */
9
10#include <windef.h>
11#include <winuser.h>
12#include <commctrl.h>
13#include <richedit.h>
14
15#include "resource.h"
16
17#define REACTOS_STR_FILE_DESCRIPTION  "ReactOS Event Log Viewer"
18#define REACTOS_STR_INTERNAL_NAME     "eventvwr"
19#define REACTOS_STR_ORIGINAL_FILENAME "eventvwr.exe"
20#include <reactos/version.rc>
21
22#include <reactos/manifest_exe.rc>
23
24LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
25
26/* Shared icons */
27IDI_EVENTVWR ICON "res/eventvwr.ico"
28IDI_EVENTLOG ICON "res/eventlog.ico"
29IDI_CLOSED_CATEGORY ICON "res/folder.ico"
30IDI_OPENED_CATEGORY ICON "res/folderopen.ico"
31
32IDI_INFORMATIONICON ICON "res/info.ico"
33IDI_WARNINGICON ICON "res/warning.ico"
34IDI_ERRORICON ICON "res/error.ico"
35IDI_AUDITSUCCESSICON ICON "res/key.ico"
36IDI_AUDITFAILUREICON ICON "res/lock.ico"
37
38/* Event Navigation */
39IDI_NEXT ICON "res/next_event.ico"
40IDI_PREV ICON "res/prev_event.ico"
41IDI_COPY ICON "res/copy.ico"
42
43/* UTF-8 */
44#pragma code_page(65001)
45
46#ifdef LANGUAGE_BG_BG
47    #include "lang/bg-BG.rc"
48#endif
49#ifdef LANGUAGE_CS_CZ
50    #include "lang/cs-CZ.rc"
51#endif
52#ifdef LANGUAGE_DE_DE
53    #include "lang/de-DE.rc"
54#endif
55#ifdef LANGUAGE_EL_GR
56    #include "lang/el-GR.rc"
57#endif
58#ifdef LANGUAGE_EN_US
59    #include "lang/en-US.rc"
60#endif
61#ifdef LANGUAGE_ES_ES
62    #include "lang/es-ES.rc"
63#endif
64#ifdef LANGUAGE_FR_FR
65    #include "lang/fr-FR.rc"
66#endif
67#ifdef LANGUAGE_HE_IL
68    #include "lang/he-IL.rc"
69#endif
70#ifdef LANGUAGE_IT_IT
71    #include "lang/it-IT.rc"
72#endif
73#ifdef LANGUAGE_JA_JP
74    #include "lang/ja-JP.rc"
75#endif
76#ifdef LANGUAGE_KO_KR
77    #include "lang/ko-KR.rc"
78#endif
79#ifdef LANGUAGE_NB_NO
80    #include "lang/no-NO.rc"
81#endif
82#ifdef LANGUAGE_PL_PL
83    #include "lang/pl-PL.rc"
84#endif
85#ifdef LANGUAGE_PT_BR
86    #include "lang/pt-BR.rc"
87#endif
88#ifdef LANGUAGE_PT_PT
89    #include "lang/pt-PT.rc"
90#endif
91#ifdef LANGUAGE_RO_RO
92    #include "lang/ro-RO.rc"
93#endif
94#ifdef LANGUAGE_RU_RU
95    #include "lang/ru-RU.rc"
96#endif
97#ifdef LANGUAGE_SK_SK
98    #include "lang/sk-SK.rc"
99#endif
100#ifdef LANGUAGE_SQ_AL
101    #include "lang/sq-AL.rc"
102#endif
103#ifdef LANGUAGE_SV_SE
104    #include "lang/sv-SE.rc"
105#endif
106#ifdef LANGUAGE_TR_TR
107    #include "lang/tr-TR.rc"
108#endif
109#ifdef LANGUAGE_UK_UA
110    #include "lang/uk-UA.rc"
111#endif
112#ifdef LANGUAGE_ZH_CN
113    #include "lang/zh-CN.rc"
114#endif
115#ifdef LANGUAGE_ZH_HK
116    #include "lang/zh-HK.rc"
117#endif
118#ifdef LANGUAGE_ZH_TW
119    #include "lang/zh-TW.rc"
120#endif
121