Changeset 13288 in josm


Ignore:
Timestamp:
2018-01-07T02:28:58+01:00 (6 years ago)
Author:
Don-vip
Message:

fix #15710 - unify new layer checkbox text

Location:
trunk/src/org/openstreetmap/josm
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/actions/OpenLocationAction.java

    r13261 r13288  
    139139
    140140        // use separate layer
    141         JCheckBox layer = new JCheckBox(tr("Separate Layer"));
     141        JCheckBox layer = new JCheckBox(tr("Download as new layer"));
    142142        layer.setToolTipText(tr("Select if the data should be downloaded into a new layer"));
    143143        layer.setSelected(USE_NEW_LAYER.get());
  • trunk/src/org/openstreetmap/josm/gui/download/DownloadObjectDialog.java

    r12846 r13288  
    2626    protected final JCheckBox referrers = new JCheckBox(tr("Download referrers (parent relations)"));
    2727    protected final JCheckBox fullRel   = new JCheckBox(tr("Download relation members"));
    28     protected final JCheckBox newLayer  = new JCheckBox(tr("Separate Layer"));
     28    protected final JCheckBox newLayer  = new JCheckBox(tr("Download as new layer"));
    2929    // CHECKSTYLE.ON: SingleSpaceSeparator
    3030
  • trunk/src/org/openstreetmap/josm/gui/preferences/remotecontrol/RemoteControlPreference.java

    r12854 r13288  
    7777    private JButton uninstallCertificate;
    7878
    79     private final JCheckBox loadInNewLayer = new JCheckBox(tr("Download objects to new layer"));
     79    private final JCheckBox loadInNewLayer = new JCheckBox(tr("Download as new layer"));
    8080    private final JCheckBox alwaysAskUserConfirm = new JCheckBox(tr("Confirm all Remote Control actions manually"));
    8181
Note: See TracChangeset for help on using the changeset viewer.