jdk/src/share/classes/sun/tools/jconsole/resources/JConsoleResources_zh_CN.java
author ohair
Tue, 28 Dec 2010 15:53:50 -0800
changeset 7668 d4a77089c587
parent 7470 3b741e2b6a15
child 8203 e5debcae2183
permissions -rw-r--r--
6962318: Update copyright year Reviewed-by: xdono
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
7668
d4a77089c587 6962318: Update copyright year
ohair
parents: 7470
diff changeset
     2
 * Copyright (c) 2004, 2010, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5307
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5307
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5307
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5307
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5307
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package sun.tools.jconsole.resources;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.util.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import static java.awt.event.KeyEvent.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
 * <p> This class represents the <code>ResourceBundle</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 * for the following package(s):
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 * <ol>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 * <li> sun.tools.jconsole
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * </ol>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 * <P>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * Subclasses must override <code>getContents0</code> and provide an array,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * where each item in the array consists of a <code>String</code> key,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * and either a <code>String</code> value associated with that key,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * or if the keys ends with ".mnemonic", an element
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * representing a mnemomic keycode <code>int</code> or <code>char</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
public class JConsoleResources_zh_CN extends JConsoleResources {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
     * Returns the contents of this <code>ResourceBundle</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
     * @return the contents of this <code>ResourceBundle</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
    protected Object[][] getContents0() {
7470
3b741e2b6a15 6566218: l10n of 6476932
mfang
parents: 5506
diff changeset
    57
        Object[][] temp = new Object[][] {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
        // NOTE 1: The value strings in this file containing "{0}" are
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
        //         processed by the java.text.MessageFormat class.  Any
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
        //         single quotes appearing in these strings need to be
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
        //         doubled up.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
        //
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
        // NOTE 2: To make working with this file a bit easier, please
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
        //         maintain these messages in ASCII sorted order by
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
        //         message key.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
        //
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
        // LOCALIZE THIS
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
        {" 1 day"," 1 \u5929"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
        {" 1 hour"," 1 \u5c0f\u65f6"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
        {" 1 min"," 1 \u5206\u949f"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
        {" 1 month"," 1 \u4e2a\u6708"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
        {" 1 year"," 1 \u5e74"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
        {" 2 hours"," 2 \u5c0f\u65f6"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
        {" 3 hours"," 3 \u5c0f\u65f6"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
        {" 3 months"," 3 \u4e2a\u6708"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
        {" 5 min"," 5 \u5206\u949f"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
        {" 6 hours"," 6 \u5c0f\u65f6"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
        {" 6 months"," 6 \u4e2a\u6708"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
        {" 7 days"," 7 \u5929"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
        {"10 min","10 \u5206\u949f"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
        {"12 hours","12 \u5c0f\u65f6"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
        {"30 min","30 \u5206\u949f"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
        {"<","<"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
        {"<<","<<"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
        {">",">"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
        {"ACTION","ACTION"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
        {"ACTION_INFO","ACTION_INFO"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
        {"All","\u5168\u90e8"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
        {"Apply","\u5e94\u7528"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
        {"Architecture","\u4f53\u7cfb\u7ed3\u6784"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
        {"Array, OpenType", "\u6570\u7ec4, OpenType"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
        {"Array, OpenType, Numeric value viewer","\u6570\u7ec4, OpenType, \u6570\u503c\u67e5\u770b\u5668"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
        {"Attribute","\u5c5e\u6027"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
        {"Attribute value","\u5c5e\u6027\u503c"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
        {"Attribute values","\u5c5e\u6027\u503c"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
        {"Attributes","\u5c5e\u6027"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
        {"Blank", "\u7a7a\u767d"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
        {"BlockedCount WaitedCount",
7470
3b741e2b6a15 6566218: l10n of 6476932
mfang
parents: 5506
diff changeset
    99
             "\u963b\u585e\u603b\u6570\uff1a{0}  \u7b49\u5f85\u603b\u6570\uff1a {1}\n"},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
        {"Boot class path","\u5f15\u5bfc\u7c7b\u8def\u5f84"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
        {"BorderedComponent.moreOrLessButton.toolTip", "\u5207\u6362\u4ee5\u663e\u793a\u8f83\u591a\u4fe1\u606f\u6216\u8f83\u5c11\u4fe1\u606f"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
        {"CPU Usage","CPU \u4f7f\u7528\u60c5\u51b5"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
        {"CPUUsageFormat","CPU \u4f7f\u7528\u60c5\u51b5: {0}%"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
        {"Cancel","\u53d6\u6d88"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
        {"Cascade", "\u5c42\u53e0"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
        {"Cascade.mnemonic", 'C'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
        {"Chart:", "\u56fe\u8868\uff1a"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
        {"Chart:.mnemonic", 'C'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
        {"Class path","\u7c7b\u8def\u5f84"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
        {"Class","\u7c7b"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
        {"ClassName","\u7c7b\u540d\u79f0"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
        {"ClassTab.infoLabelFormat", "<html>\u5df2\u52a0\u8f7d: {0}    \u672a\u52a0\u8f7d: {1}    \u603b\u8ba1: {2}</html>"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
        {"ClassTab.loadedClassesPlotter.accessibleName", "\u5df2\u88c5\u5165\u7c7b\u7684\u56fe\u8868\u3002"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
        {"Classes","\u7c7b"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
        {"Close","\u5173\u95ed"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
        {"Column.Name", "\u540d\u79f0"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
        {"Column.PID", "PID"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
        {"Committed memory","\u5206\u914d\u7684\u5185\u5b58"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
        {"Committed virtual memory","\u5206\u914d\u7684\u865a\u62df\u5185\u5b58"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
        {"Committed", "\u5206\u914d"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
        {"Compiler","\u7f16\u8bd1\u5668"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
        {"CompositeData","\u590d\u5408\u6570\u636e"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
        {"Config","\u914d\u7f6e"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
        {"Connect", "\u8fde\u63a5"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
        {"Connect.mnemonic", 'C'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
        {"Connect...","\u8fde\u63a5..."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
        {"ConnectDialog.connectButton.toolTip", "\u8fde\u63a5\u81f3 Java \u865a\u62df\u673a"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
        {"ConnectDialog.accessibleDescription", "\u7528\u4e8e\u4e0e\u672c\u5730\u6216\u8fdc\u7a0b Java \u865a\u62df\u673a\u5efa\u7acb\u65b0\u8fde\u63a5\u7684\u5bf9\u8bdd\u6846"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
        {"ConnectDialog.masthead.accessibleName", "\u6807\u9898\u56fe\u5f62"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
        {"ConnectDialog.masthead.title", "\u65b0\u5efa\u8fde\u63a5"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
        {"ConnectDialog.statusBar.accessibleName", "\u72b6\u6001\u6761"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
        {"ConnectDialog.title", "JConsole\uff1a\u65b0\u5efa\u8fde\u63a5"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
        {"Connected. Click to disconnect.","\u5df2\u8fde\u63a5\u3002\u8bf7\u5355\u51fb\u4ee5\u65ad\u5f00\u8fde\u63a5\u3002"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
        {"Connection failed","\u8fde\u63a5\u5931\u8d25"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
        {"Connection", "\u8fde\u63a5"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
        {"Connection.mnemonic", 'C'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
        {"Connection name", "\u8fde\u63a5\u540d\u79f0"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
        {"ConnectionName (disconnected)","{0}\uff08\u5df2\u65ad\u5f00\u8fde\u63a5\uff09"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
        {"Constructor","\u6784\u9020\u51fd\u6570"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
        {"Current classes loaded", "\u5f53\u524d\u7c7b\u5df2\u88c5\u5165"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
        {"Current heap size","\u5f53\u524d\u5806\u5927\u5c0f"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
        {"Current value","\u5f53\u524d\u503c\uff1a {0}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
        {"Create", "\u521b\u5efa"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
        {"Daemon threads","\u5b88\u62a4\u7ebf\u7a0b"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
        {"Disconnected. Click to connect.","\u5df2\u65ad\u5f00\u8fde\u63a5\u3002\u8bf7\u5355\u51fb\u4ee5\u8fde\u63a5\u3002"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
        {"Double click to expand/collapse","\u53cc\u51fb\u4ee5\u5c55\u5f00/\u6298\u53e0"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
        {"Double click to visualize", "\u53cc\u51fb\u4ee5\u663e\u793a"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
        {"Description", "\u63cf\u8ff0"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
        {"Description: ", "\u63cf\u8ff0\uff1a "},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
        {"Descriptor", "\u63cf\u8ff0\u7b26"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
        {"Details", "\u8be6\u7ec6\u4fe1\u606f"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
        {"Detect Deadlock", "\u68c0\u6d4b\u5230\u6b7b\u9501"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
        {"Detect Deadlock.mnemonic", 'D'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
        {"Detect Deadlock.toolTip", "\u68c0\u6d4b\u5230\u6b7b\u9501\u7684\u7ebf\u7a0b"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
        {"Dimension is not supported:","\u4e0d\u652f\u6301\u7ef4\uff1a"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
        {"Discard chart", "\u653e\u5f03\u56fe\u8868"},
5307
7865cb8f2f54 6875904: Java 7 message synchronization 1
yhuang
parents: 2
diff changeset
   157
        {"DurationDaysHoursMinutes","{0,choice,1#{0,number,integer} day |1.0<{0,number,integer} days }{1,choice,0<{1,number,integer} hours |1#{1,number,integer} hour |1<{1,number,integer} hours }{2,choice,0<{2,number,integer} minutes|1#{2,number,integer} minute|1.0<{2,number,integer} minutes}"},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
5307
7865cb8f2f54 6875904: Java 7 message synchronization 1
yhuang
parents: 2
diff changeset
   159
        {"DurationHoursMinutes","{0,choice,1#{0,number,integer} hour |1<{0,number,integer} hours }{1,choice,0<{1,number,integer} minutes|1#{1,number,integer} minute|1.0<{1,number,integer} minutes}"},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
        {"DurationMinutes","{0,choice,1#{0,number,integer} minute|1.0<{0,number,integer} minutes}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
        {"DurationSeconds","{0} \u79d2"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
        {"Empty array", "\u7a7a\u6570\u7ec4"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
        {"Empty opentype viewer", "\u7a7a OpenType \u67e5\u770b\u5668"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
        {"Error","\u9519\u8bef"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
        {"Error: MBeans already exist","\u9519\u8bef\uff1aMBean \u5df2\u5b58\u5728"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
        {"Error: MBeans do not exist","\u9519\u8bef\uff1aMBean \u4e0d\u5b58\u5728"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
        {"Error:","\u9519\u8bef\uff1a"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
        {"Event","\u4e8b\u4ef6"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
        {"Exit", "\u9000\u51fa"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
        {"Exit.mnemonic", 'x'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
        {"Fail to load plugin", "\u8b66\u544a: \u65e0\u6cd5\u88c5\u5165\u63d2\u4ef6: {0}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
        {"FileChooser.fileExists.cancelOption", "\u53d6\u6d88"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
        {"FileChooser.fileExists.message", "<html><center>\u6587\u4ef6\u5df2\u5b58\u5728:<br>{0}<br>\u662f\u5426\u8981\u66ff\u6362\uff1f"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
        {"FileChooser.fileExists.okOption", "\u66ff\u6362"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
        {"FileChooser.fileExists.title", "\u6587\u4ef6\u5df2\u5b58\u5728"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
        {"FileChooser.savedFile", "<html>\u5df2\u4fdd\u5b58\u5230\u6587\u4ef6:<br>{0}<br>\uff08{1} \u5b57\u8282\uff09"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
        {"FileChooser.saveFailed.message", "<html><center>\u4fdd\u5b58\u5230\u6587\u4ef6\u5931\u8d25:<br>{0}<br>{1}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
        {"FileChooser.saveFailed.title", "\u4fdd\u5b58\u5931\u8d25"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
        {"Free physical memory","\u53ef\u7528\u7269\u7406\u5185\u5b58"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
        {"Free swap space","\u53ef\u7528\u4ea4\u6362\u7a7a\u95f4"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
        {"Garbage collector","\u5783\u573e\u6536\u96c6\u5668"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
        {"GTK","GTK"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
        {"GcInfo","Name = ''{0}'', Collections = {1,choice,-1#Unavailable|0#{1,number,integer}}, Total time spent = {2}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
        {"GC time","GC \u65f6\u95f4"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
        {"GC time details","{1}\uff08{2} \u9879\u6536\u96c6\uff09\u6240\u7528\u7684\u65f6\u95f4\u4e3a {0}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
        {"Heap Memory Usage","\u5806\u5185\u5b58\u4f7f\u7528\u60c5\u51b5"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
        {"Heap", "\u5806"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
        {"Help.AboutDialog.accessibleDescription", "\u5305\u542b\u6709\u5173 JConsole \u548c JDK \u7248\u672c\u4fe1\u606f\u7684\u5bf9\u8bdd\u6846"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
        {"Help.AboutDialog.jConsoleVersion", "JConsole \u7248\u672c:<br>{0}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
        {"Help.AboutDialog.javaVersion", "Java VM \u7248\u672c:<br>{0}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
        {"Help.AboutDialog.masthead.accessibleName", "\u6807\u9898\u56fe\u5f62"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
        {"Help.AboutDialog.masthead.title", "\u5173\u4e8e JConsole"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
        {"Help.AboutDialog.title", "JConsole\uff1a\u5173\u4e8e"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
        {"Help.AboutDialog.userGuideLink", "JConsole \u7528\u6237\u6307\u5357:<br>{0}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
        {"Help.AboutDialog.userGuideLink.mnemonic", 'U'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
        {"Help.AboutDialog.userGuideLink.url", "http://java.sun.com/javase/6/docs/technotes/guides/management/MonitoringGuide/toc.html"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
        {"HelpMenu.About.title", "\u5173\u4e8e JConsole"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
        {"HelpMenu.About.title.mnemonic", 'A'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
        {"HelpMenu.UserGuide.title", "\u8054\u673a\u7528\u6237\u6307\u5357"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
        {"HelpMenu.UserGuide.title.mnemonic", 'U'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
        {"HelpMenu.title", "\u5e2e\u52a9"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
        {"HelpMenu.title.mnemonic", 'H'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
        {"Hotspot MBeans...", "Hotspot MBean..."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
        {"Hotspot MBeans....mnemonic", 'H'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
        {"Hotspot MBeans.dialog.accessibleDescription", "\u7528\u4e8e\u7ba1\u7406 Hotspot Mbean \u7684\u5bf9\u8bdd\u6846"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
        {"Impact","\u5f71\u54cd"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
        {"Info","\u4fe1\u606f"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
        {"INFO","INFO"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
        {"Invalid plugin path", "\u8b66\u544a: \u65e0\u6548\u7684\u63d2\u4ef6\u8def\u5f84: {0}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
        {"Invalid URL", "\u65e0\u6548\u7684 URL: {0}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
        {"Is","\u4e3a"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
        {"Java Monitoring & Management Console", "Java \u76d1\u89c6\u548c\u7ba1\u7406\u63a7\u5236\u53f0"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
        {"JConsole: ","JConsole: {0}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
        {"JConsole version","JConsole \u7248\u672c \"{0}\""},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
        {"JConsole.accessibleDescription", "Java \u76d1\u89c6\u548c\u7ba1\u7406\u63a7\u5236\u53f0"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
        {"JIT compiler","JIT \u7f16\u8bd1\u5668"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
        {"Java Virtual Machine","Java \u865a\u62df\u673a"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
        {"Java","Java"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
        {"Library path","\u5e93\u8def\u5f84"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
        {"Listeners","\u4fa6\u542c\u5668"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
        {"Live Threads","\u6d3b\u52a8\u7ebf\u7a0b"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
        {"Loaded", "\u5df2\u88c5\u5165"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
        {"Local Process:", "\u672c\u5730\u8fdb\u7a0b:"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
        {"Local Process:.mnemonic", 'L'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
        {"Look and Feel","\u5916\u89c2"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
        {"Masthead.font", "Dialog-PLAIN-25"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
        {"Management Not Enabled","<b>\u6ce8\u610f</b>\uff1a\u5728\u6b64\u8fdb\u7a0b\u4e2d\u672a\u542f\u7528\u7ba1\u7406\u4ee3\u7406\u3002"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
        {"Management Will Be Enabled","<b>\u6ce8\u610f</b>\uff1a\u5728\u6b64\u8fdb\u7a0b\u4e2d\u5c06\u542f\u7528\u7ba1\u7406\u4ee3\u7406\u3002"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
        {"MBeanAttributeInfo","MBeanAttributeInfo"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
        {"MBeanInfo","MBeanInfo"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
        {"MBeanNotificationInfo","MBeanNotificationInfo"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
        {"MBeanOperationInfo","MBeanOperationInfo"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
        {"MBeans","MBean"},
5307
7865cb8f2f54 6875904: Java 7 message synchronization 1
yhuang
parents: 2
diff changeset
   235
        {"MBeansTab.clearNotificationsButton", "\u6e05\u9664(C)"},
7865cb8f2f54 6875904: Java 7 message synchronization 1
yhuang
parents: 2
diff changeset
   236
        {"MBeansTab.clearNotificationsButton.mnemonic", 'C'},
7865cb8f2f54 6875904: Java 7 message synchronization 1
yhuang
parents: 2
diff changeset
   237
        {"MBeansTab.clearNotificationsButton.toolTip", "\u6e05\u9664\u901a\u77e5"},
7865cb8f2f54 6875904: Java 7 message synchronization 1
yhuang
parents: 2
diff changeset
   238
        {"MBeansTab.compositeNavigationMultiple", "\u590d\u5408\u5bfc\u822a {0}/{1}"},
7865cb8f2f54 6875904: Java 7 message synchronization 1
yhuang
parents: 2
diff changeset
   239
        {"MBeansTab.compositeNavigationSingle", "\u590d\u5408\u5bfc\u822a"},
7865cb8f2f54 6875904: Java 7 message synchronization 1
yhuang
parents: 2
diff changeset
   240
        {"MBeansTab.refreshAttributesButton", "\u5237\u65b0(R)"},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
        {"MBeansTab.refreshAttributesButton.mnemonic", 'R'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
        {"MBeansTab.refreshAttributesButton.toolTip", "\u5237\u65b0\u5c5e\u6027"},
5307
7865cb8f2f54 6875904: Java 7 message synchronization 1
yhuang
parents: 2
diff changeset
   243
        {"MBeansTab.subscribeNotificationsButton", "\u8ba2\u9605(S)"},
7865cb8f2f54 6875904: Java 7 message synchronization 1
yhuang
parents: 2
diff changeset
   244
        {"MBeansTab.subscribeNotificationsButton.mnemonic", 'S'},
7865cb8f2f54 6875904: Java 7 message synchronization 1
yhuang
parents: 2
diff changeset
   245
        {"MBeansTab.subscribeNotificationsButton.toolTip", "\u5f00\u59cb\u4fa6\u542c\u901a\u77e5"},
7865cb8f2f54 6875904: Java 7 message synchronization 1
yhuang
parents: 2
diff changeset
   246
        {"MBeansTab.tabularNavigationMultiple", "\u8868\u683c\u5bfc\u822a {0}/{1}"},
7865cb8f2f54 6875904: Java 7 message synchronization 1
yhuang
parents: 2
diff changeset
   247
        {"MBeansTab.tabularNavigationSingle", "\u8868\u683c\u5bfc\u822a"},
7865cb8f2f54 6875904: Java 7 message synchronization 1
yhuang
parents: 2
diff changeset
   248
        {"MBeansTab.unsubscribeNotificationsButton", "\u53d6\u6d88\u8ba2\u9605(U)"},
7865cb8f2f54 6875904: Java 7 message synchronization 1
yhuang
parents: 2
diff changeset
   249
        {"MBeansTab.unsubscribeNotificationsButton.mnemonic", 'U'},
7865cb8f2f54 6875904: Java 7 message synchronization 1
yhuang
parents: 2
diff changeset
   250
        {"MBeansTab.unsubscribeNotificationsButton.toolTip", "\u505c\u6b62\u4fa6\u542c\u901a\u77e5"},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
        {"Manage Hotspot MBeans in: ", "\u7ba1\u7406 Hotspot MBean \u4e8e\uff1a "},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
        {"Max","\u6700\u5927\u503c"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
        {"Maximum heap size","\u5806\u5927\u5c0f\u7684\u6700\u5927\u503c"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
        {"Memory","\u5185\u5b58"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
        {"MemoryPoolLabel", "\u5185\u5b58\u6c60 \"{0}\""},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
        {"MemoryTab.heapPlotter.accessibleName", "\u5806\u7684\u5185\u5b58\u4f7f\u7528\u60c5\u51b5\u56fe\u8868\u3002"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
        {"MemoryTab.infoLabelFormat", "<html>\u5df2\u4f7f\u7528: {0}    \u5df2\u63d0\u4ea4: {1}    \u6700\u5927\u503c: {2}</html>"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
        {"MemoryTab.nonHeapPlotter.accessibleName", "\u975e\u5806\u7684\u5185\u5b58\u4f7f\u7528\u60c5\u51b5\u56fe\u8868\u3002"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
        {"MemoryTab.poolChart.aboveThreshold", "\u5927\u4e8e\u9608\u503c {0}\u3002\n"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
        {"MemoryTab.poolChart.accessibleName", "\u5185\u5b58\u6c60\u4f7f\u7528\u60c5\u51b5\u56fe\u8868\u3002"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
        {"MemoryTab.poolChart.belowThreshold", "\u5c0f\u4e8e\u9608\u503c {0}\u3002\n"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
        {"MemoryTab.poolPlotter.accessibleName", "{0} \u7684\u5185\u5b58\u4f7f\u7528\u60c5\u51b5\u56fe\u8868\u3002"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
        {"Message","\u6d88\u606f"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
        {"Method successfully invoked", "\u6210\u529f\u8c03\u7528\u65b9\u6cd5"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
        {"Minimize All", "\u5168\u90e8\u6700\u5c0f\u5316"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
        {"Minimize All.mnemonic", 'M'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
        {"Minus Version", "\u8fd9\u662f {0} \u7248\u672c {1}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
        {"Monitor locked",
7470
3b741e2b6a15 6566218: l10n of 6476932
mfang
parents: 5506
diff changeset
   269
             "   - \u5df2\u9501\u5b9a {0}\n"},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
        {"Motif","\u4fee\u6539"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
        {"Name Build and Mode","{0}\uff08\u5185\u90e8\u7248\u672c {1}\u3001{2}\uff09"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
        {"Name and Build","{0}\uff08\u5185\u90e8\u7248\u672c {1}\uff09"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
        {"Name","\u540d\u79f0"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
        {"Name: ","\u540d\u79f0\uff1a "},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
        {"Name State",
7470
3b741e2b6a15 6566218: l10n of 6476932
mfang
parents: 5506
diff changeset
   276
             "\u540d\u79f0\uff1a {0}\n" +
3b741e2b6a15 6566218: l10n of 6476932
mfang
parents: 5506
diff changeset
   277
             "\u72b6\u6001\uff1a {1}\n"},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
        {"Name State LockName",
7470
3b741e2b6a15 6566218: l10n of 6476932
mfang
parents: 5506
diff changeset
   279
             "\u540d\u79f0\uff1a {0}\n" +
3b741e2b6a15 6566218: l10n of 6476932
mfang
parents: 5506
diff changeset
   280
             "\u72b6\u6001\uff1a{1} \u5728 {2} \u4e0a\n"},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
        {"Name State LockName LockOwner",
7470
3b741e2b6a15 6566218: l10n of 6476932
mfang
parents: 5506
diff changeset
   282
             "\u540d\u79f0\uff1a {0}\n" +
3b741e2b6a15 6566218: l10n of 6476932
mfang
parents: 5506
diff changeset
   283
             "\u72b6\u6001\uff1a{1} \u5728 {2} \u4e0a\uff0c\u62e5\u6709\u8005\uff1a {3}\n"},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
        {"New Connection...", "\u65b0\u5efa\u8fde\u63a5..."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
        {"New Connection....mnemonic", 'N'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
        {"New value applied","\u5df2\u5e94\u7528\u65b0\u503c"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
        {"No attribute selected","\u672a\u9009\u62e9\u5c5e\u6027"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
        {"No deadlock detected","\u672a\u68c0\u6d4b\u5230\u6b7b\u9501"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
        {"No value selected","\u672a\u9009\u62e9\u503c"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
        {"Non-Heap Memory Usage","\u975e\u5806\u5185\u5b58\u4f7f\u7528\u60c5\u51b5"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
        {"Non-Heap", "\u975e\u5806"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
        {"Not Yet Implemented","\u5c1a\u672a\u5b9e\u73b0"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
        {"Not a valid event broadcaster", "\u4e0d\u662f\u6709\u6548\u7684\u4e8b\u4ef6\u5e7f\u64ad\u5668"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
        {"Notification","\u901a\u77e5"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
        {"Notification buffer","\u901a\u77e5\u7f13\u51b2\u533a"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
        {"Notifications","\u901a\u77e5"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
        {"NotifTypes", "NotifTypes"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
        {"Number of Threads","\u7ebf\u7a0b\u7684\u6570\u76ee"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
        {"Number of Loaded Classes","\u5df2\u88c5\u5165\u7c7b\u7684\u6570\u76ee"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
        {"Number of processors","\u5904\u7406\u5668\u7684\u6570\u76ee"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
        {"ObjectName","ObjectName"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
        {"Operating System","\u64cd\u4f5c\u7cfb\u7edf"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
        {"Operation","\u64cd\u4f5c"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
        {"Operation invocation","\u64cd\u4f5c\u8c03\u7528"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
        {"Operation return value", "\u64cd\u4f5c\u8fd4\u56de\u503c"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
        {"Operations","\u64cd\u4f5c"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
        {"Overview","\u6982\u8ff0"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
        {"OverviewPanel.plotter.accessibleName", "{0} \u7684\u56fe\u8868\u3002"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
        {"Parameter", "\u53c2\u6570"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
        {"Password: ", "\u53e3\u4ee4\uff1a "},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
        {"Password: .mnemonic", 'P'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
        {"Password.accessibleName", "\u5bc6\u7801"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
        {"Peak","\u5cf0"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
        {"Perform GC", "\u6267\u884c GC"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
        {"Perform GC.mnemonic", 'G'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
        {"Perform GC.toolTip", "\u8bf7\u6c42\u5783\u573e\u6536\u96c6"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
        {"Plotter.accessibleName", "\u56fe\u8868"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
        {"Plotter.accessibleName.keyAndValue", "{0}={1}\n"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
        {"Plotter.accessibleName.noData", "\u672a\u7ed8\u5236\u6570\u636e\u3002"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
        {"Plotter.saveAsMenuItem", "\u5c06\u6570\u636e\u53e6\u5b58\u4e3a..."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
        {"Plotter.saveAsMenuItem.mnemonic", 'a'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
        {"Plotter.timeRangeMenu", "\u65f6\u95f4\u8303\u56f4"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
        {"Plotter.timeRangeMenu.mnemonic", 'T'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
        {"Problem adding listener","\u6dfb\u52a0\u4fa6\u542c\u5668\u65f6\u51fa\u73b0\u95ee\u9898"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
        {"Problem displaying MBean", "\u663e\u793a MBean \u65f6\u51fa\u73b0\u95ee\u9898"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
        {"Problem invoking", "\u8c03\u7528\u65f6\u51fa\u73b0\u95ee\u9898"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
        {"Problem removing listener","\u5220\u9664\u4fa6\u542c\u5668\u65f6\u51fa\u73b0\u95ee\u9898"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
        {"Problem setting attribute","\u8bbe\u7f6e\u5c5e\u6027\u65f6\u51fa\u73b0\u95ee\u9898"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
        {"Process CPU time","\u5904\u7406 CPU \u65f6\u95f4"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
        {"R/W","R/W"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
        {"Readable","\u53ef\u8bfb"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
        {"Received","\u5df2\u6536\u5230"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
        {"Reconnect","\u91cd\u65b0\u8fde\u63a5"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
        {"Remote Process:", "\u8fdc\u7a0b\u8fdb\u7a0b:"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
        {"Remote Process:.mnemonic", 'R'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
        {"Remote Process.textField.accessibleName", "\u8fdc\u7a0b\u8fdb\u7a0b"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
        {"Remove","\u5220\u9664"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
        {"Restore All", "\u5168\u90e8\u6062\u590d"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
        {"Restore All.mnemonic", 'R'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
        {"Return value", "\u8fd4\u56de\u503c"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
        {"ReturnType", "ReturnType"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
        {"SeqNum","\u5e8f\u5217\u53f7"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
        {"Size Bytes", "{0,number,integer} \u5b57\u8282"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
        {"Size Gb","{0} Gb"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
        {"Size Kb","{0} Kb"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
        {"Size Mb","{0} Mb"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
        {"Source","\u6e90"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
        {"Stack trace",
7470
3b741e2b6a15 6566218: l10n of 6476932
mfang
parents: 5506
diff changeset
   349
             "\n\u5806\u6808\u8ffd\u8e2a\uff1a \n"},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
        {"Success:","\u6210\u529f\uff1a"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
        // Note: SummaryTab.headerDateTimeFormat can be one the following:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
        // 1. A combination of two styles for date and time, using the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
        //    constants from class DateFormat: SHORT, MEDIUM, LONG, FULL.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
        //    Example: "MEDIUM,MEDIUM" or "FULL,SHORT"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
        // 2. An explicit string pattern used for creating an instance
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
        //    of the class SimpleDateFormat.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
        //    Example: "yyyy-MM-dd HH:mm:ss" or "M/d/yyyy h:mm:ss a"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
        {"SummaryTab.headerDateTimeFormat", "FULL,FULL"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
        {"SummaryTab.pendingFinalization.label", "\u6682\u6302\u7ed3\u675f\u64cd\u4f5c"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
        {"SummaryTab.pendingFinalization.value", "{0} \u4e2a\u5bf9\u8c61"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
        {"SummaryTab.tabName", "VM \u6458\u8981"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
        {"SummaryTab.vmVersion","{0} \u7248\u672c {1}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
        {"TabularData are not supported", "\u4e0d\u652f\u6301\u8868\u683c\u5f0f\u6570\u636e"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
        {"Threads","\u7ebf\u7a0b"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
        {"ThreadTab.infoLabelFormat", "<html>\u6d3b\u52a8: {0}    \u5cf0\u503c: {1}    \u603b\u8ba1: {2}</html>"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
        {"ThreadTab.threadInfo.accessibleName", "\u7ebf\u7a0b\u4fe1\u606f"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
        {"ThreadTab.threadPlotter.accessibleName", "\u7ebf\u7a0b\u6570\u76ee\u56fe\u8868\u3002"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
        {"Threshold","\u9608\u503c"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
        {"Tile", "\u5e73\u94fa"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
        {"Tile.mnemonic", 'T'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
        {"Time Range:", "\u65f6\u95f4\u8303\u56f4\uff1a"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
        {"Time Range:.mnemonic", 'T'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
        {"Time", "\u65f6\u95f4"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
        {"TimeStamp","\u65f6\u95f4\u6233"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
        {"Total Loaded", "\u5df2\u88c5\u5165\u7684\u603b\u6570"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
        {"Total classes loaded","\u5df2\u88c5\u5165\u7c7b\u7684\u603b\u6570"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
        {"Total classes unloaded","\u5df2\u5378\u8f7d\u7c7b\u7684\u603b\u6570"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
        {"Total compile time","\u7f16\u8bd1\u603b\u65f6\u95f4"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
        {"Total physical memory","\u7269\u7406\u5185\u5b58\u603b\u91cf"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
        {"Total threads started","\u5df2\u542f\u52a8\u7684\u7ebf\u7a0b\u603b\u6570"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
        {"Total swap space","\u4ea4\u6362\u7a7a\u95f4\u603b\u91cf"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
        {"Type","\u7c7b\u578b"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
        {"Unavailable","\u4e0d\u53ef\u7528"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
        {"UNKNOWN","\u672a\u77e5"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
        {"Unknown Host","\u672a\u77e5\u4e3b\u673a: {0}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
        {"Unregister", "\u672a\u6ce8\u518c"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
        {"Uptime","\u6b63\u5e38\u8fd0\u884c\u65f6\u95f4"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
        {"Uptime: ","\u6b63\u5e38\u8fd0\u884c\u65f6\u95f4\uff1a "},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
        {"Usage Threshold","\u4f7f\u7528\u9608\u503c"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
        {"remoteTF.usage","<b>\u7528\u6cd5</b>: &lt;hostname&gt;:&lt;port&gt; \u6216 service:jmx:&lt;protocol&gt;:&lt;sap&gt;"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
        {"Used","\u5df2\u4f7f\u7528"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
        {"Username: ", "\u7528\u6237\u540d: "},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
        {"Username: .mnemonic", 'U'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
        {"Username.accessibleName", "\u7528\u6237\u540d"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
        {"UserData","\u7528\u6237\u6570\u636e"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
        {"Virtual Machine","\u865a\u62df\u673a"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
        {"VM arguments","VM \u53c2\u6570"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
        {"VM","VM"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
        {"VMInternalFrame.accessibleDescription", "\u7528\u4e8e\u76d1\u89c6 Java \u865a\u62df\u673a\u7684\u5185\u90e8\u6846\u67b6"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
        {"Value","\u503c"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
        {"Vendor", "\u4f9b\u5e94\u5546"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
        {"Verbose Output","\u8be6\u7ec6\u8f93\u51fa"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
        {"Verbose Output.toolTip", "\u4e3a\u7c7b\u88c5\u5165\u7cfb\u7edf\u542f\u7528\u8be6\u7ec6\u8f93\u51fa"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
        {"View value", "\u67e5\u770b\u503c"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
        {"View","\u89c6\u56fe"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
        {"Window", "\u7a97\u53e3"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
        {"Window.mnemonic", 'W'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
        {"Windows","\u7a97\u53e3"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
        {"Writable","\u53ef\u5199"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
        {"You cannot drop a class here", "\u60a8\u4e0d\u80fd\u5c06\u7c7b\u653e\u5728\u6b64\u5904"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
        {"collapse", "\u6298\u53e0"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
        {"connectionFailed1","\u8fde\u63a5\u5931\u8d25\uff1a\u662f\u5426\u91cd\u8bd5\uff1f"},
5307
7865cb8f2f54 6875904: Java 7 message synchronization 1
yhuang
parents: 2
diff changeset
   413
        {"connectionFailed2","\u4e0e {0} \u7684\u8fde\u63a5\u672a\u6210\u529f\u3002<br>\u662f\u5426\u8981\u91cd\u8bd5\uff1f"},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
        {"connectionLost1","\u8fde\u63a5\u65ad\u5f00\uff1a\u662f\u5426\u91cd\u65b0\u8fde\u63a5\uff1f"},
5307
7865cb8f2f54 6875904: Java 7 message synchronization 1
yhuang
parents: 2
diff changeset
   415
        {"connectionLost2","\u4e0e {0} \u7684\u8fde\u63a5\u5df2\u65ad\u5f00\u539f\u56e0\u662f\u5df2\u7ec8\u6b62\u8fdc\u7a0b\u8fdb\u7a0b\u3002<br>\u662f\u5426\u8981\u91cd\u65b0\u8fde\u63a5\uff1f"},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
        {"connectingTo1","\u6b63\u5728\u8fde\u63a5\u81f3 {0}"},
5307
7865cb8f2f54 6875904: Java 7 message synchronization 1
yhuang
parents: 2
diff changeset
   417
        {"connectingTo2","\u5f53\u524d\u6b63\u5728\u8fde\u63a5\u81f3 {0}\u3002<br>\u8fd9\u5c06\u4f1a\u82b1\u8d39\u4e00\u4e9b\u65f6\u95f4\u3002"},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
        {"deadlockAllTab","\u5168\u90e8"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
        {"deadlockTab","\u6b7b\u9501"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
        {"deadlockTabN","\u6b7b\u9501 {0}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
        {"expand", "\u5c55\u5f00"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
        {"kbytes","{0} Kb"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
        {"operation","\u64cd\u4f5c"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
        {"plot", "\u7ed8\u56fe"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
        {"visualize","\u663e\u793a"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
        {"zz usage text",
7470
3b741e2b6a15 6566218: l10n of 6476932
mfang
parents: 5506
diff changeset
   427
             "\u7528\u6cd5: {0} [ -interval=n ] [ -notile ] [ -pluginpath <path> ] [ -version ] [ connection ...]\n\n" +
3b741e2b6a15 6566218: l10n of 6476932
mfang
parents: 5506
diff changeset
   428
             "  -interval   \u5c06\u66f4\u65b0\u95f4\u9694\u65f6\u95f4\u8bbe\u7f6e\u4e3a n \u79d2\uff08\u9ed8\u8ba4\u503c\u4e3a 4 \u79d2\uff09\n" +
3b741e2b6a15 6566218: l10n of 6476932
mfang
parents: 5506
diff changeset
   429
             "  -notile     \u6700\u521d\u4e0d\u5e73\u94fa\u663e\u793a\u7a97\u53e3\uff08\u5bf9\u4e8e\u4e24\u4e2a\u6216\u66f4\u591a\u8fde\u63a5\uff09\n" +
3b741e2b6a15 6566218: l10n of 6476932
mfang
parents: 5506
diff changeset
   430
             "  -pluginpath \u6307\u5b9a jconsole \u7528\u4e8e\u67e5\u627e\u63d2\u4ef6\u7684\u8def\u5f84\n" +
3b741e2b6a15 6566218: l10n of 6476932
mfang
parents: 5506
diff changeset
   431
             "  -version    \u8f93\u51fa\u7a0b\u5e8f\u7248\u672c\n\n" +
3b741e2b6a15 6566218: l10n of 6476932
mfang
parents: 5506
diff changeset
   432
             "  connection = pid || host:port || JMX URL (service:jmx:<protocol>://...)\n" +
3b741e2b6a15 6566218: l10n of 6476932
mfang
parents: 5506
diff changeset
   433
             "  pid       \u76ee\u6807\u8fdb\u7a0b\u7684\u8fdb\u7a0b ID\n" +
3b741e2b6a15 6566218: l10n of 6476932
mfang
parents: 5506
diff changeset
   434
             "  host      \u8fdc\u7a0b\u4e3b\u673a\u540d\u6216 IP \u5730\u5740\n" +
3b741e2b6a15 6566218: l10n of 6476932
mfang
parents: 5506
diff changeset
   435
             "  port      \u7528\u4e8e\u8fdc\u7a0b\u8fde\u63a5\u7684\u7aef\u53e3\u53f7\n\n" +
3b741e2b6a15 6566218: l10n of 6476932
mfang
parents: 5506
diff changeset
   436
             "  -J          \u5bf9\u6b63\u5728\u8fd0\u884c jconsole \u7684 Java \u865a\u62df\u673a\u6307\u5b9a\n" +
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
             "            \u8f93\u5165\u53c2\u6570"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
        // END OF MATERIAL TO LOCALIZE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
        };
7470
3b741e2b6a15 6566218: l10n of 6476932
mfang
parents: 5506
diff changeset
   440
3b741e2b6a15 6566218: l10n of 6476932
mfang
parents: 5506
diff changeset
   441
        String ls = System.getProperty("line.separator");
3b741e2b6a15 6566218: l10n of 6476932
mfang
parents: 5506
diff changeset
   442
        for(int i=0;i<temp.length;i++) {
3b741e2b6a15 6566218: l10n of 6476932
mfang
parents: 5506
diff changeset
   443
            if (temp[i][1] instanceof String){
3b741e2b6a15 6566218: l10n of 6476932
mfang
parents: 5506
diff changeset
   444
            temp[i][1] = temp[i][1].toString().replaceAll("\n",ls);
3b741e2b6a15 6566218: l10n of 6476932
mfang
parents: 5506
diff changeset
   445
            }
3b741e2b6a15 6566218: l10n of 6476932
mfang
parents: 5506
diff changeset
   446
        }
3b741e2b6a15 6566218: l10n of 6476932
mfang
parents: 5506
diff changeset
   447
3b741e2b6a15 6566218: l10n of 6476932
mfang
parents: 5506
diff changeset
   448
        return temp;
3b741e2b6a15 6566218: l10n of 6476932
mfang
parents: 5506
diff changeset
   449
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
    public synchronized Object[][] getContents() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
        return getContents0();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
}