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#include <dlgs.h> 24 25#include "filedlgbrowser.h" 26#include "resource.h" 27 28/* 29 * Everything that does not depend on language, 30 * like textless bitmaps etc, go into the 31 * neutral language. This will prevent them from 32 * being duplicated for each language. 33 */ 34#include "cdlg_xx.rc" 35 36#include <reactos/manifest_dll.rc> 37 38/* 39 * Everything specific to any language goes 40 * in one of the specific files. 41 * Note that you can and may override resources 42 * which also have a neutral version. This is to 43 * get localized bitmaps for example. 44 */ 45 46#pragma code_page(65001) // UTF-8 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_FI_FI 76 #include "lang/cdlg_Fi.rc" 77#endif 78#ifdef LANGUAGE_FR_FR 79 #include "lang/cdlg_Fr.rc" 80#endif 81#ifdef LANGUAGE_HE_IL 82 #include "lang/cdlg_He.rc" 83#endif 84#ifdef LANGUAGE_HU_HU 85 #include "lang/cdlg_Hu.rc" 86#endif 87#ifdef LANGUAGE_IT_IT 88 #include "lang/cdlg_It.rc" 89#endif 90#ifdef LANGUAGE_JA_JP 91 #include "lang/cdlg_Ja.rc" 92#endif 93#ifdef LANGUAGE_KO_KR 94 #include "lang/cdlg_Ko.rc" 95#endif 96#ifdef LANGUAGE_LT_LT 97 #include "lang/cdlg_Lt.rc" 98#endif 99#ifdef LANGUAGE_NL_NL 100 #include "lang/cdlg_Nl.rc" 101#endif 102#ifdef LANGUAGE_NO_NO 103 #include "lang/cdlg_No.rc" 104#endif 105#ifdef LANGUAGE_PL_PL 106 #include "lang/cdlg_Pl.rc" 107#endif 108#ifdef LANGUAGE_PT_PT 109 #include "lang/cdlg_Pt.rc" 110#endif 111#ifdef LANGUAGE_RO_RO 112 #include "lang/cdlg_Ro.rc" 113#endif 114#ifdef LANGUAGE_RU_RU 115 #include "lang/cdlg_Ru.rc" 116#endif 117#ifdef LANGUAGE_SK_SK 118 #include "lang/cdlg_Sk.rc" 119#endif 120#ifdef LANGUAGE_SL_SI 121 #include "lang/cdlg_Si.rc" 122#endif 123#ifdef LANGUAGE_SQ_AL 124 #include "lang/cdlg_Sq.rc" 125#endif 126#ifdef LANGUAGE_SR_SP 127 #include "lang/cdlg_Sr.rc" 128#endif 129#ifdef LANGUAGE_SV_SE 130 #include "lang/cdlg_Sv.rc" 131#endif 132#ifdef LANGUAGE_TH_TH 133 #include "lang/cdlg_Th.rc" 134#endif 135#ifdef LANGUAGE_TR_TR 136 #include "lang/cdlg_Tr.rc" 137#endif 138#ifdef LANGUAGE_UK_UA 139 #include "lang/cdlg_Uk.rc" 140#endif 141#ifdef LANGUAGE_ZH_TW 142 #include "lang/cdlg_Tw.rc" 143#endif 144#ifdef LANGUAGE_ZH_CN 145 #include "lang/cdlg_Zh.rc" 146#endif 147