1LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US 2 3IDR_MAINMENU MENU 4BEGIN 5 POPUP "&File" 6 BEGIN 7 MENUITEM "&New...", ID_NEW 8 MENUITEM "&Open...", ID_OPEN 9 MENUITEM SEPARATOR 10 MENUITEM "&Close\tCtrl+F4", ID_CLOSE, GRAYED 11 MENUITEM "C&lose all", ID_CLOSEALL, GRAYED 12 MENUITEM SEPARATOR 13 MENUITEM "&Save", ID_SAVE, GRAYED 14 MENUITEM "Save &As...", ID_SAVEAS, GRAYED 15 MENUITEM SEPARATOR 16 MENUITEM "Print Pre&view", ID_PRINTPRE, GRAYED 17 MENUITEM "&Print...", ID_PRINT, GRAYED 18 MENUITEM SEPARATOR 19 MENUITEM "Page Set&up...", ID_PAGESETUP, GRAYED 20 MENUITEM SEPARATOR 21 MENUITEM "E&xit\tAlt+F4", ID_EXIT 22 END 23 POPUP "&Edit" 24 BEGIN 25 MENUITEM "&Undo", ID_UNDO, GRAYED 26 MENUITEM "&Redo", ID_REDO, GRAYED 27 MENUITEM SEPARATOR 28 MENUITEM "Cu&t", ID_CUT, GRAYED 29 MENUITEM "&Copy", ID_COPY, GRAYED 30 MENUITEM "&Paste", ID_PASTE, GRAYED 31 MENUITEM SEPARATOR 32 MENUITEM "Clear", -1, GRAYED 33 MENUITEM "Select &All", ID_SELALL, GRAYED 34 MENUITEM SEPARATOR 35 MENUITEM "&Find...\tCtrl+F",-1, GRAYED 36 MENUITEM "Find Next", -1, GRAYED 37 MENUITEM "Replace\tCtrl+H", -1, GRAYED 38 MENUITEM SEPARATOR 39 MENUITEM "Object Properties",-1, GRAYED 40 MENUITEM "Object", -1, GRAYED 41 END 42 POPUP "&View" 43 BEGIN 44 MENUITEM "&Toolbar", -1, CHECKED 45 MENUITEM "&Format Bar", -1, CHECKED 46 MENUITEM "&Ruler", -1, CHECKED 47 MENUITEM "&Status Bar", ID_STATUSBAR, CHECKED 48 END 49 POPUP "&Insert" 50 BEGIN 51 MENUITEM "&Date and Time...",-1, GRAYED 52 MENUITEM "&Object...", -1, GRAYED 53 END 54 POPUP "&Format" 55 BEGIN 56 MENUITEM "&Font...", -1 GRAYED 57 MENUITEM "Bulletstyle", -1, GRAYED 58 MENUITEM "Paragraph...", -1, GRAYED 59 MENUITEM "tabs...", -1, GRAYED 60 END 61 POPUP "&Window" 62 BEGIN 63 MENUITEM "&Cascade", ID_WINDOW_CASCADE 64 MENUITEM "Tile &Horizontally", ID_WINDOW_TILE_HORZ 65 MENUITEM "Tile &Vertically", ID_WINDOW_TILE_VERT 66 MENUITEM "&Arrange Icons", ID_WINDOW_ARRANGE 67 MENUITEM SEPARATOR 68 MENUITEM "Nex&t\tCtrl+F6", ID_WINDOW_NEXT 69 END 70 POPUP "&Help" 71 BEGIN 72 MENUITEM "&About...", ID_ABOUT 73 END 74END 75 76IDR_POPUP MENU 77BEGIN 78 POPUP "popup" 79 BEGIN 80 81 MENUITEM SEPARATOR 82 83 END 84END 85 86 87IDD_NEWDOCSEL DIALOGEX 6,6,159,67 88CAPTION "New" 89FONT 8, "MS Shell Dlg",0,0 90STYLE DS_SHELLFONT | WS_BORDER | WS_DLGFRAME | DS_MODALFRAME 91BEGIN 92 LTEXT "New document Type:", IDC_STATIC, 4, 3, 72, 9 93 LISTBOX IDC_LIST, 4, 16, 104, 46, WS_TABSTOP 94 PUSHBUTTON "&OK", IDOK, 112, 16, 44, 13 95 PUSHBUTTON "&Cancel", IDCANCEL, 112, 33, 44, 13 96END 97 98 99IDD_ABOUTBOX DIALOGEX 22,16,190,182 100CAPTION "About WordPad" 101FONT 8, "MS Shell Dlg",0,0 102STYLE DS_SHELLFONT | WS_BORDER | WS_DLGFRAME | WS_SYSMENU | DS_MODALFRAME 103BEGIN 104 LTEXT "WordPad II v0.1\nCopyright (C) 2006\nGed Murphy (gedmurphy@gmail.com)", IDC_STATIC, 48, 7, 150, 36 105 PUSHBUTTON "Close", IDOK, 65, 162, 44, 15 106 ICON IDI_ICON, IDC_STATIC, 10, 10, 7, 30 107 EDITTEXT IDC_LICENSE_EDIT, 8, 40, 174, 110, WS_VISIBLE | WS_VSCROLL | WS_TABSTOP | ES_READONLY | ES_MULTILINE 108END 109 110 111STRINGTABLE DISCARDABLE 112BEGIN 113 IDS_LICENSE "This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.\r\n\r\nThis program 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 General Public License for more details.\r\n\r\nYou should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA." 114 IDS_DEFAULT_NAME "Document %1!u!" 115 IDS_READY " Ready." 116END 117 118STRINGTABLE DISCARDABLE 119BEGIN 120 IDS_DOC_TYPE_RICH_TEXT "Rich Text Document" 121 IDS_DOC_TYPE_UNICODE_TEXT "Text Document" 122 IDS_DOC_TYPE_TEXT "Unicode Text Document" 123END 124 125 126 127/* Tooltips */ 128STRINGTABLE DISCARDABLE 129BEGIN 130 IDS_TOOLTIP_NEW "New" 131 IDS_TOOLTIP_OPEN "Open" 132 IDS_TOOLTIP_SAVE "Save" 133 IDS_TOOLTIP_PRINTPRE "Print preview" 134 IDS_TOOLTIP_PRINT "Print" 135 IDS_TOOLTIP_CUT "Cut" 136 IDS_TOOLTIP_COPY "Copy" 137 IDS_TOOLTIP_PASTE "Paste" 138 IDS_TOOLTIP_UNDO "Undo" 139 IDS_TOOLTIP_REDO "Redo" 140END 141 142/* Hints */ 143STRINGTABLE DISCARDABLE 144BEGIN 145 IDS_HINT_BLANK " " 146 IDS_HINT_NEW " Creates a new document." 147 IDS_HINT_OPEN " Opens an existing document." 148 IDS_HINT_CLOSE " Closes this window." 149 IDS_HINT_CLOSEALL " Closes all windows." 150 IDS_HINT_SAVE " Saves the active document." 151 IDS_HINT_SAVEAS " Saves the active document with a new name." 152 IDS_HINT_PRINT " Prints the active document." 153 IDS_HINT_PRINTPRE " Previews the printed document." 154 IDS_HINT_PAGESETUP " Changes page layout settings." 155 IDS_HINT_EXIT " Exits this application." 156 157 IDS_HINT_CASCADE " Arrange windows so they overlap." 158 IDS_HINT_TILE_HORZ " Arrange windows as non-overlapping tiles." 159 IDS_HINT_TILE_VERT " Arrange windows as non-overlapping tiles." 160 IDS_HINT_ARRANGE " Arrange icons at the bottom of the window." 161 IDS_HINT_NEXT " Activates the next window." 162 163 IDS_HINT_SYS_RESTORE " Restores this window to normal size." 164 IDS_HINT_SYS_MOVE " Moves this window." 165 IDS_HINT_SYS_SIZE " Resizes this window." 166 IDS_HINT_SYS_MINIMIZE " Collapses this window to an icon." 167 IDS_HINT_SYS_MAXIMIZE " Expands this window to fill this screen." 168END 169 170