1/* 2 * Copyright 2007 Mikolaj Zalewski 3 * 4 * This library is free software; you can redistribute it and/or 5 * modify it under the terms of the GNU Lesser General Public 6 * License as published by the Free Software Foundation; either 7 * version 2.1 of the License, or (at your option) any later version. 8 * 9 * This library is distributed in the hope that it will be useful, 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 * Lesser General Public License for more details. 13 * 14 * You should have received a copy of the GNU Lesser General Public 15 * License along with this library; if not, write to the Free Software 16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA 17 */ 18 19#include "resources.h" 20 21#include <reactos/manifest_exe.rc> 22 23LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL 24 251 ICON "write.ico" 26 27/* UTF-8 */ 28#pragma code_page(65001) 29 30#ifdef LANGUAGE_BG_BG 31 #include "lang/Bg.rc" 32#endif 33#ifdef LANGUAGE_DA_DK 34 #include "lang/Da.rc" 35#endif 36#ifdef LANGUAGE_DE_DE 37 #include "lang/De.rc" 38#endif 39#ifdef LANGUAGE_EN_US 40 #include "lang/En.rc" 41#endif 42#ifdef LANGUAGE_ES_ES 43 #include "lang/Es.rc" 44#endif 45#ifdef LANGUAGE_FR_FR 46 #include "lang/Fr.rc" 47#endif 48#ifdef LANGUAGE_HE_IL 49 #include "lang/He.rc" 50#endif 51#ifdef LANGUAGE_ID_ID 52 #include "lang/Id.rc" 53#endif 54#ifdef LANGUAGE_IT_IT 55 #include "lang/It.rc" 56#endif 57#ifdef LANGUAGE_JA_JP 58 #include "lang/Ja.rc" 59#endif 60#ifdef LANGUAGE_KO_KR 61 #include "lang/Ko.rc" 62#endif 63#ifdef LANGUAGE_LT_LT 64 #include "lang/Lt.rc" 65#endif 66#ifdef LANGUAGE_NL_NL 67 #include "lang/Nl.rc" 68#endif 69#ifdef LANGUAGE_NO_NO 70 #include "lang/No.rc" 71#endif 72#ifdef LANGUAGE_PL_PL 73 #include "lang/Pl.rc" 74#endif 75#ifdef LANGUAGE_PT_PT 76 #include "lang/Pt.rc" 77#endif 78#ifdef LANGUAGE_RO_RO 79 #include "lang/Ro.rc" 80#endif 81#ifdef LANGUAGE_RU_RU 82 #include "lang/Ru.rc" 83#endif 84#ifdef LANGUAGE_SL_SI 85 #include "lang/Si.rc" 86#endif 87#ifdef LANGUAGE_SQ_AL 88 #include "lang/Sq.rc" 89#endif 90#ifdef LANGUAGE_SR_SP 91 #include "lang/Sr.rc" 92#endif 93#ifdef LANGUAGE_SV_SE 94 #include "lang/Sv.rc" 95#endif 96#ifdef LANGUAGE_TR_TR 97 #include "lang/Tr.rc" 98#endif 99#ifdef LANGUAGE_UK_UA 100 #include "lang/Uk.rc" 101#endif 102#ifdef LANGUAGE_ZH_CN 103 #include "lang/Zh.rc" 104#endif 105