NL for plugin.xml files
diff --git a/org.eclipse.debug.core/plugin.properties b/org.eclipse.debug.core/plugin.properties
new file mode 100644
index 0000000..24734cd
--- /dev/null
+++ b/org.eclipse.debug.core/plugin.properties
@@ -0,0 +1,3 @@
+DebugPlugin.name=DebugTools

+

+LauncherExtension.name=Launcher
\ No newline at end of file
diff --git a/org.eclipse.debug.core/plugin.xml b/org.eclipse.debug.core/plugin.xml
index 3b75f0e..5837882 100644
--- a/org.eclipse.debug.core/plugin.xml
+++ b/org.eclipse.debug.core/plugin.xml
@@ -2,7 +2,7 @@
 <!-- File written by PDE 1.0 -->

 <plugin

    id="org.eclipse.debug.core"

-   name="DebugTools"

+   name="%DebugPlugin.name"

    version="1.0"

    provider-name="Object Technology International, Inc."

    class="org.eclipse.debug.core.DebugPlugin">

@@ -20,7 +20,7 @@
 </runtime>

 

 <!-- Extension points -->

-<extension-point id="launchers" name="Launcher"/>

+<extension-point id="launchers" name="%LauncherExtension.name"/>

 

 <!-- Extensions -->

 <extension

diff --git a/org.eclipse.debug.ui/.classpath b/org.eclipse.debug.ui/.classpath
index f3de49d..07f833d 100644
--- a/org.eclipse.debug.ui/.classpath
+++ b/org.eclipse.debug.ui/.classpath
@@ -10,6 +10,6 @@
         path="WORKSPACE_ROOT/org.eclipse.core.runtime/runtime.jar" sourcepath="WORKSPACE_ROOT/org.eclipse.core.runtime/runtimesrc.zip"/>
     <classpathentry kind="var"
         path="WORKSPACE_ROOT/org.eclipse.swt/swt.jar" sourcepath="WORKSPACE_ROOT/org.eclipse.swt/swtsrc.zip"/>
-    <classpathentry kind="src" path="/org.eclipse.ui"/>
+    <classpathentry kind="var" path="WORKSPACE_ROOT/org.eclipse.ui/workbench.jar"/>
     <classpathentry kind="output" path="bin"/>
 </classpath>
diff --git a/org.eclipse.debug.ui/.vcm_meta b/org.eclipse.debug.ui/.vcm_meta
index 73e0547..ae5f091 100644
--- a/org.eclipse.debug.ui/.vcm_meta
+++ b/org.eclipse.debug.ui/.vcm_meta
@@ -1,8 +1,8 @@
 <?xml version="1.0" encoding="UTF-8"?>

 <project-description>

+	<comment></comment>

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

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

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

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

 	</builder>

 </project-description>

diff --git a/org.eclipse.debug.ui/plugin.properties b/org.eclipse.debug.ui/plugin.properties
index 877ec54..2ba40a2 100644
--- a/org.eclipse.debug.ui/plugin.properties
+++ b/org.eclipse.debug.ui/plugin.properties
@@ -1,3 +1,5 @@
+ DebugUIPlugin.name=DebugToolsUI

+ 

  DebugPerspective.name=Debug

  

  LauncherPropertyPage.name=Launcher

diff --git a/org.eclipse.debug.ui/plugin.xml b/org.eclipse.debug.ui/plugin.xml
index a3e6d07..d5e9218 100644
--- a/org.eclipse.debug.ui/plugin.xml
+++ b/org.eclipse.debug.ui/plugin.xml
@@ -2,7 +2,7 @@
 <!-- File written by PDE 1.0 -->

 <plugin

    id="org.eclipse.debug.ui"

-   name="DebugToolsUI"

+   name="%DebugUIPlugin.name"

    version="1.0"

    provider-name="Object Technology International, Inc."

    class="org.eclipse.debug.internal.ui.DebugUIPlugin">