Ignore:
Timestamp:
2009-06-17T09:02:25+02:00 (15 years ago)
Author:
stoecker
Message:

fix typos

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/preferences/ServerAccessPreference.java

    r1195 r1676  
    3434
    3535        osmDataServer.setToolTipText(tr("The base URL for the OSM server (REST API)"));
    36         osmDataUsername.setToolTipText(tr("Login name (email) to the OSM account."));
     36        osmDataUsername.setToolTipText(tr("Login name (e-mail) to the OSM account."));
    3737        osmDataPassword.setToolTipText(tr("Login password to the OSM account. Leave blank to not store any password."));
    3838
    3939        gui.connection.add(new JLabel(tr("Base Server URL")), GBC.std());
    4040        gui.connection.add(osmDataServer, GBC.eol().fill(GBC.HORIZONTAL).insets(5,0,0,5));
    41         gui.connection.add(new JLabel(tr("OSM username (email)")), GBC.std());
     41        gui.connection.add(new JLabel(tr("OSM username (e-mail)")), GBC.std());
    4242        gui.connection.add(osmDataUsername, GBC.eol().fill(GBC.HORIZONTAL).insets(5,0,0,5));
    4343        gui.connection.add(new JLabel(tr("OSM password")), GBC.std());
     
    4545        JLabel warning = new JLabel(tr("<html>" +
    4646                "WARNING: The password is stored in plain text in the preferences file.<br>" +
    47                 "The password is transfered in plain text to the server, encoded in the URL.<br>" +
     47                "The password is transferred in plain text to the server, encoded in the URL.<br>" +
    4848        "<b>Do not use a valuable Password.</b></html>"));
    4949        warning.setFont(warning.getFont().deriveFont(Font.ITALIC));
Note: See TracChangeset for help on using the changeset viewer.