01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tc;
05:
06: import java.util.ListResourceBundle;
07:
08: public class SessionIntegratorResources extends ListResourceBundle {
09: public Object[][] getContents() {
10: return contents;
11: }
12:
13: static final Object[][] contents = {
14: { "title", "Terracotta Sessions Configurator" },
15: { "quit.action.label", "Quit" },
16: { "file.menu.label", "File" },
17: { "output.menu.label", "Output" },
18: { "help.menu.label", "Help" },
19: { "help.item.label",
20: "Terracotta Sessions Configurator Help..." },
21: { "about.action.label",
22: "About Terracotta Sessions Configurator" },
23: { "visit.forums.title", "Visit Terracotta Forums" },
24: { "forums.url", "http://www.terracottatech.com/forums/" },
25: { "contact.support.title",
26: "Contact Terracotta Technical Support" },
27: { "support.url",
28: "http://www.terracottatech.com/support_services.shtml" },
29: { "contact.field.eng.title",
30: "Contact Terracotta Field Engineering" },
31: { "field.eng.url",
32: "http://www.terracottatech.com/contact/field/" },
33: { "contact.sales.title", "Contact Terracotta Sales" },
34: { "sales.url", "http://www.terracottatech.com/contact/" },
35: { "clear.all.action.name", "Clear all" },
36: { "help.action.name", "Help..." },
37: { "show.splash.action.name", "Show Splash Screen..." },
38: { "show.help.error", "Couldn't show help" },
39: { "servers.action.name", "Servers..." },
40: { "import.webapp.action.name", "Import webapp..." },
41: { "export.configuration.action.name",
42: "Export configuration..." },
43: { "quit.action.name", "Exit Configurator" },
44: { "quitting.dialog.msg", "Stopping servers. Please wait..." },
45: { "not.war.msg",
46: "Must be an archived or exploded .war file." },
47: { "install.webapp.success.msg",
48: "Successfully imported ''${0}''" },
49: { "install.webapp.restart.msg",
50: "The webapp will not be available until the system is restarted." },
51: { "install.webapp.failure.msg", "Unable to import ''${0}''" },
52: { "destination.not.directory.msg",
53: "Destination is not a directory" },
54: {
55: "src.webapp.not.found.msg",
56: "Unable to locate source for web application ''${0}'':\n\n${1}\n\nRemove this web application?" },
57: { "refresh.success.msg", "Successfully refreshed ''${0}''" },
58: { "refresh.failure.msg", "Unable to refresh ''${0}''" },
59: { "cannot.remove.while.running.msg",
60: "You cannot remove webapps while the system is running." },
61: { "remove.success.msg", "Successfully removed ''${0}''" },
62: { "remove.failure.msg", "Unable to remove ''${0}''" },
63: { "query.save.config.msg",
64: "The configuration is modified. Save?" },
65: { "configuration.load.failure.msg",
66: "Can't load configuration" },
67:
68: { "start.all.label", "Start all" },
69: { "restart.all.label", "Restart all" },
70: { "start.label", "Start" }, { "stop.label", "Stop" }, };
71: }
|