- Timestamp:
- 2014-12-08T20:42:52+01:00 (10 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/AboutAction.java
r6901 r7771 43 43 */ 44 44 public AboutAction() { 45 super(tr("About"), " about", tr("Display the about screen."),45 super(tr("About"), "logo", tr("Display the about screen."), 46 46 Shortcut.registerShortcut("system:about", tr("About"), 47 47 KeyEvent.VK_F1, Shortcut.SHIFT), true); -
trunk/src/org/openstreetmap/josm/actions/AbstractInfoAction.java
r7678 r7771 10 10 import java.util.Iterator; 11 11 import java.util.List; 12 import java.util.regex.Pattern;13 12 14 13 import javax.swing.JOptionPane; … … 19 18 import org.openstreetmap.josm.gui.HelpAwareOptionPane.ButtonSpec; 20 19 import org.openstreetmap.josm.gui.help.HelpUtil; 21 import org.openstreetmap.josm.io.OsmApi;22 20 import org.openstreetmap.josm.tools.ImageProvider; 23 21 import org.openstreetmap.josm.tools.OpenBrowser; -
trunk/src/org/openstreetmap/josm/actions/HistoryInfoAction.java
r7434 r7771 25 25 */ 26 26 public HistoryInfoAction() { 27 super(tr("History"), " about",27 super(tr("History"), "dialogs/history", 28 28 tr("Display history information about OSM ways, nodes, or relations."), 29 29 Shortcut.registerShortcut("core:historyinfo", -
trunk/src/org/openstreetmap/josm/actions/HistoryInfoWebAction.java
r7678 r7771 15 15 16 16 public HistoryInfoWebAction() { 17 super(tr("History (web)"), " about",17 super(tr("History (web)"), "dialogs/history", 18 18 tr("Display history information about OSM ways, nodes, or relations in web browser."), 19 19 Shortcut.registerShortcut("core:historyinfoweb", -
trunk/src/org/openstreetmap/josm/actions/InfoAction.java
r6336 r7771 21 21 */ 22 22 public InfoAction() { 23 super(tr("Advanced info"), " about",23 super(tr("Advanced info"), "info", 24 24 tr("Display advanced object information about OSM nodes, ways, or relations."), 25 25 Shortcut.registerShortcut("core:info", -
trunk/src/org/openstreetmap/josm/actions/InfoWebAction.java
r7678 r7771 15 15 16 16 public InfoWebAction() { 17 super(tr("Advanced info (web)"), " about",17 super(tr("Advanced info (web)"), "info", 18 18 tr("Display object information about OSM nodes, ways, or relations in web browser."), 19 19 Shortcut.registerShortcut("core:infoweb", -
trunk/src/org/openstreetmap/josm/gui/dialogs/ChangesetDialog.java
r7678 r7771 423 423 putValue(NAME, tr("Show info")); 424 424 putValue(SHORT_DESCRIPTION, tr("Open a web page for each selected changeset")); 425 putValue(SMALL_ICON, ImageProvider.get(" about"));425 putValue(SMALL_ICON, ImageProvider.get("help/internet")); 426 426 updateEnabledState(); 427 427 } -
trunk/src/org/openstreetmap/josm/gui/dialogs/UserListDialog.java
r7678 r7771 193 193 putValue(NAME, tr("Show info")); 194 194 putValue(SHORT_DESCRIPTION, tr("Launches a browser with information about the user")); 195 putValue(SMALL_ICON, ImageProvider.get(" about"));195 putValue(SMALL_ICON, ImageProvider.get("help/internet")); 196 196 updateEnabledState(); 197 197 } -
trunk/src/org/openstreetmap/josm/gui/history/VersionTable.java
r7678 r7771 150 150 putValue(NAME, tr("Changeset info")); 151 151 putValue(SHORT_DESCRIPTION, tr("Launch browser with information about the changeset")); 152 putValue(SMALL_ICON, ImageProvider.get(" about"));152 putValue(SMALL_ICON, ImageProvider.get("data/changeset")); 153 153 } 154 154 … … 180 180 putValue(NAME, tr("User info")); 181 181 putValue(SHORT_DESCRIPTION, tr("Launch browser with information about the user")); 182 putValue(SMALL_ICON, ImageProvider.get(" about"));182 putValue(SMALL_ICON, ImageProvider.get("data/user")); 183 183 } 184 184 -
trunk/src/org/openstreetmap/josm/gui/oauth/FullyAutomaticAuthorizationUI.java
r6890 r7771 387 387 public TestAccessTokenAction() { 388 388 putValue(NAME, tr("Test Access Token")); 389 putValue(SMALL_ICON, ImageProvider.get(" about"));389 putValue(SMALL_ICON, ImageProvider.get("logo")); 390 390 } 391 391
Note:
See TracChangeset
for help on using the changeset viewer.