Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
eaa31f33
Commit
eaa31f33
authored
Jul 02, 2009
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Jul 02, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wordpad: Build language resource files separately.
Do not include them from an other rc file.
parent
465cf355
Show whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
55 additions
and
34 deletions
+55
-34
Da.rc
programs/wordpad/Da.rc
+2
-0
De.rc
programs/wordpad/De.rc
+2
-2
En.rc
programs/wordpad/En.rc
+2
-0
Fr.rc
programs/wordpad/Fr.rc
+2
-0
Hu.rc
programs/wordpad/Hu.rc
+2
-0
Ja.rc
programs/wordpad/Ja.rc
+2
-2
Ko.rc
programs/wordpad/Ko.rc
+1
-0
Lt.rc
programs/wordpad/Lt.rc
+2
-2
Makefile.in
programs/wordpad/Makefile.in
+19
-1
Nl.rc
programs/wordpad/Nl.rc
+2
-0
No.rc
programs/wordpad/No.rc
+2
-0
Pl.rc
programs/wordpad/Pl.rc
+2
-0
Pt.rc
programs/wordpad/Pt.rc
+2
-0
Ru.rc
programs/wordpad/Ru.rc
+2
-0
Si.rc
programs/wordpad/Si.rc
+2
-2
Sv.rc
programs/wordpad/Sv.rc
+2
-2
Tr.rc
programs/wordpad/Tr.rc
+2
-0
Zh.rc
programs/wordpad/Zh.rc
+2
-2
rsrc.rc
programs/wordpad/rsrc.rc
+0
-21
wordpad.h
programs/wordpad/wordpad.h
+3
-0
No files found.
programs/wordpad/Da.rc
View file @
eaa31f33
...
...
@@ -16,6 +16,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "wordpad.h"
LANGUAGE LANG_DANISH, SUBLANG_DEFAULT
IDM_MAINMENU MENU DISCARDABLE
...
...
programs/wordpad/De.rc
View file @
eaa31f33
...
...
@@ -16,6 +16,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "wordpad.h"
LANGUAGE LANG_GERMAN, SUBLANG_NEUTRAL
#pragma code_page(65001)
...
...
@@ -244,5 +246,3 @@ BEGIN
STRING_PRINTING_NOT_IMPLEMENTED, "Drucken ist nicht implementiert"
STRING_MAX_TAB_STOPS, "Es können nur maximal 32 Tabstopps definiert werden."
END
#pragma code_page(default)
programs/wordpad/En.rc
View file @
eaa31f33
...
...
@@ -16,6 +16,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "wordpad.h"
LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
IDM_MAINMENU MENU DISCARDABLE
...
...
programs/wordpad/Fr.rc
View file @
eaa31f33
...
...
@@ -16,6 +16,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "wordpad.h"
LANGUAGE LANG_FRENCH, SUBLANG_NEUTRAL
IDM_MAINMENU MENU DISCARDABLE
...
...
programs/wordpad/Hu.rc
View file @
eaa31f33
...
...
@@ -16,6 +16,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "wordpad.h"
LANGUAGE LANG_HUNGARIAN, SUBLANG_DEFAULT
IDM_MAINMENU MENU DISCARDABLE
...
...
programs/wordpad/Ja.rc
View file @
eaa31f33
...
...
@@ -16,6 +16,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "wordpad.h"
/* UTF-8 */
#pragma code_page(65001)
...
...
@@ -245,5 +247,3 @@ BEGIN
STRING_PRINTING_NOT_IMPLEMENTED, "プリントが実装されていません。"
STRING_MAX_TAB_STOPS, "32以上なタブを追加できません。"
END
#pragma code_page(default)
programs/wordpad/Ko.rc
View file @
eaa31f33
...
...
@@ -17,6 +17,7 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "wordpad.h"
LANGUAGE LANG_KOREAN, SUBLANG_DEFAULT
...
...
programs/wordpad/Lt.rc
View file @
eaa31f33
...
...
@@ -16,6 +16,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "wordpad.h"
/* UTF-8 */
#pragma code_page(65001)
...
...
@@ -245,5 +247,3 @@ BEGIN
STRING_PRINTING_NOT_IMPLEMENTED, "Spausdinimas nerealizuotas"
STRING_MAX_TAB_STOPS, "Negalima pridėti daugiau negu 32-jų tabuliavimo pozicijų."
END
#pragma code_page(default)
programs/wordpad/Makefile.in
View file @
eaa31f33
...
...
@@ -14,7 +14,25 @@ C_SRCS = \
registry.c
\
wordpad.c
RC_SRCS
=
rsrc.rc
RC_SRCS
=
\
Da.rc
\
De.rc
\
En.rc
\
Fr.rc
\
Hu.rc
\
Ja.rc
\
Ko.rc
\
Lt.rc
\
Nl.rc
\
No.rc
\
Pl.rc
\
Pt.rc
\
Ru.rc
\
Si.rc
\
Sv.rc
\
Tr.rc
\
Zh.rc
\
rsrc.rc
SVG_SRCS
=
wordpad.svg
...
...
programs/wordpad/Nl.rc
View file @
eaa31f33
...
...
@@ -17,6 +17,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "wordpad.h"
LANGUAGE LANG_DUTCH, SUBLANG_NEUTRAL
IDM_MAINMENU MENU DISCARDABLE
...
...
programs/wordpad/No.rc
View file @
eaa31f33
...
...
@@ -16,6 +16,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "wordpad.h"
LANGUAGE LANG_NORWEGIAN, SUBLANG_NORWEGIAN_BOKMAL
IDM_MAINMENU MENU DISCARDABLE
...
...
programs/wordpad/Pl.rc
View file @
eaa31f33
...
...
@@ -17,6 +17,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "wordpad.h"
LANGUAGE LANG_POLISH, SUBLANG_DEFAULT
IDM_MAINMENU MENU DISCARDABLE
...
...
programs/wordpad/Pt.rc
View file @
eaa31f33
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "wordpad.h"
LANGUAGE LANG_PORTUGUESE, SUBLANG_NEUTRAL
IDM_MAINMENU MENU DISCARDABLE
...
...
programs/wordpad/Ru.rc
View file @
eaa31f33
...
...
@@ -16,6 +16,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "wordpad.h"
LANGUAGE LANG_RUSSIAN, SUBLANG_DEFAULT
IDM_MAINMENU MENU DISCARDABLE
...
...
programs/wordpad/Si.rc
View file @
eaa31f33
...
...
@@ -16,6 +16,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "wordpad.h"
#pragma code_page(65001)
LANGUAGE LANG_SLOVENIAN, SUBLANG_DEFAULT
...
...
@@ -245,5 +247,3 @@ BEGIN
STRING_PRINTING_NOT_IMPLEMENTED, "Tiskanje (še) ni na voljo"
STRING_MAX_TAB_STOPS, "Ne morem vstaviti več kot 32 položajev tabulatorja."
END
#pragma code_page(default)
programs/wordpad/Sv.rc
View file @
eaa31f33
...
...
@@ -16,6 +16,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "wordpad.h"
LANGUAGE LANG_SWEDISH, SUBLANG_NEUTRAL
#pragma code_page(65001)
...
...
@@ -244,5 +246,3 @@ BEGIN
STRING_PRINTING_NOT_IMPLEMENTED, "Utskrift ej implementerat."
STRING_MAX_TAB_STOPS, "Kan ej lägga till mer än 32 tabbstopp."
END
#pragma code_page(default)
programs/wordpad/Tr.rc
View file @
eaa31f33
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "wordpad.h"
LANGUAGE LANG_TURKISH, SUBLANG_DEFAULT
IDM_MAINMENU MENU DISCARDABLE
...
...
programs/wordpad/Zh.rc
View file @
eaa31f33
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "wordpad.h"
/* Chinese text is encoded in UTF-8 */
#pragma code_page(65001)
...
...
@@ -469,5 +471,3 @@ BEGIN
STRING_OPEN_FAILED, "不能開啟檔案."
STRING_OPEN_ACCESS_DENIED, "你沒有開啟檔案的權力."
END
#pragma code_page(default)
programs/wordpad/rsrc.rc
View file @
eaa31f33
...
...
@@ -17,9 +17,6 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include <windef.h>
#include <winuser.h>
#include "wordpad.h"
MAINACCELTABLE ACCELERATORS
...
...
@@ -63,21 +60,3 @@ IDI_WRI ICON "wri.ico"
/* @makedep: txt.ico */
IDI_TXT ICON "txt.ico"
#include "Da.rc"
#include "De.rc"
#include "En.rc"
#include "Fr.rc"
#include "Hu.rc"
#include "Ja.rc"
#include "Ko.rc"
#include "Lt.rc"
#include "Nl.rc"
#include "No.rc"
#include "Pl.rc"
#include "Pt.rc"
#include "Ru.rc"
#include "Si.rc"
#include "Sv.rc"
#include "Tr.rc"
#include "Zh.rc"
programs/wordpad/wordpad.h
View file @
eaa31f33
...
...
@@ -17,6 +17,9 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include <windef.h>
#include <winuser.h>
#define MAX_STRING_LEN 255
#define TWIPS_PER_INCH 1440
...
...
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