diff --git a/src/org/openstreetmap/josm/gui/dialogs/properties/PropertiesDialog.java b/src/org/openstreetmap/josm/gui/dialogs/properties/PropertiesDialog.java
index 9c986a3..f4a9250 100644
|
a
|
b
|
public class PropertiesDialog extends ToggleDialog implements SelectionChangedLi
|
| 267 | 267 | values.getEditor().selectAll(); |
| 268 | 268 | } |
| 269 | 269 | }; |
| 270 | | final JDialog dlg = optionPane.createDialog(Main.parent, tr("Change values?")); |
| | 270 | final JDialog dlg = optionPane.createDialog(Main.parent, trn("Change value?", "Change values?", m.size())); |
| 271 | 271 | dlg.setModalityType(ModalityType.DOCUMENT_MODAL); |
| 272 | 272 | Dimension dlgSize = dlg.getSize(); |
| 273 | 273 | if(dlgSize.width > Main.parent.getSize().width) { |
| … |
… |
public class PropertiesDialog extends ToggleDialog implements SelectionChangedLi
|
| 447 | 447 | keys.getEditor().selectAll(); |
| 448 | 448 | } |
| 449 | 449 | }; |
| 450 | | JDialog dialog = pane.createDialog(Main.parent, tr("Change values?")); |
| | 450 | JDialog dialog = pane.createDialog(Main.parent, tr("Add value?")); |
| 451 | 451 | dialog.setModalityType(ModalityType.DOCUMENT_MODAL); |
| 452 | 452 | dialog.setVisible(true); |
| 453 | 453 | |