1c2c66affSColin Finck/* 2c2c66affSColin Finck * HTML Help (Simplified and Traditional Chinese Resources) 3c2c66affSColin Finck * 4c2c66affSColin Finck * This library is free software; you can redistribute it and/or 5c2c66affSColin Finck * modify it under the terms of the GNU Lesser General Public 6c2c66affSColin Finck * License as published by the Free Software Foundation; either 7c2c66affSColin Finck * version 2.1 of the License, or (at your option) any later version. 8c2c66affSColin Finck * 9c2c66affSColin Finck * This library is distributed in the hope that it will be useful, 10c2c66affSColin Finck * but WITHOUT ANY WARRANTY; without even the implied warranty of 11c2c66affSColin Finck * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12c2c66affSColin Finck * Lesser General Public License for more details. 13c2c66affSColin Finck * 14c2c66affSColin Finck * You should have received a copy of the GNU Lesser General Public 15c2c66affSColin Finck * License along with this library; if not, write to the Free Software 16c2c66affSColin Finck * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA 17*6b700c6aSChan Chilung * 18*6b700c6aSChan Chilung * TRANSLATOR: 19*6b700c6aSChan Chilung * 2008 Hongbo Ni <hongbo.at.njstar.com> 20*6b700c6aSChan Chilung * Sync with Wine: Traditional Chinese on 2021; Simplified Chinese on 2021 21c2c66affSColin Finck */ 22c2c66affSColin Finck 23c2c66affSColin Finck/* Chinese text is encoded in UTF-8 */ 24c2c66affSColin Finck#pragma code_page(65001) 25c2c66affSColin Finck 26c2c66affSColin FinckLANGUAGE LANG_CHINESE, SUBLANG_CHINESE_SIMPLIFIED 27c2c66affSColin Finck 28c2c66affSColin FinckSTRINGTABLE 29c2c66affSColin FinckBEGIN 30c2c66affSColin Finck IDS_CONTENTS "内容(&C)" 31c2c66affSColin Finck IDS_INDEX "目录(&N)" 32c2c66affSColin Finck IDS_SEARCH "搜寻(&S)" 33c2c66affSColin Finck IDS_FAVORITES "最爱(&I)" 34c2c66affSColin Finck 35c2c66affSColin Finck IDS_HIDETABS "隐藏选项卡(&T)" 36c2c66affSColin Finck IDS_SHOWTABS "显示选项卡(&T)" 37c2c66affSColin FinckEND 38c2c66affSColin Finck 39c2c66affSColin FinckSTRINGTABLE 40c2c66affSColin FinckBEGIN 41c2c66affSColin Finck IDTB_EXPAND "显示" 42c2c66affSColin Finck IDTB_CONTRACT "隐藏" 43c2c66affSColin Finck IDTB_STOP "停止" 44c2c66affSColin Finck IDTB_REFRESH "刷新" 45c2c66affSColin Finck IDTB_BACK "向后" 46c2c66affSColin Finck IDTB_HOME "首页" 47c2c66affSColin Finck IDTB_SYNC "同步" 48c2c66affSColin Finck IDTB_PRINT "打印" 49c2c66affSColin Finck IDTB_OPTIONS "选项" 50c2c66affSColin Finck IDTB_FORWARD "向前" 51c2c66affSColin FinckEND 52c2c66affSColin Finck 53c2c66affSColin FinckMENU_POPUP MENU 54c2c66affSColin Finck{ 55c2c66affSColin Finck POPUP "" /* Options */ 56c2c66affSColin Finck { 57c2c66affSColin Finck MENUITEM "", IDTB_EXPAND 58c2c66affSColin Finck MENUITEM "同步(&Y)", IDTB_SYNC 59*6b700c6aSChan Chilung MENUITEM "向后(&B)", IDTB_BACK 60c2c66affSColin Finck MENUITEM "向前(&F)", IDTB_FORWARD 61c2c66affSColin Finck MENUITEM "首页(&H)", IDTB_HOME 62c2c66affSColin Finck MENUITEM "停止(&S)", IDTB_STOP 63c2c66affSColin Finck MENUITEM "刷新(&R)", IDTB_REFRESH 64c2c66affSColin Finck MENUITEM "打印...(&P)", IDTB_PRINT 65c2c66affSColin Finck } 66c2c66affSColin Finck} 67c2c66affSColin Finck 68*6b700c6aSChan ChilungMENU_WEBBROWSER MENU 69*6b700c6aSChan Chilung{ 70*6b700c6aSChan Chilung POPUP "" 71*6b700c6aSChan Chilung { 72*6b700c6aSChan Chilung MENUITEM "向后(&B)", IDTB_BACK 73*6b700c6aSChan Chilung MENUITEM "向前(&F)", IDTB_FORWARD 74*6b700c6aSChan Chilung MENUITEM SEPARATOR 75*6b700c6aSChan Chilung MENUITEM "全选(&A)", MIID_SELECTALL 76*6b700c6aSChan Chilung MENUITEM SEPARATOR 77*6b700c6aSChan Chilung MENUITEM "查看源代码(&V)", MIID_VIEWSOURCE 78*6b700c6aSChan Chilung MENUITEM SEPARATOR 79*6b700c6aSChan Chilung MENUITEM "打印...(&P)", IDTB_PRINT 80*6b700c6aSChan Chilung MENUITEM "刷新(&R)", IDTB_REFRESH 81*6b700c6aSChan Chilung MENUITEM SEPARATOR 82*6b700c6aSChan Chilung MENUITEM "属性(&T)", MIID_PROPERTIES 83*6b700c6aSChan Chilung } 84*6b700c6aSChan Chilung POPUP "" 85*6b700c6aSChan Chilung { 86*6b700c6aSChan Chilung MENUITEM "剪切(&T)", MIID_CUT 87*6b700c6aSChan Chilung MENUITEM "复制(&C)", MIID_COPY 88*6b700c6aSChan Chilung MENUITEM "粘贴", MIID_PASTE 89*6b700c6aSChan Chilung MENUITEM "全选(&A)", MIID_SELECTALL 90*6b700c6aSChan Chilung MENUITEM "打印(&P)", IDTB_PRINT 91*6b700c6aSChan Chilung } 92*6b700c6aSChan Chilung} 93*6b700c6aSChan Chilung 94c2c66affSColin FinckLANGUAGE LANG_CHINESE, SUBLANG_CHINESE_TRADITIONAL 95c2c66affSColin Finck 96c2c66affSColin FinckSTRINGTABLE 97c2c66affSColin FinckBEGIN 98c2c66affSColin Finck IDS_CONTENTS "內容(&C)" 99c2c66affSColin Finck IDS_INDEX "目錄(&N)" 100c2c66affSColin Finck IDS_SEARCH "搜尋(&S)" 101*6b700c6aSChan Chilung IDS_FAVORITES "我的最愛(&I)" 102*6b700c6aSChan Chilung 103*6b700c6aSChan Chilung IDS_HIDETABS "隱藏分頁(&T)" 104*6b700c6aSChan Chilung IDS_SHOWTABS "顯示分頁(&T)" 105c2c66affSColin FinckEND 106c2c66affSColin Finck 107c2c66affSColin FinckSTRINGTABLE 108c2c66affSColin FinckBEGIN 109c2c66affSColin Finck IDTB_EXPAND "顯示" 110c2c66affSColin Finck IDTB_CONTRACT "隱藏" 111c2c66affSColin Finck IDTB_STOP "停止" 112*6b700c6aSChan Chilung IDTB_REFRESH "重新整理" 113c2c66affSColin Finck IDTB_BACK "向後" 114c2c66affSColin Finck IDTB_HOME "首頁" 115c2c66affSColin Finck IDTB_SYNC "同步" 116c2c66affSColin Finck IDTB_PRINT "列印" 117c2c66affSColin Finck IDTB_OPTIONS "選項" 118c2c66affSColin Finck IDTB_FORWARD "向前" 119c2c66affSColin FinckEND 120c2c66affSColin Finck 121c2c66affSColin FinckMENU_POPUP MENU 122c2c66affSColin Finck{ 123c2c66affSColin Finck POPUP "" /* Options */ 124c2c66affSColin Finck { 125c2c66affSColin Finck MENUITEM "", IDTB_EXPAND 126c2c66affSColin Finck MENUITEM "同步(&Y)", IDTB_SYNC 127c2c66affSColin Finck MENUITEM "返回(&B)", IDTB_BACK 128c2c66affSColin Finck MENUITEM "向前(&F)", IDTB_FORWARD 129c2c66affSColin Finck MENUITEM "首頁(&H)", IDTB_HOME 130c2c66affSColin Finck MENUITEM "停止(&S)", IDTB_STOP 131*6b700c6aSChan Chilung MENUITEM "重新整理(&R)", IDTB_REFRESH 132c2c66affSColin Finck MENUITEM "列印...(&P)", IDTB_PRINT 133c2c66affSColin Finck } 134c2c66affSColin Finck} 135*6b700c6aSChan Chilung 136*6b700c6aSChan ChilungMENU_WEBBROWSER MENU 137*6b700c6aSChan Chilung{ 138*6b700c6aSChan Chilung POPUP "" 139*6b700c6aSChan Chilung { 140*6b700c6aSChan Chilung MENUITEM "返回(&B)", IDTB_BACK 141*6b700c6aSChan Chilung MENUITEM "向前(&F)", IDTB_FORWARD 142*6b700c6aSChan Chilung MENUITEM SEPARATOR 143*6b700c6aSChan Chilung MENUITEM "全選(&A)", MIID_SELECTALL 144*6b700c6aSChan Chilung MENUITEM SEPARATOR 145*6b700c6aSChan Chilung MENUITEM "檢視原始碼(&V)", MIID_VIEWSOURCE 146*6b700c6aSChan Chilung MENUITEM SEPARATOR 147*6b700c6aSChan Chilung MENUITEM "列印(&P)...", IDTB_PRINT 148*6b700c6aSChan Chilung MENUITEM "重新整理(&R)", IDTB_REFRESH 149*6b700c6aSChan Chilung MENUITEM SEPARATOR 150*6b700c6aSChan Chilung MENUITEM "內容(&T)", MIID_PROPERTIES 151*6b700c6aSChan Chilung } 152*6b700c6aSChan Chilung POPUP "" 153*6b700c6aSChan Chilung { 154*6b700c6aSChan Chilung MENUITEM "剪下(&T)", MIID_CUT 155*6b700c6aSChan Chilung MENUITEM "複製(&C)", MIID_COPY 156*6b700c6aSChan Chilung MENUITEM "貼上", MIID_PASTE 157*6b700c6aSChan Chilung MENUITEM "全選(&A)", MIID_SELECTALL 158*6b700c6aSChan Chilung MENUITEM "列印(&P)", IDTB_PRINT 159*6b700c6aSChan Chilung } 160*6b700c6aSChan Chilung} 161