Changeset 1058 in josm for trunk/src/org/openstreetmap/josm/tools
- Timestamp:
- 2008-10-28T22:13:12+01:00 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/tools/I18n.java
r758 r1058 35 35 if (i18n == null) 36 36 return n == 1 ? tr(text, objects) : tr(pluralText, objects); 37 37 return i18n.trn(text, pluralText, n, objects); 38 38 } 39 39 … … 41 41 if (i18n == null) 42 42 return n == 1 ? tr(text) : tr(pluralText); 43 43 return i18n.trn(text, pluralText, n); 44 44 } 45 45 }
Note:
See TracChangeset
for help on using the changeset viewer.