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
2753331a
Commit
2753331a
authored
Jul 02, 2009
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Jul 02, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cmd: Build language resource files separately.
Do not include them from an other rc file.
parent
6f4b74de
Hide whitespace changes
Inline
Side-by-side
Showing
18 changed files
with
48 additions
and
26 deletions
+48
-26
Cs.rc
programs/cmd/Cs.rc
+2
-0
Da.rc
programs/cmd/Da.rc
+2
-0
De.rc
programs/cmd/De.rc
+2
-0
En.rc
programs/cmd/En.rc
+2
-0
Es.rc
programs/cmd/Es.rc
+2
-0
Fr.rc
programs/cmd/Fr.rc
+2
-0
Ja.rc
programs/cmd/Ja.rc
+2
-2
Ko.rc
programs/cmd/Ko.rc
+2
-0
Makefile.in
programs/cmd/Makefile.in
+17
-1
Nl.rc
programs/cmd/Nl.rc
+2
-0
No.rc
programs/cmd/No.rc
+2
-0
Pl.rc
programs/cmd/Pl.rc
+2
-0
Pt.rc
programs/cmd/Pt.rc
+2
-0
Ru.rc
programs/cmd/Ru.rc
+2
-0
Si.rc
programs/cmd/Si.rc
+2
-2
Tr.rc
programs/cmd/Tr.rc
+2
-0
wcmd.h
programs/cmd/wcmd.h
+1
-0
wcmdrc.rc
programs/cmd/wcmdrc.rc
+0
-21
No files found.
programs/cmd/Cs.rc
View file @
2753331a
...
...
@@ -21,6 +21,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "wcmd.h"
LANGUAGE LANG_CZECH, SUBLANG_DEFAULT
/* Czech strings in CP1250 */
...
...
programs/cmd/Da.rc
View file @
2753331a
...
...
@@ -19,6 +19,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "wcmd.h"
LANGUAGE LANG_DANISH, SUBLANG_DEFAULT
STRINGTABLE
...
...
programs/cmd/De.rc
View file @
2753331a
...
...
@@ -19,6 +19,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "wcmd.h"
LANGUAGE LANG_GERMAN, SUBLANG_NEUTRAL
STRINGTABLE
...
...
programs/cmd/En.rc
View file @
2753331a
...
...
@@ -19,6 +19,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "wcmd.h"
LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
STRINGTABLE
...
...
programs/cmd/Es.rc
View file @
2753331a
...
...
@@ -19,6 +19,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "wcmd.h"
LANGUAGE LANG_SPANISH, SUBLANG_NEUTRAL
STRINGTABLE
...
...
programs/cmd/Fr.rc
View file @
2753331a
...
...
@@ -20,6 +20,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "wcmd.h"
LANGUAGE LANG_FRENCH, SUBLANG_NEUTRAL
STRINGTABLE
...
...
programs/cmd/Ja.rc
View file @
2753331a
...
...
@@ -19,6 +19,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "wcmd.h"
/* UTF-8 */
#pragma code_page(65001)
...
...
@@ -279,5 +281,3 @@ EXIT\t\tCMDを終了\n\n\
WCMD_MOREPROMPT, "More? "
WCMD_LINETOOLONG, "The input line is too long.\n"
}
#pragma code_page(default)
programs/cmd/Ko.rc
View file @
2753331a
...
...
@@ -20,6 +20,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "wcmd.h"
LANGUAGE LANG_KOREAN, SUBLANG_DEFAULT
STRINGTABLE
...
...
programs/cmd/Makefile.in
View file @
2753331a
...
...
@@ -13,7 +13,23 @@ C_SRCS = \
directory.c
\
wcmdmain.c
RC_SRCS
=
wcmdrc.rc
RC_SRCS
=
\
Cs.rc
\
Da.rc
\
De.rc
\
En.rc
\
Es.rc
\
Fr.rc
\
Ja.rc
\
Ko.rc
\
Nl.rc
\
No.rc
\
Pl.rc
\
Pt.rc
\
Ru.rc
\
Si.rc
\
Tr.rc
\
wcmdrc.rc
SVG_SRCS
=
wcmd.svg
...
...
programs/cmd/Nl.rc
View file @
2753331a
...
...
@@ -19,6 +19,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "wcmd.h"
LANGUAGE LANG_DUTCH, SUBLANG_NEUTRAL
STRINGTABLE
...
...
programs/cmd/No.rc
View file @
2753331a
...
...
@@ -19,6 +19,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "wcmd.h"
LANGUAGE LANG_NORWEGIAN, SUBLANG_NORWEGIAN_BOKMAL
STRINGTABLE
...
...
programs/cmd/Pl.rc
View file @
2753331a
...
...
@@ -21,6 +21,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "wcmd.h"
LANGUAGE LANG_POLISH, SUBLANG_DEFAULT
STRINGTABLE
...
...
programs/cmd/Pt.rc
View file @
2753331a
...
...
@@ -20,6 +20,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "wcmd.h"
LANGUAGE LANG_PORTUGUESE, SUBLANG_PORTUGUESE_BRAZILIAN
STRINGTABLE
...
...
programs/cmd/Ru.rc
View file @
2753331a
...
...
@@ -19,6 +19,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "wcmd.h"
LANGUAGE LANG_RUSSIAN, SUBLANG_DEFAULT
STRINGTABLE
...
...
programs/cmd/Si.rc
View file @
2753331a
...
...
@@ -19,6 +19,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "wcmd.h"
#pragma code_page(65001)
LANGUAGE LANG_SLOVENIAN, SUBLANG_DEFAULT
...
...
@@ -272,5 +274,3 @@ Uporabite HELP <ukaz> za več informacijo o kateremkoli od zgoraj navedenih ukaz
WCMD_MOREPROMPT, "Več? "
WCMD_LINETOOLONG, "The input line is too long.\n"
}
#pragma code_page(default)
programs/cmd/Tr.rc
View file @
2753331a
...
...
@@ -19,6 +19,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "wcmd.h"
LANGUAGE LANG_TURKISH, SUBLANG_DEFAULT
STRINGTABLE
...
...
programs/cmd/wcmd.h
View file @
2753331a
...
...
@@ -21,6 +21,7 @@
#define IDI_ICON1 1
#include <windows.h>
#include <windef.h>
#ifndef RC_INVOKED
#include <string.h>
#include <stdlib.h>
...
...
programs/cmd/wcmdrc.rc
View file @
2753331a
...
...
@@ -16,28 +16,7 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include <windef.h>
#include <winuser.h>
#include "wcmd.h"
#include "Cs.rc"
#include "Da.rc"
#include "De.rc"
#include "En.rc"
#include "Es.rc"
#include "Fr.rc"
#include "Ja.rc"
#include "Ko.rc"
#include "Nl.rc"
#include "No.rc"
#include "Pl.rc"
#include "Pt.rc"
#include "Ru.rc"
#include "Si.rc"
#include "Tr.rc"
LANGUAGE LANG_NEUTRAL,SUBLANG_NEUTRAL
/* @makedep: wcmd.ico */
IDI_ICON1 ICON wcmd.ico
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