Ignore:
Timestamp:
2009-01-06T18:06:36+01:00 (15 years ago)
Author:
stoecker
Message:

language fixes, hopefully the last set

Location:
trunk/src/org/openstreetmap/josm/gui/preferences
Files:
2 edited

Legend:

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

    r1180 r1212  
    5555        });
    5656        drawRawGpsLines.setSelected(Main.pref.getBoolean("draw.rawgps.lines"));
    57         drawRawGpsLines.setToolTipText(tr("If your gps device draw too few lines, select this to draw lines along your way."));
     57        drawRawGpsLines.setToolTipText(tr("If your gps device draws too few lines, select this to draw lines along your way."));
    5858        panel.add(drawRawGpsLines, GBC.eol().insets(20,0,0,0));
    5959
  • trunk/src/org/openstreetmap/josm/gui/preferences/PluginPreference.java

    r1191 r1212  
    124124        plugin.add(update, GBC.std().insets(0,0,10,0));
    125125
    126         JButton configureSites = new JButton(tr("Configure Sites ..."));
     126        JButton configureSites = new JButton(tr("Configure Sites..."));
    127127        configureSites.addActionListener(new ActionListener(){
    128128            public void actionPerformed(ActionEvent e) {
     
    293293                            try {
    294294                                int answer = JOptionPane.showConfirmDialog(Main.parent,
    295                                     tr("Plugin archive already available. Do you want to download current version by deleting existing archive?\n\n{0}",
     295                                    tr("Plugin archive already available. Do you want to download the current version by deleting existing archive?\n\n{0}",
    296296                                    plinfo.file.getCanonicalPath()), tr("Plugin already exists"), JOptionPane.OK_CANCEL_OPTION);
    297297                                if (answer == JOptionPane.OK_OPTION) {
Note: See TracChangeset for help on using the changeset viewer.