001: /*
002: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
003: */
004: package com.tc.admin;
005:
006: import java.util.ListResourceBundle;
007:
008: public class AdminClientBundle extends ListResourceBundle {
009: public Object[][] getContents() {
010: return contents;
011: }
012:
013: static final Object[][] contents = {
014: { "sessions", "Sessions" },
015:
016: { "title", "Terracotta Administrator Console" },
017:
018: { "new.server.action.label", "New server" },
019:
020: { "quit.action.label", "Quit" },
021:
022: { "connect.title", "Connect to JMX Server" },
023:
024: { "connecting.to", "Connecting to {0} ..." },
025:
026: { "connected.to", "Connected to {0}" },
027:
028: { "cannot.connect.to", "Unable to connect to {0}" },
029:
030: { "cannot.connect.to.extended",
031: "Unable to connect to {0}: {1}" },
032:
033: { "service.unavailable", "Service Unavailable: {0}" },
034:
035: { "unknown.host", "Unknown host: {0}" },
036:
037: { "disconnecting.from", "Disconnecting from {0} ..." },
038:
039: { "disconnected.from", "Disconnected from {0}" },
040:
041: { "deleted.server", "Deleted {0}" },
042:
043: { "server.properties.headings",
044: new String[] { "Name", "Value" } },
045:
046: { "dso", "DSO" },
047:
048: { "dso.roots", "Roots" },
049:
050: { "dso.locks", "Locks" },
051:
052: { "refresh.name", "Refresh" },
053:
054: { "dso.roots.refreshing", "Refreshing roots..." },
055:
056: { "dso.deadlocks.detect", "Detect deadlocks" },
057:
058: { "dso.deadlocks.detecting", "Detecting deadlocks..." },
059:
060: { "dso.classes", "Classes" },
061:
062: { "dso.allClasses", "All classes" },
063:
064: { "dso.classes.refreshing", "Refreshing classes..." },
065:
066: { "dso.classes.className", "Class" },
067:
068: { "dso.classes.instanceCount",
069: "Creation count since active server start" },
070:
071: { "dso.locks.refreshing", "Refreshing locks..." },
072:
073: { "dso.object.flush.rate", "Object Flush Rate" },
074:
075: { "dso.object.fault.rate", "Object Fault Rate" },
076:
077: { "dso.transaction.rate", "Transaction Rate" },
078:
079: { "dso.root.retrieving", "Retrieving new DSO root..." },
080:
081: { "dso.root.new", "Added new DSO root: " },
082:
083: { "clients", "Clients" },
084:
085: { "dso.client.retrieving", "Retrieving new DSO client..." },
086:
087: { "dso.client.new", "Added new DSO client: " },
088:
089: { "dso.client.detaching", "Detaching DSO client..." },
090:
091: { "dso.client.detached", "Detached DSO client: " },
092:
093: { "dso.client.host", "Host" },
094:
095: { "dso.client.port", "Port" },
096:
097: { "dso.client.channelID", "ChannelID" },
098:
099: { "dso.gcstats", "Garbage collection" },
100:
101: { "map.entry", "MapEntry" },
102:
103: { "log.error", "ERROR" },
104:
105: { "log.warn", "WARN" },
106:
107: { "log.info", "INFO" },
108:
109: { "dso.cache.rate.domain.label", "Time" },
110:
111: { "dso.cache.rate.range.label", "Objects per second" },
112:
113: { "dso.transaction.rate.range.label",
114: "Transactions per second" },
115:
116: { "dso.cache.activity", "Cache activity" },
117:
118: { "dso.cache.miss.rate", "Cache Miss Rate" },
119:
120: { "dso.cache.miss.rate.label", "Cache Misses per second" },
121:
122: { "dso.gcstats.iteration", "Iteration" },
123:
124: { "dso.gcstats.startTime", "Start time" },
125:
126: { "dso.gcstats.elapsedTime", "Elapsed time (ms.)" },
127:
128: { "dso.gcstats.beginObjectCount", "Begin object count" },
129:
130: { "dso.gcstats.candidateGarbageCount",
131: "Candidate garbage count" },
132:
133: { "dso.gcstats.actualGarbageCount", "Actual garbage count" },
134:
135: { "dso.all.statistics", "All statistics" },
136:
137: { "file.menu.label", "File" },
138:
139: { "help.menu.label", "Help" },
140:
141: { "help.item.label", "Terracotta Console Help..." },
142:
143: { "about.action.label", "About Terracotta Console" },
144:
145: { "update-checker.action.label", "Update Checker..." },
146:
147: { "update-checker.connect.failed.msg",
148: "Unable to connect to update site." },
149:
150: { "update-checker.current.msg",
151: "Your software is up-to-date." },
152:
153: { "update-checker.updates.available.msg",
154: "New Terracotta versions are now available." },
155:
156: { "update-checker.release-notes.label", "Release notes" },
157:
158: { "update-checker.action.title",
159: "Terracotta Update Checker" },
160:
161: { "update-checker.last.checked.msg", "Last checked: {0}" },
162:
163: { "version.check.enable.label", "Check Server Version" },
164:
165: { "version.check.disable.label", "Disable version checks" },
166:
167: {
168: "version.check.message",
169: "<html><h3>Version mismatch for {0}.</h3><br>"
170: + "<table border=0 cellspacing=1><tr><td align=right><b>Terracotta Server Version:</b></td><td>{1}"
171: + "</tr><tr><td align=right><b>AdminConsole Version:</b</td><td>{2}"
172: + "</td></tr></table><h3>Continue?</h3></html>" } };
173: }
|