Changeset 2254 in josm for trunk/src/org/openstreetmap
- Timestamp:
- 2009-10-07T17:12:46+02:00 (15 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/DownloadReferrersAction.java
r2253 r2254 36 36 public DownloadReferrersAction() { 37 37 super(tr("Download parent ways/relations..."), "downloadreferrers", tr("Download primitives referring to one of the selected primitives"), 38 Shortcut.registerShortcut("file:downloadreferrers", tr("File: {0}", tr("Download parent ways/relations 38 Shortcut.registerShortcut("file:downloadreferrers", tr("File: {0}", tr("Download parent ways/relations...")), KeyEvent.VK_D, Shortcut.GROUPS_ALT2+Shortcut.GROUP_HOTKEY), true); 39 39 } 40 40 -
trunk/src/org/openstreetmap/josm/actions/UpdateDataAction.java
r2253 r2254 19 19 super(tr("Update data"), 20 20 "updatedata", 21 tr("Updates the objects in the current data layer from the server 21 tr("Updates the objects in the current data layer from the server."), 22 22 Shortcut.registerShortcut("file:updatedata", 23 tr("Update Data"),23 tr("Update data"), 24 24 KeyEvent.VK_U, 25 25 Shortcut.GROUP_HOTKEY), -
trunk/src/org/openstreetmap/josm/gui/history/VersionInfoPanel.java
r2250 r2254 71 71 return ""; 72 72 String text = tr( 73 "<html>Version <strong>{0}</strong> created on <strong>{1}</strong> ",73 "<html>Version <strong>{0}</strong> created on <strong>{1}</strong></html>", 74 74 Long.toString(primitive.getVersion()), 75 75 new SimpleDateFormat().format(primitive.getTimestamp())
Note:
See TracChangeset
for help on using the changeset viewer.