Changeset 33150 in osm
- Timestamp:
- 2017-02-15T18:47:29+01:00 (8 years ago)
- Location:
- applications/editors/josm/plugins/tag2link
- Files:
-
- 31 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/tag2link/src/org/openstreetmap/josm/plugins/tag2link/action/OpenLinkAction.java
r32941 r33150 48 48 */ 49 49 public OpenLinkAction(Link link) { 50 super( tr(link.name), ICON_24, tr("Launch browser with information about the selected object"), null, false);50 super(link.name, ICON_24, tr("Launch browser with information about the selected object"), null, false); 51 51 this.link = link; 52 52 } -
applications/editors/josm/plugins/tag2link/src/org/openstreetmap/josm/plugins/tag2link/action/OpenMailAction.java
r28547 r33150 41 41 */ 42 42 public OpenMailAction(Link link) { 43 super( tr(link.name), MAIL_ICON_24, tr("Launch your default software for sending an email to the selected contact address"), null, false);43 super(link.name, MAIL_ICON_24, tr("Launch your default software for sending an email to the selected contact address"), null, false); 44 44 this.url = link.url; 45 45 } -
applications/editors/josm/plugins/tag2link/src/org/openstreetmap/josm/plugins/tag2link/io/SourcesReader.java
r30717 r33150 234 234 } 235 235 } 236 link = new LinkPost( name, href, headers, params);236 link = new LinkPost(tr(name), href, headers, params); 237 237 } else { 238 link = new Link( name, href);238 link = new Link(tr(name), href); 239 239 jumpToEnd(); 240 240 }
Note:
See TracChangeset
for help on using the changeset viewer.