jdk/src/share/classes/sun/tools/jconsole/resources/JConsoleResources_ja.java
author yhuang
Sun, 11 Apr 2010 23:21:23 -0700
changeset 5307 7865cb8f2f54
parent 2 90ce3da70b43
child 5506 202f599c92aa
permissions -rw-r--r--
6875904: Java 7 message synchronization 1 Reviewed-by: ogino, faryad
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
 * Copyright 2004-2007 Sun Microsystems, Inc.  All Rights Reserved.
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
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Sun designates this
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 * by Sun in the LICENSE file that accompanied this code.
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
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    21
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
 * CA 95054 USA or visit www.sun.com if you need additional information or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
 * have any questions.
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_ja extends JConsoleResources {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
    private static final String cr = System.getProperty("line.separator");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
     * Returns the contents of this <code>ResourceBundle</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
     * @return the contents of this <code>ResourceBundle</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
    protected Object[][] getContents0() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
        return new Object[][] {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
        // NOTE 1: The value strings in this file containing "{0}" are
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
        //         processed by the java.text.MessageFormat class.  Any
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
        //         single quotes appearing in these strings need to be
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
        //         doubled up.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
        //
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
        // NOTE 2: To make working with this file a bit easier, please
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
        //         maintain these messages in ASCII sorted order by
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
        //         message key.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
        //
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
        // LOCALIZE THIS
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
        {" 1 day"," 1 \u65e5"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
        {" 1 hour"," 1 \u6642\u9593"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
        {" 1 min"," 1 \u5206"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
        {" 1 month"," 1 \u304b\u6708"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
        {" 1 year"," 1 \u5e74"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
        {" 2 hours"," 2 \u6642\u9593"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
        {" 3 hours"," 3 \u6642\u9593"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
        {" 3 months"," 3 \u304b\u6708"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
        {" 5 min"," 5 \u5206"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
        {" 6 hours"," 6 \u6642\u9593"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
        {" 6 months"," 6 \u304b\u6708"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
        {" 7 days"," 7 \u65e5"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
        {"10 min","10 \u5206"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
        {"12 hours","12 \u6642\u9593"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
        {"30 min","30 \u5206"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
        {"<","<"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
        {"<<","<<"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
        {">",">"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
        {"ACTION","ACTION"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
        {"ACTION_INFO","ACTION_INFO"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
        {"All","\u3059\u3079\u3066"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
        {"Apply","\u9069\u7528"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
        {"Architecture","\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
        {"Array, OpenType", "\u914d\u5217\u3001OpenType"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
        {"Array, OpenType, Numeric value viewer","\u914d\u5217\u3001OpenType\u3001\u6570\u5024\u306e\u30d3\u30e5\u30fc\u30a2"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
        {"Attribute","\u5c5e\u6027"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
        {"Attribute value","\u5c5e\u6027\u5024"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
        {"Attribute values","\u5c5e\u6027\u5024"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
        {"Attributes","\u5c5e\u6027"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
        {"Blank", "\u30d6\u30e9\u30f3\u30af"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
        {"BlockedCount WaitedCount",
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
             "\u7dcf\u30d6\u30ed\u30c3\u30af\u6570 : {0}  \u7dcf\u5f85\u6a5f\u6570 : {1}" + cr},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
        {"Boot class path","\u30d6\u30fc\u30c8\u30af\u30e9\u30b9\u30d1\u30b9"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
        {"BorderedComponent.moreOrLessButton.toolTip", "\u8a73\u7d30\u60c5\u5831\u3092\u8868\u793a\u3059\u308b\u304b\u3069\u3046\u304b\u5207\u308a\u66ff\u3048\u308b"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
        {"CPU Usage","CPU \u4f7f\u7528\u72b6\u6cc1"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
        {"CPUUsageFormat","CPU \u4f7f\u7528\u72b6\u6cc1: {0}%"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
        {"Cancel","\u53d6\u6d88\u3057"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
        {"Cascade", "\u91cd\u306d\u3066\u8868\u793a(C)"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
        {"Cascade.mnemonic", 'C'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
        {"Chart:", "\u56f3(C):"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
        {"Chart:.mnemonic", 'C'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
        {"Class path","\u30af\u30e9\u30b9\u30d1\u30b9"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
        {"Class","\u30af\u30e9\u30b9"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
        {"ClassName","ClassName"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
        {"ClassTab.infoLabelFormat", "<html>\u30ed\u30fc\u30c9: {0}    \u30a2\u30f3\u30ed\u30fc\u30c9: {1}    \u7dcf\u6570: {2}</html>"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
        {"ClassTab.loadedClassesPlotter.accessibleName", "\u30ed\u30fc\u30c9\u3055\u308c\u305f\u30af\u30e9\u30b9\u306e\u56f3\u3002"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
        {"Classes","\u30af\u30e9\u30b9"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
        {"Close","\u9589\u3058\u308b"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
        {"Column.Name", "\u540d\u524d"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
        {"Column.PID", "PID"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
        {"Committed memory","\u78ba\u5b9a\u30e1\u30e2\u30ea"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
        {"Committed virtual memory","\u78ba\u5b9a\u4eee\u60f3\u30e1\u30e2\u30ea"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
        {"Committed", "\u78ba\u5b9a"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
        {"Compiler","\u30b3\u30f3\u30d1\u30a4\u30e9"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
        {"CompositeData","CompositeData"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
        {"Config","\u69cb\u6210"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
        {"Connect", "\u63a5\u7d9a(C)"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
        {"Connect.mnemonic", 'C'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
        {"Connect...","\u63a5\u7d9a..."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
        {"ConnectDialog.connectButton.toolTip", "Java \u4eee\u60f3\u30de\u30b7\u30f3\u306b\u63a5\u7d9a\u3059\u308b"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
        {"ConnectDialog.accessibleDescription", "\u30ed\u30fc\u30ab\u30eb\u307e\u305f\u306f\u30ea\u30e2\u30fc\u30c8\u306e Java \u4eee\u60f3\u30de\u30b7\u30f3\u306b\u65b0\u898f\u63a5\u7d9a\u3059\u308b\u305f\u3081\u306e\u30c0\u30a4\u30a2\u30ed\u30b0"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
        {"ConnectDialog.masthead.accessibleName", "\u30de\u30b9\u30c8\u30d8\u30c3\u30c9\u306e\u30b0\u30e9\u30d5\u30a3\u30c3\u30af"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
        {"ConnectDialog.masthead.title", "\u65b0\u898f\u63a5\u7d9a"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
        {"ConnectDialog.statusBar.accessibleName", "\u30b9\u30c6\u30fc\u30bf\u30b9\u30d0\u30fc"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
        {"ConnectDialog.title", "JConsole: \u65b0\u898f\u63a5\u7d9a"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
        {"Connected. Click to disconnect.","\u63a5\u7d9a\u3055\u308c\u307e\u3057\u305f\u3002\u5207\u65ad\u3059\u308b\u306b\u306f\u30af\u30ea\u30c3\u30af\u3057\u3066\u304f\u3060\u3055\u3044\u3002"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
        {"Connection failed","\u63a5\u7d9a\u306b\u5931\u6557\u3057\u307e\u3057\u305f"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
        {"Connection", "\u63a5\u7d9a(C)"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
        {"Connection.mnemonic", 'C'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
        {"Connection name", "\u63a5\u7d9a\u540d"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
        {"ConnectionName (disconnected)","{0} (\u63a5\u7d9a\u89e3\u9664)"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
        {"Constructor","\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
        {"Current classes loaded", "\u73fe\u5728\u30ed\u30fc\u30c9\u3055\u308c\u3066\u3044\u308b\u30af\u30e9\u30b9"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
        {"Current heap size","\u73fe\u5728\u306e\u30d2\u30fc\u30d7\u30b5\u30a4\u30ba"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
        {"Current value","\u73fe\u5728\u306e\u5024: {0}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
        {"Create", "\u4f5c\u6210"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
        {"Daemon threads","\u30c7\u30fc\u30e2\u30f3\u30b9\u30ec\u30c3\u30c9"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
        {"Disconnected. Click to connect.","\u5207\u65ad\u3055\u308c\u307e\u3057\u305f\u3002\u63a5\u7d9a\u3059\u308b\u306b\u306f\u30af\u30ea\u30c3\u30af\u3057\u3066\u304f\u3060\u3055\u3044\u3002"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
        {"Double click to expand/collapse","\u30c0\u30d6\u30eb\u30af\u30ea\u30c3\u30af\u3057\u3066\u5c55\u958b/\u6298\u308a\u305f\u305f\u307f"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
        {"Double click to visualize", "\u30c0\u30d6\u30eb\u30af\u30ea\u30c3\u30af\u3057\u3066\u8868\u793a"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
        {"Description", "\u8aac\u660e"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
        {"Description: ", "\u8aac\u660e: "},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
        {"Descriptor", "\u8a18\u8ff0\u5b50"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
        {"Details", "\u8a73\u7d30"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
        {"Detect Deadlock", "\u30c7\u30c3\u30c9\u30ed\u30c3\u30af\u3092\u691c\u51fa\u3059\u308b(D)"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
        {"Detect Deadlock.mnemonic", 'D'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
        {"Detect Deadlock.toolTip", "\u30c7\u30c3\u30c9\u30ed\u30c3\u30af\u3057\u305f\u30b9\u30ec\u30c3\u30c9\u3092\u691c\u51fa\u3059\u308b"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
        {"Dimension is not supported:","\u5927\u304d\u3055\u306f\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u307e\u305b\u3093:"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
        {"Discard chart", "\u56f3\u3092\u7834\u68c4\u3059\u308b"},
5307
7865cb8f2f54 6875904: Java 7 message synchronization 1
yhuang
parents: 2
diff changeset
   159
        {"DurationDaysHoursMinutes","{0,choice,1#{0,number,integer} \u65e5 |1.0<{0,number,integer} \u65e5 }{1,choice,0<{1,number,integer} \u6642\u9593 |1#{1,number,integer} \u6642\u9593 |1<{1,number,integer} \u6642\u9593 }{2,choice,0<{2,number,integer} \u5206 |1#{2,number,integer} \u5206 |1.0<{2,number,integer} \u5206}"},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
5307
7865cb8f2f54 6875904: Java 7 message synchronization 1
yhuang
parents: 2
diff changeset
   161
        {"DurationHoursMinutes","{0,choice,1#{0,number,integer} \u6642\u9593 |1<{0,number,integer} \u6642\u9593 }{1,choice,0<{1,number,integer} \u5206 |1#{1,number,integer} \u5206 |1.0<{1,number,integer} \u5206}"},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
        {"DurationMinutes","{0,choice,1#{0,number,integer} \u5206 |1.0<{0,number,integer} \u5206}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
        {"DurationSeconds","{0} \u79d2"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
        {"Empty array", "\u914d\u5217\u3092\u7a7a\u306b\u3059\u308b"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
        {"Empty opentype viewer", "OpenType \u30d3\u30e5\u30fc\u30a2\u3092\u7a7a\u306b\u3059\u308b"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
        {"Error","\u30a8\u30e9\u30fc"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
        {"Error: MBeans already exist","\u30a8\u30e9\u30fc : MBean \u306f\u3059\u3067\u306b\u5b58\u5728\u3057\u307e\u3059"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
        {"Error: MBeans do not exist","\u30a8\u30e9\u30fc : MBean \u306f\u5b58\u5728\u3057\u307e\u305b\u3093"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
        {"Error:","\u30a8\u30e9\u30fc:"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
        {"Event","\u30a4\u30d9\u30f3\u30c8"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
        {"Exit", "\u7d42\u4e86(X)"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
        {"Exit.mnemonic", 'x'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
        {"Fail to load plugin", "\u8b66\u544a: \u30d7\u30e9\u30b0\u30a4\u30f3\u306e\u30ed\u30fc\u30c9\u306b\u5931\u6557\u3057\u307e\u3057\u305f: {0}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
        {"FileChooser.fileExists.cancelOption", "\u30ad\u30e3\u30f3\u30bb\u30eb"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
        {"FileChooser.fileExists.message", "<html><center>\u30d5\u30a1\u30a4\u30eb\u306f\u3059\u3067\u306b\u5b58\u5728\u3057\u3066\u3044\u307e\u3059:<br>{0}<br>\u7f6e\u63db\u3057\u3066\u3082\u3088\u308d\u3057\u3044\u3067\u3059\u304b?"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
        {"FileChooser.fileExists.okOption", "\u7f6e\u63db"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
        {"FileChooser.fileExists.title", "\u30d5\u30a1\u30a4\u30eb\u304c\u5b58\u5728\u3057\u3066\u3044\u307e\u3059"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
        {"FileChooser.savedFile", "<html>\u30d5\u30a1\u30a4\u30eb\u306b\u4fdd\u5b58\u3057\u307e\u3057\u305f:<br>{0}<br>({1} \u30d0\u30a4\u30c8)"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
        {"FileChooser.saveFailed.message", "<html><center>\u30d5\u30a1\u30a4\u30eb\u3078\u306e\u4fdd\u5b58\u306b\u5931\u6557\u3057\u307e\u3057\u305f:<br>{0}<br>{1}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
        {"FileChooser.saveFailed.title", "\u4fdd\u5b58\u306b\u5931\u6557\u3057\u307e\u3057\u305f"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
        {"Free physical memory","\u7a7a\u304d\u7269\u7406\u30e1\u30e2\u30ea"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
        {"Free swap space","\u7a7a\u304d\u30b9\u30ef\u30c3\u30d7\u30b9\u30da\u30fc\u30b9"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
        {"Garbage collector","\u30ac\u30d9\u30fc\u30b8\u30b3\u30ec\u30af\u30bf"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
        {"GTK","GTK"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
        {"GcInfo","\u540d\u524d = ''{0}'', \u30b3\u30ec\u30af\u30b7\u30e7\u30f3 = {1,choice,-1#\u5229\u7528\u4e0d\u53ef|0#{1,number,integer}}, \u7dcf\u7d4c\u904e\u6642\u9593 = {2}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
        {"GC time","GC \u6642\u9593"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
        {"GC time details","{1} \u306e {0} ({2} \u30b3\u30ec\u30af\u30b7\u30e7\u30f3)"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
        {"Heap Memory Usage","\u30d2\u30fc\u30d7\u30e1\u30e2\u30ea\u306e\u4f7f\u7528\u72b6\u6cc1"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
        {"Heap", "\u30d2\u30fc\u30d7"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
        {"Help.AboutDialog.accessibleDescription", "JConsole \u304a\u3088\u3073 JDK \u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u60c5\u5831\u3092\u542b\u3080\u30c0\u30a4\u30a2\u30ed\u30b0"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
        {"Help.AboutDialog.jConsoleVersion", "JConsole \u30d0\u30fc\u30b8\u30e7\u30f3:<br>{0}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
        {"Help.AboutDialog.javaVersion", "Java VM \u30d0\u30fc\u30b8\u30e7\u30f3:<br>{0}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
        {"Help.AboutDialog.masthead.accessibleName", "\u30de\u30b9\u30c8\u30d8\u30c3\u30c9\u306e\u30b0\u30e9\u30d5\u30a3\u30c3\u30af"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
        {"Help.AboutDialog.masthead.title", "JConsole \u306b\u3064\u3044\u3066"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
        {"Help.AboutDialog.title", "JConsole: \u88fd\u54c1\u60c5\u5831"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
        {"Help.AboutDialog.userGuideLink", "JConsole \u30e6\u30fc\u30b6\u30fc\u30ac\u30a4\u30c9:<br>{0}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
        {"Help.AboutDialog.userGuideLink.mnemonic", 'U'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
        {"Help.AboutDialog.userGuideLink.url", "http://java.sun.com/javase/6/docs/technotes/guides/management/MonitoringGuide/toc.html"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
        {"HelpMenu.About.title", "JConsole \u306b\u3064\u3044\u3066(A)"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
        {"HelpMenu.About.title.mnemonic", 'A'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
        {"HelpMenu.UserGuide.title", "\u30aa\u30f3\u30e9\u30a4\u30f3\u30e6\u30fc\u30b6\u30fc\u30ac\u30a4\u30c9(U)"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
        {"HelpMenu.UserGuide.title.mnemonic", 'U'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
        {"HelpMenu.title", "\u30d8\u30eb\u30d7(H)"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
        {"HelpMenu.title.mnemonic", 'H'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
        {"Hotspot MBeans...", "Hotspot MBean..."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
        {"Hotspot MBeans....mnemonic", 'H'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
        {"Hotspot MBeans.dialog.accessibleDescription", "Hotspot MBean \u3092\u7ba1\u7406\u3059\u308b\u305f\u3081\u306e\u30c0\u30a4\u30a2\u30ed\u30b0"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
        {"Impact","\u5f71\u97ff"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
        {"Info","\u60c5\u5831"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
        {"INFO","\u60c5\u5831"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
        {"Invalid plugin path", "\u8b66\u544a: \u30d7\u30e9\u30b0\u30a4\u30f3\u30d1\u30b9\u304c\u7121\u52b9\u3067\u3059: {0}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
        {"Invalid URL", "\u7121\u52b9\u306a URL: {0}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
        {"Is","Is"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
        {"Java Monitoring & Management Console", "Java Monitoring & Management Console"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
        {"JConsole: ","JConsole: {0}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
        {"JConsole version","JConsole \u30d0\u30fc\u30b8\u30e7\u30f3 \"{0}\""},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
        {"JConsole.accessibleDescription", "Java Monitoring & Management Console"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
        {"JIT compiler","JIT \u30b3\u30f3\u30d1\u30a4\u30e9"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
        {"Java Virtual Machine","Java \u4eee\u60f3\u30de\u30b7\u30f3"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
        {"Java","Java"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
        {"Library path","\u30e9\u30a4\u30d6\u30e9\u30ea\u30d1\u30b9"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
        {"Listeners","\u30ea\u30b9\u30ca\u30fc"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
        {"Live Threads","\u30e9\u30a4\u30d6\u30b9\u30ec\u30c3\u30c9"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
        {"Loaded", "\u30ed\u30fc\u30c9\u6e08\u307f"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
        {"Local Process:", "\u30ed\u30fc\u30ab\u30eb\u30d7\u30ed\u30bb\u30b9(L):"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
        {"Local Process:.mnemonic", 'L'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
        {"Look and Feel","Look & Feel"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
        {"Masthead.font", "Dialog-PLAIN-25"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
        {"Management Not Enabled","<b>\u6ce8</b>: \u7ba1\u7406\u30a8\u30fc\u30b8\u30a7\u30f3\u30c8\u304c\u3053\u306e\u30d7\u30ed\u30bb\u30b9\u3067\u6709\u52b9\u306b\u306a\u3063\u3066\u3044\u307e\u305b\u3093\u3002"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
        {"Management Will Be Enabled","<b>\u6ce8</b>: \u7ba1\u7406\u30a8\u30fc\u30b8\u30a7\u30f3\u30c8\u304c\u3053\u306e\u30d7\u30ed\u30bb\u30b9\u3067\u6709\u52b9\u306b\u306a\u308a\u307e\u3059\u3002"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
        {"MBeanAttributeInfo","MBeanAttributeInfo"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
        {"MBeanInfo","MBeanInfo"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
        {"MBeanNotificationInfo","MBeanNotificationInfo"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
        {"MBeanOperationInfo","MBeanOperationInfo"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
        {"MBeans","MBean"},
5307
7865cb8f2f54 6875904: Java 7 message synchronization 1
yhuang
parents: 2
diff changeset
   237
        {"MBeansTab.clearNotificationsButton", "\u6d88\u53bb(C)"},
7865cb8f2f54 6875904: Java 7 message synchronization 1
yhuang
parents: 2
diff changeset
   238
        {"MBeansTab.clearNotificationsButton.mnemonic", 'C'},
7865cb8f2f54 6875904: Java 7 message synchronization 1
yhuang
parents: 2
diff changeset
   239
        {"MBeansTab.clearNotificationsButton.toolTip", "\u901a\u77e5\u3092\u6d88\u53bb\u3059\u308b"},
7865cb8f2f54 6875904: Java 7 message synchronization 1
yhuang
parents: 2
diff changeset
   240
        {"MBeansTab.compositeNavigationMultiple", "\u8907\u5408\u30ca\u30d3\u30b2\u30fc\u30b7\u30e7\u30f3 {0}/{1}"},
7865cb8f2f54 6875904: Java 7 message synchronization 1
yhuang
parents: 2
diff changeset
   241
        {"MBeansTab.compositeNavigationSingle", "\u8907\u5408\u30ca\u30d3\u30b2\u30fc\u30b7\u30e7\u30f3"},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
        {"MBeansTab.refreshAttributesButton", "\u66f4\u65b0(R)"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
        {"MBeansTab.refreshAttributesButton.mnemonic", 'R'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
        {"MBeansTab.refreshAttributesButton.toolTip", "\u5c5e\u6027\u3092\u66f4\u65b0\u3059\u308b"},
5307
7865cb8f2f54 6875904: Java 7 message synchronization 1
yhuang
parents: 2
diff changeset
   245
        {"MBeansTab.subscribeNotificationsButton", "\u767b\u9332(S)"},
7865cb8f2f54 6875904: Java 7 message synchronization 1
yhuang
parents: 2
diff changeset
   246
        {"MBeansTab.subscribeNotificationsButton.mnemonic", 'S'},
7865cb8f2f54 6875904: Java 7 message synchronization 1
yhuang
parents: 2
diff changeset
   247
        {"MBeansTab.subscribeNotificationsButton.toolTip", "\u901a\u77e5\u306e\u5f85\u6a5f\u3092\u958b\u59cb"},
7865cb8f2f54 6875904: Java 7 message synchronization 1
yhuang
parents: 2
diff changeset
   248
        {"MBeansTab.tabularNavigationMultiple", "\u8868\u5f62\u5f0f\u30ca\u30d3\u30b2\u30fc\u30b7\u30e7\u30f3 {0}/{1}"},
7865cb8f2f54 6875904: Java 7 message synchronization 1
yhuang
parents: 2
diff changeset
   249
        {"MBeansTab.tabularNavigationSingle", "\u8868\u5f62\u5f0f\u30ca\u30d3\u30b2\u30fc\u30b7\u30e7\u30f3"},
7865cb8f2f54 6875904: Java 7 message synchronization 1
yhuang
parents: 2
diff changeset
   250
        {"MBeansTab.unsubscribeNotificationsButton", "\u767b\u9332\u89e3\u9664(U)"},
7865cb8f2f54 6875904: Java 7 message synchronization 1
yhuang
parents: 2
diff changeset
   251
        {"MBeansTab.unsubscribeNotificationsButton.mnemonic", 'U'},
7865cb8f2f54 6875904: Java 7 message synchronization 1
yhuang
parents: 2
diff changeset
   252
        {"MBeansTab.unsubscribeNotificationsButton.toolTip", "\u901a\u77e5\u306e\u5f85\u6a5f\u3092\u505c\u6b62"},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
        {"Manage Hotspot MBeans in: ", "Hotspot MBean \u3092\u7ba1\u7406: "},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
        {"Max","\u6700\u5927"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
        {"Maximum heap size","\u6700\u5927\u30d2\u30fc\u30d7\u30b5\u30a4\u30ba"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
        {"Memory","\u30e1\u30e2\u30ea"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
        {"MemoryPoolLabel", "\u30e1\u30e2\u30ea\u30d7\u30fc\u30eb \"{0}\""},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
        {"MemoryTab.heapPlotter.accessibleName", "\u30d2\u30fc\u30d7\u30e1\u30e2\u30ea\u30fc\u306e\u4f7f\u7528\u72b6\u6cc1\u306e\u56f3\u3002"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
        {"MemoryTab.infoLabelFormat", "<html>\u4f7f\u7528\u6e08\u307f: {0}    \u78ba\u5b9a: {1}    \u6700\u5927: {2}</html>"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
        {"MemoryTab.nonHeapPlotter.accessibleName", "\u975e\u30d2\u30fc\u30d7\u30e1\u30e2\u30ea\u30fc\u306e\u4f7f\u7528\u72b6\u6cc1\u306e\u56f3\u3002"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
        {"MemoryTab.poolChart.aboveThreshold", "{0} \u306e\u3057\u304d\u3044\u5024\u3092\u8d85\u3048\u3066\u3044\u307e\u3059\u3002\n"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
        {"MemoryTab.poolChart.accessibleName", "\u30e1\u30e2\u30ea\u30fc\u30d7\u30fc\u30eb\u306e\u4f7f\u7528\u72b6\u6cc1\u306e\u56f3\u3002"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
        {"MemoryTab.poolChart.belowThreshold", "{0} \u306e\u3057\u304d\u3044\u5024\u3092\u4e0b\u56de\u3063\u3066\u3044\u307e\u3059\u3002\n"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
        {"MemoryTab.poolPlotter.accessibleName", "{0} \u30e1\u30e2\u30ea\u30fc\u306e\u4f7f\u7528\u72b6\u6cc1\u306e\u56f3\u3002"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
        {"Message","\u30e1\u30c3\u30bb\u30fc\u30b8"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
        {"Method successfully invoked", "\u30e1\u30bd\u30c3\u30c9\u306f\u6b63\u5e38\u306b\u8d77\u52d5\u3055\u308c\u307e\u3057\u305f"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
        {"Minimize All", "\u3059\u3079\u3066\u3092\u30a2\u30a4\u30b3\u30f3\u5316(M)"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
        {"Minimize All.mnemonic", 'M'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
        {"Minus Version", "\u3053\u308c\u306f {0} \u30d0\u30fc\u30b8\u30e7\u30f3 {1} \u3067\u3059"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
        {"Monitor locked",
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
             "   - \u30ed\u30c3\u30af\u3055\u308c\u305f {0}" + cr},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
        {"Motif","Motif"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
        {"Name Build and Mode","{0} (\u30d3\u30eb\u30c9 {1}, {2})"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
        {"Name and Build","{0} (\u30d3\u30eb\u30c9 {1})"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
        {"Name","\u540d\u524d"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
        {"Name: ","\u540d\u524d: "},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
        {"Name State",
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
             "\u540d\u524d: {0}" + cr +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
             "\u72b6\u614b: {1}" + cr},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
        {"Name State LockName",
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
             "\u540d\u524d: {0}" + cr +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
             "\u72b6\u614b: {1} ({2} \u4e0a)" + cr},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
        {"Name State LockName LockOwner",
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
             "\u540d\u524d: {0}" + cr +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
             "\u72b6\u614b: {1} ({2} \u4e0a) \u6240\u6709\u8005: {3}" + cr},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
        {"New Connection...", "\u65b0\u898f\u63a5\u7d9a(N)..."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
        {"New Connection....mnemonic", 'N'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
        {"New value applied","\u65b0\u3057\u3044\u5024\u304c\u9069\u7528\u3055\u308c\u307e\u3057\u305f"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
        {"No attribute selected","\u5c5e\u6027\u304c\u9078\u629e\u3055\u308c\u3066\u3044\u307e\u305b\u3093"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
        {"No deadlock detected","\u30c7\u30c3\u30c9\u30ed\u30c3\u30af\u306f\u691c\u51fa\u3055\u308c\u307e\u305b\u3093\u3067\u3057\u305f"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
        {"No value selected","\u5024\u304c\u9078\u629e\u3055\u308c\u3066\u307e\u305b\u3093"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
        {"Non-Heap Memory Usage","\u975e\u30d2\u30fc\u30d7\u30e1\u30e2\u30ea\u306e\u4f7f\u7528\u72b6\u6cc1"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
        {"Non-Heap", "\u975e\u30d2\u30fc\u30d7"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
        {"Not Yet Implemented","\u5b9f\u88c5\u3055\u308c\u3066\u3044\u307e\u305b\u3093"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
        {"Not a valid event broadcaster", "\u6709\u52b9\u306a\u30a4\u30d9\u30f3\u30c8\u30d6\u30ed\u30fc\u30c9\u30ad\u30e3\u30b9\u30c8\u5143\u3067\u306f\u3042\u308a\u307e\u305b\u3093"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
        {"Notification","\u901a\u77e5"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
        {"Notification buffer","\u901a\u77e5\u30d0\u30c3\u30d5\u30a1\u30fc"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
        {"Notifications","\u901a\u77e5"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
        {"NotifTypes", "NotifTypes"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
        {"Number of Threads","\u30b9\u30ec\u30c3\u30c9\u6570"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
        {"Number of Loaded Classes","\u30ed\u30fc\u30c9\u3055\u308c\u305f\u30af\u30e9\u30b9\u306e\u6570"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
        {"Number of processors","\u30d7\u30ed\u30bb\u30c3\u30b5\u306e\u6570"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
        {"ObjectName","ObjectName"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
        {"Operating System","\u30aa\u30da\u30ec\u30fc\u30c6\u30a3\u30f3\u30b0\u30b7\u30b9\u30c6\u30e0"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
        {"Operation","\u30aa\u30da\u30ec\u30fc\u30b7\u30e7\u30f3"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
        {"Operation invocation","\u30aa\u30da\u30ec\u30fc\u30b7\u30e7\u30f3\u547c\u3073\u51fa\u3057"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
        {"Operation return value", "\u64cd\u4f5c\u306e\u623b\u308a\u5024"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
        {"Operations","\u64cd\u4f5c"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
        {"Overview","\u6982\u8981"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
        {"OverviewPanel.plotter.accessibleName", "{0} \u306e\u56f3\u3002"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
        {"Parameter", "\u30d1\u30e9\u30e1\u30fc\u30bf"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
        {"Password: ", "\u30d1\u30b9\u30ef\u30fc\u30c9(P): "},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
        {"Password: .mnemonic", 'P'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
        {"Password.accessibleName", "\u30d1\u30b9\u30ef\u30fc\u30c9"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
        {"Peak","\u30d4\u30fc\u30af"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
        {"Perform GC", "GC \u306e\u5b9f\u884c"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
        {"Perform GC.mnemonic", 'G'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
        {"Perform GC.toolTip", "\u30ac\u30d9\u30fc\u30b8\u30b3\u30ec\u30af\u30b7\u30e7\u30f3\u3092\u8981\u6c42\u3059\u308b"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
        {"Plotter.accessibleName", "\u56f3"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
        {"Plotter.accessibleName.keyAndValue", "{0}={1}\n"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
        {"Plotter.accessibleName.noData", "\u30d7\u30ed\u30c3\u30c8\u3055\u308c\u305f\u30c7\u30fc\u30bf\u306f\u3042\u308a\u307e\u305b\u3093\u3002"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
        {"Plotter.saveAsMenuItem", "\u30c7\u30fc\u30bf\u3092\u5225\u540d\u3067\u4fdd\u5b58(a)..."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
        {"Plotter.saveAsMenuItem.mnemonic", 'a'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
        {"Plotter.timeRangeMenu", "\u6642\u9593\u7bc4\u56f2(T)"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
        {"Plotter.timeRangeMenu.mnemonic", 'T'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
        {"Problem adding listener","\u30ea\u30b9\u30ca\u30fc\u8ffd\u52a0\u6642\u306e\u554f\u984c"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
        {"Problem displaying MBean", "MBean \u8868\u793a\u6642\u306e\u554f\u984c"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
        {"Problem invoking", "\u547c\u3073\u51fa\u3057\u6642\u306e\u554f\u984c"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
        {"Problem removing listener","\u30ea\u30b9\u30ca\u30fc\u524a\u9664\u6642\u306e\u554f\u984c"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
        {"Problem setting attribute","\u5c5e\u6027\u8a2d\u5b9a\u6642\u306e\u554f\u984c"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
        {"Process CPU time","\u30d7\u30ed\u30bb\u30b9 CPU \u6642\u9593"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
        {"R/W","R/W"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
        {"Readable","\u8aad\u307f\u8fbc\u307f\u53ef\u80fd"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
        {"Received","\u53d7\u4fe1\u6e08\u307f"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
        {"Reconnect","\u518d\u63a5\u7d9a"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
        {"Remote Process:", "\u30ea\u30e2\u30fc\u30c8\u30d7\u30ed\u30bb\u30b9(R):"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
        {"Remote Process:.mnemonic", 'R'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
        {"Remote Process.textField.accessibleName", "\u30ea\u30e2\u30fc\u30c8\u30d7\u30ed\u30bb\u30b9"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
        {"Remove","\u524a\u9664"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
        {"Restore All", "\u3059\u3079\u3066\u3092\u5fa9\u5143(R)"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
        {"Restore All.mnemonic", 'R'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
        {"Return value", "\u623b\u308a\u5024"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
        {"ReturnType", "ReturnType"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
        {"SeqNum","\u30b7\u30fc\u30b1\u30f3\u30b9\u756a\u53f7"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
        {"Size Bytes", "{0,number,integer} \u30d0\u30a4\u30c8"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
        {"Size Gb","{0} G \u30d0\u30a4\u30c8"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
        {"Size Kb","{0} K \u30d0\u30a4\u30c8"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
        {"Size Mb","{0} M \u30d0\u30a4\u30c8"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
        {"Source","\u30bd\u30fc\u30b9"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
        {"Stack trace",
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
             cr + "\u30b9\u30bf\u30c3\u30af\u30c8\u30ec\u30fc\u30b9: " + cr},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
        {"Success:","\u6210\u529f:"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
        // Note: SummaryTab.headerDateTimeFormat can be one the following:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
        // 1. A combination of two styles for date and time, using the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
        //    constants from class DateFormat: SHORT, MEDIUM, LONG, FULL.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
        //    Example: "MEDIUM,MEDIUM" or "FULL,SHORT"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
        // 2. An explicit string pattern used for creating an instance
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
        //    of the class SimpleDateFormat.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
        //    Example: "yyyy-MM-dd HH:mm:ss" or "M/d/yyyy h:mm:ss a"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
        {"SummaryTab.headerDateTimeFormat", "FULL,FULL"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
        {"SummaryTab.pendingFinalization.label", "\u4fdd\u7559\u72b6\u614b\u306e\u30d5\u30a1\u30a4\u30ca\u30e9\u30a4\u30ba"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
        {"SummaryTab.pendingFinalization.value", "{0} \u30aa\u30d6\u30b8\u30a7\u30af\u30c8"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
        {"SummaryTab.tabName", "VM \u306e\u6982\u8981"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
        {"SummaryTab.vmVersion","{0} \u30d0\u30fc\u30b8\u30e7\u30f3 {1}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
        {"TabularData are not supported", "TabularData \u306f\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u307e\u305b\u3093"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
        {"Threads","\u30b9\u30ec\u30c3\u30c9"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
        {"ThreadTab.infoLabelFormat", "<html>\u30e9\u30a4\u30d6: {0}    \u30d4\u30fc\u30af: {1}    \u7dcf\u6570: {2}</html>"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
        {"ThreadTab.threadInfo.accessibleName", "\u30b9\u30ec\u30c3\u30c9\u60c5\u5831"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
        {"ThreadTab.threadPlotter.accessibleName", "\u30b9\u30ec\u30c3\u30c9\u6570\u306e\u56f3\u3002"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
        {"Threshold","\u3057\u304d\u3044\u5024"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
        {"Tile", "\u4e26\u3079\u3066\u8868\u793a(T)"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
        {"Tile.mnemonic", 'T'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
        {"Time Range:", "\u6642\u9593\u7bc4\u56f2(T):"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
        {"Time Range:.mnemonic", 'T'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
        {"Time", "\u6642\u9593"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
        {"TimeStamp","\u30bf\u30a4\u30e0\u30b9\u30bf\u30f3\u30d7"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
        {"Total Loaded", "\u7dcf\u30ed\u30fc\u30c9\u6570"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
        {"Total classes loaded","\u30ed\u30fc\u30c9\u3055\u308c\u305f\u30af\u30e9\u30b9\u306e\u7dcf\u6570"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
        {"Total classes unloaded","\u30a2\u30f3\u30ed\u30fc\u30c9\u3055\u308c\u305f\u30af\u30e9\u30b9\u306e\u7dcf\u6570"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
        {"Total compile time","\u30b3\u30f3\u30d1\u30a4\u30eb\u306e\u7dcf\u6642\u9593"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
        {"Total physical memory","\u7dcf\u7269\u7406\u30e1\u30e2\u30ea"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
        {"Total threads started","\u958b\u59cb\u3057\u305f\u30b9\u30ec\u30c3\u30c9\u306e\u7dcf\u6570"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
        {"Total swap space","\u7dcf\u30b9\u30ef\u30c3\u30d7\u30b9\u30da\u30fc\u30b9"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
        {"Type","\u578b"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
        {"Unavailable","\u4f7f\u7528\u4e0d\u53ef\u80fd"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
        {"UNKNOWN","UNKNOWN"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
        {"Unknown Host","\u672a\u77e5\u306e\u30db\u30b9\u30c8: {0}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
        {"Unregister", "\u767b\u9332\u89e3\u9664"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
        {"Uptime","\u30a2\u30c3\u30d7\u30bf\u30a4\u30e0"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
        {"Uptime: ","\u30a2\u30c3\u30d7\u30bf\u30a4\u30e0: "},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
        {"Usage Threshold","\u4f7f\u7528\u91cf\u306e\u3057\u304d\u3044\u5024"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
        {"remoteTF.usage","<b>\u4f7f\u3044\u65b9</b>: &lt;\u30db\u30b9\u30c8\u540d&gt;:&lt;\u30dd\u30fc\u30c8&gt; \u307e\u305f\u306f service:jmx:&lt;\u30d7\u30ed\u30c8\u30b3\u30eb&gt;:&lt;sap&gt;"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
        {"Used","\u4f7f\u7528\u6e08\u307f"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
        {"Username: ", "\u30e6\u30fc\u30b6\u30fc\u540d(U): "},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
        {"Username: .mnemonic", 'U'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
        {"Username.accessibleName", "\u30e6\u30fc\u30b6\u30fc\u540d"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
        {"UserData","UserData"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
        {"Virtual Machine","\u4eee\u60f3\u30de\u30b7\u30f3"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
        {"VM arguments","VM \u306e\u5f15\u6570"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
        {"VM","VM"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
        {"VMInternalFrame.accessibleDescription", "Java \u4eee\u60f3\u30de\u30b7\u30f3\u3092\u76e3\u8996\u3059\u308b\u305f\u3081\u306e\u5185\u90e8\u30d5\u30ec\u30fc\u30e0"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
        {"Value","\u5024"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
        {"Vendor", "\u30d9\u30f3\u30c0"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
        {"Verbose Output","\u8a73\u7d30\u51fa\u529b"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
        {"Verbose Output.toolTip", "\u30af\u30e9\u30b9\u30ed\u30fc\u30c7\u30a3\u30f3\u30b0\u30b7\u30b9\u30c6\u30e0\u306e\u8a73\u7d30\u51fa\u529b\u3092\u6709\u52b9\u306b\u3059\u308b"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
        {"View value", "\u5024\u3092\u8868\u793a\u3059\u308b"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
        {"View","\u8868\u793a"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
        {"Window", "\u30a6\u30a3\u30f3\u30c9\u30a6(W)"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
        {"Window.mnemonic", 'W'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
        {"Windows","\u30a6\u30a3\u30f3\u30c9\u30a6"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
        {"Writable","\u66f8\u304d\u8fbc\u307f\u53ef\u80fd"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
        {"You cannot drop a class here", "\u30af\u30e9\u30b9\u3092\u3053\u3053\u306b\u30c9\u30ed\u30c3\u30d7\u3067\u304d\u307e\u305b\u3093"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
        {"collapse", "\u6298\u308a\u305f\u305f\u307f"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
        {"connectionFailed1","\u63a5\u7d9a\u306b\u5931\u6557\u3057\u307e\u3057\u305f: \u518d\u8a66\u884c\u3057\u307e\u3059\u304b?"},
5307
7865cb8f2f54 6875904: Java 7 message synchronization 1
yhuang
parents: 2
diff changeset
   415
        {"connectionFailed2","{0} \u3078\u306e\u63a5\u7d9a\u304c\u6210\u529f\u3057\u307e\u305b\u3093\u3067\u3057\u305f\u3002<br>\u3082\u3046\u4e00\u5ea6\u8a66\u3057\u307e\u3059\u304b?"},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
        {"connectionLost1","\u63a5\u7d9a\u304c\u5931\u308f\u308c\u307e\u3057\u305f: \u518d\u63a5\u7d9a\u3057\u307e\u3059\u304b?"},
5307
7865cb8f2f54 6875904: Java 7 message synchronization 1
yhuang
parents: 2
diff changeset
   417
        {"connectionLost2","\u30ea\u30e2\u30fc\u30c8\u30d7\u30ed\u30bb\u30b9\u304c\u7d42\u4e86\u3057\u305f\u305f\u3081\u3001{0} \u3078\u306e\u63a5\u7d9a\u304c\u5931\u308f\u308c\u307e\u3057\u305f\u3002<br>\u518d\u63a5\u7d9a\u3057\u307e\u3059\u304b?"},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
        {"connectingTo1","{0} \u306b\u63a5\u7d9a\u3057\u3066\u3044\u307e\u3059"},
5307
7865cb8f2f54 6875904: Java 7 message synchronization 1
yhuang
parents: 2
diff changeset
   419
        {"connectingTo2","\u73fe\u5728 {0} \u306b\u63a5\u7d9a\u3057\u3066\u3044\u307e\u3059\u3002<br>\u3053\u308c\u306b\u306f\u5c11\u3057\u6642\u9593\u304c\u304b\u304b\u308a\u307e\u3059\u3002"},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
        {"deadlockAllTab","\u3059\u3079\u3066"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
        {"deadlockTab","\u30c7\u30c3\u30c9\u30ed\u30c3\u30af"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
        {"deadlockTabN","\u30c7\u30c3\u30c9\u30ed\u30c3\u30af {0}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
        {"expand", "\u5c55\u958b"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
        {"kbytes","{0} k \u30d0\u30a4\u30c8"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
        {"operation","\u30aa\u30da\u30ec\u30fc\u30b7\u30e7\u30f3"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
        {"plot", "\u30d7\u30ed\u30c3\u30c8"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
        {"visualize","\u8868\u793a"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
        {"zz usage text",
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
             "\u4f7f\u3044\u65b9: {0} [ -interval=n ] [ -notile ] [ -pluginpath <path> ] [ -version ] [ connection ... ]" + cr +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
             cr +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
             "  -interval   \u66f4\u65b0\u9593\u9694\u3092 n \u79d2\u306b\u8a2d\u5b9a\u3059\u308b (\u30c7\u30d5\u30a9\u30eb\u30c8\u306f 4 \u79d2)" + cr +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
             "  -notile     \u521d\u671f\u72b6\u614b\u306e\u30a6\u30a3\u30f3\u30c9\u30a6\u3092\u30bf\u30a4\u30eb\u72b6\u306b\u4e26\u3079\u306a\u3044 (\u63a5\u7d9a\u304c\u8907\u6570\u3042\u308b\u5834\u5408)" + cr +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
             "  -pluginpath JConsole \u3067\u30d7\u30e9\u30b0\u30a4\u30f3\u3092\u63a2\u3059\u305f\u3081\u306b\u4f7f\u7528\u3059\u308b\u30d1\u30b9\u3092\u6307\u5b9a\u3059\u308b" + cr +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
             "  -version    \u30d7\u30ed\u30b0\u30e9\u30e0\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u51fa\u529b\u3059\u308b" + cr +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
             cr +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
             "  connection = pid || host:port || JMX URL (service:jmx:<protocol>://...)" + cr +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
             "  pid         \u30bf\u30fc\u30b2\u30c3\u30c8\u30d7\u30ed\u30bb\u30b9\u306e\u30d7\u30ed\u30bb\u30b9 ID" + cr +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
             "  host        \u30ea\u30e2\u30fc\u30c8\u30db\u30b9\u30c8\u306e\u540d\u524d\u307e\u305f\u306f IP \u30a2\u30c9\u30ec\u30b9" + cr +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
             "  port        \u30ea\u30e2\u30fc\u30c8\u63a5\u7d9a\u7528\u306e\u30dd\u30fc\u30c8\u756a\u53f7" + cr +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
             cr +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
             "  -J          JConsole \u3092\u5b9f\u884c\u3059\u308b Java \u4eee\u60f3\u30de\u30b7\u30f3\u3078\u306e" + cr +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
             "              \u5165\u529b\u5f15\u6570\u3092\u6307\u5b9a\u3059\u308b"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
        // END OF MATERIAL TO LOCALIZE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
        };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
    public synchronized Object[][] getContents() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
        return getContents0();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
}