Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVictor Roldan Betancort2009-05-20 19:24:20 +0000
committerVictor Roldan Betancort2009-05-20 19:24:20 +0000
commit8fa5aebdac03f0ecf8b959397ca291a603dbd9a2 (patch)
treeced49948f50905fc9ed77e561d6553a706272d79 /plugins/org.eclipse.net4j.examples
parenta4a7bc418b553e0d1092caffd574787b592d4f90 (diff)
downloadcdo-8fa5aebdac03f0ecf8b959397ca291a603dbd9a2.tar.gz
cdo-8fa5aebdac03f0ecf8b959397ca291a603dbd9a2.tar.xz
cdo-8fa5aebdac03f0ecf8b959397ca291a603dbd9a2.zip
[272193] [UI] Externalize Strings (Net4j)
https://bugs.eclipse.org/bugs/show_bug.cgi?id=272193
Diffstat (limited to 'plugins/org.eclipse.net4j.examples')
-rw-r--r--plugins/org.eclipse.net4j.examples/plugin.properties5
-rw-r--r--plugins/org.eclipse.net4j.examples/plugin.xml8
2 files changed, 9 insertions, 4 deletions
diff --git a/plugins/org.eclipse.net4j.examples/plugin.properties b/plugins/org.eclipse.net4j.examples/plugin.properties
index 322fd68e1d..4b073a0a6f 100644
--- a/plugins/org.eclipse.net4j.examples/plugin.properties
+++ b/plugins/org.eclipse.net4j.examples/plugin.properties
@@ -23,3 +23,8 @@ providerName = Eclipse Modeling Project
# %%% END OF TRANSLATED PROPERTIES %%%
# The above properties have been shipped for translation.
# ==============================================================================
+
+actionSet.label = Net4j Examples
+menu.label = Net4j Examples
+action.label = Upload File
+action.tooltip = Upload file to Net4j server \ No newline at end of file
diff --git a/plugins/org.eclipse.net4j.examples/plugin.xml b/plugins/org.eclipse.net4j.examples/plugin.xml
index 6682a4bbb9..cce850e6fa 100644
--- a/plugins/org.eclipse.net4j.examples/plugin.xml
+++ b/plugins/org.eclipse.net4j.examples/plugin.xml
@@ -17,11 +17,11 @@
point="org.eclipse.ui.actionSets">
<actionSet
id="org.eclipse.net4j.examples.actionSet"
- label="Net4j Examples"
+ label="%actionSet.label"
visible="true">
<menu
id="sampleMenu"
- label="Net4j Examples">
+ label="%menu.label">
<separator
name="sampleGroup">
</separator>
@@ -30,10 +30,10 @@
class="org.eclipse.net4j.examples.transfer.UploadClientAction"
icon="icons/sample.gif"
id="org.eclipse.net4j.examples.transfer.TransferClientAction"
- label="Upload File"
+ label="%action.label"
menubarPath="sampleMenu/sampleGroup"
toolbarPath="sampleGroup"
- tooltip="Upload file to Net4j server">
+ tooltip="%action.tooltip">
</action>
</actionSet>
</extension>

Back to the top