wordpad: Add file saving dialog.
[wine] / programs / wordpad / En.rc
1 /*
2  * Copyright 2004 by Krzysztof Foltman
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  */
18
19 LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
20
21 MAINMENU MENU DISCARDABLE 
22 BEGIN
23     POPUP "&File"
24     BEGIN
25         MENUITEM "&New\tCtrl+N",          ID_FILE_NEW
26         MENUITEM "&Open\tCtrl+O",         ID_FILE_OPEN
27         MENUITEM "&Save\tCtrl+S",         ID_FILE_SAVE
28         MENUITEM "Save &as . . .",        ID_FILE_SAVEAS
29         MENUITEM SEPARATOR
30         MENUITEM "E&xit",         ID_FILE_EXIT
31     END
32     POPUP "&Edit"
33     BEGIN
34         MENUITEM "&Undo\tCtrl+Z",               ID_EDIT_UNDO
35         MENUITEM "&Redo\tCtrl+Y",               ID_EDIT_REDO
36         MENUITEM SEPARATOR
37         MENUITEM "Cu&t\tCtrl+X",                ID_EDIT_CUT
38         MENUITEM "&Copy\tCtrl+C",               ID_EDIT_COPY
39         MENUITEM "&Paste\tCtrl+V",              ID_EDIT_PASTE
40         MENUITEM "&Clear\tDEL",                 ID_EDIT_CLEAR
41         MENUITEM "&Select all\tCtrl+A",         ID_EDIT_SELECTALL
42         MENUITEM SEPARATOR
43         MENUITEM "Read-&only",                  ID_EDIT_READONLY
44         MENUITEM "&Modified",                   ID_EDIT_MODIFIED
45         MENUITEM SEPARATOR
46         POPUP "&Extras"
47         BEGIN
48             MENUITEM "Selection &info",             ID_EDIT_SELECTIONINFO
49             MENUITEM "Character &format",           ID_EDIT_CHARFORMAT
50             MENUITEM "&Def. char format",           ID_EDIT_DEFCHARFORMAT
51             MENUITEM "Paragrap&h format",           ID_EDIT_PARAFORMAT
52             MENUITEM "&Get text",                   ID_EDIT_GETTEXT
53         END
54     END
55     POPUP "F&ormat"
56     BEGIN
57         POPUP "&Background"
58         BEGIN
59             MENUITEM "&System\tCtrl+1",         ID_BACK_1
60             MENUITEM "&PostThat yellowish\tCtrl+2",           ID_BACK_2
61         END
62         POPUP "&Alignment"
63         BEGIN
64             MENUITEM "&Left\tCtrl+L",         ID_ALIGN_LEFT
65             MENUITEM "&Center\tCtrl+E",       ID_ALIGN_CENTER
66             MENUITEM "&Right\tCtrl+R",        ID_ALIGN_RIGHT
67         END
68     END
69 END
70
71 STRINGTABLE DISCARDABLE
72 BEGIN
73     STRING_RICHTEXT_FILES_RTF,  "Rich text format (*.rtf)"
74     STRING_TEXT_FILES_TXT,      "Text files (*.txt)"
75     STRING_ALL_FILES,           "All documents (*.*)"
76 END