2013-04-18 21:46:58 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2011 Jacek Caban for CodeWeavers
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "resource.h"
|
|
|
|
|
2015-04-19 01:38:13 +00:00
|
|
|
#include <reactos/manifest_dll.rc>
|
2013-04-18 21:46:58 +00:00
|
|
|
|
2015-04-16 17:18:48 +00:00
|
|
|
/* UTF-8 */
|
|
|
|
#pragma code_page(65001)
|
2013-04-18 21:46:58 +00:00
|
|
|
|
2015-04-16 17:18:48 +00:00
|
|
|
#ifdef LANGUAGE_CS_CZ
|
|
|
|
#include "lang/cs-CZ.rc"
|
|
|
|
#endif
|
|
|
|
#ifdef LANGUAGE_DE_DE
|
|
|
|
#include "lang/de-DE.rc"
|
|
|
|
#endif
|
|
|
|
#ifdef LANGUAGE_EN_US
|
|
|
|
#include "lang/en-US.rc"
|
|
|
|
#endif
|
|
|
|
#ifdef LANGUAGE_ES_ES
|
|
|
|
#include "lang/es-ES.rc"
|
|
|
|
#endif
|
2015-04-18 09:50:23 +00:00
|
|
|
#ifdef LANGUAGE_FR_FR
|
|
|
|
#include "lang/fr-FR.rc"
|
|
|
|
#endif
|
2020-01-14 17:52:38 +00:00
|
|
|
#ifdef LANGUAGE_HU_HU
|
|
|
|
#include "lang/hu-HU.rc"
|
|
|
|
#endif
|
2019-06-20 14:48:22 +00:00
|
|
|
#ifdef LANGUAGE_ID_ID
|
|
|
|
#include "lang/id-ID.rc"
|
|
|
|
#endif
|
2015-04-16 17:18:48 +00:00
|
|
|
#ifdef LANGUAGE_IT_IT
|
|
|
|
#include "lang/it-IT.rc"
|
|
|
|
#endif
|
[TRANSLATIONS]
Japanese translations for the following libraries: browseui, credui, ieframe,
iernonce, msports, msvfw32, mycomput, oleacc, samsrv, serialui, shimgvw, and
wldap32.
Patch by Katayama Hirofumi MZ. Thanks!
CORE-11884 #resolve #comment Committed in revision r72452.
svn path=/trunk/; revision=72452
2016-08-25 03:44:29 +00:00
|
|
|
#ifdef LANGUAGE_JA_JP
|
|
|
|
#include "lang/ja-JP.rc"
|
|
|
|
#endif
|
2015-08-09 07:28:19 +00:00
|
|
|
#ifdef LANGUAGE_PL_PL
|
|
|
|
#include "lang/pl-PL.rc"
|
|
|
|
#endif
|
2020-03-06 18:40:03 +00:00
|
|
|
#ifdef LANGUAGE_PT_PT
|
|
|
|
#include "lang/pt-PT.rc"
|
|
|
|
#endif
|
2015-04-16 17:18:48 +00:00
|
|
|
#ifdef LANGUAGE_RO_RO
|
|
|
|
#include "lang/ro-RO.rc"
|
2015-03-19 10:28:41 +00:00
|
|
|
#endif
|
2015-09-08 15:48:18 +00:00
|
|
|
#ifdef LANGUAGE_RU_RU
|
|
|
|
#include "lang/ru-RU.rc"
|
|
|
|
#endif
|
2015-05-26 18:01:39 +00:00
|
|
|
#ifdef LANGUAGE_TR_TR
|
|
|
|
#include "lang/tr-TR.rc"
|
|
|
|
#endif
|
2015-06-09 16:21:25 +00:00
|
|
|
#ifdef LANGUAGE_ZH_CN
|
|
|
|
#include "lang/zh-CN.rc"
|
|
|
|
#endif
|
2015-12-17 11:10:00 +00:00
|
|
|
#ifdef LANGUAGE_ZH_TW
|
|
|
|
#include "lang/zh-TW.rc"
|
|
|
|
#endif
|
|
|
|
|
2013-04-18 21:46:58 +00:00
|
|
|
|
|
|
|
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
|
|
|
|
|
|
|
|
#define WINE_FILEDESCRIPTION_STR "Internet Browser"
|
|
|
|
#define WINE_FILENAME_STR "ieframe.dll"
|
2015-03-20 11:01:39 +00:00
|
|
|
#define WINE_FILEVERSION 8,0,6001,18702
|
|
|
|
#define WINE_FILEVERSION_STR "8.0.6001.18702"
|
|
|
|
#define WINE_PRODUCTVERSION 8,0,6001,18702
|
|
|
|
#define WINE_PRODUCTVERSION_STR "8.0.6001.18702"
|
2013-04-18 21:46:58 +00:00
|
|
|
#define WINE_EXTRAVALUES VALUE "OLESelfRegister",""
|
|
|
|
|
2018-03-15 11:26:26 +00:00
|
|
|
#include "wine/wine_common_ver.rc"
|
2013-04-18 21:46:58 +00:00
|
|
|
|
|
|
|
/* @makedep: ietoolbar.bmp */
|
2015-06-26 17:33:45 +00:00
|
|
|
IDB_IETOOLBAR BITMAP "resources/ietoolbar.bmp"
|
2015-03-19 10:28:41 +00:00
|
|
|
|
|
|
|
#ifdef __REACTOS__
|
|
|
|
IDC_PAGEICO ICON "resources/pages.ico"
|
|
|
|
#endif
|
2013-04-18 21:46:58 +00:00
|
|
|
|
|
|
|
/* @makedep: ieframe.rgs */
|
2015-06-26 17:33:45 +00:00
|
|
|
1 WINE_REGISTRY "ieframe.rgs"
|
2013-04-18 21:46:58 +00:00
|
|
|
|
2013-11-28 22:18:05 +00:00
|
|
|
2 WINE_REGISTRY "ieframe_v1.rgs"
|
|
|
|
3 WINE_REGISTRY "ieframe_v1.tlb.rgs"
|
2013-04-18 21:46:58 +00:00
|
|
|
|
2013-11-28 22:18:05 +00:00
|
|
|
1 TYPELIB "ieframe_v1.tlb"
|