Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSam Davis2015-08-26 18:59:06 +0000
committerSam Davis2015-08-26 18:59:06 +0000
commit8197112f0f74635fff4ea6014a17f337bb179548 (patch)
tree968e55fd3a391e9dda52c4b69fc03f01bd488386
parentd7d046ca38d3dfbeef93e4f7a0939d0ea436f5c2 (diff)
downloadorg.eclipse.mylyn.tasks-8197112f0f74635fff4ea6014a17f337bb179548.tar.gz
org.eclipse.mylyn.tasks-8197112f0f74635fff4ea6014a17f337bb179548.tar.xz
org.eclipse.mylyn.tasks-8197112f0f74635fff4ea6014a17f337bb179548.zip
fix missing labels for discovery command
-rw-r--r--org.eclipse.mylyn.tasks.ui/plugin.properties3
-rw-r--r--org.eclipse.mylyn.tasks.ui/plugin.xml4
2 files changed, 5 insertions, 2 deletions
diff --git a/org.eclipse.mylyn.tasks.ui/plugin.properties b/org.eclipse.mylyn.tasks.ui/plugin.properties
index 0c68c23b3..7d7c2b2c2 100644
--- a/org.eclipse.mylyn.tasks.ui/plugin.properties
+++ b/org.eclipse.mylyn.tasks.ui/plugin.properties
@@ -225,3 +225,6 @@ TaskRepositoryWizard.name = Task Repository
TaskRepositoryWizard.description = Connects to task repositories
Notifications.name = Notifications
+
+commands.discovery.description = shows the connector discovery wizard
+commands.discovery.name = Discovery Wizard
diff --git a/org.eclipse.mylyn.tasks.ui/plugin.xml b/org.eclipse.mylyn.tasks.ui/plugin.xml
index de7de8ebe..fbad1a170 100644
--- a/org.eclipse.mylyn.tasks.ui/plugin.xml
+++ b/org.eclipse.mylyn.tasks.ui/plugin.xml
@@ -2146,9 +2146,9 @@
<extension
point="org.eclipse.ui.commands">
<command
- description="%command.description"
+ description="%commands.discovery.description"
id="org.eclipse.mylyn.tasks.ui.discoveryWizardCommand"
- name="%command.name">
+ name="%commands.discovery.name">
</command>
</extension>
<extension

Back to the top