jdk/src/share/classes/sun/tools/jconsole/resources/JConsoleResources.java
author ohair
Tue, 28 Dec 2010 15:53:50 -0800
changeset 7668 d4a77089c587
parent 7470 3b741e2b6a15
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: 2
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: 2
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: 2
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
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 extends ListResourceBundle {
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() {
6196
e11b0538a16c 6959252: convert the anonymous arrays to named arrays in Java List Resource files
yhuang
parents: 5506
diff changeset
    57
        Object[][] temp = new Object[][] {
e11b0538a16c 6959252: convert the anonymous arrays to named arrays in Java List Resource files
yhuang
parents: 5506
diff changeset
    58
                // NOTE 1: The value strings in this file containing "{0}" are
2
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 day"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
        {" 1 hour"," 1 hour"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
        {" 1 min"," 1 min"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
        {" 1 month"," 1 month"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
        {" 1 year"," 1 year"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
        {" 2 hours"," 2 hours"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
        {" 3 hours"," 3 hours"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
        {" 3 months"," 3 months"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
        {" 5 min"," 5 min"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
        {" 6 hours"," 6 hours"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
        {" 6 months"," 6 months"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
        {" 7 days"," 7 days"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
        {"10 min","10 min"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
        {"12 hours","12 hours"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
        {"30 min","30 min"},
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","All"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
        {"Apply","Apply"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
        {"Architecture","Architecture"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
        {"Array, OpenType", "Array, OpenType"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
        {"Array, OpenType, Numeric value viewer","Array, OpenType, Numeric value viewer"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
        {"Attribute","Attribute"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
        {"Attribute value","Attribute value"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
        {"Attribute values","Attribute values"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
        {"Attributes","Attributes"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
        {"Blank", "Blank"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
        {"BlockedCount WaitedCount",
6196
e11b0538a16c 6959252: convert the anonymous arrays to named arrays in Java List Resource files
yhuang
parents: 5506
diff changeset
    99
             "Total blocked: {0}  Total waited: {1}\n"},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
        {"Boot class path","Boot class path"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
        {"BorderedComponent.moreOrLessButton.toolTip", "Toggle to show more or less information"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
        {"CPU Usage","CPU Usage"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
        {"CPUUsageFormat","CPU Usage: {0}%"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
        {"Cancel","Cancel"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
        {"Cascade", "Cascade"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
        {"Cascade.mnemonic", 'C'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
        {"Chart:", "Chart:"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
        {"Chart:.mnemonic", 'C'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
        {"Class path","Class path"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
        {"Class","Class"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
        {"ClassName","ClassName"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
        {"ClassTab.infoLabelFormat", "<html>Loaded: {0}    Unloaded: {1}    Total: {2}</html>"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
        {"ClassTab.loadedClassesPlotter.accessibleName", "Chart for Loaded Classes."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
        {"Classes","Classes"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
        {"Close","Close"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
        {"Column.Name", "Name"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
        {"Column.PID", "PID"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
        {"Committed memory","Committed memory"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
        {"Committed virtual memory","Committed virtual memory"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
        {"Committed", "Committed"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
        {"Compiler","Compiler"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
        {"CompositeData","CompositeData"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
        {"Config","Config"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
        {"Connect", "Connect"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
        {"Connect.mnemonic", 'C'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
        {"Connect...","Connect..."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
        {"ConnectDialog.connectButton.toolTip", "Connect to Java Virtual Machine"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
        {"ConnectDialog.accessibleDescription", "Dialog for making a new connection to a local or remote Java Virtual Machine"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
        {"ConnectDialog.masthead.accessibleName", "Masthead Graphic"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
        {"ConnectDialog.masthead.title", "New Connection"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
        {"ConnectDialog.statusBar.accessibleName", "Status Bar"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
        {"ConnectDialog.title", "JConsole: New Connection"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
        {"Connected. Click to disconnect.","Connected. Click to disconnect."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
        {"Connection failed","Connection failed"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
        {"Connection", "Connection"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
        {"Connection.mnemonic", 'C'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
        {"Connection name", "Connection name"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
        {"ConnectionName (disconnected)","{0} (disconnected)"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
        {"Constructor","Constructor"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
        {"Current classes loaded", "Current classes loaded"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
        {"Current heap size","Current heap size"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
        {"Current value","Current value: {0}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
        {"Create", "Create"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
        {"Daemon threads","Daemon threads"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
        {"Disconnected. Click to connect.","Disconnected. Click to connect."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
        {"Double click to expand/collapse","Double click to expand/collapse"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
        {"Double click to visualize", "Double click to visualize"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
        {"Description", "Description"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
        {"Description: ", "Description: "},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
        {"Descriptor", "Descriptor"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
        {"Details", "Details"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
        {"Detect Deadlock", "Detect Deadlock"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
        {"Detect Deadlock.mnemonic", 'D'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
        {"Detect Deadlock.toolTip", "Detect deadlocked threads"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
        {"Dimension is not supported:","Dimension is not supported:"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
        {"Discard chart", "Discard chart"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
        {"DurationDaysHoursMinutes","{0,choice,1#{0,number,integer} day |1.0<{0,number,integer} days }" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
                                    "{1,choice,0<{1,number,integer} hours |1#{1,number,integer} hour |1<{1,number,integer} hours }" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
                                    "{2,choice,0<{2,number,integer} minutes|1#{2,number,integer} minute|1.0<{2,number,integer} minutes}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
        {"DurationHoursMinutes","{0,choice,1#{0,number,integer} hour |1<{0,number,integer} hours }" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
                                "{1,choice,0<{1,number,integer} minutes|1#{1,number,integer} minute|1.0<{1,number,integer} minutes}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
        {"DurationMinutes","{0,choice,1#{0,number,integer} minute|1.0<{0,number,integer} minutes}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
        {"DurationSeconds","{0} seconds"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
        {"Empty array", "Empty array"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
        {"Empty opentype viewer", "Empty opentype viewer"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
        {"Error","Error"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
        {"Error: MBeans already exist","Error: MBeans already exist"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
        {"Error: MBeans do not exist","Error: MBeans do not exist"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
        {"Error:","Error:"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
        {"Event","Event"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
        {"Exit", "Exit"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
        {"Exit.mnemonic", 'x'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
        {"Fail to load plugin", "Warning: Fail to load plugin: {0}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
        {"FileChooser.fileExists.cancelOption", "Cancel"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
        {"FileChooser.fileExists.message", "<html><center>File already exists:<br>{0}<br>Do you want to replace it?"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
        {"FileChooser.fileExists.okOption", "Replace"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
        {"FileChooser.fileExists.title", "File Exists"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
        {"FileChooser.savedFile", "<html>Saved to file:<br>{0}<br>({1} bytes)"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
        {"FileChooser.saveFailed.message", "<html><center>Save to file failed:<br>{0}<br>{1}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
        {"FileChooser.saveFailed.title", "Save Failed"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
        {"Free physical memory","Free physical memory"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
        {"Free swap space","Free swap space"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
        {"Garbage collector","Garbage collector"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
        {"GTK","GTK"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
        {"GcInfo","Name = ''{0}'', Collections = {1,choice,-1#Unavailable|0#{1,number,integer}}, Total time spent = {2}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
        {"GC time","GC time"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
        {"GC time details","{0} on {1} ({2} collections)"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
        {"Heap Memory Usage","Heap Memory Usage"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
        {"Heap", "Heap"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
        {"Help.AboutDialog.accessibleDescription", "Dialog containing information about JConsole and JDK versions"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
        {"Help.AboutDialog.jConsoleVersion", "JConsole version:<br>{0}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
        {"Help.AboutDialog.javaVersion", "Java VM version:<br>{0}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
        {"Help.AboutDialog.masthead.accessibleName", "Masthead Graphic"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
        {"Help.AboutDialog.masthead.title", "About JConsole"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
        {"Help.AboutDialog.title", "JConsole: About"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
        {"Help.AboutDialog.userGuideLink", "JConsole User Guide:<br>{0}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
        {"Help.AboutDialog.userGuideLink.mnemonic", 'U'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
        {"Help.AboutDialog.userGuideLink.url", "http://java.sun.com/javase/6/docs/technotes/guides/management/jconsole.html"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
        {"HelpMenu.About.title", "About JConsole"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
        {"HelpMenu.About.title.mnemonic", 'A'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
        {"HelpMenu.UserGuide.title", "Online User Guide"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
        {"HelpMenu.UserGuide.title.mnemonic", 'U'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
        {"HelpMenu.title", "Help"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
        {"HelpMenu.title.mnemonic", 'H'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
        {"Hotspot MBeans...", "Hotspot MBeans..."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
        {"Hotspot MBeans....mnemonic", 'H'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
        {"Hotspot MBeans.dialog.accessibleDescription", "Dialog for managing Hotspot MBeans"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
        {"Impact","Impact"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
        {"Info","Info"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
        {"INFO","INFO"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
        {"Invalid plugin path", "Warning: Invalid plugin path: {0}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
        {"Invalid URL", "Invalid URL: {0}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
        {"Is","Is"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
        {"Java Monitoring & Management Console", "Java Monitoring & Management Console"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
        {"JConsole: ","JConsole: {0}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
        {"JConsole version","JConsole version \"{0}\""},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
        {"JConsole.accessibleDescription", "Java Monitoring & Management Console"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
        {"JIT compiler","JIT compiler"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
        {"Java Virtual Machine","Java Virtual Machine"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
        {"Java","Java"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
        {"Library path","Library path"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
        {"Listeners","Listeners"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
        {"Live Threads","Live threads"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
        {"Loaded", "Loaded"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
        {"Local Process:", "Local Process:"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
        {"Local Process:.mnemonic", 'L'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
        {"Look and Feel","Look and Feel"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
        {"Masthead.font", "Dialog-PLAIN-25"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
        {"Management Not Enabled","<b>Note</b>: The management agent is not enabled on this process."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
        {"Management Will Be Enabled","<b>Note</b>: The management agent will be enabled on this process."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
        {"MBeanAttributeInfo","MBeanAttributeInfo"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
        {"MBeanInfo","MBeanInfo"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
        {"MBeanNotificationInfo","MBeanNotificationInfo"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
        {"MBeanOperationInfo","MBeanOperationInfo"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
        {"MBeans","MBeans"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
        {"MBeansTab.clearNotificationsButton", "Clear"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
        {"MBeansTab.clearNotificationsButton.mnemonic", 'C'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
        {"MBeansTab.clearNotificationsButton.toolTip", "Clear notifications"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
        {"MBeansTab.compositeNavigationMultiple", "Composite Navigation {0}/{1}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
        {"MBeansTab.compositeNavigationSingle", "Composite Navigation"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
        {"MBeansTab.refreshAttributesButton", "Refresh"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
        {"MBeansTab.refreshAttributesButton.mnemonic", 'R'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
        {"MBeansTab.refreshAttributesButton.toolTip", "Refresh attributes"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
        {"MBeansTab.subscribeNotificationsButton", "Subscribe"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
        {"MBeansTab.subscribeNotificationsButton.mnemonic", 'S'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
        {"MBeansTab.subscribeNotificationsButton.toolTip", "Start listening for notifications"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
        {"MBeansTab.tabularNavigationMultiple", "Tabular Navigation {0}/{1}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
        {"MBeansTab.tabularNavigationSingle", "Tabular Navigation"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
        {"MBeansTab.unsubscribeNotificationsButton", "Unsubscribe"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
        {"MBeansTab.unsubscribeNotificationsButton.mnemonic", 'U'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
        {"MBeansTab.unsubscribeNotificationsButton.toolTip", "Stop listening for notifications"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
        {"Manage Hotspot MBeans in: ", "Manage Hotspot MBeans in: "},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
        {"Max","Max"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
        {"Maximum heap size","Maximum heap size"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
        {"Memory","Memory"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
        {"MemoryPoolLabel", "Memory Pool \"{0}\""},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
        {"MemoryTab.heapPlotter.accessibleName", "Memory usage chart for heap."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
        {"MemoryTab.infoLabelFormat", "<html>Used: {0}    Committed: {1}    Max: {2}</html>"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
        {"MemoryTab.nonHeapPlotter.accessibleName", "Memory usage chart for non heap."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
        {"MemoryTab.poolChart.aboveThreshold", "which is above the threshold of {0}.\n"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
        {"MemoryTab.poolChart.accessibleName", "Memory Pool Usage Chart."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
        {"MemoryTab.poolChart.belowThreshold", "which is below the threshold of {0}.\n"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
        {"MemoryTab.poolPlotter.accessibleName", "Memory usage chart for {0}."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
        {"Message","Message"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
        {"Method successfully invoked", "Method successfully invoked"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
        {"Minimize All", "Minimize All"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
        {"Minimize All.mnemonic", 'M'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
        {"Minus Version", "This is {0} version {1}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
        {"Monitor locked",
6196
e11b0538a16c 6959252: convert the anonymous arrays to named arrays in Java List Resource files
yhuang
parents: 5506
diff changeset
   272
             "   - locked {0}\n"},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
        {"Motif","Motif"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
        {"Name Build and Mode","{0} (build {1}, {2})"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
        {"Name and Build","{0} (build {1})"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
        {"Name","Name"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
        {"Name: ","Name: "},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
        {"Name State",
6196
e11b0538a16c 6959252: convert the anonymous arrays to named arrays in Java List Resource files
yhuang
parents: 5506
diff changeset
   279
             "Name: {0}\n" +
e11b0538a16c 6959252: convert the anonymous arrays to named arrays in Java List Resource files
yhuang
parents: 5506
diff changeset
   280
             "State: {1}\n"},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
        {"Name State LockName",
6196
e11b0538a16c 6959252: convert the anonymous arrays to named arrays in Java List Resource files
yhuang
parents: 5506
diff changeset
   282
             "Name: {0}\n" +
e11b0538a16c 6959252: convert the anonymous arrays to named arrays in Java List Resource files
yhuang
parents: 5506
diff changeset
   283
             "State: {1} on {2}\n"},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
        {"Name State LockName LockOwner",
6196
e11b0538a16c 6959252: convert the anonymous arrays to named arrays in Java List Resource files
yhuang
parents: 5506
diff changeset
   285
             "Name: {0}\n" +
e11b0538a16c 6959252: convert the anonymous arrays to named arrays in Java List Resource files
yhuang
parents: 5506
diff changeset
   286
             "State: {1} on {2} owned by: {3}\n"},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
        {"New Connection...", "New Connection..."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
        {"New Connection....mnemonic", 'N'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
        {"New value applied","New value applied"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
        {"No attribute selected","No attribute selected"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
        {"No deadlock detected","No deadlock detected"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
        {"No value selected","No value selected"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
        {"Non-Heap Memory Usage","Non-Heap Memory Usage"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
        {"Non-Heap", "Non-Heap"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
        {"Not Yet Implemented","Not Yet Implemented"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
        {"Not a valid event broadcaster", "Not a valid event broadcaster"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
        {"Notification","Notification"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
        {"Notification buffer","Notification buffer"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
        {"Notifications","Notifications"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
        {"NotifTypes", "NotifTypes"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
        {"Number of Threads","Number of Threads"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
        {"Number of Loaded Classes","Number of Loaded Classes"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
        {"Number of processors","Number of processors"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
        {"ObjectName","ObjectName"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
        {"Operating System","Operating System"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
        {"Operation","Operation"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
        {"Operation invocation","Operation invocation"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
        {"Operation return value", "Operation return value"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
        {"Operations","Operations"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
        {"Overview","Overview"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
        {"OverviewPanel.plotter.accessibleName", "Chart for {0}."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
        {"Parameter", "Parameter"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
        {"Password: ", "Password: "},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
        {"Password: .mnemonic", 'P'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
        {"Password.accessibleName", "Password"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
        {"Peak","Peak"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
        {"Perform GC", "Perform GC"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
        {"Perform GC.mnemonic", 'G'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
        {"Perform GC.toolTip", "Request Garbage Collection"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
        {"Plotter.accessibleName", "Chart"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
        {"Plotter.accessibleName.keyAndValue", "{0}={1}\n"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
        {"Plotter.accessibleName.noData", "No data plotted."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
        {"Plotter.saveAsMenuItem", "Save data as..."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
        {"Plotter.saveAsMenuItem.mnemonic", 'a'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
        {"Plotter.timeRangeMenu", "Time Range"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
        {"Plotter.timeRangeMenu.mnemonic", 'T'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
        {"Problem adding listener","Problem adding listener"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
        {"Problem displaying MBean", "Problem displaying MBean"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
        {"Problem invoking", "Problem invoking"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
        {"Problem removing listener","Problem removing listener"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
        {"Problem setting attribute","Problem setting attribute"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
        {"Process CPU time","Process CPU time"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
        {"R/W","R/W"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
        {"Readable","Readable"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
        {"Received","Received"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
        {"Reconnect","Reconnect"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
        {"Remote Process:", "Remote Process:"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
        {"Remote Process:.mnemonic", 'R'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
        {"Remote Process.textField.accessibleName", "Remote Process"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
        {"Remove","Remove"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
        {"Restore All", "Restore All"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
        {"Restore All.mnemonic", 'R'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
        {"Return value", "Return value"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
        {"ReturnType", "ReturnType"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
        {"SeqNum","SeqNum"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
        {"Size Bytes", "{0,number,integer} bytes"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
        {"Size Gb","{0} Gb"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
        {"Size Kb","{0} Kb"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
        {"Size Mb","{0} Mb"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
        {"Source","Source"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
        {"Stack trace",
6196
e11b0538a16c 6959252: convert the anonymous arrays to named arrays in Java List Resource files
yhuang
parents: 5506
diff changeset
   352
              "\nStack trace: \n"},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
        {"Success:","Success:"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
        // Note: SummaryTab.headerDateTimeFormat can be one the following:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
        // 1. A combination of two styles for date and time, using the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
        //    constants from class DateFormat: SHORT, MEDIUM, LONG, FULL.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
        //    Example: "MEDIUM,MEDIUM" or "FULL,SHORT"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
        // 2. An explicit string pattern used for creating an instance
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
        //    of the class SimpleDateFormat.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
        //    Example: "yyyy-MM-dd HH:mm:ss" or "M/d/yyyy h:mm:ss a"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
        {"SummaryTab.headerDateTimeFormat", "FULL,FULL"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
        {"SummaryTab.pendingFinalization.label", "Pending finalization"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
        {"SummaryTab.pendingFinalization.value", "{0} objects"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
        {"SummaryTab.tabName", "VM Summary"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
        {"SummaryTab.vmVersion","{0} version {1}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
        {"TabularData are not supported", "TabularData are not supported"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
        {"Threads","Threads"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
        {"ThreadTab.infoLabelFormat", "<html>Live: {0}    Peak: {1}    Total: {2}</html>"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
        {"ThreadTab.threadInfo.accessibleName", "Thread Information"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
        {"ThreadTab.threadPlotter.accessibleName", "Chart for number of threads."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
        {"Threshold","Threshold"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
        {"Tile", "Tile"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
        {"Tile.mnemonic", 'T'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
        {"Time Range:", "Time Range:"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
        {"Time Range:.mnemonic", 'T'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
        {"Time", "Time"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
        {"TimeStamp","TimeStamp"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
        {"Total Loaded", "Total Loaded"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
        {"Total classes loaded","Total classes loaded"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
        {"Total classes unloaded","Total classes unloaded"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
        {"Total compile time","Total compile time"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
        {"Total physical memory","Total physical memory"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
        {"Total threads started","Total threads started"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
        {"Total swap space","Total swap space"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
        {"Type","Type"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
        {"Unavailable","Unavailable"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
        {"UNKNOWN","UNKNOWN"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
        {"Unknown Host","Unknown Host: {0}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
        {"Unregister", "Unregister"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
        {"Uptime","Uptime"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
        {"Uptime: ","Uptime: "},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
        {"Usage Threshold","Usage Threshold"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
        {"remoteTF.usage","<b>Usage</b>: &lt;hostname&gt;:&lt;port&gt; OR service:jmx:&lt;protocol&gt;:&lt;sap&gt;"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
        {"Used","Used"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
        {"Username: ", "Username: "},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
        {"Username: .mnemonic", 'U'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
        {"Username.accessibleName", "User Name"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
        {"UserData","UserData"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
        {"Virtual Machine","Virtual Machine"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
        {"VM arguments","VM arguments"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
        {"VM","VM"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
        {"VMInternalFrame.accessibleDescription", "Internal frame for monitoring a Java Virtual Machine"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
        {"Value","Value"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
        {"Vendor", "Vendor"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
        {"Verbose Output","Verbose Output"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
        {"Verbose Output.toolTip", "Enable verbose output for class loading system"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
        {"View value", "View value"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
        {"View","View"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
        {"Window", "Window"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
        {"Window.mnemonic", 'W'},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
        {"Windows","Windows"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
        {"Writable","Writable"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
        {"You cannot drop a class here", "You cannot drop a class here"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
        {"collapse", "collapse"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
        {"connectionFailed1","Connection Failed: Retry?"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
        {"connectionFailed2","The connection to {0} did not succeed.<br>" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
                             "Would you like to try again?"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
        {"connectionLost1","Connection Lost: Reconnect?"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
        {"connectionLost2","The connection to {0} has been lost " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
                           "because the remote process has been terminated.<br>" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
                           "Would you like to reconnect?"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
        {"connectingTo1","Connecting to {0}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
        {"connectingTo2","You are currently being connected to {0}.<br>" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
                         "This will take a few moments."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
        {"deadlockAllTab","All"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
        {"deadlockTab","Deadlock"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
        {"deadlockTabN","Deadlock {0}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
        {"expand", "expand"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
        {"kbytes","{0} kbytes"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
        {"operation","operation"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
        {"plot", "plot"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
        {"visualize","visualize"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
        {"zz usage text",
6196
e11b0538a16c 6959252: convert the anonymous arrays to named arrays in Java List Resource files
yhuang
parents: 5506
diff changeset
   434
             "Usage: {0} [ -interval=n ] [ -notile ] [ -pluginpath <path> ] [ -version ] [ connection ... ]\n\n" +
e11b0538a16c 6959252: convert the anonymous arrays to named arrays in Java List Resource files
yhuang
parents: 5506
diff changeset
   435
             "  -interval   Set the update interval to n seconds (default is 4 seconds)\n" +
e11b0538a16c 6959252: convert the anonymous arrays to named arrays in Java List Resource files
yhuang
parents: 5506
diff changeset
   436
             "  -notile     Do not tile windows initially (for two or more connections)\n" +
7470
3b741e2b6a15 6566218: l10n of 6476932
mfang
parents: 6375
diff changeset
   437
             "  -pluginpath Specify the path that jconsole uses to look up the plugins\n" +
3b741e2b6a15 6566218: l10n of 6476932
mfang
parents: 6375
diff changeset
   438
             "  -version    Print program version\n\n" +
6196
e11b0538a16c 6959252: convert the anonymous arrays to named arrays in Java List Resource files
yhuang
parents: 5506
diff changeset
   439
             "  connection = pid || host:port || JMX URL (service:jmx:<protocol>://...)\n" +
e11b0538a16c 6959252: convert the anonymous arrays to named arrays in Java List Resource files
yhuang
parents: 5506
diff changeset
   440
             "  pid         The process id of a target process\n" +
e11b0538a16c 6959252: convert the anonymous arrays to named arrays in Java List Resource files
yhuang
parents: 5506
diff changeset
   441
             "  host        A remote host name or IP address\n" +
e11b0538a16c 6959252: convert the anonymous arrays to named arrays in Java List Resource files
yhuang
parents: 5506
diff changeset
   442
             "  port        The port number for the remote connection\n\n" +
e11b0538a16c 6959252: convert the anonymous arrays to named arrays in Java List Resource files
yhuang
parents: 5506
diff changeset
   443
             "  -J          Specify the input arguments to the Java virtual machine\n" +
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
             "              on which jconsole is running"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
        // END OF MATERIAL TO LOCALIZE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
        };
6196
e11b0538a16c 6959252: convert the anonymous arrays to named arrays in Java List Resource files
yhuang
parents: 5506
diff changeset
   447
e11b0538a16c 6959252: convert the anonymous arrays to named arrays in Java List Resource files
yhuang
parents: 5506
diff changeset
   448
        String ls = System.getProperty("line.separator");
e11b0538a16c 6959252: convert the anonymous arrays to named arrays in Java List Resource files
yhuang
parents: 5506
diff changeset
   449
        for(int i=0;i<temp.length;i++) {
6375
f8eac76fb676 6980510: Fix for 6959252 broke JConsole mnemonic keys
yhuang
parents: 6196
diff changeset
   450
            if (temp[i][1] instanceof String){
6196
e11b0538a16c 6959252: convert the anonymous arrays to named arrays in Java List Resource files
yhuang
parents: 5506
diff changeset
   451
            temp[i][1] = temp[i][1].toString().replaceAll("\n",ls);
6375
f8eac76fb676 6980510: Fix for 6959252 broke JConsole mnemonic keys
yhuang
parents: 6196
diff changeset
   452
            }
6196
e11b0538a16c 6959252: convert the anonymous arrays to named arrays in Java List Resource files
yhuang
parents: 5506
diff changeset
   453
        }
e11b0538a16c 6959252: convert the anonymous arrays to named arrays in Java List Resource files
yhuang
parents: 5506
diff changeset
   454
e11b0538a16c 6959252: convert the anonymous arrays to named arrays in Java List Resource files
yhuang
parents: 5506
diff changeset
   455
        return temp;
e11b0538a16c 6959252: convert the anonymous arrays to named arrays in Java List Resource files
yhuang
parents: 5506
diff changeset
   456
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
    public synchronized Object[][] getContents() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
        return getContents0();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
}