Changeset 3427 in josm for trunk/src/org/openstreetmap


Ignore:
Timestamp:
2010-08-09T16:07:56+02:00 (14 years ago)
Author:
stoecker
Message:

fix i18n

File:
1 edited

Legend:

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

    r3396 r3427  
    33
    44import static org.openstreetmap.josm.tools.I18n.tr;
     5import static org.openstreetmap.josm.tools.I18n.trc;
    56
    67import java.awt.Dimension;
     
    5960    private JCheckBox useAntialiasing = new JCheckBox(tr("Smooth map graphics (antialiasing)"));
    6061    private JCheckBox makeAutoMarkers = new JCheckBox(tr("Create markers when reading GPX."));
    61     private JComboBox waypointLabel = new JComboBox(new String[] {tr("Auto"), tr("Name"), tr("Desc"), tr("Both"), tr("None")});
     62    private JComboBox waypointLabel = new JComboBox(new String[] {tr("Auto"), /* gpx data field name */ trc("gpx_field", "Name"),
     63                                      /* gpx data field name */ trc("gpx_field", "Desc(ription)"), tr("Both"), tr("None")});
    6264
    6365    public void addGui(PreferenceTabbedPane gui) {
Note: See TracChangeset for help on using the changeset viewer.