Module: wine
Branch: refs/heads/master
Commit: 2907693ba979e4a83963e2011175abfc80082632
URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=2907693ba979e4a83963e20…
Author: Henning Gerhardt <henning.gerhardt(a)web.de>
Date: Thu Feb 16 12:09:21 2006 +0100
wordpad: Added German resource.
---
programs/wordpad/De.rc | 66 ++++++++++++++++++++++++++++++++++++++++++++++
programs/wordpad/En.rc | 2 +
programs/wordpad/rsrc.rc | 2 +
3 files changed, 69 insertions(+), 1 deletions(-)
create mode 100644 programs/wordpad/De.rc
diff --git a/programs/wordpad/De.rc b/programs/wordpad/De.rc
new file mode 100644
index 0000000..493bf5b
--- /dev/null
+++ b/programs/wordpad/De.rc
@@ -0,0 +1,66 @@
+/*
+ * Copyright 2006 by Henning Gerhardt
+ *
+ * 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ */
+
+LANGUAGE LANG_GERMAN, SUBLANG_DEFAULT
+
+MAINMENU MENU DISCARDABLE
+BEGIN
+ POPUP "&Datei"
+ BEGIN
+ MENUITEM "&Neu", ID_FILE_NEW
+ MENUITEM "&�ffnen", ID_FILE_OPEN
+ MENUITEM "&Speichern", ID_FILE_SAVE
+ MENUITEM SEPARATOR
+ MENUITEM "&Beenden", ID_FILE_EXIT
+ END
+ POPUP "&Bearbeiten"
+ BEGIN
+ MENUITEM "&R�ckg�ngig\tCtrl+Z", ID_EDIT_UNDO
+ MENUITEM "&Wiederholen\tCtrl+Y", ID_EDIT_REDO
+ MENUITEM "&Alles markieren\tCtrl+A", ID_EDIT_SELECTALL
+ MENUITEM SEPARATOR
+ MENUITEM "Aus&schneiden\tCtrl+X", ID_EDIT_CUT
+ MENUITEM "&Kopieren\tCtrl+C", ID_EDIT_COPY
+ MENUITEM SEPARATOR
+ MENUITEM "Schreibgesch�&tzt", ID_EDIT_READONLY
+ MENUITEM "&Ge�ndert", ID_EDIT_MODIFIED
+ MENUITEM SEPARATOR
+ POPUP "&Extras"
+ BEGIN
+ MENUITEM "Markierungs&information", ID_EDIT_SELECTIONINFO
+ MENUITEM "Zeichen&format", ID_EDIT_CHARFORMAT
+ MENUITEM "&Standardzeichenformat", ID_EDIT_DEFCHARFORMAT
+ MENUITEM "&Absatzformat", ID_EDIT_PARAFORMAT
+ MENUITEM "&Get text", ID_EDIT_GETTEXT
+ END
+ END
+ POPUP "F&ormat"
+ BEGIN
+ POPUP "&Hintergrund"
+ BEGIN
+ MENUITEM "&System\tCtrl+1", ID_BACK_1
+ MENUITEM "&PostIt-Notiz\tCtrl+2", ID_BACK_2
+ END
+ POPUP "&Ausrichtung"
+ BEGIN
+ MENUITEM "&Links\tCtrl+L", ID_ALIGN_LEFT
+ MENUITEM "&Zentriert\tCtrl+E", ID_ALIGN_CENTER
+ MENUITEM "&Rechts\tCtrl+R", ID_ALIGN_RIGHT
+ END
+ END
+END
diff --git a/programs/wordpad/En.rc b/programs/wordpad/En.rc
index cb89f80..a554960 100644
--- a/programs/wordpad/En.rc
+++ b/programs/wordpad/En.rc
@@ -16,7 +16,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-#include "resource.h"
+LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
MAINMENU MENU DISCARDABLE
BEGIN
diff --git a/programs/wordpad/rsrc.rc b/programs/wordpad/rsrc.rc
index 2ba5627..d355242 100644
--- a/programs/wordpad/rsrc.rc
+++ b/programs/wordpad/rsrc.rc
@@ -16,6 +16,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
+#include <windows.h>
#include "resource.h"
MAINACCELTABLE ACCELERATORS
@@ -75,4 +76,5 @@ IDB_TOOLBAR BITMAP "toolbar.bmp"
'88 88 88 88 88 88'
} */
+#include "De.rc"
#include "En.rc"