Index: applications/editors/josm/plugins/utilsplugin2/src/utilsplugin2/dumbutils/AlignWayNodesAction.java
===================================================================
--- applications/editors/josm/plugins/utilsplugin2/src/utilsplugin2/dumbutils/AlignWayNodesAction.java	(revision 25876)
+++ applications/editors/josm/plugins/utilsplugin2/src/utilsplugin2/dumbutils/AlignWayNodesAction.java	(revision 25887)
@@ -18,10 +18,10 @@
  */
 public class AlignWayNodesAction extends JosmAction {
-    private static final String TITLE = "Align Way Nodes";
+    private static final String TITLE = tr("Align Way Nodes");
     private static final double MOVE_THRESHOLD = 1e-9;
 
     public AlignWayNodesAction() {
-        super(tr(TITLE), "dumbutils/alignwaynodes", tr("Align nodes in a way"),
-                Shortcut.registerShortcut("tools:alignwaynodes", tr("Tool: {0}", tr(TITLE)), KeyEvent.VK_L, Shortcut.GROUP_EDIT, Shortcut.SHIFT_DEFAULT), true);
+        super(TITLE, "dumbutils/alignwaynodes", tr("Align nodes in a way"),
+                Shortcut.registerShortcut("tools:alignwaynodes", tr("Tool: {0}", TITLE), KeyEvent.VK_L, Shortcut.GROUP_EDIT, Shortcut.SHIFT_DEFAULT), true);
     }
 
@@ -35,5 +35,5 @@
         Way way = ways.iterator().next();
         if( way.getNodesCount() < (way.isClosed() ? 4 : 3) ) {
-            JOptionPane.showMessageDialog(Main.parent, tr("The way with selected nodes can not be straightened."), tr(TITLE), JOptionPane.ERROR_MESSAGE);
+            JOptionPane.showMessageDialog(Main.parent, tr("The way with selected nodes can not be straightened."), TITLE, JOptionPane.ERROR_MESSAGE);
             return;
         }
@@ -65,6 +65,6 @@
 
         if( nodes.size() < 3 ) {
-            JOptionPane.showMessageDialog(Main.parent, "Internal error: number of nodes is " + nodes.size(),
-                    tr(TITLE), JOptionPane.ERROR_MESSAGE);
+            JOptionPane.showMessageDialog(Main.parent, tr("Internal error: number of nodes is {0}.", nodes.size()),
+                    TITLE, JOptionPane.ERROR_MESSAGE);
             return;
         }
@@ -108,5 +108,5 @@
 
         if( !commands.isEmpty() )
-            Main.main.undoRedo.add(new SequenceCommand(tr(TITLE), commands));
+            Main.main.undoRedo.add(new SequenceCommand(TITLE, commands));
     }
 
