programs: Standardize the Help menus.
[wine/wine-gecko.git] / programs / notepad / notepad.rc
blobc3fbddbf7ff568213ad70eb87dedf8e3903b7085
1 /*
2  *  Copyright 1997,98 Marcel Baur <mbaur@g26.ethz.ch>
3  *  Copyright 2002 Sylvain Petreolle <spetreolle@yahoo.fr>
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
18  */
20 #include "notepad_res.h"
22 LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
24 MAIN_MENU MENU
26  POPUP "&File" {
27   MENUITEM "&New\tCtrl+N",      CMD_NEW
28   MENUITEM "&Open...\tCtrl+O",  CMD_OPEN
29   MENUITEM "&Save\tCtrl+S",     CMD_SAVE
30   MENUITEM "Save &as...",       CMD_SAVE_AS
31   MENUITEM SEPARATOR
32   MENUITEM "&Print...\tCtrl+P",            CMD_PRINT
33   MENUITEM "Page Se&tup...",    CMD_PAGE_SETUP
34   MENUITEM "P&rinter Setup...", CMD_PRINTER_SETUP
35   MENUITEM SEPARATOR
36   MENUITEM "E&xit",             CMD_EXIT
37  }
38 POPUP "&Edit" {
39   MENUITEM "&Undo\tCtrl+Z",     CMD_UNDO
40   MENUITEM SEPARATOR
41   MENUITEM "Cu&t\tCtrl+X",      CMD_CUT
42   MENUITEM "&Copy\tCtrl+C",     CMD_COPY
43   MENUITEM "&Paste\tCtrl+V",    CMD_PASTE
44   MENUITEM "&Delete\tDel",      CMD_DELETE
45   MENUITEM SEPARATOR
46   MENUITEM "Select &all\tCtrl+A",       CMD_SELECT_ALL
47   MENUITEM "&Time/Date\tF5",    CMD_TIME_DATE
48   MENUITEM SEPARATOR
49   MENUITEM "&Wrap long lines",  CMD_WRAP
50   MENUITEM "&Font...",          CMD_FONT
51  }
52 POPUP "&Search" {
53   MENUITEM "&Search...\tCtrl+F",   CMD_SEARCH
54   MENUITEM "&Search next\tF3",  CMD_SEARCH_NEXT
55   MENUITEM "&Replace...\tCtrl+H", CMD_REPLACE
56  }
57 POPUP "&Help" {
58   MENUITEM "&Contents\tF1",     CMD_HELP_CONTENTS
59   MENUITEM "&About Notepad",    CMD_HELP_ABOUT_NOTEPAD
60  }
63 STRINGTABLE
65 STRING_PAGESETUP_HEADERVALUE,   "&f"
66 STRING_PAGESETUP_FOOTERVALUE,   "Page &p"
68 STRING_NOTEPAD,                                 "Notepad"
69 STRING_ERROR,                                   "ERROR"
70 STRING_WARNING,                                 "WARNING"
71 STRING_INFO,                                    "Information"
73 STRING_UNTITLED,                                "Untitled"
75 STRING_ALL_FILES,                               "All files (*.*)"
76 STRING_TEXT_FILES_TXT,                  "Text files (*.txt)"
78 STRING_TOOLARGE,                                "File '%s' is too large for notepad.\n\
79 Please use a different editor."
80 STRING_NOTEXT,                                  "You didn't enter any text.\
81 \nPlease type something and try again"
82 STRING_DOESNOTEXIST,                            "File '%s' does not exist.\n\n\
83 Do you want to create a new file?"
84 STRING_NOTSAVED,                                "File '%s' has been modified.\n\n\
85 Would you like to save the changes?"
86 STRING_NOTFOUND,                                        "'%s' could not be found."
87 STRING_OUT_OF_MEMORY,                   "Not enough memory to complete this \
88 task.\nClose one or more applications to increase the amount of free memory."
90 STRING_UNICODE_LE,     "Unicode (UTF-16)"
91 STRING_UNICODE_BE,     "Unicode (UTF-16 big-endian)"
92 STRING_UTF8,           "Unicode (UTF-8)"
94 STRING_LOSS_OF_UNICODE_CHARACTERS,         "%s\n\
95 This file contains Unicode characters which will be lost if\n\
96 you save this file in the %s encoding.\n\
97 To keep these characters, click Cancel, and then select\n\
98 one of the Unicode options in the Encoding drop down list.\n\
99 Continue?"
102 LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
104 /* @makedep: notepad.ico */
105 IDI_NOTEPAD ICON "notepad.ico"