Changeset 3758 in josm for trunk/src/org/openstreetmap
- Timestamp:
- 2011-01-02T00:45:12+01:00 (14 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/OpenFileAction.java
r3757 r3758 139 139 tr("Warning"), 140 140 JOptionPane.WARNING_MESSAGE, 141 HelpUtil.ht("/Action/Open File#ImporterCantImportFiles")141 HelpUtil.ht("/Action/Open#ImporterCantImportFiles") 142 142 ); 143 143 } … … 165 165 tr("Warning"), 166 166 JOptionPane.WARNING_MESSAGE, 167 HelpUtil.ht("/Action/Open File#MissingImporterForFiles")167 HelpUtil.ht("/Action/Open#MissingImporterForFiles") 168 168 ); 169 169 } -
trunk/src/org/openstreetmap/josm/gui/io/RecentlyOpenedFilesMenu.java
r3710 r3758 2 2 package org.openstreetmap.josm.gui.io; 3 3 4 import static org.openstreetmap.josm.gui.help.HelpUtil.ht; 4 5 import static org.openstreetmap.josm.tools.I18n.tr; 5 6 … … 29 30 setToolTipText(tr("List of recently opened files")); 30 31 setIcon(ImageProvider.get("openrecent.png")); 32 putClientProperty("help", ht("/Action/OpenRecent")); 31 33 32 34 // build dynamically … … 55 57 { 56 58 putValue(NAME, file); 59 putValue("help", ht("/Action/OpenRecent")); 57 60 } 58 61 @Override … … 79 82 super(tr("Clear")); 80 83 putValue(SHORT_DESCRIPTION, tr("Clear the list of recently opened files")); 84 putValue("help", ht("/Action/OpenRecent")); 81 85 } 82 86
Note:
See TracChangeset
for help on using the changeset viewer.