Ignore:
Timestamp:
2010-01-03T02:34:37+01:00 (14 years ago)
Author:
framm
Message:

fix message

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/query/UrlBasedQueryPanel.java

    r2689 r2728  
    6767        HtmlPanel pnl = new HtmlPanel();
    6868        pnl.setText(
    69                 tr("<html><body>Please enter or paste an URL to retrieve changesets from the OSM API."
    70                         + "<p><strong>Examples</strong></p>"
    71                         + "<ul>"
    72                         + "<li><a href=\"http://www.openstreetmap.org/browse/changesets?open=true\">http://www.openstreetmap.org/browse/changesets?open=true</a></li>"
    73                         + "<li><a href=\"http://api.openstreetmap.org/api/0.6/changesets?open=true\">http://api.openstreetmap.org/api/0.6/changesets?open=true</a></li>"
    74                         + "</ul>"
    75                         + "Note that changeset queries are currently always submitted to ''{0}'', regardless of the "
    76                         + "host, port and path of the URL entered beow."
    77                         + "</body></html>",
    78                         OsmApi.getOsmApi().getBaseUrl()
    79                 )
     69                "<html><body>"
     70                 + tr("Please enter or paste an URL to retrieve changesets from the OSM API.")
     71                 + "<p><strong>" + tr("Examples") + "</strong></p>"
     72                 + "<ul>"
     73                 + "<li><a href=\"http://www.openstreetmap.org/browse/changesets?open=true\">http://www.openstreetmap.org/browse/changesets?open=true</a></li>"
     74                 + "<li><a href=\"http://api.openstreetmap.org/api/0.6/changesets?open=true\">http://api.openstreetmap.org/api/0.6/changesets?open=true</a></li>"
     75                 + "</ul>"
     76                 + tr("Note that changeset queries are currently always submitted to ''{0}'', regardless of the "
     77                    + "host, port and path of the URL entered below.", OsmApi.getOsmApi().getBaseUrl())
     78                 + "</body></html>"
    8079        );
    8180        pnl.getEditorPane().addHyperlinkListener(
Note: See TracChangeset for help on using the changeset viewer.