1#include <windef.h>
2#include "resource.h"
3
4#define REACTOS_STR_FILE_DESCRIPTION   "ReactOS TCP/IP Traceroute"
5#define REACTOS_STR_INTERNAL_NAME      "tracert"
6#define REACTOS_STR_ORIGINAL_FILENAME  "tracert.exe"
7#define REACTOS_STR_ORIGINAL_COPYRIGHT "Ged Murphy (gedmurphy@reactos.org)"
8#include <reactos/version.rc>
9
10
11/* UTF-8 */
12#pragma code_page(65001)
13
14#ifdef LANGUAGE_BG_BG
15    #include "lang/bg-BG.rc"
16#endif
17#ifdef LANGUAGE_CS_CZ
18    #include "lang/cs-CZ.rc"
19#endif
20#ifdef LANGUAGE_DE_DE
21    #include "lang/de-DE.rc"
22#endif
23#ifdef LANGUAGE_EN_US
24    #include "lang/en-US.rc"
25#endif
26#ifdef LANGUAGE_ES_ES
27    #include "lang/es-ES.rc"
28#endif
29#ifdef LANGUAGE_FR_FR
30    #include "lang/fr-FR.rc"
31#endif
32#ifdef LANGUAGE_IT_IT
33    #include "lang/it-IT.rc"
34#endif
35#ifdef LANGUAGE_PL_PL
36    #include "lang/pl-PL.rc"
37#endif
38#ifdef LANGUAGE_RO_RO
39    #include "lang/ro-RO.rc"
40#endif
41#ifdef LANGUAGE_RU_RU
42    #include "lang/ru-RU.rc"
43#endif
44#ifdef LANGUAGE_SV_SE
45    #include "lang/sv-SE.rc"
46#endif
47#ifdef LANGUAGE_SQ_AL
48    #include "lang/sq-AL.rc"
49#endif
50#ifdef LANGUAGE_TR_TR
51    #include "lang/tr-TR.rc"
52#endif
53#ifdef LANGUAGE_UK_UA
54    #include "lang/uk-UA.rc"
55#endif
56#ifdef LANGUAGE_ZH_CN
57    #include "lang/zh-CN.rc"
58#endif
59#ifdef LANGUAGE_ZH_TW
60    #include "lang/zh-TW.rc"
61#endif
62