Fixed for 1GI71EV: ITPCORE:ALL - Need to do NL work on Ant UI
diff --git a/ant/org.eclipse.ant.ui/.classpath b/ant/org.eclipse.ant.ui/.classpath
index 771f6bf..9f89c72 100644
--- a/ant/org.eclipse.ant.ui/.classpath
+++ b/ant/org.eclipse.ant.ui/.classpath
@@ -9,7 +9,7 @@
     <classpathentry kind="var" path="TARGET/org.eclipse.ant.core/ant.jar"/>
     <classpathentry kind="var"
         path="TARGET/org.eclipse.ui/workbench.jar" sourcepath="TARGET/org.eclipse.ui/workbenchsrc.zip"/>
-    <classpathentry kind="var" path="TARGET/org.eclipse.swt/swt.jar"
-        rootpath="" sourcepath="TARGET/org.eclipse.swt/swtsrc.zip"/>
+    <classpathentry kind="var" path="TARGET/org.eclipse.swt/swt.jar" sourcepath="TARGET/org.eclipse.swt/swtsrc.zip"/>
+    <classpathentry kind="src" path="/org.eclipse.ui"/>
     <classpathentry kind="output" path="bin"/>
 </classpath>
diff --git a/ant/org.eclipse.ant.ui/.vcm_meta b/ant/org.eclipse.ant.ui/.vcm_meta
index 4be9d14..203d317 100644
--- a/ant/org.eclipse.ant.ui/.vcm_meta
+++ b/ant/org.eclipse.ant.ui/.vcm_meta
@@ -1,10 +1,12 @@
 <?xml version="1.0" encoding="UTF-8"?>

 <project-description>

+	<comment></comment>

 	<nature id="org.eclipse.jdt.core.javanature"/>

 	<reference project-name="org.eclipse.ant.core"/>

 	<reference project-name="org.eclipse.core.boot"/>

 	<reference project-name="org.eclipse.core.resources"/>

 	<reference project-name="org.eclipse.core.runtime"/>

+	<reference project-name="org.eclipse.ui"/>

 	<builder name="org.eclipse.jdt.core.javabuilder">

 	</builder>

 </project-description>

diff --git a/ant/org.eclipse.ant.ui/plugin.properties b/ant/org.eclipse.ant.ui/plugin.properties
index 1ec30df..b562aef 100644
--- a/ant/org.eclipse.ant.ui/plugin.properties
+++ b/ant/org.eclipse.ant.ui/plugin.properties
@@ -1,3 +1,4 @@
 pluginName = Ant Build Tool UI

 runAnt = Run Ant...

 runAntTip = Run Ant with the selected build file

+antConsole = Ant Console
\ No newline at end of file
diff --git a/ant/org.eclipse.ant.ui/plugin.xml b/ant/org.eclipse.ant.ui/plugin.xml
index aa445ad..362eb2b 100644
--- a/ant/org.eclipse.ant.ui/plugin.xml
+++ b/ant/org.eclipse.ant.ui/plugin.xml
@@ -1,4 +1,4 @@
-<?xml version="1.0"?>

+<?xml version="1.0" encoding="UTF-8"?>

 

 <plugin

   name = "%pluginName"

@@ -42,7 +42,7 @@
 	</category>

 	<view

 		id="org.eclipse.ant.ui.antconsole"

-		name="Ant Console"

+		name="%antConsole"

 		icon="icons/basic/cview/ant_view.gif"

 		category="org.eclipse.ant.ui"

 		class="org.eclipse.ant.internal.ui.AntConsole">

diff --git a/ant/org.eclipse.ant.ui/src/org/eclipse/ant/internal/ui/AntConsole.java b/ant/org.eclipse.ant.ui/src/org/eclipse/ant/internal/ui/AntConsole.java
index 4f801a2..ad63352 100644
--- a/ant/org.eclipse.ant.ui/src/org/eclipse/ant/internal/ui/AntConsole.java
+++ b/ant/org.eclipse.ant.ui/src/org/eclipse/ant/internal/ui/AntConsole.java
Binary files differ
diff --git a/ant/org.eclipse.ant.ui/src/org/eclipse/ant/internal/ui/Messages.properties b/ant/org.eclipse.ant.ui/src/org/eclipse/ant/internal/ui/Messages.properties
index dfd6132..48abeb4 100644
--- a/ant/org.eclipse.ant.ui/src/org/eclipse/ant/internal/ui/Messages.properties
+++ b/ant/org.eclipse.ant.ui/src/org/eclipse/ant/internal/ui/Messages.properties
@@ -4,9 +4,9 @@
 ### wizard

 wizard.title = Run Ant

 wizard.executeAntScriptTitle = Execute Ant Script

-wizard.availableTargetsLabel = Available Targets:

-wizard.argumentsLabel = Arguments:

-wizard.displayLogLabel = Display execution log to Ant console

+wizard.availableTargetsLabel = Available &Targets:

+wizard.argumentsLabel = &Arguments:

+wizard.displayLogLabel = &Display execution log to Ant console

 

 

 ### label provider

@@ -14,7 +14,7 @@
 

 

 ### console labels

-find_action.label=Find...@Ctrl+F

+find_action.label=&Find...@Ctrl+F

 find_action.tooltip=Find

 find_action.image=

 find_action.description=Find

@@ -28,9 +28,9 @@
 

 

 ### console

-console.copy = Copy

-console.selectAll = &Select All

-console.clearOutput = &Clear Output

+console.copy = &Copy@Ctrl+C

+console.selectAll = Select &All@Ctrl+A

+console.clearOutput = Clear &Output

 

 

 ### status

diff --git a/ant/org.eclipse.ant.ui/src/org/eclipse/ant/internal/ui/TargetsListLabelProvider.java b/ant/org.eclipse.ant.ui/src/org/eclipse/ant/internal/ui/TargetsListLabelProvider.java
index b03304f..50ed423 100644
--- a/ant/org.eclipse.ant.ui/src/org/eclipse/ant/internal/ui/TargetsListLabelProvider.java
+++ b/ant/org.eclipse.ant.ui/src/org/eclipse/ant/internal/ui/TargetsListLabelProvider.java
Binary files differ