Changeset 14390 in josm
- Timestamp:
- 2018-10-30T23:16:13+01:00 (6 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/AbstractSelectAction.java
r10378 r14390 19 19 public AbstractSelectAction() { 20 20 putValue(NAME, tr("Select")); 21 putValue(SHORT_DESCRIPTION, tr("Se t the selected elements on the map to the selected items in the list above."));21 putValue(SHORT_DESCRIPTION, tr("Selects those elements on the map which are chosen on the list above.")); 22 22 new ImageProvider("dialogs", "select").getResource().attachImageIcon(this, true); 23 23 } -
trunk/src/org/openstreetmap/josm/actions/CloseChangesetAction.java
r14326 r14390 44 44 */ 45 45 public CloseChangesetAction() { 46 super(tr("Close open changesets "),46 super(tr("Close open changesets..."), 47 47 "closechangeset", 48 48 tr("Close open changesets"), -
trunk/src/org/openstreetmap/josm/actions/DownloadAction.java
r12652 r14390 25 25 */ 26 26 public DownloadAction() { 27 super(tr("Download data "), "download", tr("Download map data from a server of your choice"),27 super(tr("Download data..."), "download", tr("Download map data from a server of your choice"), 28 28 Shortcut.registerShortcut("file:download", tr("File: {0}", tr("Download data")), KeyEvent.VK_DOWN, Shortcut.CTRL_SHIFT), 29 29 true); -
trunk/src/org/openstreetmap/josm/actions/TaggingPresetSearchAction.java
r13926 r14390 22 22 */ 23 23 public TaggingPresetSearchAction() { 24 super(tr("Search preset "), "dialogs/search", tr("Show preset search dialog"),24 super(tr("Search preset..."), "dialogs/search", tr("Show preset search dialog"), 25 25 Shortcut.registerShortcut("preset:search", tr("Search presets"), KeyEvent.VK_F3, Shortcut.DIRECT), false); 26 26 putValue("toolbar", "presets/search"); -
trunk/src/org/openstreetmap/josm/actions/UploadAction.java
r14326 r14390 140 140 */ 141 141 public UploadAction() { 142 super(tr("Upload data "), "upload", tr("Upload all changes in the active data layer to the OSM server"),142 super(tr("Upload data..."), "upload", tr("Upload all changes in the active data layer to the OSM server"), 143 143 Shortcut.registerShortcut("file:upload", tr("File: {0}", tr("Upload data")), KeyEvent.VK_UP, Shortcut.CTRL_SHIFT), true); 144 144 putValue("help", ht("/Action/Upload")); -
trunk/src/org/openstreetmap/josm/actions/UploadSelectionAction.java
r14153 r14390 45 45 public UploadSelectionAction() { 46 46 super( 47 tr("Upload selection "),47 tr("Upload selection..."), 48 48 "uploadselection", 49 49 tr("Upload all changes in the current selection to the OSM server."), -
trunk/src/org/openstreetmap/josm/gui/layer/AlignImageryPanel.java
r13978 r14390 55 55 closeButton.setRolloverEnabled(true); 56 56 closeButton.setBorderPainted(false); 57 closeButton.setToolTipText(tr("Hide this message and never show it again"));57 closeButton.setToolTipText(tr("Hide this message")); 58 58 closeButton.addActionListener(e -> { 59 59 if (MainApplication.isDisplayingMapView()) { -
trunk/src/org/openstreetmap/josm/gui/preferences/imagery/ImageryPreference.java
r14153 r14390 102 102 103 103 private ImageryPreference() { 104 super(/* ICON(preferences/) */ "imagery", tr("Imagery preferences"), tr("Modify list of imagery layers displayed in the Imagery menu"), 104 super(/* ICON(preferences/) */ "imagery", tr("Imagery preferences..."), 105 tr("Modify list of imagery layers displayed in the Imagery menu"), 105 106 false, new JTabbedPane()); 106 107 }
Note:
See TracChangeset
for help on using the changeset viewer.