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 19LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT 20 21IDM_MAINMENU MENU 22BEGIN 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 "&Print...\tCtrl+P", ID_PRINT 31 MENUITEM "Print previe&w", ID_PREVIEW 32 MENUITEM "Pa&ge Setup...", ID_PRINTSETUP 33 MENUITEM SEPARATOR 34 MENUITEM "E&xit", ID_FILE_EXIT 35 END 36 POPUP "&Edit" 37 BEGIN 38 MENUITEM "&Undo\tCtrl+Z", ID_EDIT_UNDO 39 MENUITEM "R&edo\tCtrl+Y", ID_EDIT_REDO 40 MENUITEM SEPARATOR 41 MENUITEM "Cu&t\tCtrl+X", ID_EDIT_CUT 42 MENUITEM "&Copy\tCtrl+C", ID_EDIT_COPY 43 MENUITEM "&Paste\tCtrl+V", ID_EDIT_PASTE 44 MENUITEM "&Clear\tDel", ID_EDIT_CLEAR 45 MENUITEM "Select &All\tCtrl+A", ID_EDIT_SELECTALL 46 MENUITEM SEPARATOR 47 MENUITEM "&Find...\tCtrl+F", ID_FIND 48 MENUITEM "Find Ne&xt\tF3", ID_FIND_NEXT 49 MENUITEM "&Replace...\tCtrl+H", ID_REPLACE 50 MENUITEM SEPARATOR 51 MENUITEM "Read-&only", ID_EDIT_READONLY 52 MENUITEM "&Modified", ID_EDIT_MODIFIED 53 MENUITEM SEPARATOR 54 POPUP "E&xtras" 55 BEGIN 56 MENUITEM "Selection &info", ID_EDIT_SELECTIONINFO 57 MENUITEM "Character &format", ID_EDIT_CHARFORMAT 58 MENUITEM "&Def. char format", ID_EDIT_DEFCHARFORMAT 59 MENUITEM "Paragrap&h format", ID_EDIT_PARAFORMAT 60 MENUITEM "&Get text", ID_EDIT_GETTEXT 61 END 62 END 63 POPUP "&View" 64 BEGIN 65 MENUITEM "&Toolbar", ID_TOGGLE_TOOLBAR 66 MENUITEM "&Format Bar", ID_TOGGLE_FORMATBAR 67 MENUITEM "&Ruler", ID_TOGGLE_RULER 68 MENUITEM "&Status Bar", ID_TOGGLE_STATUSBAR 69 MENUITEM SEPARATOR 70 MENUITEM "&Options...", ID_VIEWPROPERTIES 71 END 72 POPUP "&Insert" 73 BEGIN 74 MENUITEM "&Date and time...", ID_DATETIME 75 END 76 POPUP "F&ormat" 77 BEGIN 78 MENUITEM "&Font...", ID_FONTSETTINGS 79 MENUITEM "&Bullet points", ID_BULLET 80 MENUITEM "&Paragraph...", ID_PARAFORMAT 81 MENUITEM "&Tabs...", ID_TABSTOPS 82 POPUP "Backgroun&d" 83 BEGIN 84 MENUITEM "&System\tCtrl+1", ID_BACK_1 85 MENUITEM "&Pale yellow\tCtrl+2", ID_BACK_2 86 END 87 END 88 POPUP "&Help" 89 BEGIN 90 MENUITEM "&About Wine Wordpad", ID_ABOUT 91 END 92END 93 94IDM_POPUP MENU 95BEGIN 96 POPUP "" 97 BEGIN 98 MENUITEM "Cu&t", ID_EDIT_CUT 99 MENUITEM "&Copy", ID_EDIT_COPY 100 MENUITEM "&Paste", ID_EDIT_PASTE 101 MENUITEM SEPARATOR 102 MENUITEM "&Bullet points", ID_BULLET 103 MENUITEM "&Paragraph...", ID_PARAFORMAT 104 END 105END 106 107IDM_COLOR_POPUP MENU 108BEGIN 109 POPUP "" 110 BEGIN 111 MENUITEM "Black", ID_COLOR_BLACK 112 MENUITEM "Maroon", ID_COLOR_MAROON 113 MENUITEM "Green", ID_COLOR_GREEN 114 MENUITEM "Olive", ID_COLOR_OLIVE 115 MENUITEM "Navy", ID_COLOR_NAVY 116 MENUITEM "Purple", ID_COLOR_PURPLE 117 MENUITEM "Teal", ID_COLOR_TEAL 118 MENUITEM "Gray", ID_COLOR_GRAY 119 MENUITEM "Silver", ID_COLOR_SILVER 120 MENUITEM "Red", ID_COLOR_RED 121 MENUITEM "Lime", ID_COLOR_LIME 122 MENUITEM "Yellow", ID_COLOR_YELLOW 123 MENUITEM "Blue", ID_COLOR_BLUE 124 MENUITEM "Fuchsia", ID_COLOR_FUCHSIA 125 MENUITEM "Aqua", ID_COLOR_AQUA 126 MENUITEM "White", ID_COLOR_WHITE 127 MENUITEM "Automatic", ID_COLOR_AUTOMATIC 128 END 129END 130 131STRINGTABLE 132BEGIN 133 STRING_ALL_FILES, "All documents (*.*)" 134 STRING_TEXT_FILES_TXT, "Text documents (*.txt)" 135 STRING_TEXT_FILES_UNICODE_TXT, "Unicode text document (*.txt)" 136 STRING_RICHTEXT_FILES_RTF, "Rich text format (*.rtf)" 137 STRING_NEWFILE_RICHTEXT, "Rich text document" 138 STRING_NEWFILE_TXT, "Text document" 139 STRING_NEWFILE_TXT_UNICODE, "Unicode text document" 140 STRING_PRINTER_FILES_PRN, "Printer files (*.prn)" 141END 142 143STRINGTABLE 144BEGIN 145 STRING_ALIGN_LEFT, "Left" 146 STRING_ALIGN_RIGHT, "Right" 147 STRING_ALIGN_CENTER, "Center" 148END 149 150STRINGTABLE 151BEGIN 152 STRING_VIEWPROPS_TITLE, "Options" 153 STRING_VIEWPROPS_TEXT, "Text" 154 STRING_VIEWPROPS_RICHTEXT, "Rich text" 155END 156 157STRINGTABLE 158BEGIN 159 STRING_PREVIEW_PRINT, "Print" 160 STRING_PREVIEW_NEXTPAGE, "Next page" 161 STRING_PREVIEW_PREVPAGE, "Previous page" 162 STRING_PREVIEW_TWOPAGES, "Two pages" 163 STRING_PREVIEW_ONEPAGE, "One page" 164 STRING_PREVIEW_ZOOMIN, "Zoom in" 165 STRING_PREVIEW_ZOOMOUT, "Zoom out" 166 STRING_PREVIEW_CLOSE, "Close" 167 STRING_PREVIEW_PAGE, "Page" 168 STRING_PREVIEW_PAGES, "Pages" 169 STRING_UNITS_CM, "cm" 170 STRING_UNITS_IN, "in" 171 STRING_UNITS_INCH, "inch" 172 STRING_UNITS_PT, "pt" 173END 174 175STRINGTABLE 176BEGIN 177 STRING_DEFAULT_FILENAME, "Document" 178 STRING_PROMPT_SAVE_CHANGES, "Save changes to '%s'?" 179 STRING_SEARCH_FINISHED, "Finished searching the document." 180 STRING_LOAD_RICHED_FAILED, "Failed to load the RichEdit library." 181 STRING_SAVE_LOSEFORMATTING, "You have chosen to save in plain text format, which will cause all formatting to be lost. Are you sure that you wish to do this?" 182 STRING_INVALID_NUMBER, "Invalid number format." 183 STRING_OLE_STORAGE_NOT_SUPPORTED, "OLE storage documents are not supported." 184 STRING_WRITE_FAILED, "Could not save the file." 185 STRING_WRITE_ACCESS_DENIED, "You do not have access to save the file." 186 STRING_OPEN_FAILED, "Could not open the file." 187 STRING_OPEN_ACCESS_DENIED, "You do not have access to open the file." 188 STRING_PRINTING_NOT_IMPLEMENTED, "Printing not implemented." 189 STRING_MAX_TAB_STOPS, "Cannot add more than 32 tab stops." 190END 191 192IDD_DATETIME DIALOGEX 30, 20, 130, 80 193STYLE DS_SHELLFONT | DS_MODALFRAME | WS_CAPTION | WS_SYSMENU 194CAPTION "Date and time" 195FONT 8, "MS Shell Dlg" 196BEGIN 197 LTEXT "Available formats",-1,3,2,100,15 198 LISTBOX IDC_DATETIME,3,12,80,65,LBS_NOINTEGRALHEIGHT | LBS_NOTIFY 199 DEFPUSHBUTTON "OK",IDOK,87,12,40,12 200 PUSHBUTTON "Cancel",IDCANCEL,87,26,40,12 201END 202 203IDD_NEWFILE DIALOGEX 30, 20, 140, 80 204STYLE DS_SHELLFONT | DS_MODALFRAME | WS_CAPTION | WS_SYSMENU 205CAPTION "New" 206FONT 8, "MS Shell Dlg" 207BEGIN 208 LTEXT "New document type",-1,3,2,100,15 209 LISTBOX IDC_NEWFILE,3,12,90,65,LBS_NOINTEGRALHEIGHT 210 DEFPUSHBUTTON "OK",IDOK,97,12,40,12 211 PUSHBUTTON "Cancel",IDCANCEL,97,26,40,12 212END 213 214IDD_PARAFORMAT DIALOGEX 30, 20, 220, 110 215STYLE DS_SHELLFONT | DS_MODALFRAME | WS_CAPTION | WS_SYSMENU 216CAPTION "Paragraph format" 217FONT 8, "MS Shell Dlg" 218BEGIN 219 GROUPBOX "Indentation", -1, 10, 10, 140, 68 220 LTEXT "Left", -1, 15, 22, 60, 13 221 EDITTEXT IDC_PARA_LEFT, 75, 20, 65, 13 222 LTEXT "Right", -1, 15, 40, 60, 13 223 EDITTEXT IDC_PARA_RIGHT, 75, 38, 65, 13 224 LTEXT "First line", -1, 15, 58, 60, 13 225 EDITTEXT IDC_PARA_FIRST, 75, 56, 65, 13 226 LTEXT "Alignment", -1, 15, 87, 60, 13 227 COMBOBOX IDC_PARA_ALIGN, 75, 85, 65, 60, CBS_DROPDOWNLIST 228 DEFPUSHBUTTON "OK", IDOK, 160, 15, 50, 15 229 PUSHBUTTON "Cancel", IDCANCEL, 160, 33, 50, 15 230END 231 232IDD_TABSTOPS DIALOGEX 30, 20, 200, 110 233STYLE DS_SHELLFONT | DS_MODALFRAME | WS_CAPTION | WS_SYSMENU 234CAPTION "Tabs" 235FONT 8, "MS Shell Dlg" 236BEGIN 237 GROUPBOX "Tab stops", -1, 10, 10, 120, 90 238 COMBOBOX IDC_TABSTOPS, 20, 20, 100, 60, CBS_SIMPLE 239 DEFPUSHBUTTON "&Add", ID_TAB_ADD, 20, 80, 45, 15 240 PUSHBUTTON "&Remove", ID_TAB_DEL, 72, 80, 45, 15 241 PUSHBUTTON "OK", IDOK, 135, 15, 58, 15 242 PUSHBUTTON "Cancel", IDCANCEL, 135, 33, 58, 15 243 PUSHBUTTON "Remove al&l", ID_TAB_EMPTY, 135, 51, 58, 15 244END 245 246IDD_FORMATOPTS DIALOGEX 0, 0, 280, 110 247STYLE DS_SHELLFONT | DS_SYSMODAL 248CAPTION "" 249FONT 8, "MS Shell Dlg" 250BEGIN 251 GROUPBOX "Line wrapping", -1, 5, 10, 145, 85 252 RADIOBUTTON "&No line wrapping", IDC_PAGEFMT_WN, 10, 25, 138, 15 253 RADIOBUTTON "Wrap text by the &window border", IDC_PAGEFMT_WW, 10, 45, 138, 15 254 RADIOBUTTON "Wrap text by the &margin", IDC_PAGEFMT_WM, 10, 65, 138, 15 255 GROUPBOX "Toolbars", -1, 155, 10, 115, 85 256 CHECKBOX "&Toolbar", IDC_PAGEFMT_TB, 165, 20, 80, 15 257 CHECKBOX "&Format Bar", IDC_PAGEFMT_FB, 165, 38, 80, 15 258 CHECKBOX "&Ruler", IDC_PAGEFMT_RU, 165, 56, 80, 15 259 CHECKBOX "&Status Bar", IDC_PAGEFMT_SB, 165, 74, 80, 15 260 LTEXT "", IDC_PAGEFMT_ID, 0,0,0,0 261END 262