1/* 2 * Top level resource file for Common Dialogs 3 * 4 * Copyright 1999 Bertho Stultiens 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#include <windef.h> 22#include <winuser.h> 23 24#include "cdlg.h" 25#include "filedlgbrowser.h" 26 27/* 28 * Everything that does not depend on language, 29 * like textless bitmaps etc, go into the 30 * neutral language. This will prevent them from 31 * being duplicated for each language. 32 */ 33#include "cdlg_xx.rc" 34 35#include <reactos/manifest_dll.rc> 36 37/* 38 * Everything specific to any language goes 39 * in one of the specific files. 40 * Note that you can and may override resources 41 * which also have a neutral version. This is to 42 * get localized bitmaps for example. 43 */ 44 45/* UTF-8 */ 46#pragma code_page(65001) 47 48#ifdef LANGUAGE_BG_BG 49 #include "lang/cdlg_Bg.rc" 50#endif 51#ifdef LANGUAGE_CA_ES 52 #include "lang/cdlg_Ca.rc" 53#endif 54#ifdef LANGUAGE_CS_CZ 55 #include "lang/cdlg_Cs.rc" 56#endif 57#ifdef LANGUAGE_DA_DK 58 #include "lang/cdlg_Da.rc" 59#endif 60#ifdef LANGUAGE_DE_DE 61 #include "lang/cdlg_De.rc" 62#endif 63#ifdef LANGUAGE_EL_GR 64 #include "lang/cdlg_El.rc" 65#endif 66#ifdef LANGUAGE_EN_US 67 #include "lang/cdlg_En.rc" 68#endif 69#ifdef LANGUAGE_EO_AA 70 #include "lang/cdlg_Eo.rc" 71#endif 72#ifdef LANGUAGE_ES_ES 73 #include "lang/cdlg_Es.rc" 74#endif 75#ifdef LANGUAGE_ET_EE 76 #include "lang/cdlg_Et.rc" 77#endif 78#ifdef LANGUAGE_FI_FI 79 #include "lang/cdlg_Fi.rc" 80#endif 81#ifdef LANGUAGE_FR_FR 82 #include "lang/cdlg_Fr.rc" 83#endif 84#ifdef LANGUAGE_HE_IL 85 #include "lang/cdlg_He.rc" 86#endif 87#ifdef LANGUAGE_HI_IN 88 #include "lang/cdlg_Hi.rc" 89#endif 90#ifdef LANGUAGE_HU_HU 91 #include "lang/cdlg_Hu.rc" 92#endif 93#ifdef LANGUAGE_ID_ID 94 #include "lang/cdlg_Id.rc" 95#endif 96#ifdef LANGUAGE_IT_IT 97 #include "lang/cdlg_It.rc" 98#endif 99#ifdef LANGUAGE_JA_JP 100 #include "lang/cdlg_Ja.rc" 101#endif 102#ifdef LANGUAGE_KO_KR 103 #include "lang/cdlg_Ko.rc" 104#endif 105#ifdef LANGUAGE_LT_LT 106 #include "lang/cdlg_Lt.rc" 107#endif 108#ifdef LANGUAGE_NL_NL 109 #include "lang/cdlg_Nl.rc" 110#endif 111#ifdef LANGUAGE_NO_NO 112 #include "lang/cdlg_No.rc" 113#endif 114#ifdef LANGUAGE_PL_PL 115 #include "lang/cdlg_Pl.rc" 116#endif 117#ifdef LANGUAGE_PT_PT 118 #include "lang/cdlg_Pt.rc" 119#endif 120#ifdef LANGUAGE_RO_RO 121 #include "lang/cdlg_Ro.rc" 122#endif 123#ifdef LANGUAGE_RU_RU 124 #include "lang/cdlg_Ru.rc" 125#endif 126#ifdef LANGUAGE_SK_SK 127 #include "lang/cdlg_Sk.rc" 128#endif 129#ifdef LANGUAGE_SL_SI 130 #include "lang/cdlg_Si.rc" 131#endif 132#ifdef LANGUAGE_SQ_AL 133 #include "lang/cdlg_Sq.rc" 134#endif 135#ifdef LANGUAGE_SR_SP 136 #include "lang/cdlg_Sr.rc" 137#endif 138#ifdef LANGUAGE_SV_SE 139 #include "lang/cdlg_Sv.rc" 140#endif 141#ifdef LANGUAGE_TH_TH 142 #include "lang/cdlg_Th.rc" 143#endif 144#ifdef LANGUAGE_TR_TR 145 #include "lang/cdlg_Tr.rc" 146#endif 147#ifdef LANGUAGE_UK_UA 148 #include "lang/cdlg_Uk.rc" 149#endif 150#ifdef LANGUAGE_ZH_CN 151 #include "lang/cdlg_Zh.rc" 152#endif 153