Changeset 4303 in josm


Ignore:
Timestamp:
Aug 8, 2011 12:41:33 AM (23 months ago)
Author:
stoecker
Message:

fix #6674 - patch by simon04 - Wrong header in add tag window

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/dialogs/properties/PropertiesDialog.java

    r4300 r4303  
    269269            } 
    270270        }; 
    271         final JDialog dlg = optionPane.createDialog(Main.parent, tr("Change values?")); 
     271        final JDialog dlg = optionPane.createDialog(Main.parent, trn("Change value?", "Change values?", m.size())); 
    272272        dlg.setModalityType(ModalityType.DOCUMENT_MODAL); 
    273273        Dimension dlgSize = dlg.getSize(); 
     
    463463            } 
    464464        }; 
    465         JDialog dialog = pane.createDialog(Main.parent, tr("Change values?")); 
     465        JDialog dialog = pane.createDialog(Main.parent, tr("Add value?")); 
    466466        dialog.setModalityType(ModalityType.DOCUMENT_MODAL); 
    467467        dialog.setVisible(true); 
Note: See TracChangeset for help on using the changeset viewer.