]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.document.ui/src/org/simantics/document/ui/dialogs/UrlDetailDialog.java
Externalize strings in org.simantics.document.ui
[simantics/platform.git] / bundles / org.simantics.document.ui / src / org / simantics / document / ui / dialogs / UrlDetailDialog.java
index ef3739e1adefaaadd413bee197c1df704ccf8b4c..1c0efc6da6a01a7f63ca80e5177ec78e38f6f61c 100644 (file)
@@ -86,13 +86,13 @@ public class UrlDetailDialog extends TextInputDialog{
                GridDataFactory.fillDefaults().hint(500, 500).applyTo(composite);
                
                Label label = new Label(composite, SWT.NONE);
-               label.setText("URL:");
+               label.setText(Messages.UrlDetailDialog_URL);
                urlText = new Text(composite, SWT.SINGLE|SWT.BORDER);
                label = new Label(composite, SWT.NONE);
-               label.setText("Name:");
+               label.setText(Messages.UrlDetailDialog_Name);
                nameText = new Text(composite, SWT.SINGLE|SWT.BORDER);
                label = new Label(composite, SWT.NONE);
-               label.setText("Annotations:");
+               label.setText(Messages.UrlDetailDialog_Annotations);
                annotationComposite = new Composite(composite, SWT.BORDER);
                annotationComposite.setLayout(new FillLayout());
 //