1 /*
   2  * Copyright (c) 1996, 2016, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 package sun.applet.resources;
  26 
  27 import java.util.ListResourceBundle;
  28 
  29 public class MsgAppletViewer_zh_TW extends ListResourceBundle {
  30 
  31     public Object[][] getContents() {
  32         Object[][] temp = new Object[][] {
  33             {"textframe.button.dismiss", "關閉"},
  34             {"appletviewer.tool.title", "Applet 檢視器: {0}"},
  35             {"appletviewer.menu.applet", "Applet"},
  36             {"appletviewer.menuitem.restart", "重新啟動"},
  37             {"appletviewer.menuitem.reload", "重新載入"},
  38             {"appletviewer.menuitem.stop", "停止"},
  39             {"appletviewer.menuitem.save", "儲存..."},
  40             {"appletviewer.menuitem.start", "啟動"},
  41             {"appletviewer.menuitem.clone", "複製..."},
  42             {"appletviewer.menuitem.tag", "標記..."},
  43             {"appletviewer.menuitem.info", "資訊..."},
  44             {"appletviewer.menuitem.edit", "編輯"},
  45             {"appletviewer.menuitem.encoding", "字元編碼"},
  46             {"appletviewer.menuitem.print", "列印..."},
  47             {"appletviewer.menuitem.props", "屬性..."},
  48             {"appletviewer.menuitem.close", "關閉"},
  49             {"appletviewer.menuitem.quit", "結束"},
  50             {"appletviewer.label.hello", "您好..."},
  51             {"appletviewer.status.start", "正在啟動 Applet..."},
  52             {"appletviewer.appletsave.filedialogtitle","將 Applet 序列化為檔案"},
  53             {"appletviewer.appletsave.err1", "將 {0} 序列化為 {1}"},
  54             {"appletviewer.appletsave.err2", "在 appletSave 中: {0}"},
  55             {"appletviewer.applettag", "顯示的標記"},
  56             {"appletviewer.applettag.textframe", "Applet HTML 標記"},
  57             {"appletviewer.appletinfo.applet", "-- 無 Applet 資訊 --"},
  58             {"appletviewer.appletinfo.param", "-- 無參數資訊 --"},
  59             {"appletviewer.appletinfo.textframe", "Applet 資訊"},
  60             {"appletviewer.appletprint.fail", "列印失敗。"},
  61             {"appletviewer.appletprint.finish", "完成列印。"},
  62             {"appletviewer.appletprint.cancel", "列印取消。"},
  63             {"appletviewer.appletencoding", "字元編碼: {0}"},
  64             {"appletviewer.parse.warning.requiresname", "警告: <參數名稱=... 值=...> 標記需要名稱屬性。"},
  65             {"appletviewer.parse.warning.paramoutside", "警告: <param> 標記在 <applet> ... </applet> 之外。"},
  66             {"appletviewer.parse.warning.applet.requirescode", "警告: <applet> 標記需要代碼屬性。"},
  67             {"appletviewer.parse.warning.applet.requiresheight", "警告: <applet> 標記需要高度屬性。"},
  68             {"appletviewer.parse.warning.applet.requireswidth", "警告: <applet> 標記需要寬度屬性。"},
  69             {"appletviewer.parse.warning.object.requirescode", "警告: <object> 標記需要代碼屬性。"},
  70             {"appletviewer.parse.warning.object.requiresheight", "警告: <object> 標記需要高度屬性。"},
  71             {"appletviewer.parse.warning.object.requireswidth", "警告: <object> 標記需要寬度屬性。"},
  72             {"appletviewer.parse.warning.embed.requirescode", "警告: <embed> 標記需要代碼屬性。"},
  73             {"appletviewer.parse.warning.embed.requiresheight", "警告: <embed> 標記需要高度屬性。"},
  74             {"appletviewer.parse.warning.embed.requireswidth", "警告: <embed> 標記需要寬度屬性。"},
  75             {"appletviewer.parse.warning.appnotLongersupported", "警告: 不再支援 <app> 標記,請改用 <applet>:"},
  76             {"appletviewer.deprecated", "AppletViewer 已不再使用。"},
  77             {"appletviewer.usage", "用法: appletviewer <options> url(s)\n\n其中的 <options> 包括:\n  -encoding <encoding>    指定 HTML 檔案使用的字元編碼\n  -J<runtime flag>        將引數傳送至 Java 解譯器\n\n-J 選項不是標準選項,若有變更不另行通知。"},
  78             {"appletviewer.main.err.unsupportedopt", "不支援的選項: {0}"},
  79             {"appletviewer.main.err.unrecognizedarg", "無法辨識的引數: {0}"},
  80             {"appletviewer.main.err.dupoption", "重複使用選項: {0}"},
  81             {"appletviewer.main.err.inputfile", "未指定輸入檔案。"},
  82             {"appletviewer.main.err.badurl", "錯誤的 URL: {0} ( {1} )"},
  83             {"appletviewer.main.err.io", "讀取時發生 I/O 異常狀況: {0}"},
  84             {"appletviewer.main.err.readablefile", "確認 {0} 為檔案且可讀取。"},
  85             {"appletviewer.main.err.correcturl", "{0} 是否為正確的 URL?"},
  86             {"appletviewer.main.prop.store", "AppletViewer 的使用者特定屬性"},
  87             {"appletviewer.main.err.prop.cantread", "無法讀取使用者屬性檔案: {0}"},
  88             {"appletviewer.main.err.prop.cantsave", "無法儲存使用者屬性檔案: {0}"},
  89             {"appletviewer.main.warn.nosecmgr", "警告: 停用安全功能。"},
  90             {"appletviewer.main.debug.cantfinddebug", "找不到除錯程式!"},
  91             {"appletviewer.main.debug.cantfindmain", "在除錯程式中找不到主要方法!"},
  92             {"appletviewer.main.debug.exceptionindebug", "除錯程式發生異常狀況!"},
  93             {"appletviewer.main.debug.cantaccess", "無法存取除錯程式!"},
  94             {"appletviewer.main.nosecmgr", "警告: 未安裝 SecurityManager!"},
  95             {"appletviewer.main.warning", "警告: 未啟動 Applet。請確認輸入包含 <applet> 標記。"},
  96             {"appletviewer.main.warn.prop.overwrite", "警告: 依照使用者要求,暫時覆寫系統屬性: 索引鍵: {0} 舊值: {1} 新值: {2}"},
  97             {"appletviewer.main.warn.cantreadprops", "警告: 無法讀取 AppletViewer 屬性檔案: {0} 使用預設值。"},
  98             {"appletioexception.loadclass.throw.interrupted", "類別載入中斷: {0}"},
  99             {"appletioexception.loadclass.throw.notloaded", "未載入類別: {0}"},
 100             {"appletclassloader.loadcode.verbose", "開啟 {0} 的串流以取得 {1}"},
 101             {"appletclassloader.filenotfound", "尋找 {0} 時找不到檔案"},
 102             {"appletclassloader.fileformat", "載入時發生檔案格式異常狀況: {0}"},
 103             {"appletclassloader.fileioexception", "載入時發生 I/O 異常狀況: {0}"},
 104             {"appletclassloader.fileexception", "載入時發生 {0} 異常狀況: {1}"},
 105             {"appletclassloader.filedeath", "載入時刪除 {0}: {1}"},
 106             {"appletclassloader.fileerror", "載入時發生 {0} 錯誤: {1}"},
 107             {"appletclassloader.findclass.verbose.openstream", "開啟 {0} 的串流以取得 {1}"},
 108             {"appletclassloader.getresource.verbose.forname", "AppletClassLoader.getResource 的名稱: {0}"},
 109             {"appletclassloader.getresource.verbose.found", "找到資源: {0} 作為系統資源"},
 110             {"appletclassloader.getresourceasstream.verbose", "找到資源: {0} 作為系統資源"},
 111             {"appletpanel.runloader.err", "物件或代碼參數!"},
 112             {"appletpanel.runloader.exception", "還原序列化 {0} 時發生異常狀況"},
 113             {"appletpanel.destroyed", "已損毀 Applet。"},
 114             {"appletpanel.loaded", "已載入 Applet。"},
 115             {"appletpanel.started", "已啟用 Applet。"},
 116             {"appletpanel.inited", "已起始 Applet。"},
 117             {"appletpanel.stopped", "已停止 Applet。"},
 118             {"appletpanel.disposed", "已處置 Applet。"},
 119             {"appletpanel.nocode", "APPLET 標記遺漏 CODE 參數。"},
 120             {"appletpanel.notfound", "載入: 找不到類別 {0}。"},
 121             {"appletpanel.nocreate", "載入: 無法建立 {0}。"},
 122             {"appletpanel.noconstruct", "載入: {0} 非公用或沒有公用建構子。"},
 123             {"appletpanel.death", "已刪除"},
 124             {"appletpanel.exception", "異常狀況: {0}。"},
 125             {"appletpanel.exception2", "異常狀況: {0}: {1}。"},
 126             {"appletpanel.error", "錯誤: {0}。"},
 127             {"appletpanel.error2", "錯誤: {0}: {1}。"},
 128             {"appletpanel.notloaded", "起始: 未載入 Applet。"},
 129             {"appletpanel.notinited", "啟動: 未起始 Applet。"},
 130             {"appletpanel.notstarted", "停止: 未啟動 Applet。"},
 131             {"appletpanel.notstopped", "損毀: 未停止 Applet。"},
 132             {"appletpanel.notdestroyed", "處置: 未損毀 Applet。"},
 133             {"appletpanel.notdisposed", "載入: 未處置 Applet。"},
 134             {"appletpanel.bail", "已中斷: 正在結束。"},
 135             {"appletpanel.filenotfound", "尋找 {0} 時找不到檔案"},
 136             {"appletpanel.fileformat", "載入時發生檔案格式異常狀況: {0}"},
 137             {"appletpanel.fileioexception", "載入時發生 I/O 異常狀況: {0}"},
 138             {"appletpanel.fileexception", "載入時發生 {0} 異常狀況: {1}"},
 139             {"appletpanel.filedeath", "載入時刪除 {0}: {1}"},
 140             {"appletpanel.fileerror", "載入時發生 {0} 錯誤: {1}"},
 141             {"appletpanel.badattribute.exception", "HTML 剖析: 寬度/高度屬性的值不正確"},
 142             {"appletillegalargumentexception.objectinputstream", "AppletObjectInputStream 需要非空值載入器"},
 143             {"appletprops.title", "AppletViewer 屬性"},
 144             {"appletprops.label.http.server", "Http 代理主機伺服器:"},
 145             {"appletprops.label.http.proxy", "Http 代理主機連接埠:"},
 146             {"appletprops.label.network", "網路存取:"},
 147             {"appletprops.choice.network.item.none", "無"},
 148             {"appletprops.choice.network.item.applethost", "Applet 主機"},
 149             {"appletprops.choice.network.item.unrestricted", "不受限制"},
 150             {"appletprops.label.class", "類別存取:"},
 151             {"appletprops.choice.class.item.restricted", "受限制"},
 152             {"appletprops.choice.class.item.unrestricted", "不受限制"},
 153             {"appletprops.label.unsignedapplet", "允許未簽署的 Applet:"},
 154             {"appletprops.choice.unsignedapplet.no", "否"},
 155             {"appletprops.choice.unsignedapplet.yes", "是"},
 156             {"appletprops.button.apply", "套用"},
 157             {"appletprops.button.cancel", "取消"},
 158             {"appletprops.button.reset", "重設"},
 159             {"appletprops.apply.exception", "無法儲存屬性: {0}"},
 160             /* 4066432 */
 161             {"appletprops.title.invalidproxy", "無效的項目"},
 162             {"appletprops.label.invalidproxy", "代理主機連接埠必須是正整數值。"},
 163             {"appletprops.button.ok", "確定"},
 164             /* end 4066432 */
 165             {"appletprops.prop.store", "AppletViewer 的使用者特定屬性"},
 166             {"appletsecurityexception.checkcreateclassloader", "安全異常狀況: classloader"},
 167             {"appletsecurityexception.checkaccess.thread", "安全異常狀況: thread"},
 168             {"appletsecurityexception.checkaccess.threadgroup", "安全異常狀況: threadgroup: {0}"},
 169             {"appletsecurityexception.checkexit", "安全異常狀況: exit: {0}"},
 170             {"appletsecurityexception.checkexec", "安全異常狀況: exec: {0}"},
 171             {"appletsecurityexception.checklink", "安全異常狀況: link: {0}"},
 172             {"appletsecurityexception.checkpropsaccess", "安全異常狀況: 屬性"},
 173             {"appletsecurityexception.checkpropsaccess.key", "安全異常狀況: 屬性存取 {0}"},
 174             {"appletsecurityexception.checkread.exception1", "安全異常狀況: {0},{1}"},
 175             {"appletsecurityexception.checkread.exception2", "安全異常狀況: file.read: {0}"},
 176             {"appletsecurityexception.checkread", "安全異常狀況: file.read: {0} == {1}"},
 177             {"appletsecurityexception.checkwrite.exception", "安全異常狀況: {0},{1}"},
 178             {"appletsecurityexception.checkwrite", "安全異常狀況: file.write: {0} == {1}"},
 179             {"appletsecurityexception.checkread.fd", "安全異常狀況: fd.read"},
 180             {"appletsecurityexception.checkwrite.fd", "安全異常狀況: fd.write"},
 181             {"appletsecurityexception.checklisten", "安全異常狀況: socket.listen: {0}"},
 182             {"appletsecurityexception.checkaccept", "安全異常狀況: socket.accept: {0}:{1}"},
 183             {"appletsecurityexception.checkconnect.networknone", "安全異常狀況: socket.connect: {0}->{1}"},
 184             {"appletsecurityexception.checkconnect.networkhost1", "安全異常狀況: 無法從來源 {1} 連線至 {0}。"},
 185             {"appletsecurityexception.checkconnect.networkhost2", "安全異常狀況: 無法解析主機 {0} 或 {1} 的 IP。"},
 186             {"appletsecurityexception.checkconnect.networkhost3", "安全異常狀況: 無法解析主機 {0} 的 IP。請參閱 trustProxy 屬性。"},
 187             {"appletsecurityexception.checkconnect", "安全異常狀況: connect: {0}->{1}"},
 188             {"appletsecurityexception.checkpackageaccess", "安全異常狀況: 無法存取套裝程式: {0}"},
 189             {"appletsecurityexception.checkpackagedefinition", "安全異常狀況: 無法定義套裝程式: {0}"},
 190             {"appletsecurityexception.cannotsetfactory", "安全異常狀況: 無法設定處理站"},
 191             {"appletsecurityexception.checkmemberaccess", "安全異常狀況: 檢查成員存取"},
 192             {"appletsecurityexception.checkgetprintjob", "安全異常狀況: getPrintJob"},
 193             {"appletsecurityexception.checksystemclipboardaccess", "安全異常狀況: getSystemClipboard"},
 194             {"appletsecurityexception.checkawteventqueueaccess", "安全異常狀況: getEventQueue"},
 195             {"appletsecurityexception.checksecurityaccess", "安全異常狀況: 安全作業: {0}"},
 196             {"appletsecurityexception.getsecuritycontext.unknown", "不明的類別載入器類型。無法檢查 getContext"},
 197             {"appletsecurityexception.checkread.unknown", "不明的類別載入器類型。無法檢查 read {0}"},
 198             {"appletsecurityexception.checkconnect.unknown", "不明的類別載入器類型。無法檢查連線"},
 199         };
 200 
 201         return temp;
 202     }
 203 }