Ignore:
Timestamp:
2008-10-28T22:13:12+01:00 (15 years ago)
Author:
mfloryan
Message:

Changed infrastructure of JOSM translations. lang-* plugins are now
obsolete. Translations are integrated into core via lang-translation.jar
in /lib directory. Ant scripts are updated automated build may require
an update. Source translation files are still kept in JOSM SVN repo.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/tools/I18n.java

    r758 r1058  
    3535                if (i18n == null)
    3636                        return n == 1 ? tr(text, objects) : tr(pluralText, objects);
    37                         return i18n.trn(text, pluralText, n, objects);
     37                return i18n.trn(text, pluralText, n, objects);
    3838        }
    3939
     
    4141                if (i18n == null)
    4242                        return n == 1 ? tr(text) : tr(pluralText);
    43                         return i18n.trn(text, pluralText, n);
     43                return i18n.trn(text, pluralText, n);
    4444        }
    4545}
Note: See TracChangeset for help on using the changeset viewer.