Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjeffliu2005-08-09 18:33:02 +0000
committerjeffliu2005-08-09 18:33:02 +0000
commit3076ae377197cd0eaa953060dfcc45062fdd38f0 (patch)
treecc27cfffbdfc29fd74acf9944bbc4a61c410a12a /bundles/org.eclipse.wst.xsd.ui/src/org/eclipse/wst/xsd/ui/internal
parenta0a8c637cde0e129ca4f03ba29fc4f6ba21cc20b (diff)
downloadwebtools.sourceediting-3076ae377197cd0eaa953060dfcc45062fdd38f0.tar.gz
webtools.sourceediting-3076ae377197cd0eaa953060dfcc45062fdd38f0.tar.xz
webtools.sourceediting-3076ae377197cd0eaa953060dfcc45062fdd38f0.zip
[105046] TVT 3.1 - TCT 371 - Non-externalized strings
Diffstat (limited to 'bundles/org.eclipse.wst.xsd.ui/src/org/eclipse/wst/xsd/ui/internal')
-rw-r--r--bundles/org.eclipse.wst.xsd.ui/src/org/eclipse/wst/xsd/ui/internal/properties/section/AnnotationSection.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.wst.xsd.ui/src/org/eclipse/wst/xsd/ui/internal/properties/section/AnnotationSection.java b/bundles/org.eclipse.wst.xsd.ui/src/org/eclipse/wst/xsd/ui/internal/properties/section/AnnotationSection.java
index 8d4c61b5d5..7ad05616b8 100644
--- a/bundles/org.eclipse.wst.xsd.ui/src/org/eclipse/wst/xsd/ui/internal/properties/section/AnnotationSection.java
+++ b/bundles/org.eclipse.wst.xsd.ui/src/org/eclipse/wst/xsd/ui/internal/properties/section/AnnotationSection.java
@@ -393,7 +393,7 @@ public class AnnotationSection extends AbstractSection
public DocumentationWorkbookPage(XSDWorkbook workbook)
{
super(workbook);
- this.getTabItem().setText("Documentation");
+ this.getTabItem().setText(XSDEditorPlugin.getXSDString("_UI_LABEL_DOCUMENTATION"));
}
public void setText(String value)
@@ -498,7 +498,7 @@ public class AnnotationSection extends AbstractSection
public AppInfoWorkbookPage(XSDWorkbook workbook)
{
super(workbook);
- this.getTabItem().setText("App Info");
+ this.getTabItem().setText(XSDEditorPlugin.getXSDString("_UI_LABEL_APP_INFO"));
}
public void setText(String value)

Back to the top