]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.scl.ui/src/org/simantics/scl/ui/editor2/SCLAnnotationModel.java
Externalize strings in org.simantics.scl.ui
[simantics/platform.git] / bundles / org.simantics.scl.ui / src / org / simantics / scl / ui / editor2 / SCLAnnotationModel.java
index cbc6d9a0c2ec6fe4e8d923161ff1d93ab715be8c..43e4a80a0b80d8d91cf65120a286700970ae0587 100644 (file)
@@ -55,8 +55,8 @@ public class SCLAnnotationModel extends AnnotationModel {
             for(CompilationError error : errors) {
                 Annotation annotation = new Annotation(
                         error.severity == ErrorSeverity.ERROR || error.severity == ErrorSeverity.IMPORT_ERROR ?
-                                "org.eclipse.ui.workbench.texteditor.error" :
-                                    "org.eclipse.ui.workbench.texteditor.warning",
+                                "org.eclipse.ui.workbench.texteditor.error" : //$NON-NLS-1$
+                                    "org.eclipse.ui.workbench.texteditor.warning", //$NON-NLS-1$
                                     true, error.description);
                 int begin = Locations.beginOf(error.location);
                 int end = Locations.endOf(error.location);