Changeset 31100 in osm for applications/editors/josm
- Timestamp:
- 2015-04-23T09:07:56+02:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/buildings_tools/src/buildings_tools/MergeAddrPointsAction.java
r31093 r31100 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; 5 import static org.openstreetmap.josm.tools.I18n.trn; 5 6 6 7 import java.awt.event.ActionEvent; … … 131 132 } 132 133 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)) 134 135 .setIcon(JOptionPane.WARNING_MESSAGE).show(); 135 136 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)) 137 138 .setIcon(JOptionPane.WARNING_MESSAGE).show(); 138 139 if (cmds.isEmpty() && multi == 0 && conflicts == 0)
Note:
See TracChangeset
for help on using the changeset viewer.