Ignore:
Timestamp:
2008-07-05T14:12:34+02:00 (16 years ago)
Author:
stoecker
Message:

finished XML based translations of presets fixes #960
correct bounding box illegal access fixes #1044
do no longer modify objects when unnessesary (can result in 0 objects
modified in Undo :-)
correct typo fixes #730
some I18N corrections

File:
1 edited

Legend:

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

    r660 r679  
    234234                                commands.add(new ChangePropertyCommand(sel, newkey, value));
    235235                        }
    236                         Main.main.undoRedo.add(new SequenceCommand(trn("Change properties of {0} objects", "Change properties of {0} objects", sel.size(), sel.size()), commands));
     236                        Main.main.undoRedo.add(new SequenceCommand(trn("Change properties of up to {0} object", "Change properties of up to {0} objects", sel.size(), sel.size()), commands));
    237237                }
    238238
     
    279279
    280280                JPanel p = new JPanel(new BorderLayout());
    281                 p.add(new JLabel("<html>"+trn("This will change {0} object.","This will change {0} objects.", sel.size(),sel.size())+"<br><br>"+tr("Please select a key")),
     281                p.add(new JLabel("<html>"+trn("This will change up to {0} object.","This will change up to {0} objects.", sel.size(),sel.size())+"<br><br>"+tr("Please select a key")),
    282282                                BorderLayout.NORTH);
    283283                final TreeMap<String, TreeSet<String>> allData = createAutoCompletionInfo(false);
Note: See TracChangeset for help on using the changeset viewer.