Changeset 13288 in josm
- Timestamp:
- 2018-01-07T02:28:58+01:00 (7 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/OpenLocationAction.java
r13261 r13288 139 139 140 140 // use separate layer 141 JCheckBox layer = new JCheckBox(tr(" Separate Layer"));141 JCheckBox layer = new JCheckBox(tr("Download as new layer")); 142 142 layer.setToolTipText(tr("Select if the data should be downloaded into a new layer")); 143 143 layer.setSelected(USE_NEW_LAYER.get()); -
trunk/src/org/openstreetmap/josm/gui/download/DownloadObjectDialog.java
r12846 r13288 26 26 protected final JCheckBox referrers = new JCheckBox(tr("Download referrers (parent relations)")); 27 27 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")); 29 29 // CHECKSTYLE.ON: SingleSpaceSeparator 30 30 -
trunk/src/org/openstreetmap/josm/gui/preferences/remotecontrol/RemoteControlPreference.java
r12854 r13288 77 77 private JButton uninstallCertificate; 78 78 79 private final JCheckBox loadInNewLayer = new JCheckBox(tr("Download objects tonew layer"));79 private final JCheckBox loadInNewLayer = new JCheckBox(tr("Download as new layer")); 80 80 private final JCheckBox alwaysAskUserConfirm = new JCheckBox(tr("Confirm all Remote Control actions manually")); 81 81
Note:
See TracChangeset
for help on using the changeset viewer.