Ignore:
Timestamp:
2008-08-15T21:32:05+02:00 (16 years ago)
Author:
stoecker
Message:

I18N

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/validator/src/org/openstreetmap/josm/plugins/validator/Severity.java

    r9269 r9884  
    11package org.openstreetmap.josm.plugins.validator;
    22
     3import static org.openstreetmap.josm.tools.I18n.marktr;
    34import static org.openstreetmap.josm.tools.I18n.tr;
    45
     
    1011public enum Severity {
    1112        /** Error messages */
    12         ERROR(tr("Errors"), "error.gif",       Preferences.getPreferencesColor("validation error", Color.RED)),
     13        ERROR(tr("Errors"), "error.gif",       Preferences.getPreferencesColor(marktr("validation error"), Color.RED)),
    1314        /** Warning messages */
    14         WARNING(tr("Warnings"), "warning.gif", Preferences.getPreferencesColor("validation warning", Color.YELLOW)),
     15        WARNING(tr("Warnings"), "warning.gif", Preferences.getPreferencesColor(marktr("validation warning"), Color.YELLOW)),
    1516        /** Other messages */
    16         OTHER(tr("Other"), "other.gif",        Preferences.getPreferencesColor("validation other", Color.CYAN));
     17        OTHER(tr("Other"), "other.gif",        Preferences.getPreferencesColor(marktr("validation other"), Color.CYAN));
    1718       
    1819        /** Description of the severity code */
Note: See TracChangeset for help on using the changeset viewer.