2009-04-10 19:03:02 +00:00
|
|
|
/*
|
2009-08-17 01:42:32 +00:00
|
|
|
* Copyright 2007 Mikolaj Zalewski
|
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
|
|
|
|
*/
|
|
|
|
|
2013-01-24 23:00:42 +00:00
|
|
|
#include <windef.h>
|
2015-03-20 10:54:01 +00:00
|
|
|
#include <winuser.h>
|
2013-01-24 23:00:42 +00:00
|
|
|
|
2009-08-17 01:42:32 +00:00
|
|
|
#include "resources.h"
|
2009-04-10 19:03:02 +00:00
|
|
|
|
2013-09-17 15:21:29 +00:00
|
|
|
#include <reactos/manifest_exe.rc>
|
2013-09-16 20:52:16 +00:00
|
|
|
|
2009-08-17 01:42:32 +00:00
|
|
|
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
|
2009-04-10 19:03:02 +00:00
|
|
|
|
2016-06-10 00:14:36 +00:00
|
|
|
1 ICON "write.ico"
|
|
|
|
|
2010-03-06 16:04:27 +00:00
|
|
|
/* UTF-8 */
|
2015-01-03 09:53:01 +00:00
|
|
|
#pragma code_page(65001)
|
|
|
|
|
2012-02-27 22:46:20 +00:00
|
|
|
#ifdef LANGUAGE_BG_BG
|
2013-08-23 15:21:10 +00:00
|
|
|
#include "lang/Bg.rc"
|
2012-02-27 22:46:20 +00:00
|
|
|
#endif
|
2015-01-03 09:53:01 +00:00
|
|
|
#ifdef LANGUAGE_DA_DK
|
|
|
|
#include "lang/Da.rc"
|
|
|
|
#endif
|
2012-02-27 22:46:20 +00:00
|
|
|
#ifdef LANGUAGE_DE_DE
|
2013-08-23 15:21:10 +00:00
|
|
|
#include "lang/De.rc"
|
2012-02-27 22:46:20 +00:00
|
|
|
#endif
|
2015-01-03 09:53:01 +00:00
|
|
|
#ifdef LANGUAGE_EN_US
|
|
|
|
#include "lang/En.rc"
|
|
|
|
#endif
|
2012-02-27 22:46:20 +00:00
|
|
|
#ifdef LANGUAGE_ES_ES
|
2013-08-23 15:21:10 +00:00
|
|
|
#include "lang/Es.rc"
|
2012-02-27 22:46:20 +00:00
|
|
|
#endif
|
|
|
|
#ifdef LANGUAGE_FR_FR
|
2013-08-23 15:21:10 +00:00
|
|
|
#include "lang/Fr.rc"
|
2012-02-27 22:46:20 +00:00
|
|
|
#endif
|
2013-01-22 22:46:45 +00:00
|
|
|
#ifdef LANGUAGE_HE_IL
|
2013-08-23 15:21:10 +00:00
|
|
|
#include "lang/He.rc"
|
2013-01-22 22:46:45 +00:00
|
|
|
#endif
|
2012-02-27 22:46:20 +00:00
|
|
|
#ifdef LANGUAGE_IT_IT
|
2013-08-23 15:21:10 +00:00
|
|
|
#include "lang/It.rc"
|
2012-02-27 22:46:20 +00:00
|
|
|
#endif
|
|
|
|
#ifdef LANGUAGE_JA_JP
|
2013-08-23 15:21:10 +00:00
|
|
|
#include "lang/Ja.rc"
|
2012-02-27 22:46:20 +00:00
|
|
|
#endif
|
2015-01-03 09:53:01 +00:00
|
|
|
#ifdef LANGUAGE_KO_KR
|
|
|
|
#include "lang/Ko.rc"
|
|
|
|
#endif
|
2012-02-27 22:46:20 +00:00
|
|
|
#ifdef LANGUAGE_LT_LT
|
2013-08-23 15:21:10 +00:00
|
|
|
#include "lang/Lt.rc"
|
2012-02-27 22:46:20 +00:00
|
|
|
#endif
|
2015-01-03 09:53:01 +00:00
|
|
|
#ifdef LANGUAGE_NL_NL
|
|
|
|
#include "lang/Nl.rc"
|
|
|
|
#endif
|
|
|
|
#ifdef LANGUAGE_NO_NO
|
|
|
|
#include "lang/No.rc"
|
|
|
|
#endif
|
|
|
|
#ifdef LANGUAGE_PL_PL
|
|
|
|
#include "lang/Pl.rc"
|
|
|
|
#endif
|
|
|
|
#ifdef LANGUAGE_PT_PT
|
|
|
|
#include "lang/Pt.rc"
|
|
|
|
#endif
|
2012-02-27 22:46:20 +00:00
|
|
|
#ifdef LANGUAGE_RO_RO
|
2013-08-23 15:21:10 +00:00
|
|
|
#include "lang/Ro.rc"
|
2012-02-27 22:46:20 +00:00
|
|
|
#endif
|
|
|
|
#ifdef LANGUAGE_RU_RU
|
2013-08-23 15:21:10 +00:00
|
|
|
#include "lang/Ru.rc"
|
2012-02-27 22:46:20 +00:00
|
|
|
#endif
|
|
|
|
#ifdef LANGUAGE_SL_SI
|
2013-08-23 15:21:10 +00:00
|
|
|
#include "lang/Si.rc"
|
2012-02-27 22:46:20 +00:00
|
|
|
#endif
|
2014-04-10 13:33:27 +00:00
|
|
|
#ifdef LANGUAGE_SQ_AL
|
|
|
|
#include "lang/Sq.rc"
|
|
|
|
#endif
|
2012-02-27 22:46:20 +00:00
|
|
|
#ifdef LANGUAGE_SR_SP
|
2013-08-23 15:21:10 +00:00
|
|
|
#include "lang/Sr.rc"
|
2012-02-27 22:46:20 +00:00
|
|
|
#endif
|
2015-01-03 09:53:01 +00:00
|
|
|
#ifdef LANGUAGE_SV_SE
|
|
|
|
#include "lang/Sv.rc"
|
|
|
|
#endif
|
2013-03-23 05:11:52 +00:00
|
|
|
#ifdef LANGUAGE_TR_TR
|
2013-08-23 15:21:10 +00:00
|
|
|
#include "lang/Tr.rc"
|
2013-03-23 05:11:52 +00:00
|
|
|
#endif
|
2012-02-27 22:46:20 +00:00
|
|
|
#ifdef LANGUAGE_UK_UA
|
2013-08-23 15:21:10 +00:00
|
|
|
#include "lang/Uk.rc"
|
2012-02-27 22:46:20 +00:00
|
|
|
#endif
|
|
|
|
#ifdef LANGUAGE_ZH_CN
|
2013-08-23 15:21:10 +00:00
|
|
|
#include "lang/Zh.rc"
|
2012-02-27 22:46:20 +00:00
|
|
|
#endif
|