Reactos
1/*
2 * Internet control panel applet
3 *
4 * Copyright 2010 Detlef Riekenberg
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 *
20 */
21
22#include "inetcpl.h"
23
24#include <reactos/manifest_hosted.rc>
25
26/* UTF-8 */
27#pragma code_page(65001)
28
29#ifdef LANGUAGE_BG_BG
30 #include "lang/bg-BG.rc"
31#endif
32#ifdef LANGUAGE_CS_CZ
33 #include "lang/cs-CZ.rc"
34#endif
35#ifdef LANGUAGE_DE_DE
36 #include "lang/de-DE.rc"
37#endif
38#ifdef LANGUAGE_EN_US
39 #include "lang/en-US.rc"
40#endif
41#ifdef LANGUAGE_ES_ES
42 #include "lang/es-ES.rc"
43#endif
44#ifdef LANGUAGE_FR_FR
45 #include "lang/fr-FR.rc"
46#endif
47#ifdef LANGUAGE_HE_IL
48 #include "lang/He.rc"
49#endif
50#ifdef LANGUAGE_ID_ID
51 #include "lang/id-ID.rc"
52#endif
53#ifdef LANGUAGE_IT_IT
54 #include "lang/it-IT.rc"
55#endif
56#ifdef LANGUAGE_JA_JP
57 #include "lang/ja-JP.rc"
58#endif
59#ifdef LANGUAGE_KO_KR
60 #include "lang/ko-KR.rc"
61#endif
62#ifdef LANGUAGE_LT_LT
63 #include "lang/lt-LT.rc"
64#endif
65#ifdef LANGUAGE_NL_NL
66 #include "lang/nl-NL.rc"
67#endif
68#ifdef LANGUAGE_PL_PL
69 #include "lang/pl-PL.rc"
70#endif
71#ifdef LANGUAGE_PT_BR
72 #include "lang/pt-BR.rc"
73#endif
74#ifdef LANGUAGE_PT_PT
75 #include "lang/pt-PT.rc"
76#endif
77#ifdef LANGUAGE_RO_RO
78 #include "lang/ro-RO.rc"
79#endif
80#ifdef LANGUAGE_RU_RU
81 #include "lang/ru-RU.rc"
82#endif
83#ifdef LANGUAGE_SQ_AL
84 #include "lang/sq-AL.rc"
85#endif
86#ifdef LANGUAGE_SR_SP
87 #include "lang/Sr.rc"
88#endif
89#ifdef LANGUAGE_SV_SE
90 #include "lang/sv-SE.rc"
91#endif
92#ifdef LANGUAGE_TR_TR
93 #include "lang/tr-TR.rc"
94#endif
95#ifdef LANGUAGE_UK_UA
96 #include "lang/uk-UA.rc"
97#endif
98#ifdef LANGUAGE_ZH_CN
99 #include "lang/zh-CN.rc"
100#endif
101#ifdef LANGUAGE_ZH_TW
102 #include "lang/zh-TW.rc"
103#endif
104
105#define WINE_FILENAME_STR "inetcpl.cpl"
106#define WINE_FILEDESCRIPTION_STR "Internet Control Panel"
107
108/* Same Version as IE 8 on WinXP */
109#define WINE_FILEVERSION 8,0,6001,18939
110#define WINE_FILEVERSION_STR "8.00.6001.18939"
111
112#define WINE_PRODUCTVERSION 8,0,6001,18939
113#define WINE_PRODUCTVERSION_STR "8.00.6001.18939"
114
115#include "wine/wine_common_ver.rc"
116
117/* @makedep: inetcpl.ico */
118ICO_MAIN ICON "resources/inetcpl.ico"
119ICO_INTERNET ICON "resources/inetcpl.ico"
120ICO_CERTIFICATES ICON "resources/certificates.ico"
121ICO_RESTRICTED ICON "resources/restricted.ico"
122ICO_HISTORY ICON "resources/history.ico"
123ICO_TRUSTED ICON "resources/trusted.ico"
124ICO_HOME ICON "resources/home.ico"