1/*
2 * PROJECT:         ReactOS Utility Manager (Accessibility)
3 * LICENSE:         GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
4 * PURPOSE:         Main resource file
5 * COPYRIGHT:       Copyright 2019-2020 George Bișoc (george.bisoc@reactos.org)
6 */
7
8/* INCLUDES ******************************************************************/
9
10#include <windef.h>
11#include <winuser.h>
12#include "resource.h"
13
14LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
15
16#define REACTOS_STR_FILE_DESCRIPTION    "ReactOS Accessibility Utility Manager"
17#define REACTOS_STR_INTERNAL_NAME       "utilman"
18#define REACTOS_STR_ORIGINAL_FILENAME   "utilman.exe"
19#include <reactos/version.rc>
20
21IDI_ICON_UTILMAN ICON "res/utilman.ico"
22
23#include <reactos/manifest_exe.rc>
24
25/* UTF-8 */
26#pragma code_page(65001)
27
28#ifdef LANGUAGE_DE_DE
29    #include "lang/de-DE.rc"
30#endif
31#ifdef LANGUAGE_EN_US
32    #include "lang/en-US.rc"
33#endif
34#ifdef LANGUAGE_IT_IT
35    #include "lang/it-IT.rc"
36#endif
37#ifdef LANGUAGE_JA_JP
38    #include "lang/ja-JP.rc"
39#endif
40#ifdef LANGUAGE_PL_PL
41    #include "lang/pl-PL.rc"
42#endif
43#ifdef LANGUAGE_PT_PT
44    #include "lang/pt-PT.rc"
45#endif
46#ifdef LANGUAGE_RO_RO
47    #include "lang/ro-RO.rc"
48#endif
49#ifdef LANGUAGE_RU_RU
50    #include "lang/ru-RU.rc"
51#endif
52#ifdef LANGUAGE_ZH_CN
53    #include "lang/zh-CN.rc"
54#endif
55#ifdef LANGUAGE_ZH_HK
56    #include "lang/zh-HK.rc"
57#endif
58#ifdef LANGUAGE_ZH_TW
59    #include "lang/zh-TW.rc"
60#endif
61
62/* EOF */
63