Changeset 3727 in josm for trunk/src/org
- Timestamp:
- 2010-12-15T22:13:15+01:00 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/tagging/TaggingPreset.java
r3726 r3727 394 394 395 395 if (display_array.length != value_array.length) { 396 System.err.println(tr("Broken tagging preset \"{0}-{1}\" - number of items in display_values must be the same as in values", key, text));396 System.err.println(tr("Broken tagging preset \"{0}-{1}\" - number of items in ''display_values'' must be the same as in ''values''", key, text)); 397 397 display_array = value_array; 398 398 } 399 399 400 400 if (short_descriptions_array != null && short_descriptions_array.length != value_array.length) { 401 System.err.println(tr("Broken tagging preset \"{0}-{1}\" - number of items in short_descriptions must be the same as in values", key, text));401 System.err.println(tr("Broken tagging preset \"{0}-{1}\" - number of items in ''short_descriptions'' must be the same as in ''values''", key, text)); 402 402 short_descriptions_array = null; 403 403 }
Note:
See TracChangeset
for help on using the changeset viewer.