2009-04-10 19:03:02 +00:00
|
|
|
/*
|
2009-08-17 01:42:32 +00:00
|
|
|
* Copyright 2007 Jason Edmeades
|
2009-04-10 19:03:02 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
2009-08-17 01:42:32 +00:00
|
|
|
#include "xcopy.h"
|
2009-04-10 19:03:02 +00:00
|
|
|
|
2009-08-17 01:42:32 +00:00
|
|
|
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
|
2009-04-10 19:03:02 +00:00
|
|
|
|
2015-04-10 10:34:05 +00:00
|
|
|
#define REACTOS_STR_FILE_DESCRIPTION "xcopy command"
|
2013-11-28 21:52:17 +00:00
|
|
|
#define REACTOS_STR_INTERNAL_NAME "xcopy"
|
|
|
|
#define REACTOS_STR_ORIGINAL_FILENAME "xcopy.exe"
|
2009-08-17 01:42:32 +00:00
|
|
|
#include <reactos/version.rc>
|
2009-04-10 19:03:02 +00:00
|
|
|
|
2012-02-27 22:46:20 +00:00
|
|
|
#ifdef LANGUAGE_DA_DK
|
2015-04-10 10:34:05 +00:00
|
|
|
#include "lang/da-DK.rc"
|
2015-01-03 09:35:09 +00:00
|
|
|
#endif
|
2012-02-27 22:46:20 +00:00
|
|
|
#ifdef LANGUAGE_EN_US
|
2015-04-10 10:34:05 +00:00
|
|
|
#include "lang/en-US.rc"
|
|
|
|
#endif
|
|
|
|
#ifdef LANGUAGE_NO_NO
|
|
|
|
#include "lang/no-NO.rc"
|
|
|
|
#endif
|
|
|
|
#ifdef LANGUAGE_PL_PL
|
|
|
|
#include "lang/pl-PL.rc"
|
2012-02-27 22:46:20 +00:00
|
|
|
#endif
|
|
|
|
#ifdef LANGUAGE_ES_ES
|
2015-04-10 10:34:05 +00:00
|
|
|
#include "lang/es-ES.rc"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* UTF-8 */
|
|
|
|
#pragma code_page(65001)
|
|
|
|
|
|
|
|
#ifdef LANGUAGE_DE_DE
|
|
|
|
#include "lang/de-DE.rc"
|
2012-02-27 22:46:20 +00:00
|
|
|
#endif
|
|
|
|
#ifdef LANGUAGE_FR_FR
|
2015-04-10 10:34:05 +00:00
|
|
|
#include "lang/fr-FR.rc"
|
2012-02-27 22:46:20 +00:00
|
|
|
#endif
|
|
|
|
#ifdef LANGUAGE_IT_IT
|
2015-04-10 10:34:05 +00:00
|
|
|
#include "lang/it-IT.rc"
|
2012-02-27 22:46:20 +00:00
|
|
|
#endif
|
|
|
|
#ifdef LANGUAGE_JA_JP
|
2015-04-10 10:34:05 +00:00
|
|
|
#include "lang/ja-JP.rc"
|
2012-02-27 22:46:20 +00:00
|
|
|
#endif
|
|
|
|
#ifdef LANGUAGE_KO_KR
|
2015-04-10 10:34:05 +00:00
|
|
|
#include "lang/ko-KR.rc"
|
2012-02-27 22:46:20 +00:00
|
|
|
#endif
|
|
|
|
#ifdef LANGUAGE_LT_LT
|
2015-04-10 10:34:05 +00:00
|
|
|
#include "lang/lt-LT.rc"
|
2012-02-27 22:46:20 +00:00
|
|
|
#endif
|
|
|
|
#ifdef LANGUAGE_NL_NL
|
2015-04-10 10:34:05 +00:00
|
|
|
#include "lang/nl-NL.rc"
|
2012-02-27 22:46:20 +00:00
|
|
|
#endif
|
2015-04-10 10:34:05 +00:00
|
|
|
#ifdef LANGUAGE_PT_BR
|
|
|
|
#include "lang/pt-BR.rc"
|
2015-01-03 09:35:09 +00:00
|
|
|
#endif
|
2012-02-27 22:46:20 +00:00
|
|
|
#ifdef LANGUAGE_PT_PT
|
2015-04-10 10:34:05 +00:00
|
|
|
#include "lang/pt-PT.rc"
|
2012-02-27 22:46:20 +00:00
|
|
|
#endif
|
|
|
|
#ifdef LANGUAGE_RO_RO
|
2015-04-10 10:34:05 +00:00
|
|
|
#include "lang/ro-RO.rc"
|
2012-02-27 22:46:20 +00:00
|
|
|
#endif
|
|
|
|
#ifdef LANGUAGE_RU_RU
|
2015-04-10 10:34:05 +00:00
|
|
|
#include "lang/ru-RU.rc"
|
2012-02-27 22:46:20 +00:00
|
|
|
#endif
|
|
|
|
#ifdef LANGUAGE_SL_SI
|
2015-04-10 10:34:05 +00:00
|
|
|
#include "lang/sl-SI.rc"
|
|
|
|
#endif
|
|
|
|
#ifdef LANGUAGE_SQ_AL
|
|
|
|
#include "lang/sq-AL.rc"
|
2012-02-27 22:46:20 +00:00
|
|
|
#endif
|
|
|
|
#ifdef LANGUAGE_SR_SP
|
2015-04-10 10:34:05 +00:00
|
|
|
#include "lang/sr-SP.rc"
|
2012-02-27 22:46:20 +00:00
|
|
|
#endif
|
|
|
|
#ifdef LANGUAGE_SV_SE
|
2015-04-10 10:34:05 +00:00
|
|
|
#include "lang/sv-SE.rc"
|
2013-12-04 18:11:32 +00:00
|
|
|
#endif
|
2015-08-09 07:44:57 +00:00
|
|
|
#ifdef LANGUAGE_TR_TR
|
|
|
|
#include "lang/tr-TR.rc"
|
|
|
|
#endif
|
2012-02-27 22:46:20 +00:00
|
|
|
#ifdef LANGUAGE_UK_UA
|
2015-04-10 10:34:05 +00:00
|
|
|
#include "lang/uk-UA.rc"
|
2012-02-27 22:46:20 +00:00
|
|
|
#endif
|
2015-11-30 19:01:56 +00:00
|
|
|
#ifdef LANGUAGE_ZH_CN
|
|
|
|
#include "lang/zh-CN.rc"
|
2015-12-02 22:44:03 +00:00
|
|
|
#endif
|
|
|
|
#ifdef LANGUAGE_ZH_TW
|
|
|
|
#include "lang/zh-TW.rc"
|
2015-11-30 19:01:56 +00:00
|
|
|
#endif
|