Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
2d170ae8
Commit
2d170ae8
authored
Jul 02, 2009
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Jul 02, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oledlg: Build language resource files separately.
Do not include them from an other rc file.
parent
6b6ff6af
Hide whitespace changes
Inline
Side-by-side
Showing
23 changed files
with
62 additions
and
64 deletions
+62
-64
Makefile.in
dlls/oledlg/Makefile.in
+21
-1
oledlg_Cs.rc
dlls/oledlg/oledlg_Cs.rc
+2
-0
oledlg_Da.rc
dlls/oledlg/oledlg_Da.rc
+2
-0
oledlg_De.rc
dlls/oledlg/oledlg_De.rc
+2
-0
oledlg_En.rc
dlls/oledlg/oledlg_En.rc
+2
-0
oledlg_Es.rc
dlls/oledlg/oledlg_Es.rc
+2
-0
oledlg_Fr.rc
dlls/oledlg/oledlg_Fr.rc
+1
-0
oledlg_Hu.rc
dlls/oledlg/oledlg_Hu.rc
+2
-0
oledlg_It.rc
dlls/oledlg/oledlg_It.rc
+2
-0
oledlg_Ja.rc
dlls/oledlg/oledlg_Ja.rc
+2
-2
oledlg_Ko.rc
dlls/oledlg/oledlg_Ko.rc
+2
-0
oledlg_Lt.rc
dlls/oledlg/oledlg_Lt.rc
+2
-2
oledlg_Nl.rc
dlls/oledlg/oledlg_Nl.rc
+2
-0
oledlg_No.rc
dlls/oledlg/oledlg_No.rc
+2
-0
oledlg_Pl.rc
dlls/oledlg/oledlg_Pl.rc
+2
-0
oledlg_Pt.rc
dlls/oledlg/oledlg_Pt.rc
+2
-0
oledlg_Ru.rc
dlls/oledlg/oledlg_Ru.rc
+2
-0
oledlg_Si.rc
dlls/oledlg/oledlg_Si.rc
+2
-2
oledlg_Sv.rc
dlls/oledlg/oledlg_Sv.rc
+2
-0
oledlg_Tr.rc
dlls/oledlg/oledlg_Tr.rc
+2
-0
oledlg_Zh.rc
dlls/oledlg/oledlg_Zh.rc
+2
-2
resource.h
dlls/oledlg/resource.h
+2
-0
rsrc.rc
dlls/oledlg/rsrc.rc
+0
-55
No files found.
dlls/oledlg/Makefile.in
View file @
2d170ae8
...
...
@@ -11,7 +11,27 @@ C_SRCS = \
oledlg_main.c
\
pastespl.c
RC_SRCS
=
rsrc.rc
RC_SRCS
=
\
oledlg_Cs.rc
\
oledlg_Da.rc
\
oledlg_De.rc
\
oledlg_En.rc
\
oledlg_Es.rc
\
oledlg_Fr.rc
\
oledlg_Hu.rc
\
oledlg_It.rc
\
oledlg_Ja.rc
\
oledlg_Ko.rc
\
oledlg_Lt.rc
\
oledlg_Nl.rc
\
oledlg_No.rc
\
oledlg_Pl.rc
\
oledlg_Pt.rc
\
oledlg_Ru.rc
\
oledlg_Si.rc
\
oledlg_Sv.rc
\
oledlg_Tr.rc
\
oledlg_Zh.rc
@MAKE_DLL_RULES@
...
...
dlls/oledlg/oledlg_Cs.rc
View file @
2d170ae8
...
...
@@ -19,6 +19,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resource.h"
LANGUAGE LANG_CZECH, SUBLANG_DEFAULT
/* Czech strings in CP1250 */
...
...
dlls/oledlg/oledlg_Da.rc
View file @
2d170ae8
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resource.h"
LANGUAGE LANG_DANISH, SUBLANG_DEFAULT
UIINSERTOBJECT DIALOG DISCARDABLE 0, 0, 294, 151
...
...
dlls/oledlg/oledlg_De.rc
View file @
2d170ae8
...
...
@@ -16,6 +16,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resource.h"
LANGUAGE LANG_GERMAN, SUBLANG_NEUTRAL
UIINSERTOBJECT DIALOG DISCARDABLE 0, 0, 294, 151
...
...
dlls/oledlg/oledlg_En.rc
View file @
2d170ae8
...
...
@@ -16,6 +16,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resource.h"
LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
UIINSERTOBJECT DIALOG DISCARDABLE 0, 0, 294, 151
...
...
dlls/oledlg/oledlg_Es.rc
View file @
2d170ae8
...
...
@@ -16,6 +16,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resource.h"
LANGUAGE LANG_SPANISH, SUBLANG_NEUTRAL
UIINSERTOBJECT DIALOG DISCARDABLE 0, 0, 294, 151
...
...
dlls/oledlg/oledlg_Fr.rc
View file @
2d170ae8
...
...
@@ -19,6 +19,7 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resource.h"
LANGUAGE LANG_FRENCH, SUBLANG_NEUTRAL
...
...
dlls/oledlg/oledlg_Hu.rc
View file @
2d170ae8
...
...
@@ -16,6 +16,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resource.h"
LANGUAGE LANG_HUNGARIAN, SUBLANG_DEFAULT
UIINSERTOBJECT DIALOG DISCARDABLE 0, 0, 294, 151
...
...
dlls/oledlg/oledlg_It.rc
View file @
2d170ae8
...
...
@@ -17,6 +17,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resource.h"
LANGUAGE LANG_ITALIAN, SUBLANG_NEUTRAL
UIINSERTOBJECT DIALOG DISCARDABLE 0, 0, 294, 151
...
...
dlls/oledlg/oledlg_Ja.rc
View file @
2d170ae8
...
...
@@ -16,6 +16,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resource.h"
/* UTF-8 */
#pragma code_page(65001)
...
...
@@ -56,5 +58,3 @@ STRINGTABLE DISCARDABLE
IDS_NOTOLEMOD "ファイルは有効なOLEモジュールではないようです。OLEコントロールを登録できません。"
IDS_NOTOLEMODCAPTION "コントロールを追加"
}
#pragma code_page(default)
dlls/oledlg/oledlg_Ko.rc
View file @
2d170ae8
...
...
@@ -16,6 +16,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resource.h"
LANGUAGE LANG_KOREAN, SUBLANG_DEFAULT
UIINSERTOBJECT DIALOG DISCARDABLE 0, 0, 294, 151
...
...
dlls/oledlg/oledlg_Lt.rc
View file @
2d170ae8
...
...
@@ -16,6 +16,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resource.h"
/* UTF-8 */
#pragma code_page(65001)
...
...
@@ -96,5 +98,3 @@ STRINGTABLE DISCARDABLE
IDS_PS_UNKNOWN_SRC "Nežinomas šaltinis"
IDS_PS_UNKNOWN_APP "programa, kuri jį sukūrė"
}
#pragma code_page(default)
dlls/oledlg/oledlg_Nl.rc
View file @
2d170ae8
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resource.h"
LANGUAGE LANG_DUTCH, SUBLANG_NEUTRAL
UIINSERTOBJECT DIALOG DISCARDABLE 0, 0, 294, 151
...
...
dlls/oledlg/oledlg_No.rc
View file @
2d170ae8
...
...
@@ -16,6 +16,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resource.h"
LANGUAGE LANG_NORWEGIAN, SUBLANG_NORWEGIAN_BOKMAL
UIINSERTOBJECT DIALOG DISCARDABLE 0, 0, 294, 151
...
...
dlls/oledlg/oledlg_Pl.rc
View file @
2d170ae8
...
...
@@ -17,6 +17,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resource.h"
LANGUAGE LANG_POLISH, SUBLANG_DEFAULT
UIINSERTOBJECT DIALOG DISCARDABLE 0, 0, 310, 151
...
...
dlls/oledlg/oledlg_Pt.rc
View file @
2d170ae8
...
...
@@ -17,6 +17,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resource.h"
LANGUAGE LANG_PORTUGUESE, SUBLANG_PORTUGUESE_BRAZILIAN
UIINSERTOBJECT DIALOG DISCARDABLE 0, 0, 294, 151
...
...
dlls/oledlg/oledlg_Ru.rc
View file @
2d170ae8
...
...
@@ -16,6 +16,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resource.h"
LANGUAGE LANG_RUSSIAN, SUBLANG_DEFAULT
UIINSERTOBJECT DIALOG DISCARDABLE 0, 0, 294, 151
...
...
dlls/oledlg/oledlg_Si.rc
View file @
2d170ae8
...
...
@@ -16,6 +16,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resource.h"
#pragma code_page(65001)
LANGUAGE LANG_SLOVENIAN, SUBLANG_DEFAULT
...
...
@@ -95,5 +97,3 @@ STRINGTABLE DISCARDABLE
IDS_PS_UNKNOWN_SRC "Neznan vir"
IDS_PS_UNKNOWN_APP "Neznan program"
}
#pragma code_page(default)
dlls/oledlg/oledlg_Sv.rc
View file @
2d170ae8
...
...
@@ -16,6 +16,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resource.h"
LANGUAGE LANG_SWEDISH, SUBLANG_NEUTRAL
UIINSERTOBJECT DIALOG DISCARDABLE 0, 0, 294, 151
...
...
dlls/oledlg/oledlg_Tr.rc
View file @
2d170ae8
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resource.h"
LANGUAGE LANG_TURKISH, SUBLANG_DEFAULT
UIINSERTOBJECT DIALOG DISCARDABLE 0, 0, 294, 151
...
...
dlls/oledlg/oledlg_Zh.rc
View file @
2d170ae8
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resource.h"
/* Chinese text is encoded in UTF-8 */
#pragma code_page(65001)
...
...
@@ -176,5 +178,3 @@ STRINGTABLE DISCARDABLE
IDS_PS_UNKNOWN_SRC "不明來源"
IDS_PS_UNKNOWN_APP "不明應用程式"
}
#pragma code_page(default)
dlls/oledlg/resource.h
View file @
2d170ae8
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include <oledlg.h>
#define IDS_RESULTOBJDESC 101
#define IDS_RESULTFILEOBJDESC 102
#define IDS_BROWSE 103
...
...
dlls/oledlg/rsrc.rc
deleted
100644 → 0
View file @
6b6ff6af
/*
* Top level resource file for OLE Dialogs
*
* Copyright 2003 Ulrich Czekalla 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 "windef.h"
#include "winbase.h"
#include "winuser.h"
#include "winnls.h"
#include "oledlg.h"
#include "resource.h"
/*
* Everything specific to any language goes
* in one of the specific files.
* Note that you can and may override resources
* which also have a neutral version. This is to
* get localized bitmaps for example.
*/
#include "oledlg_Cs.rc"
#include "oledlg_Da.rc"
#include "oledlg_De.rc"
#include "oledlg_En.rc"
#include "oledlg_Es.rc"
#include "oledlg_Fr.rc"
#include "oledlg_Hu.rc"
#include "oledlg_It.rc"
#include "oledlg_Ja.rc"
#include "oledlg_Ko.rc"
#include "oledlg_Lt.rc"
#include "oledlg_Nl.rc"
#include "oledlg_No.rc"
#include "oledlg_Pl.rc"
#include "oledlg_Pt.rc"
#include "oledlg_Ru.rc"
#include "oledlg_Si.rc"
#include "oledlg_Sv.rc"
#include "oledlg_Tr.rc"
#include "oledlg_Zh.rc"
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment