Changeset 4445 in josm for trunk


Ignore:
Timestamp:
2011-09-18T13:28:40+02:00 (13 years ago)
Author:
stoecker
Message:

i18n fix

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/validation/tests/DeprecatedTags.java

    r4442 r4445  
    163163                cmds.add(new ChangePropertyCommand(p, tag.getKey(), tag.getValue()));
    164164            }
    165             return new SequenceCommand(tr("Depreation fix of {0}", Utils.join(", ", test)), cmds);
     165            return new SequenceCommand(tr("Deprecation fix of {0}", Utils.join(", ", test)), cmds);
    166166        }
    167167
     
    170170                return tr("{0} is deprecated", Utils.join(", ", test));
    171171            } 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));
    173173            }
    174174        }
Note: See TracChangeset for help on using the changeset viewer.