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
937d7020
Commit
937d7020
authored
Jul 02, 2009
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Jul 02, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
write: Build language resource files separately.
Do not include them from an other rc file.
parent
807d75a9
Show whitespace changes
Inline
Side-by-side
Showing
17 changed files
with
46 additions
and
49 deletions
+46
-49
De.rc
programs/write/De.rc
+2
-0
En.rc
programs/write/En.rc
+2
-0
Fr.rc
programs/write/Fr.rc
+3
-2
Ja.rc
programs/write/Ja.rc
+2
-2
Ko.rc
programs/write/Ko.rc
+2
-0
Lt.rc
programs/write/Lt.rc
+2
-2
Makefile.in
programs/write/Makefile.in
+15
-1
Nl.rc
programs/write/Nl.rc
+2
-0
No.rc
programs/write/No.rc
+2
-0
Pl.rc
programs/write/Pl.rc
+2
-0
Pt.rc
programs/write/Pt.rc
+2
-0
Ro.rc
programs/write/Ro.rc
+2
-2
Ru.rc
programs/write/Ru.rc
+2
-0
Si.rc
programs/write/Si.rc
+2
-2
Sv.rc
programs/write/Sv.rc
+2
-0
resources.h
programs/write/resources.h
+2
-0
rsrc.rc
programs/write/rsrc.rc
+0
-38
No files found.
programs/write/De.rc
View file @
937d7020
...
...
@@ -17,6 +17,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resources.h"
LANGUAGE LANG_GERMAN, SUBLANG_NEUTRAL
STRINGTABLE
...
...
programs/write/En.rc
View file @
937d7020
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resources.h"
LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
STRINGTABLE
...
...
programs/write/Fr.rc
View file @
937d7020
...
...
@@ -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 "resources.h"
#pragma code_page(65001)
LANGUAGE LANG_FRENCH, SUBLANG_NEUTRAL
...
...
@@ -25,5 +28,3 @@ STRINGTABLE
{
IDS_FAILED, "Wordpad n'a pas pu être démarré"
}
#pragma code_page(default)
programs/write/Ja.rc
View file @
937d7020
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resources.h"
/* UTF-8 */
#pragma code_page(65001)
...
...
@@ -27,5 +29,3 @@ STRINGTABLE
{
IDS_FAILED, "Wordpad の起動に失敗しました"
}
#pragma code_page(default)
programs/write/Ko.rc
View file @
937d7020
...
...
@@ -19,6 +19,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resources.h"
LANGUAGE LANG_KOREAN, SUBLANG_DEFAULT
STRINGTABLE
...
...
programs/write/Lt.rc
View file @
937d7020
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resources.h"
/* UTF-8 */
#pragma code_page(65001)
...
...
@@ -27,5 +29,3 @@ STRINGTABLE
{
IDS_FAILED, "Nepavyko paleisti Wordpad"
}
#pragma code_page(default)
programs/write/Makefile.in
View file @
937d7020
...
...
@@ -9,7 +9,21 @@ IMPORTS = user32 gdi32 kernel32
C_SRCS
=
write.c
RC_SRCS
=
rsrc.rc
RC_SRCS
=
\
De.rc
\
En.rc
\
Fr.rc
\
Ja.rc
\
Ko.rc
\
Lt.rc
\
Nl.rc
\
No.rc
\
Pl.rc
\
Pt.rc
\
Ro.rc
\
Ru.rc
\
Si.rc
\
Sv.rc
@MAKE_PROG_RULES@
...
...
programs/write/Nl.rc
View file @
937d7020
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resources.h"
LANGUAGE LANG_DUTCH, SUBLANG_NEUTRAL
STRINGTABLE
...
...
programs/write/No.rc
View file @
937d7020
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resources.h"
LANGUAGE LANG_NORWEGIAN, SUBLANG_NORWEGIAN_BOKMAL
STRINGTABLE
...
...
programs/write/Pl.rc
View file @
937d7020
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resources.h"
LANGUAGE LANG_POLISH, SUBLANG_DEFAULT
STRINGTABLE
...
...
programs/write/Pt.rc
View file @
937d7020
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resources.h"
LANGUAGE LANG_PORTUGUESE, SUBLANG_NEUTRAL
STRINGTABLE
...
...
programs/write/Ro.rc
View file @
937d7020
...
...
@@ -17,6 +17,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resources.h"
LANGUAGE LANG_ROMANIAN, SUBLANG_NEUTRAL
#pragma code_page(65001)
...
...
@@ -25,5 +27,3 @@ STRINGTABLE
{
IDS_FAILED, "Execuția Wordpad a eșuat"
}
#pragma code_page(default)
programs/write/Ru.rc
View file @
937d7020
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resources.h"
LANGUAGE LANG_RUSSIAN, SUBLANG_DEFAULT
STRINGTABLE
...
...
programs/write/Si.rc
View file @
937d7020
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resources.h"
LANGUAGE LANG_SLOVENIAN, SUBLANG_DEFAULT
#pragma code_page(65001)
...
...
@@ -26,5 +28,3 @@ STRINGTABLE
{
IDS_FAILED, "Zagon programa Wordpad ni uspel"
}
#pragma code_page(default)
programs/write/Sv.rc
View file @
937d7020
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resources.h"
LANGUAGE LANG_SWEDISH, SUBLANG_NEUTRAL
STRINGTABLE
...
...
programs/write/resources.h
View file @
937d7020
...
...
@@ -16,4 +16,6 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include <windef.h>
#define IDS_FAILED 101
programs/write/rsrc.rc
deleted
100644 → 0
View file @
807d75a9
/*
* Copyright 2007 Mikolaj Zalewski
*
* 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 "resources.h"
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
#include "De.rc"
#include "En.rc"
#include "Fr.rc"
#include "Ja.rc"
#include "Ko.rc"
#include "Lt.rc"
#include "Nl.rc"
#include "No.rc"
#include "Pl.rc"
#include "Pt.rc"
#include "Ro.rc"
#include "Ru.rc"
#include "Si.rc"
#include "Sv.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