Index: /applications/editors/josm/plugins/routing/src/com/innovant/josm/plugin/routing/gui/RoutingDialog.java
===================================================================
--- /applications/editors/josm/plugins/routing/src/com/innovant/josm/plugin/routing/gui/RoutingDialog.java	(revision 25842)
+++ /applications/editors/josm/plugins/routing/src/com/innovant/josm/plugin/routing/gui/RoutingDialog.java	(revision 25843)
@@ -30,4 +30,5 @@
 import static org.openstreetmap.josm.tools.I18n.tr;
 
+import java.awt.BorderLayout;
 import java.awt.ComponentOrientation;
 import java.awt.Font;
@@ -35,7 +36,7 @@
 
 import javax.swing.BorderFactory;
-import javax.swing.BoxLayout;
 import javax.swing.DefaultListModel;
 import javax.swing.JList;
+import javax.swing.JPanel;
 import javax.swing.JScrollPane;
 import javax.swing.border.EtchedBorder;
@@ -68,13 +69,6 @@
         super(tr("Routing"), "routing", tr("Open a list of routing nodes"),
                 Shortcut.registerShortcut("subwindow:relations", tr("Toggle: {0}", tr("Routing")), KeyEvent.VK_R, Shortcut.GROUP_LAYER), 150);
-        model= new DefaultListModel();
-        this.setSize(456, 292);
-        this.setLayout(new BoxLayout(this, BoxLayout.Y_AXIS));
-        this.setBorder(BorderFactory.createEtchedBorder(EtchedBorder.RAISED));
-        this.setName("PrincipalDialog");
-        this.setFont(new Font("Dialog", Font.PLAIN, 12));
-        this.setComponentOrientation(ComponentOrientation.LEFT_TO_RIGHT);
-        this.add(getJScrollPane(), null);
-
+        model = new DefaultListModel();
+        add(getJScrollPane(), BorderLayout.CENTER);
     }
 
@@ -87,10 +81,6 @@
         if (jScrollPane == null) {
             jScrollPane = new JScrollPane();
-            jScrollPane.setBorder(BorderFactory.createEtchedBorder(EtchedBorder.LOWERED));
-            jScrollPane.setComponentOrientation(ComponentOrientation.LEFT_TO_RIGHT);
             jScrollPane.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED);
             jScrollPane.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED);
-            jScrollPane.setName("nList");
-            jScrollPane.setViewportBorder(BorderFactory.createEtchedBorder(EtchedBorder.LOWERED));
             jScrollPane.setViewportView(getJList());
         }
Index: /applications/editors/josm/plugins/routing/src/com/innovant/josm/plugin/routing/gui/RoutingMenu.java
===================================================================
--- /applications/editors/josm/plugins/routing/src/com/innovant/josm/plugin/routing/gui/RoutingMenu.java	(revision 25842)
+++ /applications/editors/josm/plugins/routing/src/com/innovant/josm/plugin/routing/gui/RoutingMenu.java	(revision 25843)
@@ -120,5 +120,5 @@
 
         criteriaM.addSeparator();
-        JCheckBoxMenuItem cbmi = new JCheckBoxMenuItem("Ignore oneways");
+        JCheckBoxMenuItem cbmi = new JCheckBoxMenuItem(tr("Ignore oneways"));
         cbmi.addItemListener(new ItemListener() {
             public void itemStateChanged(ItemEvent e) {
