Changeset 3807 in josm
- Timestamp:
- 2011-01-23T15:26:07+01:00 (14 years ago)
- Location:
- trunk
- Files:
-
- 3 added
- 3 deleted
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/validation/Severity.java
r3671 r3807 12 12 public enum Severity { 13 13 /** Error messages */ 14 ERROR(tr("Errors"), "error .gif", Main.pref.getColor(marktr("validation error"), Color.RED)),14 ERROR(tr("Errors"), "error", Main.pref.getColor(marktr("validation error"), Color.RED)), 15 15 /** Warning messages */ 16 WARNING(tr("Warnings"), "warning .gif", Main.pref.getColor(marktr("validation warning"), Color.YELLOW)),16 WARNING(tr("Warnings"), "warning", Main.pref.getColor(marktr("validation warning"), Color.YELLOW)), 17 17 /** Other messages */ 18 OTHER(tr("Other"), "other .gif", Main.pref.getColor(marktr("validation other"), Color.CYAN));18 OTHER(tr("Other"), "other", Main.pref.getColor(marktr("validation other"), Color.CYAN)); 19 19 20 20 /** Description of the severity code */
Note:
See TracChangeset
for help on using the changeset viewer.