Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon van der Zanden2015-03-24 14:09:19 +0000
committerSimon van der Zanden2015-03-24 14:09:57 +0000
commite2690191d83e37fe46cb3ef74c44227ace1b2189 (patch)
treedc96cc1f721fcc4e14a30bae480dd20b374613ee
parent33f34b8435a7eb04508db0b04852ebc22ca35f9f (diff)
downloadorg.eclipse.jubula.core-e2690191d83e37fe46cb3ef74c44227ace1b2189.tar.gz
org.eclipse.jubula.core-e2690191d83e37fe46cb3ef74c44227ace1b2189.tar.xz
org.eclipse.jubula.core-e2690191d83e37fe46cb3ef74c44227ace1b2189.zip
Bug 457552 - Extend information on dbtool -createVersion
Signed-off-by: Simon van der Zanden <simon.vanderzanden@bredex.de>
-rw-r--r--org.eclipse.jubula.client.archive/src/org/eclipse/jubula/client/archive/businessprocess/ProjectBP.java4
-rw-r--r--org.eclipse.jubula.client.archive/src/org/eclipse/jubula/client/archive/i18n/messages.properties2
2 files changed, 4 insertions, 2 deletions
diff --git a/org.eclipse.jubula.client.archive/src/org/eclipse/jubula/client/archive/businessprocess/ProjectBP.java b/org.eclipse.jubula.client.archive/src/org/eclipse/jubula/client/archive/businessprocess/ProjectBP.java
index 251d3f42a..ac66fcf9e 100644
--- a/org.eclipse.jubula.client.archive/src/org/eclipse/jubula/client/archive/businessprocess/ProjectBP.java
+++ b/org.eclipse.jubula.client.archive/src/org/eclipse/jubula/client/archive/businessprocess/ProjectBP.java
@@ -102,10 +102,12 @@ public class ProjectBP {
public void run(IProgressMonitor monitor) throws InterruptedException,
InvocationTargetException {
String pName = m_project.getName();
+ String pVersion = m_project.getVersionString();
final SubMonitor subMonitor = SubMonitor.convert(
monitor, NLS.bind(Messages.
CreateNewProjectVersionOperationCreatingNewVersion,
- new Object[] { m_projectVersion, pName }),
+ new Object[] {
+ m_projectVersion, pName, pVersion }),
TOTAL_WORK);
final ParamNameBPDecorator paramNameMapper =
new ParamNameBPDecorator(ParamNameBP.getInstance());
diff --git a/org.eclipse.jubula.client.archive/src/org/eclipse/jubula/client/archive/i18n/messages.properties b/org.eclipse.jubula.client.archive/src/org/eclipse/jubula/client/archive/i18n/messages.properties
index b7b26d0f5..24390a979 100644
--- a/org.eclipse.jubula.client.archive/src/org/eclipse/jubula/client/archive/i18n/messages.properties
+++ b/org.eclipse.jubula.client.archive/src/org/eclipse/jubula/client/archive/i18n/messages.properties
@@ -11,7 +11,7 @@ ClassSerializedCouldntFound=Class of a serialized object couldn't be found
Component=Component
CouldNotExportProject=Could not export Project.
CouldNotInitializeProxy=Could not initialize proxy of Project
-CreateNewProjectVersionOperationCreatingNewVersion=Creating new version "{0}" of project "{1}"...
+CreateNewProjectVersionOperationCreatingNewVersion=Creating new version "{0}" of project "{1}" in version "{2}"...
DataBaseErrorUpdatingToolkits=DataBase-Error while updating used toolkits of Project\: '
ErrorMessageIMPORT_PROJECT_XML_FAILED=\tThe import of project "{0}" failed.
ErrorMessageIMPORT_PROJECT_XML_FAILED_EXISTING=\tThere is already a project "{0}" in version {1} in the Database.

Back to the top