Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMickael Istria2016-05-23 11:37:59 +0000
committerDani Megert2016-05-23 14:08:02 +0000
commitd172f0dd961d7b4638c911b6a46f27033f077c3a (patch)
treee594439a0cf4c709a091af206ce2441c4396fbdc
parent9889223f782ae3191407d0343c68d014f70694c0 (diff)
downloadeclipse.platform.ui-d172f0dd961d7b4638c911b6a46f27033f077c3a.tar.gz
eclipse.platform.ui-d172f0dd961d7b4638c911b6a46f27033f077c3a.tar.xz
eclipse.platform.ui-d172f0dd961d7b4638c911b6a46f27033f077c3a.zip
Bug 492020 - [Smart project import] Inconsistent naming I20160523-2000
Change-Id: Idf8cd3758b53eb66332b7832b6005cd8127f7cd1 Signed-off-by: Mickael Istria <mistria@redhat.com>
-rw-r--r--bundles/org.eclipse.ui.ide/plugin.properties6
-rw-r--r--bundles/org.eclipse.ui.ide/plugin.xml6
-rw-r--r--bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/wizards/datatransfer/messages.properties2
3 files changed, 9 insertions, 5 deletions
diff --git a/bundles/org.eclipse.ui.ide/plugin.properties b/bundles/org.eclipse.ui.ide/plugin.properties
index d2cd7a2f45e..4d5005abb5b 100644
--- a/bundles/org.eclipse.ui.ide/plugin.properties
+++ b/bundles/org.eclipse.ui.ide/plugin.properties
@@ -332,9 +332,11 @@ askUserViaPopup=Ask via pop-up
textEditor=Text Editor
# Smart Import
ExtPoint.projectConfigurator=Project detector and configurator
-importProjectsFromFolder_menu=&Open Projects...
+importProjectsFromFolder_command=Open Projects from File System...
+importProjectsFromFolder_mnemonic=j
importProjectsFromFolderWizard_name=Projects from Folder or Archive
importProjectsFromFolderWizard_description=Analyzes the content of your folder or archive file to find projects and import them in the IDE.
-configureProject_contextMenu=Configure and detect &nested projects...
+configureProject_command=Configure and Detect Nested Projects...
+configureProject_mnemonic=n
importer.eclipseWorkspace=Eclipse workspace
importer.eclipseProject=Eclipse project
diff --git a/bundles/org.eclipse.ui.ide/plugin.xml b/bundles/org.eclipse.ui.ide/plugin.xml
index 4fe0906d07a..39d3e74503a 100644
--- a/bundles/org.eclipse.ui.ide/plugin.xml
+++ b/bundles/org.eclipse.ui.ide/plugin.xml
@@ -2491,6 +2491,7 @@
<command
commandId="org.eclipse.e4.ui.importer.openDirectory"
id="org.eclipse.e4.ui.importer.openDirectory.menu"
+ mnemonic="%importProjectsFromFolder_mnemonic"
style="push">
</command>
</menuContribution>
@@ -2500,6 +2501,7 @@
<command
commandId="org.eclipse.e4.ui.importer.configureProject"
id="org.eclipse.e4.ui.importer.configureProject.popupMenu"
+ mnemonic="%configureProject_mnemonic"
style="push">
<visibleWhen>
<with variable="selection">
@@ -2537,11 +2539,11 @@
point="org.eclipse.ui.commands">
<command
id="org.eclipse.e4.ui.importer.openDirectory"
- name="%importProjectsFromFolder_menu">
+ name="%importProjectsFromFolder_command">
</command>
<command
id="org.eclipse.e4.ui.importer.configureProject"
- name="%configureProject_contextMenu">
+ name="%configureProject_command">
</command>
</extension>
<extension
diff --git a/bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/wizards/datatransfer/messages.properties b/bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/wizards/datatransfer/messages.properties
index c46a6321b7a..d945ebefb04 100644
--- a/bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/wizards/datatransfer/messages.properties
+++ b/bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/wizards/datatransfer/messages.properties
@@ -162,7 +162,7 @@ contains a project description file (.project) using this same name.\n\
\n\
You should consider renaming either the project in workspace, or editing the .project in selected folder.
-SmartImportWizardPage_importProjectsInFolderTitle=Import projects
+SmartImportWizardPage_importProjectsInFolderTitle=Import Projects from File System or Archive
SmartImportWizardPage_importProjectsInFolderDescription=This wizard analyzes the content of your folder or archive file to find projects and import them in the IDE.
SmartImportWizardPage_selectRootDirectory=Import source:
SmartImportWizardPage_incorrectRootDirectory=Invalid directory or archive file

Back to the top