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


Ignore:
Timestamp:
2011-12-05T10:05:47+01:00 (12 years ago)
Author:
stoecker
Message:

fix i18n

File:
1 edited

Legend:

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

    r4634 r4637  
    33
    44import static org.openstreetmap.josm.tools.I18n.tr;
    5 import static org.openstreetmap.josm.tools.I18n.trn;
    65
    76import java.awt.Dimension;
     
    130129    class EntryListModel extends AbstractListModel {
    131130        public Object getElementAt(int index) {
    132             return trn("Entry {0}", "Entry {0}", index+1, index+1);
     131            return tr("Entry {0}", index+1);
    133132        }
    134133
Note: See TracChangeset for help on using the changeset viewer.