Project

General

Profile

« Previous | Next » 

Revision 150b624d

Added by Patrick Plitzner about 7 years ago

ref #4611 complete i18n for taxeditor.editor plugin

  • also created l10n package and moved Messages.java and teh messages.properties files there

View differences:

eu.etaxonomy.taxeditor.editor/src/main/java/eu/etaxonomy/taxeditor/editor/view/validation/InvalidValueMarkerField.java
13 13
	{
14 14
		try {
15 15
			Object value = item.getMarker().getAttribute(MarkerManager.ATTRIB_INVALID_VALUE);
16
			return value == null ? "" : value.toString();
16
			return value == null ? "" : value.toString(); //$NON-NLS-1$
17 17
		}
18 18
		catch (CoreException e) {
19
			throw new RuntimeException("Error while retrieving value for " + MarkerManager.ATTRIB_INVALID_VALUE);
19
			throw new RuntimeException("Error while retrieving value for " + MarkerManager.ATTRIB_INVALID_VALUE); //$NON-NLS-1$
20 20
		}
21 21
	}
22 22
}

Also available in: Unified diff