Index: /applications/editors/josm/plugins/turnrestrictions/src/org/openstreetmap/josm/plugins/turnrestrictions/editor/BasicEditorPanel.java
===================================================================
--- /applications/editors/josm/plugins/turnrestrictions/src/org/openstreetmap/josm/plugins/turnrestrictions/editor/BasicEditorPanel.java	(revision 20916)
+++ /applications/editors/josm/plugins/turnrestrictions/src/org/openstreetmap/josm/plugins/turnrestrictions/editor/BasicEditorPanel.java	(revision 20917)
@@ -1,3 +1,5 @@
 package org.openstreetmap.josm.plugins.turnrestrictions.editor;
+
+import static org.openstreetmap.josm.tools.I18n.tr;
 
 import java.awt.GridBagConstraints;
@@ -50,5 +52,5 @@
 		// the editor for selecting the 'from' leg
 	    gc.insets = new Insets(0,0,5,5);	
-	    add(new JLabel("Type:"), gc);
+	    add(new JLabel(tr("Type:")), gc);
 	    
 	    gc.gridx = 1;
@@ -60,5 +62,5 @@
 	    gc.gridy = 1;	
 	    gc.weightx = 0.0;
-	    add(new JLabel("From:"), gc);
+	    add(new JLabel(tr("From:")), gc);
 	    
 	    gc.gridx = 1;
@@ -71,5 +73,5 @@
 		gc.weightx = 0.0;
 	    gc.insets = new Insets(0,0,5,5);	
-	    add(new JLabel("To:"), gc);
+	    add(new JLabel(tr("To:")), gc);
 	    
 	    gc.gridx = 1;
@@ -82,5 +84,5 @@
 		gc.weightx = 0.0;
 	    gc.insets = new Insets(0,0,5,5);	
-	    add(lblVias = new JLabel("Vias:"), gc);
+	    add(lblVias = new JLabel(tr("Vias:")), gc);
 	    
 	    gc.gridx = 1;
