Ignore:
Timestamp:
2009-09-20T10:23:22+02:00 (17 years ago)
Author:
stoecker
Message:

fixed typos

Location:
trunk/src/org/openstreetmap/josm/actions
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/actions/GpxExportAction.java

    r2017 r2163  
    6868    public void export(Layer layer) {
    6969        if (layer == null)
    70             throw new IllegalArgumentException(tr("paramenter ''{0}'' must not be null", "layer"));
     70            throw new IllegalArgumentException(tr("parameter ''{0}'' must not be null", "layer"));
    7171        if (! (layer instanceof OsmDataLayer) && ! (layer instanceof GpxLayer))
    7272            throw new IllegalArgumentException(tr("expected instance of OsmDataLayer or GpxLayer. Got ''{0}''.", layer.getClass().getName()));
  • trunk/src/org/openstreetmap/josm/actions/HelpAction.java

    r2017 r2163  
    216216                    if(url.equals(langurl))
    217217                    {
    218                         txt = ("<HTML>"+tr("Help page missing. Create it in <A HREF=\"{0}\">english</A>.",
     218                        txt = ("<HTML>"+tr("Help page missing. Create it in <A HREF=\"{0}\">English</A>.",
    219219                                url+"?action=edit")+"</HTML>");
    220220                    }
    221221                    else
    222222                    {
    223                         txt = ("<HTML>"+tr("Help page missing. Create it in <A HREF=\"{0}\">english</A> or <A HREF=\"{1}\">your language</A>.",
     223                        txt = ("<HTML>"+tr("Help page missing. Create it in <A HREF=\"{0}\">English</A> or <A HREF=\"{1}\">your language</A>.",
    224224                                url+"?action=edit", langurl+"?action=edit")+"</HTML>");
    225225                    }
Note: See TracChangeset for help on using the changeset viewer.