Changeset 32331 in osm


Ignore:
Timestamp:
2016-06-19T22:29:52+02:00 (8 years ago)
Author:
stoecker
Message:

fix #josm13004 - i18n error - fix last fix

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/pt_assistant/src/org/openstreetmap/josm/plugins/pt_assistant/gui/ProceedDialog.java

    r32330 r32331  
    4444
    4545                if (numberOfDirectionErrors != 0) {
    46                         JLabel label2 = new JLabel("     " + tr("{0} direction error", "{0} direction errors", numberOfDirectionErrors, numberOfDirectionErrors));
     46                        JLabel label2 = new JLabel("     " + trn("{0} direction error", "{0} direction errors", numberOfDirectionErrors, numberOfDirectionErrors));
    4747                        panel.add(label2);
    4848                        label2.setAlignmentX(Component.LEFT_ALIGNMENT);
     
    5050
    5151                if (numberOfRoadTypeErrors != 0) {
    52                         JLabel label3 = new JLabel("     " + tr("{0} road type error", "{0} road type errors", numberOfRoadTypeErrors, numberOfRoadTypeErrors));
     52                        JLabel label3 = new JLabel("     " + trn("{0} road type error", "{0} road type errors", numberOfRoadTypeErrors, numberOfRoadTypeErrors));
    5353                        panel.add(label3);
    5454                        label3.setAlignmentX(Component.LEFT_ALIGNMENT);
Note: See TracChangeset for help on using the changeset viewer.