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
91d72b99
Commit
91d72b99
authored
Mar 10, 1999
by
Alexander Kanavin
Committed by
Alexandre Julliard
Mar 10, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added support for Russian language.
parent
a54084a0
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
15 additions
and
5 deletions
+15
-5
languages
documentation/languages
+1
-1
wine.man
documentation/wine.man
+1
-1
options.h
include/options.h
+3
-1
main.c
misc/main.c
+2
-1
ole2nls.c
ole/ole2nls.c
+4
-0
Makefile.in
resources/Makefile.in
+1
-0
sysres.c
resources/sysres.c
+3
-1
sysres_Ru.rc
resources/sysres_Ru.rc
+0
-0
No files found.
documentation/languages
View file @
91d72b99
...
...
@@ -4,7 +4,7 @@ This file documents the necessary procedure for adding a new language
to the list of languages that Wine can display system menus and forms
in. Currently at least the following languages are still missing:
Bulgarian, Chinese, Greek, Icelandic, Japanese, Romanian,
Russian,
Croatian, Slovak, Turkish, and Slovanian.
Croatian, Slovak, Turkish, and Slovanian.
To add a new language you need to be able to translate the relatively
few texts, of course. You will need very little knowledge of
...
...
documentation/wine.man
View file @
91d72b99
...
...
@@ -189,7 +189,7 @@ Start as an icon
.I -language xx
Set the language to
.I xx
(one of En, Es, De, No, Fr, Fi, Da, Cz, Eo, It, Ko, Hu, Pl, Po, Sw, Ca)
(one of En, Es, De, No, Fr, Fi, Da, Cz, Eo, It, Ko, Hu, Pl, Po, Sw, Ca
, Ru
)
.TP
.I -managed
Create each top-level window as a properly managed X window
...
...
include/options.h
View file @
91d72b99
...
...
@@ -32,7 +32,9 @@ typedef enum
LANG_Pt
,
/* Portuguese */
LANG_Sv
,
/* Swedish */
LANG_Ca
,
/* Catalan */
LANG_Nl
/* Dutch */
LANG_Nl
,
/* Dutch */
LANG_Ru
/* Russian */
}
WINE_LANGUAGE
;
typedef
struct
...
...
misc/main.c
View file @
91d72b99
...
...
@@ -61,6 +61,7 @@ const WINE_LANGUAGE_DEF Languages[] =
{
"Sv"
,
0x041d
},
/* LANG_Sv */
{
"Ca"
,
0x0403
},
/* LANG_Ca */
{
"Nl"
,
0x0413
},
/* LANG_Nl */
{
"Ru"
,
0x0419
},
/* LANG_Ru */
{
NULL
,
0
}
};
...
...
@@ -114,7 +115,7 @@ static char szUsage[] =
" -help Show this help message
\n
"
" -iconic Start as an icon
\n
"
" -language xx Set the language (one of Ca,Cs,Da,De,En,Eo,Es,Fi,Fr,Hu,It,
\n
"
" Ko,Nl,No,Pl,Pt,Sv)
\n
"
" Ko,Nl,No,Pl,Pt,Sv
,Ru
)
\n
"
" -managed Allow the window manager to manage created windows
\n
"
" -mode mode Start Wine in a particular mode (standard or enhanced)
\n
"
" -name name Set the application name
\n
"
...
...
ole/ole2nls.c
View file @
91d72b99
...
...
@@ -236,6 +236,10 @@ LANG_BEGIN (LANG_THAI, SUBLANG_DEFAULT) /*0x41e*/
#include "nls/tha.nls"
LANG_END
LANG_BEGIN
(
LANG_RUSSIAN
,
SUBLANG_DEFAULT
)
/*0x419*/
#include "nls/rus.nls"
LANG_END
LANG_BEGIN
(
LANG_ESPERANTO
,
SUBLANG_DEFAULT
)
/*0x048f*/
#include "nls/esperanto.nls"
LANG_END
...
...
resources/Makefile.in
View file @
91d72b99
...
...
@@ -24,6 +24,7 @@ RC_SRCS = \
sysres_No.rc
\
sysres_Pl.rc
\
sysres_Po.rc
\
sysres_Ru.rc
\
sysres_Sw.rc
C_SRCS
=
sysres.c
...
...
resources/sysres.c
View file @
91d72b99
...
...
@@ -28,6 +28,7 @@ extern const wrc_resource32_t * const sysres_Po_ResTable[];
extern
const
wrc_resource32_t
*
const
sysres_Sw_ResTable
[];
extern
const
wrc_resource32_t
*
const
sysres_Ca_ResTable
[];
extern
const
wrc_resource32_t
*
const
sysres_Nl_ResTable
[];
extern
const
wrc_resource32_t
*
const
sysres_Ru_ResTable
[];
static
const
wrc_resource32_t
*
const
*
SYSRES_Resources
[]
=
{
...
...
@@ -47,7 +48,8 @@ static const wrc_resource32_t * const * SYSRES_Resources[] =
sysres_Po_ResTable
,
/* LANG_Po */
sysres_Sw_ResTable
,
/* LANG_Sw */
sysres_Ca_ResTable
,
/* LANG_Ca */
sysres_Nl_ResTable
/* LANG_Nl */
sysres_Nl_ResTable
,
/* LANG_Nl */
sysres_Ru_ResTable
/* LANG_Ru */
};
...
...
resources/sysres_Ru.rc
0 → 100644
View file @
91d72b99
This diff is collapsed.
Click to expand it.
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