2005-10-08 19:30:16 +00:00
|
|
|
/*
|
2013-03-24 12:35:51 +00:00
|
|
|
* Resources for shlwapi
|
2005-10-08 19:30:16 +00:00
|
|
|
*
|
|
|
|
* Copyright 2004 Jon Griffiths
|
|
|
|
*
|
|
|
|
* 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
|
2007-08-07 07:27:43 +00:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2005-10-08 19:30:16 +00:00
|
|
|
*/
|
|
|
|
|
2013-12-27 13:34:32 +00:00
|
|
|
#include <winuser.h>
|
|
|
|
|
|
|
|
#include "resource.h"
|
2005-10-08 19:30:16 +00:00
|
|
|
|
|
|
|
#include "version.rc"
|
|
|
|
|
2015-04-19 01:38:13 +00:00
|
|
|
#include <reactos/manifest_dll.rc>
|
|
|
|
|
2015-01-03 10:34:01 +00:00
|
|
|
/* UTF-8 */
|
|
|
|
#pragma code_page(65001)
|
|
|
|
|
2012-02-27 22:46:20 +00:00
|
|
|
#ifdef LANGUAGE_DA_DK
|
2020-06-06 16:25:43 +00:00
|
|
|
#include "lang/da-DK.rc"
|
2012-02-27 22:46:20 +00:00
|
|
|
#endif
|
2015-01-03 10:34:01 +00:00
|
|
|
#ifdef LANGUAGE_DE_DE
|
2020-06-06 16:25:43 +00:00
|
|
|
#include "lang/de-DE.rc"
|
2015-01-03 10:34:01 +00:00
|
|
|
#endif
|
2012-02-27 22:46:20 +00:00
|
|
|
#ifdef LANGUAGE_EN_US
|
2020-06-06 16:25:43 +00:00
|
|
|
#include "lang/en-US.rc"
|
2012-02-27 22:46:20 +00:00
|
|
|
#endif
|
|
|
|
#ifdef LANGUAGE_ES_ES
|
2020-06-06 16:25:43 +00:00
|
|
|
#include "lang/es-ES.rc"
|
2012-02-27 22:46:20 +00:00
|
|
|
#endif
|
|
|
|
#ifdef LANGUAGE_FI_FI
|
2020-06-06 16:25:43 +00:00
|
|
|
#include "lang/fi-FI.rc"
|
2012-02-27 22:46:20 +00:00
|
|
|
#endif
|
|
|
|
#ifdef LANGUAGE_FR_FR
|
2020-06-06 16:25:43 +00:00
|
|
|
#include "lang/fr-FR.rc"
|
2012-02-27 22:46:20 +00:00
|
|
|
#endif
|
2013-02-21 17:36:53 +00:00
|
|
|
#ifdef LANGUAGE_HE_IL
|
2020-06-06 16:25:43 +00:00
|
|
|
#include "lang/he-IL.rc"
|
2013-02-21 17:36:53 +00:00
|
|
|
#endif
|
2012-02-27 22:46:20 +00:00
|
|
|
#ifdef LANGUAGE_HU_HU
|
2020-06-06 16:25:43 +00:00
|
|
|
#include "lang/hu-HU.rc"
|
2012-02-27 22:46:20 +00:00
|
|
|
#endif
|
2015-01-03 10:34:01 +00:00
|
|
|
#ifdef LANGUAGE_IT_IT
|
2020-06-06 16:25:43 +00:00
|
|
|
#include "lang/it-IT.rc"
|
2015-01-03 10:34:01 +00:00
|
|
|
#endif
|
2012-02-27 22:46:20 +00:00
|
|
|
#ifdef LANGUAGE_JA_JP
|
2020-06-06 16:25:43 +00:00
|
|
|
#include "lang/ja-JP.rc"
|
2012-02-27 22:46:20 +00:00
|
|
|
#endif
|
2015-01-03 10:34:01 +00:00
|
|
|
#ifdef LANGUAGE_KO_KR
|
2020-06-06 16:25:43 +00:00
|
|
|
#include "lang/ko-KR.rc"
|
2015-01-03 10:34:01 +00:00
|
|
|
#endif
|
2012-02-27 22:46:20 +00:00
|
|
|
#ifdef LANGUAGE_LT_LT
|
2020-06-06 16:25:43 +00:00
|
|
|
#include "lang/lt-LT.rc"
|
2012-02-27 22:46:20 +00:00
|
|
|
#endif
|
2015-01-03 10:34:01 +00:00
|
|
|
#ifdef LANGUAGE_NL_NL
|
2020-06-06 16:25:43 +00:00
|
|
|
#include "lang/nl-NL.rc"
|
2015-01-03 10:34:01 +00:00
|
|
|
#endif
|
|
|
|
#ifdef LANGUAGE_NO_NO
|
2020-06-06 16:25:43 +00:00
|
|
|
#include "lang/no-NO.rc"
|
2015-01-03 10:34:01 +00:00
|
|
|
#endif
|
|
|
|
#ifdef LANGUAGE_PL_PL
|
2020-06-06 16:25:43 +00:00
|
|
|
#include "lang/pl-PL.rc"
|
2015-01-03 10:34:01 +00:00
|
|
|
#endif
|
2012-02-27 22:46:20 +00:00
|
|
|
#ifdef LANGUAGE_PT_PT
|
2020-06-06 16:25:43 +00:00
|
|
|
#include "lang/pt-PT.rc"
|
2012-02-27 22:46:20 +00:00
|
|
|
#endif
|
|
|
|
#ifdef LANGUAGE_RO_RO
|
2020-06-06 16:25:43 +00:00
|
|
|
#include "lang/ro-RO.rc"
|
2012-02-27 22:46:20 +00:00
|
|
|
#endif
|
|
|
|
#ifdef LANGUAGE_RU_RU
|
2020-06-06 16:25:43 +00:00
|
|
|
#include "lang/ru-RU.rc"
|
2012-02-27 22:46:20 +00:00
|
|
|
#endif
|
2015-01-03 10:34:01 +00:00
|
|
|
#ifdef LANGUAGE_SK_SK
|
2020-06-06 16:25:43 +00:00
|
|
|
#include "lang/sk-SK.rc"
|
2015-01-03 10:34:01 +00:00
|
|
|
#endif
|
2012-02-27 22:46:20 +00:00
|
|
|
#ifdef LANGUAGE_SL_SI
|
2020-06-06 16:25:43 +00:00
|
|
|
#include "lang/sl-SI.rc"
|
2012-02-27 22:46:20 +00:00
|
|
|
#endif
|
2015-01-03 10:34:01 +00:00
|
|
|
#ifdef LANGUAGE_SQ_AL
|
2020-06-06 16:25:43 +00:00
|
|
|
#include "lang/sq-AL.rc"
|
2015-01-03 10:34:01 +00:00
|
|
|
#endif
|
|
|
|
#ifdef LANGUAGE_SV_SE
|
2020-06-06 16:25:43 +00:00
|
|
|
#include "lang/sv-SE.rc"
|
2015-01-03 10:34:01 +00:00
|
|
|
#endif
|
2014-06-30 12:00:07 +00:00
|
|
|
#ifdef LANGUAGE_TR_TR
|
2020-06-06 16:25:43 +00:00
|
|
|
#include "lang/tr-TR.rc"
|
2014-06-30 12:00:07 +00:00
|
|
|
#endif
|
2012-02-27 22:46:20 +00:00
|
|
|
#ifdef LANGUAGE_UK_UA
|
2020-06-06 16:25:43 +00:00
|
|
|
#include "lang/uk-UA.rc"
|
2012-02-27 22:46:20 +00:00
|
|
|
#endif
|
|
|
|
#ifdef LANGUAGE_ZH_CN
|
2020-06-06 16:25:43 +00:00
|
|
|
#include "lang/zh-CN.rc"
|
2012-02-27 22:46:20 +00:00
|
|
|
#endif
|
2020-11-21 17:03:37 +00:00
|
|
|
#ifdef LANGUAGE_ZH_TW
|
|
|
|
#include "lang/zh-TW.rc"
|
|
|
|
#endif
|