Ignore:
Timestamp:
2015-04-23T09:07:56+02:00 (10 years ago)
Author:
stoecker
Message:

fix #josm11366 - i18n issue

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/buildings_tools/src/buildings_tools/MergeAddrPointsAction.java

    r31093 r31100  
    33
    44import static org.openstreetmap.josm.tools.I18n.tr;
     5import static org.openstreetmap.josm.tools.I18n.trn;
    56
    67import java.awt.event.ActionEvent;
     
    131132        }
    132133        if (multi != 0)
    133             new Notification(tr("There are {0} buildings with multiple address nodes inside", multi))
     134            new Notification(trn("There is {0} building with multiple address nodes inside", "There are {0} buildings with multiple address nodes inside", multi, multi))
    134135                    .setIcon(JOptionPane.WARNING_MESSAGE).show();
    135136        if (conflicts != 0)
    136             new Notification(tr("There are {0} buildings with address conflicts", conflicts))
     137            new Notification(trn("There is {0} building with address conflicts", "There are {0} buildings with address conflicts", conflicts, conflicts))
    137138                    .setIcon(JOptionPane.WARNING_MESSAGE).show();
    138139        if (cmds.isEmpty() && multi == 0 && conflicts == 0)
Note: See TracChangeset for help on using the changeset viewer.