-revert janderwalds change until because it breaks the gcc 4.x build
[reactos.git] / reactos / base / applications / wordpad / lang / en-US.rc
1 IDR_MAINMENU MENU
2 BEGIN
3 POPUP "&File"
4 BEGIN
5 MENUITEM "&New...", ID_NEW
6 MENUITEM "&Open...", ID_OPEN
7 MENUITEM SEPARATOR
8 MENUITEM "&Close\tCtrl+F4", ID_CLOSE, GRAYED
9 MENUITEM "C&lose all", ID_CLOSEALL, GRAYED
10 MENUITEM SEPARATOR
11 MENUITEM "&Save", ID_SAVE, GRAYED
12 MENUITEM "Save &As...", ID_SAVEAS, GRAYED
13 MENUITEM SEPARATOR
14 MENUITEM "Print Pre&view", ID_PRINTPRE, GRAYED
15 MENUITEM "&Print...", ID_PRINT, GRAYED
16 MENUITEM SEPARATOR
17 MENUITEM "Page Set&up...", ID_PAGESETUP, GRAYED
18 MENUITEM SEPARATOR
19 MENUITEM "E&xit\tAlt+F4", ID_EXIT
20 END
21 POPUP "&Edit"
22 BEGIN
23 MENUITEM "&Undo", ID_UNDO, GRAYED
24 MENUITEM "&Redo", ID_REDO, GRAYED
25 MENUITEM SEPARATOR
26 MENUITEM "Cu&t", ID_CUT, GRAYED
27 MENUITEM "&Copy", ID_COPY, GRAYED
28 MENUITEM "&Paste", ID_PASTE, GRAYED
29 MENUITEM SEPARATOR
30 MENUITEM "Clear", -1, GRAYED
31 MENUITEM "Select &All", ID_SELALL, GRAYED
32 MENUITEM SEPARATOR
33 MENUITEM "&Find...\tCtrl+F",-1, GRAYED
34 MENUITEM "Find Next", -1, GRAYED
35 MENUITEM "Replace\tCtrl+H", -1, GRAYED
36 MENUITEM SEPARATOR
37 MENUITEM "Object Properties",-1, GRAYED
38 MENUITEM "Object", -1, GRAYED
39 END
40 POPUP "&View"
41 BEGIN
42 MENUITEM "&Toolbar", -1, CHECKED
43 MENUITEM "&Format Bar", -1, CHECKED
44 MENUITEM "&Ruler", -1, CHECKED
45 MENUITEM "&Status Bar", ID_STATUSBAR, CHECKED
46 END
47 POPUP "&Insert"
48 BEGIN
49 MENUITEM "&Date and Time...",-1, GRAYED
50 MENUITEM "&Object...", -1, GRAYED
51 END
52 POPUP "&Format"
53 BEGIN
54 MENUITEM "&Font...", -1 GRAYED
55 MENUITEM "Bulletstyle", -1, GRAYED
56 MENUITEM "Paragraph...", -1, GRAYED
57 MENUITEM "tabs...", -1, GRAYED
58 END
59 POPUP "&Window"
60 BEGIN
61 MENUITEM "&Cascade", ID_WINDOW_CASCADE
62 MENUITEM "Tile &Horizontally", ID_WINDOW_TILE_HORZ
63 MENUITEM "Tile &Vertiacally", ID_WINDOW_TILE_VERT
64 MENUITEM "&Arrange Icons", ID_WINDOW_ARRANGE
65 MENUITEM SEPARATOR
66 MENUITEM "Nex&t\tCtrl+F6", ID_WINDOW_NEXT
67 END
68 POPUP "&Help"
69 BEGIN
70 MENUITEM "&About...", ID_ABOUT
71 END
72 END
73
74 IDR_POPUP MENU
75 BEGIN
76 POPUP "popup"
77 BEGIN
78
79 MENUITEM SEPARATOR
80
81 END
82 END
83
84
85 IDD_NEWDOCSEL DIALOGEX 6,6,159,67
86 CAPTION "New"
87 FONT 8, "MS Shell Dlg",0,0
88 STYLE WS_BORDER | WS_DLGFRAME | DS_MODALFRAME
89 BEGIN
90 LTEXT "New document Type:", IDC_STATIC, 4, 3, 72, 9
91 LISTBOX IDC_LIST, 4, 16, 104, 46, WS_TABSTOP
92 PUSHBUTTON "&OK", IDOK, 112, 16, 44, 13
93 PUSHBUTTON "&Cancel", IDCANCEL, 112, 33, 44, 13
94 END
95
96
97 IDD_ABOUTBOX DIALOGEX 22,16,190,182
98 CAPTION "About WordPad"
99 FONT 8, "MS Shell Dlg",0,0
100 STYLE WS_BORDER | WS_DLGFRAME | WS_SYSMENU | DS_MODALFRAME
101 BEGIN
102 LTEXT "WordPad II v0.1\nCopyright (C) 2006\nGed Murphy (gedmurphy@gmail.com)", IDC_STATIC, 48, 7, 150, 36
103 PUSHBUTTON "Close", IDOK, 65, 162, 44, 15
104 ICON IDI_ICON, IDC_STATIC, 10, 10, 7, 30
105 EDITTEXT IDC_LICENSE_EDIT, 8, 40, 174, 110, WS_VISIBLE | WS_VSCROLL | WS_TABSTOP | ES_READONLY | ES_MULTILINE
106 END
107
108
109 STRINGTABLE DISCARDABLE
110 BEGIN
111 IDS_LICENSE "This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.\r\n\r\nThis program 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 General Public License for more details.\r\n\r\nYou should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA."
112 IDS_DEFAULT_NAME "Document %1!u!"
113 IDS_READY " Ready."
114 END
115
116 STRINGTABLE DISCARDABLE
117 BEGIN
118 IDS_DOC_TYPE_RICH_TEXT "Rich Text Document"
119 IDS_DOC_TYPE_UNICODE_TEXT "Text Document"
120 IDS_DOC_TYPE_TEXT "Unicode Text Document"
121 END
122
123
124
125 /* Tooltips */
126 STRINGTABLE DISCARDABLE
127 BEGIN
128 IDS_TOOLTIP_NEW "New"
129 IDS_TOOLTIP_OPEN "Open"
130 IDS_TOOLTIP_SAVE "Save"
131 IDS_TOOLTIP_PRINTPRE "Print preview"
132 IDS_TOOLTIP_PRINT "Print"
133 IDS_TOOLTIP_CUT "Cut"
134 IDS_TOOLTIP_COPY "Copy"
135 IDS_TOOLTIP_PASTE "Paste"
136 IDS_TOOLTIP_UNDO "Undo"
137 IDS_TOOLTIP_REDO "Redo"
138 END
139
140 /* Hints */
141 STRINGTABLE DISCARDABLE
142 BEGIN
143 IDS_HINT_BLANK " "
144 IDS_HINT_NEW " Creates a new document."
145 IDS_HINT_OPEN " Opens an existing document."
146 IDS_HINT_CLOSE " Closes this window."
147 IDS_HINT_CLOSEALL " Closes all windows."
148 IDS_HINT_SAVE " Saves the active document."
149 IDS_HINT_SAVEAS " Saves the active document with a new name."
150 IDS_HINT_PRINT " Prints the active document."
151 IDS_HINT_PRINTPRE " Previews the printed document."
152 IDS_HINT_PAGESETUP " Changes page layout settings."
153 IDS_HINT_EXIT " Exits this application."
154
155 IDS_HINT_CASCADE " Arrange windows so they overlap."
156 IDS_HINT_TILE_HORZ " Arrange windows as non-overlapping tiles."
157 IDS_HINT_TILE_VERT " Arrange windows as non-overlapping tiles."
158 IDS_HINT_ARRANGE " Arrange icons at the bottom of the window."
159 IDS_HINT_NEXT " Activates the next window."
160
161 IDS_HINT_SYS_RESTORE " Restores this window to normal size."
162 IDS_HINT_SYS_MOVE " Moves this window."
163 IDS_HINT_SYS_SIZE " Resizes this window."
164 IDS_HINT_SYS_MINIMIZE " Collapses this window to an icon."
165 IDS_HINT_SYS_MAXIMIZE " Expands this window to fill this screen."
166 END
167