1/* FontSub by Katayama Hirofumi MZ
2 *
3 * To the extent possible under law, the person who associated CC0 with
4 * FontSub has waived all copyright and related or neighboring rights
5 * to FontSub.
6 *
7 * You should have received a copy of the CC0 legalcode along with this
8 * work.  If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.
9 */
10#include <windef.h>
11#include <winuser.h>
12#include <dlgs.h>
13
14#include "resource.h"
15
16LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
17
18#define REACTOS_STR_FILE_DESCRIPTION  "ReactOS Font Substitute Editor"
19#define REACTOS_STR_INTERNAL_NAME     "fontsub"
20#define REACTOS_STR_ORIGINAL_FILENAME "fontsub.exe"
21#include <reactos/version.rc>
22
23/* UTF-8 */
24#pragma code_page(65001)
25
261 ICON "fontsub.ico"
27
282 BITMAP "up.bmp"
293 BITMAP "down.bmp"
304 BITMAP "nil.bmp"
31
32#ifdef LANGUAGE_DE_DE
33    #include "lang/de-DE.rc"
34#endif
35#ifdef LANGUAGE_EN_US
36    #include "lang/en-US.rc"
37#endif
38#ifdef LANGUAGE_ES_ES
39    #include "lang/es-ES.rc"
40#endif
41#ifdef LANGUAGE_JA_JP
42    #include "lang/ja-JP.rc"
43#endif
44#ifdef LANGUAGE_PL_PL
45    #include "lang/pl-PL.rc"
46#endif
47#ifdef LANGUAGE_RO_RO
48    #include "lang/ro-RO.rc"
49#endif
50#ifdef LANGUAGE_RU_RU
51    #include "lang/ru-RU.rc"
52#endif
53#ifdef LANGUAGE_TR_TR
54    #include "lang/tr-TR.rc"
55#endif
56#ifdef LANGUAGE_ZH_CN
57    #include "lang/zh-CN.rc"
58#endif
59#ifdef LANGUAGE_ZH_HK
60    #include "lang/zh-HK.rc"
61#endif
62#ifdef LANGUAGE_ZH_TW
63    #include "lang/zh-TW.rc"
64#endif
65
661 ACCELERATORS
67BEGIN
68    "O",     ID_IMPORT,             CONTROL, VIRTKEY
69    "S",     ID_EXPORT,             CONTROL, VIRTKEY
70    "N",     ID_NEW,                CONTROL, VIRTKEY
71    "L",     ID_RELOAD,             CONTROL, VIRTKEY
72    "U",     ID_UPDATE_REGISTRY,    CONTROL, VIRTKEY
73END
74