Ignore:
Timestamp:
2008-10-07T20:31:07+02:00 (16 years ago)
Author:
mfloryan
Message:

Fixed some messages that were not translatable.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/preferences/AdvancedPreference.java

    r999 r1032  
    9292                        public void actionPerformed(ActionEvent e) {
    9393                                JPanel p = new JPanel(new GridBagLayout());
    94                                 p.add(new JLabel("Key"), GBC.std().insets(0,0,5,0));
     94                                p.add(new JLabel(tr("Key")), GBC.std().insets(0,0,5,0));
    9595                                JTextField key = new JTextField(10);
    9696                                JTextField value = new JTextField(10);
    9797                                p.add(key, GBC.eop().insets(5,0,0,0).fill(GBC.HORIZONTAL));
    98                                 p.add(new JLabel("Value"), GBC.std().insets(0,0,5,0));
     98                                p.add(new JLabel(tr("Value")), GBC.std().insets(0,0,5,0));
    9999                                p.add(value, GBC.eol().insets(5,0,0,0).fill(GBC.HORIZONTAL));
    100100                                int answer = JOptionPane.showConfirmDialog(gui, p, tr("Enter a new key/value pair"), JOptionPane.OK_CANCEL_OPTION);
Note: See TracChangeset for help on using the changeset viewer.