Changeset 4637 in josm for trunk/src/org
- Timestamp:
- 2011-12-05T10:05:47+01:00 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/preferences/advanced/MapListEditor.java
r4634 r4637 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; 5 import static org.openstreetmap.josm.tools.I18n.trn;6 5 7 6 import java.awt.Dimension; … … 130 129 class EntryListModel extends AbstractListModel { 131 130 public Object getElementAt(int index) { 132 return tr n("Entry {0}", "Entry {0}", index+1, index+1);131 return tr("Entry {0}", index+1); 133 132 } 134 133
Note:
See TracChangeset
for help on using the changeset viewer.