- Timestamp:
- 2024-03-21T21:35:35+01:00 (9 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/MainApplication.java
r19012 r19019 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; 5 import static org.openstreetmap.josm.tools.I18n.trc; 5 6 import static org.openstreetmap.josm.tools.I18n.trn; 6 7 import static org.openstreetmap.josm.tools.Utils.getSystemProperty; … … 422 423 final ExtendedDialog ed; 423 424 if (canContinue) { 424 ed = new ExtendedDialog(mainFrame, title, tr ("Stop"), tr("Continue"));425 ed = new ExtendedDialog(mainFrame, title, trc("dialog", "Stop"), tr("Continue")); 425 426 ed.setButtonIcons("cancel", "apply"); 426 427 } else { 427 ed = new ExtendedDialog(mainFrame, title, tr ("Stop"));428 ed = new ExtendedDialog(mainFrame, title, trc("dialog", "Stop")); 428 429 ed.setButtonIcons("cancel"); 429 430 }
Note:
See TracChangeset
for help on using the changeset viewer.