push c65244d6d149bc2771b0080096cfe219fa90c9f8
[wine/hacks.git] / programs / wordpad / De.rc
blobab8f5488d3bd29b746527b1cf0108c6366096cbd
1 /*
2  * Copyright 2006 by Henning Gerhardt
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
17  */
19 LANGUAGE LANG_GERMAN, SUBLANG_NEUTRAL
21 MAINMENU MENU DISCARDABLE 
22 BEGIN
23     POPUP "&Datei"
24     BEGIN
25         MENUITEM "&Neu\tCtrl+N",          ID_FILE_NEW
26         MENUITEM "&Öffnen...\tCtrl+O",    ID_FILE_OPEN
27         MENUITEM "&Speichern\tCtrl+S",    ID_FILE_SAVE
28         MENUITEM "Speichern &unter...",        ID_FILE_SAVEAS
29         MENUITEM SEPARATOR
30         MENUITEM "&Beenden",      ID_FILE_EXIT
31     END
32     POPUP "&Bearbeiten"
33     BEGIN
34         MENUITEM "&Rückgängig\tCtrl+Z",         ID_EDIT_UNDO
35         MENUITEM "&Wiederholen\tCtrl+Y",        ID_EDIT_REDO
36         MENUITEM SEPARATOR
37         MENUITEM "Aus&schneiden\tCtrl+X",       ID_EDIT_CUT
38         MENUITEM "&Kopieren\tCtrl+C",           ID_EDIT_COPY
39         MENUITEM "&Einfügen\tCtrl+V",           ID_EDIT_PASTE
40         MENUITEM "&Löschen\tDEL",               ID_EDIT_CLEAR
41         MENUITEM "&Alles markieren\tCtrl+A",    ID_EDIT_SELECTALL
42         MENUITEM SEPARATOR
43         MENUITEM "&Find . . .\tCrtl+F",         ID_FIND
44         MENUITEM "Find &next\tF3",              ID_FIND_NEXT
45         MENUITEM SEPARATOR
46         MENUITEM "Schreibgeschü&tzt",           ID_EDIT_READONLY
47         MENUITEM "&Geändert",                   ID_EDIT_MODIFIED
48         MENUITEM SEPARATOR
49         POPUP "&Extras"
50         BEGIN
51             MENUITEM "Markierungs&information",     ID_EDIT_SELECTIONINFO
52             MENUITEM "Zeichen&format",              ID_EDIT_CHARFORMAT
53             MENUITEM "&Standardzeichenformat",      ID_EDIT_DEFCHARFORMAT
54             MENUITEM "&Absatzformat",               ID_EDIT_PARAFORMAT
55             MENUITEM "&Get text",                   ID_EDIT_GETTEXT
56         END
57     END
58     POPUP "&View"
59     BEGIN
60         MENUITEM "&Toolbar",        ID_TOGGLE_TOOLBAR
61         MENUITEM "&Formatbar",      ID_TOGGLE_FORMATBAR
62         MENUITEM "&Statusbar",      ID_TOGGLE_STATUSBAR
63     END
64     POPUP "&Insert"
65     BEGIN
66         MENUITEM "&Date and time . . .",  ID_DATETIME
67     END
68     POPUP "F&ormat"
69     BEGIN
70         MENUITEM "&Bullet points"                ID_BULLET
71         POPUP "&Hintergrund"
72         BEGIN
73             MENUITEM "&System\tCtrl+1",         ID_BACK_1
74             MENUITEM "&PostIt-Notiz\tCtrl+2",           ID_BACK_2
75         END
76         POPUP "&Ausrichtung"
77         BEGIN
78             MENUITEM "&Links\tCtrl+L",        ID_ALIGN_LEFT
79             MENUITEM "&Zentriert\tCtrl+E",    ID_ALIGN_CENTER
80             MENUITEM "&Rechts\tCtrl+R",       ID_ALIGN_RIGHT
81         END
82     END
83 END
85 IDD_DATETIME DIALOG DISCARDABLE 30, 20, 130, 80
86 STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
87 CAPTION "Date and time"
88 FONT 10, "MS Sans Serif"
89 BEGIN
90     LTEXT        "Available formats",0,3,2,100,15
91     LISTBOX      IDC_DATETIME,3,12,80,65,LBS_NOINTEGRALHEIGHT
92     PUSHBUTTON   "&OK",IDOK,87,12,40,12
93     PUSHBUTTON   "&Cancel",IDCANCEL,87,26,40,12
94 END
96 STRINGTABLE DISCARDABLE
97 BEGIN
98     STRING_RICHTEXT_FILES_RTF,  "Rich-Text-Format (*.rtf)"
99     STRING_TEXT_FILES_TXT,      "Textdateien (*.txt)"
100     STRING_ALL_FILES,           "Alle Dokumente (*.*)"
103 STRINGTABLE DISCARDABLE
104 BEGIN
105     STRING_DEFAULT_FILENAME,     "Document"
106     STRING_PROMPT_SAVE_CHANGES,  "Save changes to '%s'?"
107     STRING_SEARCH_FINISHED,      "Finished searching the document."
108     STRING_LOAD_RICHED_FAILED,   "Failed to load the RichEdit library."