1/* 2 * Copyright 2007 Jason Edmeades 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 "xcopy.h" 20 21LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL 22 23#define REACTOS_STR_FILE_DESCRIPTION "xcopy command" 24#define REACTOS_STR_INTERNAL_NAME "xcopy" 25#define REACTOS_STR_ORIGINAL_FILENAME "xcopy.exe" 26#include <reactos/version.rc> 27 28#ifdef LANGUAGE_DA_DK 29 #include "lang/da-DK.rc" 30#endif 31#ifdef LANGUAGE_EN_US 32 #include "lang/en-US.rc" 33#endif 34#ifdef LANGUAGE_NO_NO 35 #include "lang/no-NO.rc" 36#endif 37#ifdef LANGUAGE_PL_PL 38 #include "lang/pl-PL.rc" 39#endif 40#ifdef LANGUAGE_ES_ES 41 #include "lang/es-ES.rc" 42#endif 43 44/* UTF-8 */ 45#pragma code_page(65001) 46 47#ifdef LANGUAGE_DE_DE 48 #include "lang/de-DE.rc" 49#endif 50#ifdef LANGUAGE_FR_FR 51 #include "lang/fr-FR.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_PT_BR 69 #include "lang/pt-BR.rc" 70#endif 71#ifdef LANGUAGE_PT_PT 72 #include "lang/pt-PT.rc" 73#endif 74#ifdef LANGUAGE_RO_RO 75 #include "lang/ro-RO.rc" 76#endif 77#ifdef LANGUAGE_RU_RU 78 #include "lang/ru-RU.rc" 79#endif 80#ifdef LANGUAGE_SL_SI 81 #include "lang/sl-SI.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-SP.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