Index: trunk/src/org/openstreetmap/josm/gui/progress/CLIProgressMonitor.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/progress/CLIProgressMonitor.java	(revision 18427)
+++ trunk/src/org/openstreetmap/josm/gui/progress/CLIProgressMonitor.java	(revision 18428)
@@ -39,5 +39,5 @@
     protected void doBeginTask() {
         if (!Utils.isBlank(this.title)) {
-            Logging.info(tr("Beginning task{2}: {0}{1}", this.title, this.customText,
+            Logging.info(tr("Beginning task {2}: {0}{1}", this.title, this.customText,
                     Optional.ofNullable(this.taskId).map(ProgressTaskId::getId).map(id -> ' ' + id).orElse("")));
         }
@@ -48,5 +48,5 @@
     @Override
     protected void doFinishTask() {
-        Logging.info(tr("Finishing task{2}: {0}{1} ({3})", this.title, this.customText,
+        Logging.info(tr("Finishing task {2}: {0}{1} ({3})", this.title, this.customText,
                 Optional.ofNullable(this.taskId).map(ProgressTaskId::getId).map(id -> ' ' + id).orElse(""), this.startTime));
         this.lastUpdateTime = null;
@@ -72,5 +72,5 @@
         if (this.lastUpdateTime == null || this.lastUpdateTime.elapsed() > TimeUnit.SECONDS.toMillis(10)) {
             this.lastUpdateTime = Stopwatch.createStarted();
-            Logging.info(tr("Progress of task{2}: {0}{1} is {3}% ({4})", this.title, this.customText,
+            Logging.info(tr("Progress of task {2}: {0}{1} is {3}% ({4})", this.title, this.customText,
                     Optional.ofNullable(this.taskId).map(ProgressTaskId::getId).map(id -> ' ' + id).orElse(""), value * 100, this.startTime));
         }
