1/*
2 * PROJECT:     Dr. Watson crash reporter
3 * LICENSE:     GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
4 * PURPOSE:     Main resource file
5 * COPYRIGHT:   Copyright 2018 William Kent (wjk011 [at] gmail [dot] com)
6 */
7
8#include <windef.h>
9#include <winuser.h>
10#include "resource.h"
11
12#define REACTOS_STR_FILE_DESCRIPTION  "ReactOS Crash Reporter"
13#define REACTOS_STR_INTERNAL_NAME     "drwtsn32"
14#define REACTOS_STR_ORIGINAL_FILENAME "drwtsn32.exe"
15#include <reactos/version.rc>
16
17#include <reactos/manifest_exe.rc>
18
19/* UTF-8 */
20#pragma code_page(65001)
21
22#ifdef LANGUAGE_DE_DE
23    #include "lang/de-DE.rc"
24#endif
25#ifdef LANGUAGE_EN_US
26    #include "lang/en-US.rc"
27#endif
28#ifdef LANGUAGE_ET_EE
29    #include "lang/et-EE.rc"
30#endif
31#ifdef LANGUAGE_FR_FR
32    #include "lang/fr-FR.rc"
33#endif
34#ifdef LANGUAGE_IT_IT
35    #include "lang/it-IT.rc"
36#endif
37#ifdef LANGUAGE_PL_PL
38    #include "lang/pl-PL.rc"
39#endif
40#ifdef LANGUAGE_RO_RO
41    #include "lang/ro-RO.rc"
42#endif
43#ifdef LANGUAGE_ZH_CN
44    #include "lang/zh-CN.rc"
45#endif
46#ifdef LANGUAGE_ZH_TW
47    #include "lang/zh-TW.rc"
48#endif
49