Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2021-10-12 19:41:15 +0000
committerAlexander Kurtakov2021-10-12 20:06:33 +0000
commit2b7a10313e64b5622ae6351d8d735131316bb895 (patch)
treecb36e9a949e43b0c915b0e8b7441914ff6004289
parent49758eda48a891c57dbb5f6dbf52bbcc0b3d963e (diff)
downloadeclipse.platform.ua-2b7a10313e64b5622ae6351d8d735131316bb895.tar.gz
eclipse.platform.ua-2b7a10313e64b5622ae6351d8d735131316bb895.tar.xz
eclipse.platform.ua-2b7a10313e64b5622ae6351d8d735131316bb895.zip
Fix Bundle-Vendor and externalize strings in o.e.ua.tests.docI20211014-1800I20211013-1800I20211012-1800
Change-Id: I3fc2c20ad1d63d535e7a61e2dc02a1bc91910d62 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com> Reviewed-on: https://git.eclipse.org/r/c/platform/eclipse.platform.ua/+/186406 Tested-by: Platform Bot <platform-bot@eclipse.org>
-rw-r--r--org.eclipse.ua.tests.doc/META-INF/MANIFEST.MF5
-rw-r--r--org.eclipse.ua.tests.doc/OSGI-INF/l10n/bundle.properties5
-rw-r--r--org.eclipse.ua.tests.doc/build.properties4
-rw-r--r--org.eclipse.ua.tests.doc/plugin.xml4
-rw-r--r--org.eclipse.ua.tests.doc/pom.xml2
5 files changed, 14 insertions, 6 deletions
diff --git a/org.eclipse.ua.tests.doc/META-INF/MANIFEST.MF b/org.eclipse.ua.tests.doc/META-INF/MANIFEST.MF
index 31c8b3860..e673c3fcf 100644
--- a/org.eclipse.ua.tests.doc/META-INF/MANIFEST.MF
+++ b/org.eclipse.ua.tests.doc/META-INF/MANIFEST.MF
@@ -1,8 +1,8 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
-Bundle-Name: Doc
+Bundle-Name: %Bundle-Name
Bundle-SymbolicName: org.eclipse.ua.tests.doc;singleton:=true
-Bundle-Version: 1.1.100.qualifier
+Bundle-Version: 1.1.200.qualifier
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
org.eclipse.equinox.http.registry;bundle-version="1.0.200",
@@ -23,3 +23,4 @@ Export-Package: org.eclipse.ua.tests.doc,
org.eclipse.ua.tests.doc.internal.linkchecker;x-internal:=true
Eclipse-BundleShape: dir
Automatic-Module-Name: org.eclipse.ua.tests.doc
+Bundle-Vendor: %Bundle-Vendor
diff --git a/org.eclipse.ua.tests.doc/OSGI-INF/l10n/bundle.properties b/org.eclipse.ua.tests.doc/OSGI-INF/l10n/bundle.properties
new file mode 100644
index 000000000..27f4aee42
--- /dev/null
+++ b/org.eclipse.ua.tests.doc/OSGI-INF/l10n/bundle.properties
@@ -0,0 +1,5 @@
+#Properties file for org.eclipse.ua.tests.doc
+actionSet.label = Link Check Action Set
+action.label = Check TOC links
+Bundle-Vendor = Eclipse.org
+Bundle-Name = Doc \ No newline at end of file
diff --git a/org.eclipse.ua.tests.doc/build.properties b/org.eclipse.ua.tests.doc/build.properties
index 62dab0f6b..e39f7bc8a 100644
--- a/org.eclipse.ua.tests.doc/build.properties
+++ b/org.eclipse.ua.tests.doc/build.properties
@@ -18,4 +18,6 @@ bin.includes = META-INF/,\
plugin.xml,\
checkdoc.js,\
about.html,\
- test.xml
+ test.xml,\
+ OSGI-INF/l10n/bundle.properties,\
+ OSGI-INF/
diff --git a/org.eclipse.ua.tests.doc/plugin.xml b/org.eclipse.ua.tests.doc/plugin.xml
index d41aa559c..8e1e1fed5 100644
--- a/org.eclipse.ua.tests.doc/plugin.xml
+++ b/org.eclipse.ua.tests.doc/plugin.xml
@@ -30,12 +30,12 @@
point="org.eclipse.ui.actionSets">
<actionSet
id="org.eclipse.help.pageloader.actionSet"
- label="Link Check Action Set"
+ label="%actionSet.label"
visible="true">
<action
class="org.eclipse.ua.tests.doc.internal.actions.LoadTocAction"
id="org.eclipse.ua.tests.loadToc"
- label="Check TOC links"
+ label="%action.label"
menubarPath="help/group.tutorials"
style="push">
</action>
diff --git a/org.eclipse.ua.tests.doc/pom.xml b/org.eclipse.ua.tests.doc/pom.xml
index 4d4965301..80dd6f05f 100644
--- a/org.eclipse.ua.tests.doc/pom.xml
+++ b/org.eclipse.ua.tests.doc/pom.xml
@@ -19,7 +19,7 @@
</parent>
<groupId>org.eclipse.ua</groupId>
<artifactId>org.eclipse.ua.tests.doc</artifactId>
- <version>1.1.100-SNAPSHOT</version>
+ <version>1.1.200-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>

Back to the top