Author: dblevins Date: Sat Sep 15 12:12:34 2007 New Revision: 575961 URL: http://svn.apache.org/viewvc?rev=575961&view=rev Log: "Fixed OPENEJB-683 , Application deployed successfully at {0}, Changed single quotes to escaped double quotes in Messages.properties file"
svn merge -c 575930 https://svn.apache.org/repos/asf/openejb/trunk/openejb3 Modified: openejb/branches/3.0-beta-1/container/openejb-core/src/main/resources/org/apache/openejb/config/Messages.properties Modified: openejb/branches/3.0-beta-1/container/openejb-core/src/main/resources/org/apache/openejb/config/Messages.properties URL: http://svn.apache.org/viewvc/openejb/branches/3.0-beta-1/container/openejb-core/src/main/resources/org/apache/openejb/config/Messages.properties?rev=575961&r1=575960&r2=575961&view=diff ============================================================================== --- openejb/branches/3.0-beta-1/container/openejb-core/src/main/resources/org/apache/openejb/config/Messages.properties (original) +++ openejb/branches/3.0-beta-1/container/openejb-core/src/main/resources/org/apache/openejb/config/Messages.properties Sat Sep 15 12:12:34 2007 @@ -6,13 +6,13 @@ cmd.undeploy.opt.help = Lists these options and exits. #System.out.println(messages.format("cmd.undeploy.successful", moduleId)); -cmd.undeploy.successful = Successfully undeployed module with moduleId {0} . +cmd.undeploy.successful = Successfully undeployed module with moduleId \"{0}\" . # System.out.println(messages.format("cmd.undeploy.failed", moduleId)); -cmd.undeploy.failed = Failed to undeploy module with moduleId {0} . +cmd.undeploy.failed = Failed to undeploy module with moduleId \"{0}\" . #System.out.println(messages.format("cmd.undeploy.noSuchModule", moduleId)); -cmd.undeploy.noSuchModule = Module with moduleId {0} does not exist. +cmd.undeploy.noSuchModule = Module with moduleId \"{0}\" does not exist. #Deploy cmd.deploy.description = Connects to the server and deploys the application. Note that full remote deployment is not yet supported, deployment can only be done on the same machine as the server. Track OPENEJB-609 for development of full remote deployment feature.\n\nOptions: @@ -42,39 +42,39 @@ cmd.deploy.serverOffline = The server is offline or not contactable at the configured address. Either start the server or try deployment again in --offline mode. # System.out.println(messages.format("cmd.deploy.offline", path, destFile.getAbsolutePath())); -cmd.deploy.offline = The application '{0}' has been copied to the directory '{1}' and will be loaded when the server starts. +cmd.deploy.offline = The application \"{0}\" has been copied to the directory \"{1}\" and will be loaded when the server starts. # System.out.println(messages.format("cmd.deploy.successful", path, appInfo.jarPath)); -cmd.deploy.successful = Application deployed successfully at '{0}' +cmd.deploy.successful = Application deployed successfully at \"{0}\" # System.out.println(messages.format("cmd.deploy.validationFailed", path)); cmd.deploy.validationFailed = Application did not pass validation: {0} # System.out.println(messages.format("cmd.deploy.failed", path)); -cmd.deploy.failed = Application failed to deploy '{0}'. Check server logs for more details. +cmd.deploy.failed = Application failed to deploy \"{0}\". Check server logs for more details. # throw new DeploymentTerminatedException(messages.format("cmd.deploy.fileNotFound", file.getAbsolutePath())); cmd.deploy.fileNotFound = Archive does not exist: {0} # throw new DeploymentTerminatedException(messages.format("cmd.deploy.destExists", file.getAbsolutePath(), destFile.getAbsolutePath())); -cmd.deploy.destExists = Application already deployed at '{1}' +cmd.deploy.destExists = Application already deployed at \"{1}\" # throw new DeploymentTerminatedException(messages.format("cmd.deploy.cantCopy", file.getAbsolutePath(), destFile.getAbsolutePath())); -cmd.deploy.cantCopy = Unable to copy application to '{1}'. Check that the directory is writable and that there is enough disk space. +cmd.deploy.cantCopy = Unable to copy application to \"{1}\". Check that the directory is writable and that there is enough disk space. # EnvEntriesPropertiesDeployer # debug("envprops.override", componentName, entry.getName(), entry.getEnvEntryValue(), newEntry.getEnvEntryValue()); -envprops.override = Overriding env-entry(name '{1}', old-value='{2}', new-value='{3}'), Bean='{0}' +envprops.override = Overriding env-entry(name \"{1}\", old-value=\"{2}\", new-value=\"{3}\"), Bean=\"{0}\" # debug("envprops.add", componentName, newEntry.getName(), newEntry.getEnvEntryValue()); -envprops.add = Adding env-entry(name='{1}', value='{2}', type='java.lang.String'), Bean='{0}' +envprops.add = Adding env-entry(name=\"{1}\", value=\"{2}\", type='java.lang.String'), Bean=\"{0}\" # error("envprops.notLoaded", e, module.getModuleId(), propsUrl.toExternalForm()); -envprops.notLoaded = Could not load META-INF/env-entries.properties for module '{0}'. +envprops.notLoaded = Could not load META-INF/env-entries.properties for module \"{0}\". #fatal("config.noBeanFoundEjbLink", ejb.getEjbRefName(), referringComponent, ejb.getEjbLink()); -config.noBeanFoundEjbLink=Cannot find bean "{0}" referenced by bean "{1}" with ejb-link "{2}". +config.noBeanFoundEjbLink=Cannot find bean \"{0}\" referenced by bean "{1}" with ejb-link "{2}". #fatal("config.noBeanFound", ejb.getEjbRefName(), referringComponent); -config.noBeanFound=Cannot find bean "{0}" referenced by bean "{1}". +config.noBeanFound=Cannot find bean \"{0}\" referenced by bean "{1}".
