En.rc 5.13 KB
Newer Older
Alexandre Julliard's avatar
Alexandre Julliard committed
1
/*
2
 *  Notepad (English resources)
Alexandre Julliard's avatar
Alexandre Julliard committed
3
 *
4 5
 *  Copyright 1997,98 Marcel Baur <mbaur@g26.ethz.ch>
 *  Proofread 1998 by David Lee Lambert <lamber45@egr.msu.edu>
6
 *  Copyright 2002 Sylvain Petreolle <spetreolle@yahoo.fr>
7 8 9 10 11 12 13 14 15 16 17 18 19 20
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
Alexandre Julliard's avatar
Alexandre Julliard committed
21 22
 */

23 24 25
LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT

MAIN_MENU MENU
26 27
{
 POPUP "&File" {
28
  MENUITEM "&New...",           CMD_NEW
29 30
  MENUITEM "&Open\tCtrl+O",     CMD_OPEN
  MENUITEM "&Save\tCtrl+S",     CMD_SAVE
31
  MENUITEM "Save &as...",       CMD_SAVE_AS
32
  MENUITEM SEPARATOR
33 34 35
  MENUITEM "&Print",            CMD_PRINT
  MENUITEM "Page Se&tup...",    CMD_PAGE_SETUP
  MENUITEM "P&rinter Setup...", CMD_PRINTER_SETUP
36
  MENUITEM SEPARATOR
37
  MENUITEM "E&xit",             CMD_EXIT
38 39
 }
POPUP "&Edit" {
40
  MENUITEM "&Undo\tCtrl+Z",     CMD_UNDO
41
  MENUITEM SEPARATOR
42 43 44 45
  MENUITEM "Cu&t\tCtrl+X",      CMD_CUT
  MENUITEM "&Copy\tCtrl+C",     CMD_COPY
  MENUITEM "&Paste\tCtrl+V",    CMD_PASTE
  MENUITEM "&Delete\tDel",      CMD_DELETE
46
  MENUITEM SEPARATOR
47
  MENUITEM "Select &all\tCtrl+A",       CMD_SELECT_ALL
48
  MENUITEM "&Time/Date\tF5",    CMD_TIME_DATE
49 50 51
  MENUITEM SEPARATOR
  MENUITEM "&Wrap long lines",  CMD_WRAP
  MENUITEM "&Font...",          CMD_FONT
52 53
 }
POPUP "&Search" {
54
  MENUITEM "&Search\tCtrl+F",   CMD_SEARCH
55
  MENUITEM "&Search next\tF3",  CMD_SEARCH_NEXT
56 57
 }
POPUP "&Help" {
58 59 60
  MENUITEM "&Contents",         CMD_HELP_CONTENTS
  MENUITEM "&Search...",        CMD_HELP_SEARCH
  MENUITEM "&Help on help",     CMD_HELP_ON_HELP
61 62
  MENUITEM SEPARATOR
  POPUP "Inf&o..." {
63 64 65
   MENUITEM "&License",         CMD_LICENSE
   MENUITEM "&NO WARRANTY",     CMD_NO_WARRANTY
   MENUITEM "&About Wine",      CMD_ABOUT_WINE
66 67
  }
 }
68
}
69 70 71

/* Dialog `Page setup' */

72
DIALOG_PAGESETUP DIALOG 0, 0, 225, 95
73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
FONT 8, "Helv"
CAPTION "Page Setup"
{
LTEXT    "&Header:",  0x140,   10, 07, 40, 15
EDITTEXT                         0x141,       60, 05,110, 12, WS_BORDER | WS_TABSTOP
LTEXT    "&Footer:",  0x142,   10, 24, 40, 15
EDITTEXT                         0x143,       60, 22,110, 12, WS_BORDER | WS_TABSTOP

GROUPBOX "&Margins:",      0x144,     10, 43,160, 45
LTEXT    "&Left:",        0x145,   20, 55, 30, 10, WS_CHILD
EDITTEXT /*STRING_PAGESETUP_LEFTVALUE,*/   0x147,       50, 55, 35, 11, WS_CHILD | WS_BORDER | WS_TABSTOP
LTEXT    "&Top:",         0x148,    20, 73, 30, 10, WS_CHILD
EDITTEXT /*STRING_PAGESETUP_TOPVALUE,*/    0x14A,        50, 73, 35, 11, WS_CHILD | WS_BORDER | WS_TABSTOP
LTEXT    "&Right:",       0x14B, 100, 55, 30, 10, WS_CHILD
EDITTEXT /*STRING_PAGESETUP_RIGHTVALUE,*/  0x14D,     130, 55, 35, 11, WS_CHILD | WS_BORDER | WS_TABSTOP
LTEXT    "&Bottom:",      0x14E,100, 73, 30, 10, WS_CHILD
EDITTEXT /*STRING_PAGESETUP_BOTTOMVALUE,*/ 0x150,    130, 73, 35, 11, WS_CHILD | WS_BORDER | WS_TABSTOP

DEFPUSHBUTTON "OK",         0x151,                   180,  3, 40, 15, WS_TABSTOP
PUSHBUTTON    "Cancel",     0x152,               180, 21, 40, 15, WS_TABSTOP
PUSHBUTTON    "&Help",       0x153,                180, 39, 40, 15, WS_TABSTOP
}

97
STRINGTABLE DISCARDABLE
98
{
99 100 101 102 103 104
STRING_PAGESETUP_HEADERVALUE,   "&n"        /* FIXME */
STRING_PAGESETUP_FOOTERVALUE,   "Page &s"   /* FIXME */
STRING_PAGESETUP_LEFTVALUE,             "20 mm"     /* FIXME */
STRING_PAGESETUP_RIGHTVALUE,    "20 mm"     /* FIXME */
STRING_PAGESETUP_TOPVALUE,              "25 mm"     /* FIXME */
STRING_PAGESETUP_BOTTOMVALUE,   "25 mm"     /* FIXME */
105

106 107 108 109
STRING_NOTEPAD,                                 "Notepad"
STRING_ERROR,                                   "ERROR"
STRING_WARNING,                                 "WARNING"
STRING_INFO,                                    "Information"
110

111
STRING_UNTITLED,                                "(untitled)"
112

113 114
STRING_ALL_FILES,                               "All files (*.*)"
STRING_TEXT_FILES_TXT,                  "Text files (*.txt)"
115

116
STRING_TOOLARGE,                                "File '%s' is too large for notepad.\n \
Alexandre Julliard's avatar
Alexandre Julliard committed
117
Please use a different editor."
118
STRING_NOTEXT,                                  "You didn't enter any text. \
Alexandre Julliard's avatar
Alexandre Julliard committed
119
\nPlease type something and try again"
120
STRING_DOESNOTEXIST,                            "File '%s'\ndoes not exist\n\n \
121
Do you want to create a new file ?"
122
STRING_NOTSAVED,                                "File '%s'\nhas been modified\n\n \
123
Would you like to save the changes ?"
124 125
STRING_NOTFOUND,                                        "'%s' can not be found."
STRING_OUT_OF_MEMORY,                   "Not enough memory to complete this \
Alexandre Julliard's avatar
Alexandre Julliard committed
126 127 128
task. \nClose one or more applications to increase the amount of \nfree \
memory."

129
}