Index: applications/editors/josm/plugins/utilsplugin2/src/utilsplugin2/dumbutils/PasteRelationsAction.java
===================================================================
--- applications/editors/josm/plugins/utilsplugin2/src/utilsplugin2/dumbutils/PasteRelationsAction.java	(revision 25876)
+++ applications/editors/josm/plugins/utilsplugin2/src/utilsplugin2/dumbutils/PasteRelationsAction.java	(revision 25887)
@@ -17,9 +17,9 @@
  */
 public class PasteRelationsAction extends JosmAction {
-    private static final String TITLE = "Paste Relations";
+    private static final String TITLE = tr("Paste Relations");
 
     public PasteRelationsAction() {
-        super(tr(TITLE), "dumbutils/pasterelations", tr("Paste relation membership from objects in the buffer onto selected object(s)"),
-                Shortcut.registerShortcut("tools:pasterelations", tr("Tool: {0}", tr(TITLE)), KeyEvent.VK_V,
+        super(TITLE, "dumbutils/pasterelations", tr("Paste relation membership from objects in the buffer onto selected object(s)"),
+                Shortcut.registerShortcut("tools:pasterelations", tr("Tool: {0}", TITLE), KeyEvent.VK_V,
                 Shortcut.GROUP_MENU, KeyEvent.ALT_DOWN_MASK | KeyEvent.CTRL_DOWN_MASK), true);
     }
@@ -65,5 +65,5 @@
 
         if( !commands.isEmpty() )
-            Main.main.undoRedo.add(new SequenceCommand(tr(TITLE), commands));
+            Main.main.undoRedo.add(new SequenceCommand(TITLE, commands));
     }
 
Index: applications/editors/josm/plugins/utilsplugin2/src/utilsplugin2/dumbutils/ReplaceGeometryAction.java
===================================================================
--- applications/editors/josm/plugins/utilsplugin2/src/utilsplugin2/dumbutils/ReplaceGeometryAction.java	(revision 25876)
+++ applications/editors/josm/plugins/utilsplugin2/src/utilsplugin2/dumbutils/ReplaceGeometryAction.java	(revision 25887)
@@ -23,10 +23,10 @@
  */
 public class ReplaceGeometryAction extends JosmAction {
-    private static final String TITLE = "Replace Geometry";
+    private static final String TITLE = tr("Replace Geometry");
     private static final double MAX_NODE_REPLACEMENT_DISTANCE = 3e-4;
 
     public ReplaceGeometryAction() {
-        super(tr(TITLE), "dumbutils/replacegeometry", tr("Replace geometry of selected way with a new one"),
-                Shortcut.registerShortcut("tools:replacegeometry", tr("Tool: {0}", tr(TITLE)), KeyEvent.VK_G,
+        super(TITLE, "dumbutils/replacegeometry", tr("Replace geometry of selected way with a new one"),
+                Shortcut.registerShortcut("tools:replacegeometry", tr("Tool: {0}", TITLE), KeyEvent.VK_G,
                 Shortcut.GROUP_HOTKEY, Shortcut.SHIFT_DEFAULT), true);
     }
@@ -39,5 +39,5 @@
             JOptionPane.showMessageDialog(Main.parent,
                     tr("This tool replaces geometry of one way with another, and requires two ways to be selected."),
-                    tr(TITLE), JOptionPane.INFORMATION_MESSAGE);
+                    TITLE, JOptionPane.INFORMATION_MESSAGE);
             return;
         }
@@ -48,5 +48,5 @@
             JOptionPane.showMessageDialog(Main.parent,
                     tr("Please select one way that exists in the database and one new way with correct geometry."),
-                    tr(TITLE), JOptionPane.WARNING_MESSAGE);
+                    TITLE, JOptionPane.WARNING_MESSAGE);
             return;
         }
Index: applications/editors/josm/plugins/utilsplugin2/src/utilsplugin2/dumbutils/TagBufferAction.java
===================================================================
--- applications/editors/josm/plugins/utilsplugin2/src/utilsplugin2/dumbutils/TagBufferAction.java	(revision 25876)
+++ applications/editors/josm/plugins/utilsplugin2/src/utilsplugin2/dumbutils/TagBufferAction.java	(revision 25887)
@@ -17,5 +17,5 @@
  */
 public class TagBufferAction extends JosmAction {
-    private static final String TITLE = "Copy tags from previous selection";
+    private static final String TITLE = tr("Copy tags from previous selection");
     private Map<String, String> tags = new HashMap<String, String>();
     private Map<String, String> currentTags = new HashMap<String, String>();
@@ -23,6 +23,6 @@
 
     public TagBufferAction() {
-        super(tr(TITLE), "dumbutils/tagbuffer", tr("Pastes tags of previously selected object(s)"),
-                Shortcut.registerShortcut("tools:tagbuffer", tr("Tool: {0}", tr(TITLE)), KeyEvent.VK_R,
+        super(TITLE, "dumbutils/tagbuffer", tr("Pastes tags of previously selected object(s)"),
+                Shortcut.registerShortcut("tools:tagbuffer", tr("Tool: {0}", TITLE), KeyEvent.VK_R,
                 Shortcut.GROUP_EDIT, Shortcut.SHIFT_DEFAULT), true);
     }
@@ -48,5 +48,5 @@
         
         if( !commands.isEmpty() )
-            Main.main.undoRedo.add(new SequenceCommand(tr(TITLE), commands));
+            Main.main.undoRedo.add(new SequenceCommand(TITLE, commands));
     }
 
Index: applications/editors/josm/plugins/utilsplugin2/src/utilsplugin2/dumbutils/TagSourceAction.java
===================================================================
--- applications/editors/josm/plugins/utilsplugin2/src/utilsplugin2/dumbutils/TagSourceAction.java	(revision 25876)
+++ applications/editors/josm/plugins/utilsplugin2/src/utilsplugin2/dumbutils/TagSourceAction.java	(revision 25887)
@@ -17,5 +17,5 @@
  */
 public class TagSourceAction extends JosmAction {
-    private static final String TITLE = "Add Source Tag";
+    private static final String TITLE = tr("Add Source Tag");
     private String source;
     private Set<OsmPrimitive> selectionBuf = new HashSet<OsmPrimitive>();
@@ -23,6 +23,6 @@
 
     public TagSourceAction() {
-        super(tr(TITLE), "dumbutils/sourcetag", tr("Add remembered source tag"),
-                Shortcut.registerShortcut("tools:sourcetag", tr("Tool: {0}", tr(TITLE)), KeyEvent.VK_S,
+        super(TITLE, "dumbutils/sourcetag", tr("Add remembered source tag"),
+                Shortcut.registerShortcut("tools:sourcetag", tr("Tool: {0}", TITLE), KeyEvent.VK_S,
                 Shortcut.GROUP_MENU, KeyEvent.CTRL_DOWN_MASK | KeyEvent.ALT_DOWN_MASK), true);
         source = Main.pref.get("sourcetag.value");
