1/* 2 * WordPad (Simplified Chinese resources) 3 * 写字板(简体中文资源) 4 * Copyright 2007 zhangbing <e_zb@21cn.com, ezb@mail.gywb.cn> 5 * 6 * This program is free software; you can redistribute it and/or 7 * modify it under the terms of the GNU Lesser General Public 8 * License as published by the Free Software Foundation; either 9 * version 2.1 of the License, or (at your option) any later version. 10 * 11 * This library is distributed in the hope that it will be useful, 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14 * Lesser General Public License for more details. 15 * 16 * You should have received a copy of the GNU Lesser General Public 17 * License along with this library; if not, write to the Free Software 18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 19 */ 20 21LANGUAGE LANG_CHINESE, SUBLANG_CHINESE_SIMPLIFIED 22 23IDR_MAINMENU MENU 24BEGIN 25 POPUP "文件(&F)" 26 BEGIN 27 MENUITEM "新建(&N)...", ID_NEW 28 MENUITEM "打开(&O)", ID_OPEN 29 MENUITEM SEPARATOR 30 MENUITEM "关闭(&C)\tCtrl+F4", ID_CLOSE, GRAYED 31 MENUITEM "关闭全部(&L)", ID_CLOSEALL, GRAYED 32 MENUITEM SEPARATOR 33 MENUITEM "保存(&S)", ID_SAVE, GRAYED 34 MENUITEM "另存为(&A)...", ID_SAVEAS, GRAYED 35 MENUITEM SEPARATOR 36 MENUITEM "打印预览(&V)", ID_PRINTPRE, GRAYED 37 MENUITEM "打印(&P)...", ID_PRINT, GRAYED 38 MENUITEM SEPARATOR 39 MENUITEM "页面设置(&U)...", ID_PAGESETUP, GRAYED 40 MENUITEM SEPARATOR 41 MENUITEM "退出(&X)\tAlt+F4", ID_EXIT 42 END 43 POPUP "编辑(&E)" 44 BEGIN 45 MENUITEM "撤销(&U)", ID_UNDO, GRAYED 46 MENUITEM "重做(&R)", ID_REDO, GRAYED 47 MENUITEM SEPARATOR 48 MENUITEM "剪切(&T)", ID_CUT, GRAYED 49 MENUITEM "复制(&C)", ID_COPY, GRAYED 50 MENUITEM "粘贴(&P)", ID_PASTE, GRAYED 51 MENUITEM SEPARATOR 52 MENUITEM "清除", -1, GRAYED 53 MENUITEM "全选(&A)", ID_SELALL, GRAYED 54 MENUITEM SEPARATOR 55 MENUITEM "查找(&F)...\tCtrl+F", -1, GRAYED 56 MENUITEM "查找下一个", -1, GRAYED 57 MENUITEM "替换\tCtrl+H", -1, GRAYED 58 MENUITEM SEPARATOR 59 MENUITEM "对象属性", -1, GRAYED 60 MENUITEM "对象", -1, GRAYED 61 END 62 POPUP "查看(&V)" 63 BEGIN 64 MENUITEM "工具栏(&T)", -1, CHECKED 65 MENUITEM "格式栏(&F)", -1, CHECKED 66 MENUITEM "标尺(&R)", -1, CHECKED 67 MENUITEM "状态栏(&S)", ID_STATUSBAR, CHECKED 68 END 69 POPUP "插入(&I)" 70 BEGIN 71 MENUITEM "日期和时间(&D)...", -1, GRAYED 72 MENUITEM "对象(&O)...", -1, GRAYED 73 END 74 POPUP "格式(&F)" 75 BEGIN 76 MENUITEM "字体(&F)...", -1 GRAYED 77 MENUITEM "项目符号样式", -1, GRAYED 78 MENUITEM "段落...", -1, GRAYED 79 MENUITEM "跳格键...", -1, GRAYED 80 END 81 POPUP "窗口(&W)" 82 BEGIN 83 MENUITEM "层叠窗口(&C)", ID_WINDOW_CASCADE 84 MENUITEM "横向平铺窗口(&H)", ID_WINDOW_TILE_HORZ 85 MENUITEM "纵向平铺窗口(&V)", ID_WINDOW_TILE_VERT 86 MENUITEM "排列图标(&A)", ID_WINDOW_ARRANGE 87 MENUITEM SEPARATOR 88 MENUITEM "下一个窗口(&T)\tCtrl+F6", ID_WINDOW_NEXT 89 END 90 POPUP "帮助(&H)" 91 BEGIN 92 MENUITEM "关于写字板(&A)...", ID_ABOUT 93 END 94END 95 96IDR_POPUP MENU 97BEGIN 98 POPUP "popup" 99 BEGIN 100 101 MENUITEM SEPARATOR 102 103 END 104END 105 106 107IDD_NEWDOCSEL DIALOGEX 6,6,159,67 108CAPTION "新建" 109FONT 9, "MS Shell Dlg",0,0 110STYLE DS_SHELLFONT | WS_BORDER | WS_DLGFRAME | DS_MODALFRAME 111BEGIN 112 LTEXT "新建文档类型:", IDC_STATIC, 4, 3, 72, 9 113 LISTBOX IDC_LIST, 4, 16, 104, 46, WS_TABSTOP 114 PUSHBUTTON "确定(&O)", IDOK, 112, 16, 44, 13 115 PUSHBUTTON "取消(&C)", IDCANCEL, 112, 33, 44, 13 116END 117 118 119IDD_ABOUTBOX DIALOGEX 22,16,190,182 120CAPTION "关于WordPad" 121FONT 9, "MS Shell Dlg",0,0 122STYLE DS_SHELLFONT | WS_BORDER | WS_DLGFRAME | WS_SYSMENU | DS_MODALFRAME 123BEGIN 124 LTEXT "WordPad II v0.1\n版权 (C) 2006\nGed Murphy (gedmurphy@gmail.com)", IDC_STATIC, 48, 7, 150, 36 125 LTEXT "中文翻译:张冰 (e_zb@21cn.com, ezb@mail.gywb.cn)",IDC_STATIC, 48, 32, 111, 25 126 PUSHBUTTON "确定", IDOK, 65, 165, 44, 15 127 ICON IDI_ICON, IDC_STATIC, 10, 10, 7, 30 128 EDITTEXT IDC_LICENSE_EDIT, 8, 50, 174, 110, WS_VISIBLE | WS_VSCROLL | WS_TABSTOP | ES_READONLY | ES_MULTILINE 129END 130 131 132STRINGTABLE DISCARDABLE 133BEGIN 134 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." 135 IDS_DEFAULT_NAME "Document %1!u!" 136 IDS_READY " Ready." 137END 138 139STRINGTABLE DISCARDABLE 140BEGIN 141 IDS_DOC_TYPE_RICH_TEXT "RTF 文档" 142 IDS_DOC_TYPE_UNICODE_TEXT "文本文档" 143 IDS_DOC_TYPE_TEXT "Unicode 文本文档" 144END 145 146 147 148/* Tooltips */ 149STRINGTABLE DISCARDABLE 150BEGIN 151 IDS_TOOLTIP_NEW "新建" 152 IDS_TOOLTIP_OPEN "打开" 153 IDS_TOOLTIP_SAVE "保存" 154 IDS_TOOLTIP_PRINTPRE "打印预览" 155 IDS_TOOLTIP_PRINT "打印" 156 IDS_TOOLTIP_CUT "剪切" 157 IDS_TOOLTIP_COPY "复制" 158 IDS_TOOLTIP_PASTE "粘贴" 159 IDS_TOOLTIP_UNDO "撤销" 160 IDS_TOOLTIP_REDO "重做" 161END 162 163/* Hints */ 164STRINGTABLE DISCARDABLE 165BEGIN 166 IDS_HINT_BLANK " " 167 IDS_HINT_NEW " 创建新文档。" 168 IDS_HINT_OPEN " 打开已存文档。" 169 IDS_HINT_CLOSE " 关闭活动文档。" 170 IDS_HINT_CLOSEALL " 关闭所有文档。" 171 IDS_HINT_SAVE " 保存活动文档。" 172 IDS_HINT_SAVEAS " 用新名字保存活动文档。" 173 IDS_HINT_PRINT " 打印活动文档。" 174 IDS_HINT_PRINTPRE " 显示整个页面。" 175 IDS_HINT_PAGESETUP " 改变页面设置。" 176 IDS_HINT_EXIT " 退出应用程序;提醒您保存文档。" 177 178 IDS_HINT_CASCADE " 以重叠方式排列窗口" 179 IDS_HINT_TILE_HORZ " 以非重叠的平铺方式排列窗口" 180 IDS_HINT_TILE_VERT " 以非重叠的平铺方式排列窗口" 181 IDS_HINT_ARRANGE " 在窗口底部排列图标" 182 IDS_HINT_NEXT " 激活下一个窗口" 183 184 IDS_HINT_SYS_RESTORE " 恢复窗口" 185 IDS_HINT_SYS_MOVE " 移动窗口" 186 IDS_HINT_SYS_SIZE " 修改窗口尺寸" 187 IDS_HINT_SYS_MINIMIZE " 最小化" 188 IDS_HINT_SYS_MAXIMIZE " 最大化" 189END 190 191