Index: applications/editors/josm/plugins/utilsplugin/src/UtilsPlugin/SimplifyWayAction.java
===================================================================
--- applications/editors/josm/plugins/utilsplugin/src/UtilsPlugin/SimplifyWayAction.java	(revision 10829)
+++ applications/editors/josm/plugins/utilsplugin/src/UtilsPlugin/SimplifyWayAction.java	(revision 11348)
@@ -2,4 +2,5 @@
 
 import static org.openstreetmap.josm.tools.I18n.tr;
+import static org.openstreetmap.josm.tools.I18n.trn;
 
 import java.awt.event.ActionEvent;
@@ -81,6 +82,9 @@
             return;
         } else if (ways > 10) {
-            int option = JOptionPane.showConfirmDialog(Main.parent, tr(
-                    "The selection contains {0} ways. Are you sure you want to simplify them all?", ways),
+        	//TRANSLATION: Although for English the use of trn is needless it is important for other languages
+            int option = JOptionPane.showConfirmDialog(Main.parent, trn(
+                    "The selection contains {0} way. Are you sure you want to simplify them all?",
+                    "The selection contains {0} ways. Are you sure you want to simplify them all?",
+                    ways,ways),
                     tr("Are you sure?"), JOptionPane.YES_NO_OPTION);
             if (option != JOptionPane.YES_OPTION)
@@ -129,5 +133,5 @@
             cmds.add(new ChangeCommand(w, wnew));
             cmds.add(new DeleteCommand(delNodes));
-            Main.main.undoRedo.add(new SequenceCommand(tr("Simplify Way (remove {0} nodes)", delNodes.size()), cmds));
+            Main.main.undoRedo.add(new SequenceCommand(trn("Simplify Way (remove {0} node)", "Simplify Way (remove {0} nodes)", delNodes.size(), delNodes.size()), cmds));
             Main.map.repaint();
         }
