1 4 package com.tc; 5 6 import java.util.ListResourceBundle ; 7 8 public class SessionIntegratorBundle extends ListResourceBundle { 9 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", "Terracotta Sessions Configurator Help..."}, 20 {"about.action.label", "About Terracotta Sessions Configurator"}, 21 {"visit.forums.title", "Visit Terracotta Forums"}, 22 {"forums.url", "http://www.terracottatech.com/forums/"}, 23 {"contact.support.title", "Contact Terracotta Technical Support"}, 24 {"support.url", "http://www.terracottatech.com/support_services.shtml"}, 25 {"contact.field.eng.title", "Contact Terracotta Field Engineering"}, 26 {"field.eng.url", "http://www.terracottatech.com/contact/field/"}, 27 {"contact.sales.title", "Contact Terracotta Sales"}, 28 {"sales.url", "http://www.terracottatech.com/contact/"}, 29 {"clear.all.action.name", "Clear all"}, 30 {"help.action.name", "Help..."}, 31 {"show.splash.action.name", "Show Splash Screen..."}, 32 {"show.help.error", "Couldn't show help"}, 33 {"servers.action.name", "Servers..."}, 34 {"import.webapp.action.name", "Import webapp..."}, 35 {"export.configuration.action.name", "Export configuration..."}, 36 {"quit.action.name", "Exit Configurator"}, 37 {"quitting.dialog.msg", "Stopping servers. Please wait..."}, 38 {"not.war.msg", "Must be an archived or exploded .war file."}, 39 {"install.webapp.success.msg", "Successfully imported ''{0}''"}, 40 {"install.webapp.restart.msg", "The webapp will not be available until the system is restarted."}, 41 {"install.webapp.failure.msg", "Unable to import ''{0}''"}, 42 {"destination.not.directory.msg", "Destination is not a directory"}, 43 {"src.webapp.not.found.msg", "Unable to locate source for web application ''{0}'':\n\n{1}\n\nRemove this web application?"}, 44 {"refresh.success.msg", "Successfully refreshed ''{0}''"}, 45 {"refresh.failure.msg", "Unable to refresh ''{0}''"}, 46 {"cannot.remove.while.running.msg", "You cannot remove webapps while the system is running."}, 47 {"remove.success.msg", "Successfully removed ''{0}''"}, 48 {"remove.failure.msg", "Unable to remove ''{0}''"}, 49 {"query.save.config.msg", "The configuration is modified. Save?"}, 50 {"configuration.load.failure.msg", "Can't load configuration"}, 51 52 {"start.all.label", "Start all"}, 53 {"restart.all.label", "Restart all"}, 54 {"start.label", "Start"}, 55 {"stop.label", "Stop"}, 56 }; 57 } 58
| Popular Tags
|