Changeset 32331 in osm for applications/editors/josm/plugins
- Timestamp:
- 2016-06-19T22:29:52+02:00 (9 years ago)
- 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 44 44 45 45 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)); 47 47 panel.add(label2); 48 48 label2.setAlignmentX(Component.LEFT_ALIGNMENT); … … 50 50 51 51 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)); 53 53 panel.add(label3); 54 54 label3.setAlignmentX(Component.LEFT_ALIGNMENT);
Note:
See TracChangeset
for help on using the changeset viewer.