msi: Create the table directly in create_table instead of requiring it to be loaded...
[wine/wine-kai.git] / programs / wordpad / En.rc
blobbab41781053aa9d471135cd2a255e8ec01d3fa89
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  */
19 LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
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 SEPARATOR
29         MENUITEM "E&xit",         ID_FILE_EXIT
30     END
31     POPUP "&Edit"
32     BEGIN
33         MENUITEM "&Undo\tCtrl+Z",               ID_EDIT_UNDO
34         MENUITEM "&Redo\tCtrl+Y",               ID_EDIT_REDO
35         MENUITEM SEPARATOR
36         MENUITEM "Cu&t\tCtrl+X",                ID_EDIT_CUT
37         MENUITEM "&Copy\tCtrl+C",               ID_EDIT_COPY
38         MENUITEM "&Paste\tCtrl+V",              ID_EDIT_PASTE
39         MENUITEM "&Clear\tDEL",                 ID_EDIT_CLEAR
40         MENUITEM "&Select all\tCtrl+A",         ID_EDIT_SELECTALL
41         MENUITEM SEPARATOR
42         MENUITEM "Read-&only",                  ID_EDIT_READONLY
43         MENUITEM "&Modified",                   ID_EDIT_MODIFIED
44         MENUITEM SEPARATOR
45         POPUP "&Extras"
46         BEGIN
47             MENUITEM "Selection &info",             ID_EDIT_SELECTIONINFO
48             MENUITEM "Character &format",           ID_EDIT_CHARFORMAT
49             MENUITEM "&Def. char format",           ID_EDIT_DEFCHARFORMAT
50             MENUITEM "Paragrap&h format",           ID_EDIT_PARAFORMAT
51             MENUITEM "&Get text",                   ID_EDIT_GETTEXT
52         END
53     END
54     POPUP "F&ormat"
55     BEGIN
56         POPUP "&Background"
57         BEGIN
58             MENUITEM "&System\tCtrl+1",         ID_BACK_1
59             MENUITEM "&PostThat yellowish\tCtrl+2",           ID_BACK_2
60         END
61         POPUP "&Alignment"
62         BEGIN
63             MENUITEM "&Left\tCtrl+L",         ID_ALIGN_LEFT
64             MENUITEM "&Center\tCtrl+E",       ID_ALIGN_CENTER
65             MENUITEM "&Right\tCtrl+R",        ID_ALIGN_RIGHT
66         END
67     END
68 END
70 STRINGTABLE DISCARDABLE
71 BEGIN
72     STRING_RICHTEXT_FILES_RTF,  "Rich text format (*.rtf)"
73     STRING_TEXT_FILES_TXT,      "Text files (*.txt)"
74     STRING_ALL_FILES,           "All documents (*.*)"
75 END