Zh.rc 2.18 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*
 * Help Viewer
 * Simplified Chinese Language Support
 *
 * Copyright 2002 liuspider <liuspider@yahoo.com>
 *
 * 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
19
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
 */

/* Menu */

MAIN_MENU MENU LANGUAGE LANG_CHINESE, SUBLANG_CHINESE_SIMPLIFIED
{
 POPUP "文件(&F)" {
  MENUITEM "打开(&O)", MNID_FILE_OPEN
  MENUITEM SEPARATOR
  MENUITEM "打印(&P)", MNID_FILE_PRINT
  MENUITEM "打印机设置(&S)...", MNID_FILE_SETUP
   MENUITEM SEPARATOR
  MENUITEM "退出(&E)", MNID_FILE_EXIT
 }
 POPUP "编辑(&E)" {
   MENUITEM "复制(&C)...", MNID_EDIT_COPYDLG
   MENUITEM SEPARATOR
   MENUITEM "注释(&A)...", MNID_EDIT_ANNOTATE
 }
 POPUP "书签(&B)" {
   MENUITEM "定义(&D)...", MNID_BKMK_DEFINE
 }
 POPUP "帮助(&H)" {
   MENUITEM "如何使用帮助(&O)", MNID_HELP_HELPON
   MENUITEM "总是在最前面(&T)", MNID_HELP_HELPTOP
   MENUITEM SEPARATOR
   MENUITEM "资料信息(&I)...", MNID_HELP_ABOUT
#ifdef WINELIB
   MENUITEM "关于 WINE(&A)", MNID_HELP_WINE
#endif
 }
}

/* Strings */
STRINGTABLE DISCARDABLE LANGUAGE LANG_CHINESE, SUBLANG_CHINESE_SIMPLIFIED
{
STID_WINE_HELP, 	"WINE 帮助"
STID_WHERROR, 		"错误"
STID_WARNING,  		"警告"
STID_INFO,  		"信息"
STID_NOT_IMPLEMENTED, 	"未实现"
STID_HLPFILE_ERROR_s, 	"读入帮助文件 ‘%s’ 时发生错误"
STID_CONTENTS, 		"内容(&C)"
STID_SEARCH, 		"搜索(&S)"
STID_BACK, 		"返回(&B)"
STID_HISTORY, 		"历史(&H)"
STID_TOPICS,		"主题(&T)"
STID_ALL_FILES, 	"所有文件 (*.*)"
STID_HELP_FILES_HLP, 	"帮助文件 (*.hlp)"
69
STID_FILE_NOT_FOUND_s	"Cannot find '%s'. Do you want to find this file yourself?"
70
}