Changeset 4445 in josm for trunk/src/org
- Timestamp:
- 2011-09-18T13:28:40+02:00 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/validation/tests/DeprecatedTags.java
r4442 r4445 163 163 cmds.add(new ChangePropertyCommand(p, tag.getKey(), tag.getValue())); 164 164 } 165 return new SequenceCommand(tr("Depre ation fix of {0}", Utils.join(", ", test)), cmds);165 return new SequenceCommand(tr("Deprecation fix of {0}", Utils.join(", ", test)), cmds); 166 166 } 167 167 … … 170 170 return tr("{0} is deprecated", Utils.join(", ", test)); 171 171 } else { 172 return tr("{0} is deprecated, use {1} instead", Utils.join(", ", test), Utils.join( " or ", alternatives));172 return tr("{0} is deprecated, use {1} instead", Utils.join(", ", test), Utils.join(tr(" or "), alternatives)); 173 173 } 174 174 }
Note:
See TracChangeset
for help on using the changeset viewer.