Changeset 2033 in josm for trunk/src


Ignore:
Timestamp:
2009-09-03T09:59:55+02:00 (15 years ago)
Author:
Gubaer
Message:

fixed #3380: Add plural form to "Authors: {0}"

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/dialogs/UserListDialog.java

    r2005 r2033  
    33
    44import static org.openstreetmap.josm.tools.I18n.tr;
     5import static org.openstreetmap.josm.tools.I18n.trn;
    56
    67import java.awt.BorderLayout;
     
    121122
    122123        if(ucArr.length != 0) {
    123             setTitle(tr("Authors: {0}", ucArr.length));
     124            setTitle(trn("{0} Author", "{0} Authors", ucArr.length, ucArr.length));
    124125        } else {
    125126            setTitle(tr("Authors"));
Note: See TracChangeset for help on using the changeset viewer.