]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.scl.ui/src/org/simantics/scl/ui/browser/TestSCLDocumentationBrowser.java
Externalize strings in org.simantics.scl.ui
[simantics/platform.git] / bundles / org.simantics.scl.ui / src / org / simantics / scl / ui / browser / TestSCLDocumentationBrowser.java
index a1365544b7483ce0306f38cb4840de9e3943929b..803cdf30b487e876b16d23606cc5648054f927b2 100644 (file)
@@ -13,17 +13,17 @@ public class TestSCLDocumentationBrowser {
     public void testDocumentationBrowser() throws Exception {
         Display display = new Display();
         Shell shell = new Shell(display);
-        shell.setText("SCL module documentation");
+        shell.setText("SCL module documentation"); //$NON-NLS-1$
         shell.setLayout(new FillLayout());
         SCLDocumentationBrowser browser;
         try {
             browser = new SCLDocumentationBrowser(shell);
         } catch (SWTError e) {
-            System.out.println("Could not instantiate Browser: " + e.getMessage());
+            System.out.println("Could not instantiate Browser: " + e.getMessage()); //$NON-NLS-1$
             display.dispose();
             return;
         }
-        browser.setLocation("Prelude");
+        browser.setLocation("Prelude"); //$NON-NLS-1$
         shell.open();
         while (!shell.isDisposed()) {
             if (!display.readAndDispatch())