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:
authorbchilds2007-11-07 16:34:50 +0000
committerbchilds2007-11-07 16:34:50 +0000
commite5aeb1e9fabcf0e19c8f3875ffd757d727408325 (patch)
tree7ffe13a6d662ce54c713c840ae5964ce0f451e8a
parent26daf02a015653ea70ac37f0e0cd8a009d692bfa (diff)
downloadwebtools.jsdt.core-e5aeb1e9fabcf0e19c8f3875ffd757d727408325.tar.gz
webtools.jsdt.core-e5aeb1e9fabcf0e19c8f3875ffd757d727408325.tar.xz
webtools.jsdt.core-e5aeb1e9fabcf0e19c8f3875ffd757d727408325.zip
Externalized String fixes.
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.firefox/plugin.properties3
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.firefox/plugin.xml2
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/plugin.properties3
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/plugin.xml2
4 files changed, 6 insertions, 4 deletions
diff --git a/bundles/org.eclipse.wst.jsdt.support.firefox/plugin.properties b/bundles/org.eclipse.wst.jsdt.support.firefox/plugin.properties
index 6c3d04a4..dd9099dc 100644
--- a/bundles/org.eclipse.wst.jsdt.support.firefox/plugin.properties
+++ b/bundles/org.eclipse.wst.jsdt.support.firefox/plugin.properties
@@ -1,3 +1,4 @@
#Properties file for org.eclipse.wst.jsdt.support.firefox
Bundle-Vendor = Eclipse.org
-Bundle-Name = FireFox Support for JSDT Plugin \ No newline at end of file
+Bundle-Name = FireFox Support for JSDT Plugin
+classpathContainerPage.name.0 = Mozilla FireFox Library \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.firefox/plugin.xml b/bundles/org.eclipse.wst.jsdt.support.firefox/plugin.xml
index f858029b..77bff618 100644
--- a/bundles/org.eclipse.wst.jsdt.support.firefox/plugin.xml
+++ b/bundles/org.eclipse.wst.jsdt.support.firefox/plugin.xml
@@ -4,7 +4,7 @@
<extension point="org.eclipse.wst.jsdt.ui.classpathContainerPage">
<classpathContainerPage
- name="Mozilla FireFox Library"
+ name="%classpathContainerPage.name.0"
class="org.eclipse.wst.jsdt.internal.ui.wizards.buildpaths.FireFoxLibraryWizardPage"
id="org.eclipse.wst.jsdt.support.firefox">
</classpathContainerPage>
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/plugin.properties b/bundles/org.eclipse.wst.jsdt.support.ie/plugin.properties
index b38fcdf3..5e4294a8 100644
--- a/bundles/org.eclipse.wst.jsdt.support.ie/plugin.properties
+++ b/bundles/org.eclipse.wst.jsdt.support.ie/plugin.properties
@@ -1,2 +1,3 @@
#Properties file for org.eclipse.wst.jsdt.support.ie
-Bundle-Name.0 = JSDT Support for Internet Explorer \ No newline at end of file
+Bundle-Name.0 = JSDT Support for Internet Explorer
+classpathContainerPage.name.0 = Internet Explorer Library \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/plugin.xml b/bundles/org.eclipse.wst.jsdt.support.ie/plugin.xml
index d7099a9f..6e9462fd 100644
--- a/bundles/org.eclipse.wst.jsdt.support.ie/plugin.xml
+++ b/bundles/org.eclipse.wst.jsdt.support.ie/plugin.xml
@@ -4,7 +4,7 @@
<extension point="org.eclipse.wst.jsdt.ui.classpathContainerPage">
<classpathContainerPage
- name="Internet Explorer Library"
+ name="%classpathContainerPage.name.0"
class="org.eclipse.wst.jsdt.internal.ui.wizards.buildpaths.InternetExplorerLibraryWizardPage"
id="org.eclipse.wst.jsdt.support.ie">
</classpathContainerPage>

Back to the top