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
80f4a9b7
Commit
80f4a9b7
authored
Jul 02, 2009
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Jul 02, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
localui: Build language resource files separately.
Do not include them from an other rc file.
parent
aca9acf1
Hide whitespace changes
Inline
Side-by-side
Showing
18 changed files
with
50 additions
and
32 deletions
+50
-32
Makefile.in
dlls/localui/Makefile.in
+17
-1
localui.h
dlls/localui/localui.h
+2
-0
localui.rc
dlls/localui/localui.rc
+0
-21
ui_Da.rc
dlls/localui/ui_Da.rc
+2
-0
ui_De.rc
dlls/localui/ui_De.rc
+2
-0
ui_En.rc
dlls/localui/ui_En.rc
+2
-0
ui_Fr.rc
dlls/localui/ui_Fr.rc
+3
-2
ui_Ko.rc
dlls/localui/ui_Ko.rc
+2
-0
ui_Lt.rc
dlls/localui/ui_Lt.rc
+2
-2
ui_Nl.rc
dlls/localui/ui_Nl.rc
+2
-0
ui_No.rc
dlls/localui/ui_No.rc
+2
-0
ui_Pl.rc
dlls/localui/ui_Pl.rc
+2
-0
ui_Pt.rc
dlls/localui/ui_Pt.rc
+2
-0
ui_Ro.rc
dlls/localui/ui_Ro.rc
+2
-2
ui_Ru.rc
dlls/localui/ui_Ru.rc
+2
-0
ui_Si.rc
dlls/localui/ui_Si.rc
+2
-2
ui_Sv.rc
dlls/localui/ui_Sv.rc
+2
-0
ui_Zh.rc
dlls/localui/ui_Zh.rc
+2
-2
No files found.
dlls/localui/Makefile.in
View file @
80f4a9b7
...
...
@@ -8,7 +8,23 @@ IMPORTS = winspool user32 kernel32
C_SRCS
=
\
localui.c
RC_SRCS
=
localui.rc
RC_SRCS
=
\
localui.rc
\
ui_Da.rc
\
ui_De.rc
\
ui_En.rc
\
ui_Fr.rc
\
ui_Ko.rc
\
ui_Lt.rc
\
ui_Nl.rc
\
ui_No.rc
\
ui_Pl.rc
\
ui_Pt.rc
\
ui_Ro.rc
\
ui_Ru.rc
\
ui_Si.rc
\
ui_Sv.rc
\
ui_Zh.rc
@MAKE_DLL_RULES@
...
...
dlls/localui/localui.h
View file @
80f4a9b7
...
...
@@ -21,6 +21,8 @@
#ifndef __WINE_LOCALUI__
#define __WINE_LOCALUI__
#include <windef.h>
#include <winuser.h>
/* ## Resource-ID ## */
#define ADDPORT_DIALOG 100
...
...
dlls/localui/localui.rc
View file @
80f4a9b7
...
...
@@ -19,10 +19,6 @@
*
*/
#include "windef.h"
#include "winbase.h"
#include "winuser.h"
#include "winver.h"
#include "localui.h"
#define WINE_FILENAME_STR "localui.dll"
...
...
@@ -36,20 +32,3 @@
#define WINE_PRODUCTVERSION_STR "5.1.2600.2180"
#include "wine/wine_common_ver.rc"
#include "ui_Da.rc"
#include "ui_De.rc"
#include "ui_En.rc"
#include "ui_Fr.rc"
#include "ui_Ko.rc"
#include "ui_Lt.rc"
#include "ui_Nl.rc"
#include "ui_No.rc"
#include "ui_Pl.rc"
#include "ui_Pt.rc"
#include "ui_Ro.rc"
#include "ui_Ru.rc"
#include "ui_Si.rc"
#include "ui_Sv.rc"
#include "ui_Zh.rc"
dlls/localui/ui_Da.rc
View file @
80f4a9b7
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "localui.h"
LANGUAGE LANG_DANISH, SUBLANG_DEFAULT
ADDPORT_DIALOG DIALOG LOADONCALL MOVEABLE DISCARDABLE 6, 18, 245, 47
...
...
dlls/localui/ui_De.rc
View file @
80f4a9b7
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "localui.h"
LANGUAGE LANG_GERMAN, SUBLANG_NEUTRAL
ADDPORT_DIALOG DIALOG LOADONCALL MOVEABLE DISCARDABLE 6, 18, 245, 47
...
...
dlls/localui/ui_En.rc
View file @
80f4a9b7
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "localui.h"
LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
ADDPORT_DIALOG DIALOG LOADONCALL MOVEABLE DISCARDABLE 6, 18, 245, 47
...
...
dlls/localui/ui_Fr.rc
View file @
80f4a9b7
...
...
@@ -17,6 +17,9 @@
* 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 "localui.h"
#pragma code_page(65001)
LANGUAGE LANG_FRENCH, SUBLANG_NEUTRAL
...
...
@@ -53,5 +56,3 @@ STRINGTABLE DISCARDABLE
IDS_PORTEXISTS "Le port %s existe déjà"
IDS_NOTHINGTOCONFIG "Ce port n'a pas d'options de configuration"
}
#pragma code_page(default)
dlls/localui/ui_Ko.rc
View file @
80f4a9b7
...
...
@@ -19,6 +19,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "localui.h"
LANGUAGE LANG_KOREAN, SUBLANG_DEFAULT
ADDPORT_DIALOG DIALOG LOADONCALL MOVEABLE DISCARDABLE 6, 18, 245, 47
...
...
dlls/localui/ui_Lt.rc
View file @
80f4a9b7
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "localui.h"
/* UTF-8 */
#pragma code_page(65001)
...
...
@@ -55,5 +57,3 @@ STRINGTABLE DISCARDABLE
IDS_PORTEXISTS "Prievadas %s jau egzistuoja"
IDS_NOTHINGTOCONFIG "Šis prievadas neturi parinkčių konfigūravimui"
}
#pragma code_page(default)
dlls/localui/ui_Nl.rc
View file @
80f4a9b7
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "localui.h"
LANGUAGE LANG_DUTCH, SUBLANG_NEUTRAL
ADDPORT_DIALOG DIALOG LOADONCALL MOVEABLE DISCARDABLE 6, 18, 245, 47
...
...
dlls/localui/ui_No.rc
View file @
80f4a9b7
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "localui.h"
LANGUAGE LANG_NORWEGIAN, SUBLANG_NORWEGIAN_BOKMAL
ADDPORT_DIALOG DIALOG LOADONCALL MOVEABLE DISCARDABLE 6, 18, 245, 47
...
...
dlls/localui/ui_Pl.rc
View file @
80f4a9b7
...
...
@@ -19,6 +19,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "localui.h"
LANGUAGE LANG_POLISH, SUBLANG_DEFAULT
ADDPORT_DIALOG DIALOG LOADONCALL MOVEABLE DISCARDABLE 6, 18, 245, 47
...
...
dlls/localui/ui_Pt.rc
View file @
80f4a9b7
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "localui.h"
LANGUAGE LANG_PORTUGUESE, SUBLANG_NEUTRAL
ADDPORT_DIALOG DIALOG LOADONCALL MOVEABLE DISCARDABLE 6, 18, 245, 47
...
...
dlls/localui/ui_Ro.rc
View file @
80f4a9b7
...
...
@@ -17,6 +17,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "localui.h"
LANGUAGE LANG_ROMANIAN, SUBLANG_NEUTRAL
#pragma code_page(65001)
...
...
@@ -53,5 +55,3 @@ STRINGTABLE DISCARDABLE
IDS_PORTEXISTS "Portul %s existsă deja"
IDS_NOTHINGTOCONFIG "Acest port nu are opțiuni de configurat"
}
#pragma code_page(default)
dlls/localui/ui_Ru.rc
View file @
80f4a9b7
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "localui.h"
LANGUAGE LANG_RUSSIAN, SUBLANG_DEFAULT
ADDPORT_DIALOG DIALOG LOADONCALL MOVEABLE DISCARDABLE 6, 18, 245, 47
...
...
dlls/localui/ui_Si.rc
View file @
80f4a9b7
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "localui.h"
#pragma code_page(65001)
LANGUAGE LANG_SLOVENIAN, SUBLANG_DEFAULT
...
...
@@ -54,5 +56,3 @@ STRINGTABLE DISCARDABLE
IDS_PORTEXISTS "Vrata z imenom %s že obstajajo"
IDS_NOTHINGTOCONFIG "Ta vrata nimajo možnosti nastavitve"
}
#pragma code_page(default)
dlls/localui/ui_Sv.rc
View file @
80f4a9b7
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "localui.h"
LANGUAGE LANG_SWEDISH, SUBLANG_NEUTRAL
ADDPORT_DIALOG DIALOG LOADONCALL MOVEABLE DISCARDABLE 6, 18, 245, 47
...
...
dlls/localui/ui_Zh.rc
View file @
80f4a9b7
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "localui.h"
/* Chinese text is encoded in UTF-8 */
#pragma code_page(65001)
...
...
@@ -90,5 +92,3 @@ STRINGTABLE DISCARDABLE
IDS_PORTEXISTS "端口 %s 已經存在"
IDS_NOTHINGTOCONFIG "這個端口沒有可設定選項"
}
#pragma code_page(default)
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