deboer | a555edb | 2005-04-29 13:01:24 +0000 | [diff] [blame] | 1 | ############################################################################### |
| 2 | # Copyright (c) 2004, 2005 IBM Corporation and others. |
| 3 | # All rights reserved. This program and the accompanying materials |
| 4 | # are made available under the terms of the Eclipse Public License v1.0 |
| 5 | # which accompanies this distribution, and is available at |
| 6 | # http://www.eclipse.org/legal/epl-v10.html |
| 7 | # |
| 8 | # Contributors: |
| 9 | # IBM Corporation - initial API and implementation |
| 10 | ############################################################################### |
| 11 | |
| 12 | # runtime target |
| 13 | target32runtime=Tomcat v3.2 runtime |
| 14 | target40runtime=Tomcat v4.0 runtime |
| 15 | target41runtime=Tomcat v4.1 runtime |
| 16 | target50runtime=Tomcat v5.0 runtime |
| 17 | target55runtime=Tomcat v5.5 runtime |
| 18 | |
| 19 | # --------------- Tasks (progress monitors) --------------- |
| 20 | savingTask=Saving... |
| 21 | loadingTask=Loading... |
| 22 | updatingConfigurationTask=Updating run-time configuration... |
| 23 | publishServerTask=Publishing to server... |
| 24 | publishConfigurationTask=Publishing the configuration... |
| 25 | publisherPublishTask=Publishing {0}... |
| 26 | fixModuleContextRoot=Update context root for Web module {0} |
| 27 | fixModuleContextRootDescription=Update the context root of the Web module to match the current settings |
| 28 | |
| 29 | publishContextConfigTask=Publishing META-INF/context.xml configurations... |
| 30 | checkingContextTask=Checking Context {0} for context.xml... |
| 31 | savingContextConfigTask=Saving context configuration updates... |
| 32 | serverPostProcessingComplete=Context configurations added. |
| 33 | |
| 34 | cleanupServerTask=Removing obsolete files from server... |
| 35 | detectingRemovedProjects=Preparing list of removed projects... |
| 36 | deletingContextFilesTask=Deleting obsolete context files from server... |
| 37 | deletingContextFile=Deleting obsolete context file {0}... |
| 38 | deletedContextFile=Context file {0} removed |
| 39 | runtimeDirPrepared=Runtime directory prepared |
deboer | 79b9698 | 2005-05-31 17:42:39 +0000 | [diff] [blame] | 40 | copyingTask=Copying from {0} to {1} |
| 41 | deletingTask=Deleting {0} |
| 42 | errorCopyingFile=Error copying file to {0}: {1} |
deboer | a555edb | 2005-04-29 13:01:24 +0000 | [diff] [blame] | 43 | |
| 44 | # Editor commands (used in undo/redo menus) |
| 45 | configurationEditorActionAddMimeMapping=add MIME mapping |
| 46 | configurationEditorActionAddMimeMappingDescription=Add a MIME mapping |
| 47 | configurationEditorActionModifyMimeMapping=modify MIME mapping |
| 48 | configurationEditorActionModifyMimeMappingDescription=Modify the MIME mapping |
| 49 | configurationEditorActionRemoveMimeMapping=remove MIME mapping |
| 50 | configurationEditorActionRemoveMimeMappingDescription=Remove a MIME mapping |
| 51 | configurationEditorActionAddWebModule=add Web module |
| 52 | configurationEditorActionAddWebModuleDescription=Add a Web module |
| 53 | configurationEditorActionModifyWebModule=modify Web module |
| 54 | configurationEditorActionModifyWebModuleDescription=Modify the Web module |
| 55 | configurationEditorActionRemoveWebModule=remove Web module |
| 56 | configurationEditorActionRemoveWebModuleDescription=Remove Web module {0} |
| 57 | configurationEditorActionModifyPort=set port number |
| 58 | configurationEditorActionModifyPortDescription=Set the port number |
| 59 | configurationEditorActionEditWebModulePath=edit Web module path |
| 60 | configurationEditorActionEditWebModuleDescription=Change Web module path from {0} to {1} |
| 61 | |
| 62 | # --------------- General --------------- |
| 63 | canAddModule=Web module can be added to the server. |
deboer | a555edb | 2005-04-29 13:01:24 +0000 | [diff] [blame] | 64 | portServer=Tomcat admin port |
| 65 | portUnknown=unknown port |
| 66 | |
| 67 | # --------------- Errors and Info --------------- |
| 68 | errorInstallDir=The Tomcat installation directory is not correct. It does not point to a valid Tomcat installation. |
| 69 | errorInstallDirTrailingSlash=The Tomcat installation directory should not have a trailing slash. |
| 70 | errorJRE=The JRE could not be found. Edit the server and change the JRE location. |
| 71 | errorPortInvalid=The server cannot be started because one or more of the ports are invalid. Open the server editor and correct the invalid ports. |
| 72 | errorPortInUse=Port {0} required by {1} is already in use. The server may already be running in another process, or a system process may be using the port. \ |
| 73 | To start this server you will need to stop the other process or change the port number(s). |
| 74 | errorPortsInUse=Several ports ({0}) required by {1} are already in use. The server may already be running in another process, or a system process may be using the port. \ |
| 75 | To start this server you will need to stop the other process or change the port number(s). |
deboer | b445133 | 2005-05-10 14:43:19 +0000 | [diff] [blame] | 76 | # the {0} in the following two lines will be replaced with a location (path) of the missing or corrupt server configuration |
deboer | a555edb | 2005-04-29 13:01:24 +0000 | [diff] [blame] | 77 | errorNoConfiguration=The Tomcat server configuration at {0} is missing. Check the server for errors. |
| 78 | errorCouldNotLoadConfiguration=Could not load the Tomcat server configuration at {0}. The configuration may be corrupt or incomplete. |
| 79 | errorCouldNotSaveConfiguration=Could not save the Tomcat server configuration: {0}. |
| 80 | errorPublishConfiguration=Could not publish server configuration: {0}. |
| 81 | errorCouldNotDeleteContextFile=Could not delete obsolete context file: {0} |
| 82 | errorCleanupServer=Could not clean server of obsolete files: {0} |
| 83 | errorWebModulesOnly=Tomcat only supports running J2EE Web modules. |
deboer | 81b35dd | 2006-02-13 14:45:58 +0000 | [diff] [blame^] | 84 | errorNoRuntime=Cannot add modules because there is no runtime associated with the server. |
deboer | a555edb | 2005-04-29 13:01:24 +0000 | [diff] [blame] | 85 | errorSpec32=Tomcat version 3.2 only supports J2EE 1.2 Web modules |
| 86 | errorSpec40=Tomcat version 4.0 only supports J2EE 1.2 and 1.3 Web modules |
| 87 | errorSpec41=Tomcat version 4.1 only supports J2EE 1.2 and 1.3 Web modules |
| 88 | errorSpec50=Tomcat version 5.0 only supports J2EE 1.2, 1.3, and 1.4 Web modules |
| 89 | errorSpec55=Tomcat version 5.5 only supports J2EE 1.2, 1.3, and 1.4 Web modules |
deboer | dbb9cd0 | 2005-06-23 16:52:03 +0000 | [diff] [blame] | 90 | errorDuplicateContextRoot=Two or more Web modules defined in the configuration have the same context root ({0}). \ |
| 91 | To start this server you will need to remove the duplicate(s). |
lisaacs | c3e910f | 2005-11-02 02:38:46 +0000 | [diff] [blame] | 92 | errorCouldNotLoadContextXml=Could not load the context configuration for the {0} context due to a syntax error or other exception. |
deboer | a555edb | 2005-04-29 13:01:24 +0000 | [diff] [blame] | 93 | |
| 94 | warningJRE=Tomcat requires a Java SDK in order to compile JSP files. Ensure that the JRE preference settings point to an SDK install location. |
| 95 | |
| 96 | # Actions (used in undo/redo menus) |
| 97 | serverEditorActionSetSecure=set security |
| 98 | serverEditorActionSetSecureDescription=Set the Tomcat security |
| 99 | serverEditorActionSetDebugMode=set Tomcat debug mode |
| 100 | serverEditorActionSetDebugModeDescription=Set Tomcat in debug mode |
| 101 | serverEditorActionSetTestEnvironment=run modules from workspace |
| 102 | serverEditorActionSetTestEnvironmentDescription=Run modules from the workspace |