Index: /trunk/src/org/openstreetmap/josm/gui/preferences/RemoteControlPreference.java
===================================================================
--- /trunk/src/org/openstreetmap/josm/gui/preferences/RemoteControlPreference.java	(revision 3731)
+++ /trunk/src/org/openstreetmap/josm/gui/preferences/RemoteControlPreference.java	(revision 3732)
@@ -45,17 +45,16 @@
     private JCheckBox enableRemoteControl;
 
-    private JCheckBox permissionLoadData = new JCheckBox(tr("load data from API"));
-    private JCheckBox permissionImportData = new JCheckBox(tr("import data from URL"));
-    private JCheckBox permissionLoadImagery = new JCheckBox(tr("load imagery layers"));
-    private JCheckBox permissionCreateObjects = new JCheckBox(tr("create new objects"));
-    private JCheckBox permissionChangeSelection = new JCheckBox(tr("change the selection"));
-    private JCheckBox permissionChangeViewport = new JCheckBox(tr("change the viewport"));
-    private JCheckBox permissionReadProtocolversion = new JCheckBox(tr("read protocol version"));
-    private JCheckBox alwaysAskUserConfirm = new JCheckBox(tr("confirm all Remote Control actions manually"));
+    private JCheckBox permissionLoadData = new JCheckBox(tr("Load data from API"));
+    private JCheckBox permissionImportData = new JCheckBox(tr("Import data from URL"));
+    private JCheckBox permissionLoadImagery = new JCheckBox(tr("Load imagery layers"));
+    private JCheckBox permissionCreateObjects = new JCheckBox(tr("Create new objects"));
+    private JCheckBox permissionChangeSelection = new JCheckBox(tr("Change the selection"));
+    private JCheckBox permissionChangeViewport = new JCheckBox(tr("Change the viewport"));
+    private JCheckBox permissionReadProtocolversion = new JCheckBox(tr("Read protocol version"));
+    private JCheckBox alwaysAskUserConfirm = new JCheckBox(tr("Confirm all Remote Control actions manually"));
 
-    public void addGui(final PreferenceTabbedPane gui)
-    {
+    public void addGui(final PreferenceTabbedPane gui) {
 
-        JPanel remote = gui.createPreferenceTab("remotecontrol.gif", tr("Remote Control"), tr("Settings for the Remote Control freature."));
+        JPanel remote = gui.createPreferenceTab("remotecontrol.gif", tr("Remote Control"), tr("Settings for the remote control feature."));
 
         remote.add(enableRemoteControl = new JCheckBox(tr("Enable remote control"), RemoteControl.PROP_REMOTECONTROL_ENABLED.get()), GBC.eol());
@@ -87,6 +86,6 @@
         wrapper.add(alwaysAskUserConfirm, GBC.eol().fill(GBC.HORIZONTAL));
 
-        final JLabel portLabel = new JLabel("<html>"+tr("JOSM will always listen on port 8111 on localhost." +
-                "The port is not configurable because it is referenced by external applications talking to JOSM.") + "</html>");
+        final JLabel portLabel = new JLabel("<html>"+tr("JOSM will always listen at port 8111 on localhost." +
+                "This port is not configurable because it is referenced by external applications talking to JOSM.") + "</html>");
         portLabel.setFont(portLabel.getFont().deriveFont(Font.PLAIN));
 
@@ -104,5 +103,5 @@
         alwaysAskUserConfirm.setSelected(Main.pref.getBoolean(RequestHandler.globalConfirmationKey, RequestHandler.globalConfirmationDefault));
 
-        ActionListener remoteControlEnabled = new ActionListener(){
+        ActionListener remoteControlEnabled = new ActionListener() {
             public void actionPerformed(ActionEvent e) {
                 boolean enabled = enableRemoteControl.isSelected();
@@ -131,5 +130,4 @@
             Main.pref.put(RequestHandler.globalConfirmationKey, alwaysAskUserConfirm.isSelected());
         }
-        // FIXME confirm return value - really no restart needed?
         return changed;
     }
