Bug 54407 - Make a pass on all the properties files
diff --git a/org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/ui/jres/JREMessages.properties b/org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/ui/jres/JREMessages.properties
index a1a29eb..56eabfa 100644
--- a/org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/ui/jres/JREMessages.properties
+++ b/org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/ui/jres/JREMessages.properties
@@ -49,7 +49,6 @@
 JREsPreferencePage.6=&Yes
 JREsPreferencePage.7=&No
 JREsPreferencePage.8=&Cancel
-JREsPreferencePage.9=Build failed.
 JREsPreferencePage.10=Installed JRE location no longer exists.  JRE will be removed.
 JREsPreferencePage.11=JRE removed
 JREsPreferencePage.12=Installed Java Runtime Environments
diff --git a/org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/model/JDIDebugModelMessages.properties b/org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/model/JDIDebugModelMessages.properties
index f935bbd..8153a4c 100644
--- a/org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/model/JDIDebugModelMessages.properties
+++ b/org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/model/JDIDebugModelMessages.properties
@@ -69,7 +69,6 @@
 JDILocalVariable.exception_while_attempting_to_set_value_of_local_variable={0} occurred while attempting to set value of local variable.
 JDILocalVariable.exception_while_retrieving_type_of_local_variable={0} occurred while retrieving type of local variable.
 
-JDIModificationVariable.value_modification_failed=Value modification failed - unable to generate value from expression: {0}
 JDIModificationVariable.Unable_to_generate_value_-_VM_disconnected._1=Unable to generate value - VM disconnected.
 
 JDIObjectValue.exception_retrieving_field={0} occurred retrieving field.
diff --git a/org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/model/JDIThread.java b/org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/model/JDIThread.java
index 47b5ddc..f7ba395 100644
--- a/org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/model/JDIThread.java
+++ b/org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/model/JDIThread.java
@@ -2263,7 +2263,7 @@
 					hcrThread.doReturn(null, true);
 				} catch (RuntimeException e) {
 					stepEnd();
-					targetRequestFailed(MessageFormat.format(JDIDebugModelMessages.getString(JDIDebugModelMessages.getString("JDIThread.exception_while_popping_stack_frame")), new String[] {e.toString()}), e); //$NON-NLS-1$
+					targetRequestFailed(MessageFormat.format(JDIDebugModelMessages.getString("JDIThread.exception_while_popping_stack_frame"), new String[] {e.toString()}), e); //$NON-NLS-1$
 				}
 			}
 		}
diff --git a/org.eclipse.jdt.launching/launching/org/eclipse/jdt/internal/launching/JavaAppletLaunchConfigurationDelegate.java b/org.eclipse.jdt.launching/launching/org/eclipse/jdt/internal/launching/JavaAppletLaunchConfigurationDelegate.java
index e172093..79664fe 100644
--- a/org.eclipse.jdt.launching/launching/org/eclipse/jdt/internal/launching/JavaAppletLaunchConfigurationDelegate.java
+++ b/org.eclipse.jdt.launching/launching/org/eclipse/jdt/internal/launching/JavaAppletLaunchConfigurationDelegate.java
@@ -76,9 +76,9 @@
 		IVMRunner runner = vm.getVMRunner(mode);
 		if (runner == null) {
 			if (mode == ILaunchManager.DEBUG_MODE) {
-				abort(MessageFormat.format(LaunchingMessages.getString("JavaLocalApplicationLaunchConfigurationDelegate.JRE_{0}_does_not_support_debug_mode._1"), new String[]{vm.getName()}), null, IJavaLaunchConfigurationConstants.ERR_VM_RUNNER_DOES_NOT_EXIST);  //$NON-NLS-1$
+				abort(MessageFormat.format(LaunchingMessages.getString("JavaLocalApplicationLaunchConfigurationDelegate.0"), new String[]{vm.getName()}), null, IJavaLaunchConfigurationConstants.ERR_VM_RUNNER_DOES_NOT_EXIST);  //$NON-NLS-1$
 			} else {
-				abort(MessageFormat.format(LaunchingMessages.getString("JavaLocalApplicationLaunchConfigurationDelegate.JRE_{0}_does_not_support_run_mode._2"), new String[]{vm.getName()}), null, IJavaLaunchConfigurationConstants.ERR_VM_RUNNER_DOES_NOT_EXIST);  //$NON-NLS-1$
+				abort(MessageFormat.format(LaunchingMessages.getString("JavaLocalApplicationLaunchConfigurationDelegate.1"), new String[]{vm.getName()}), null, IJavaLaunchConfigurationConstants.ERR_VM_RUNNER_DOES_NOT_EXIST);  //$NON-NLS-1$
 			}
 		}
 
diff --git a/org.eclipse.jdt.launching/launching/org/eclipse/jdt/internal/launching/LaunchingMessages.properties b/org.eclipse.jdt.launching/launching/org/eclipse/jdt/internal/launching/LaunchingMessages.properties
index 026c6c8..545702a 100644
--- a/org.eclipse.jdt.launching/launching/org/eclipse/jdt/internal/launching/LaunchingMessages.properties
+++ b/org.eclipse.jdt.launching/launching/org/eclipse/jdt/internal/launching/LaunchingMessages.properties
@@ -33,7 +33,8 @@
 
 JavaLocalApplicationLaunchConfigurationDelegate.Verifying_launch_attributes..._1=Verifying launch attributes...
 JavaLocalApplicationLaunchConfigurationDelegate.Creating_source_locator..._2=Creating source locator...
-JavaLocalApplicationLaunchConfigurationDelegate.0=JRE {0} does not support {1} mode.
+JavaLocalApplicationLaunchConfigurationDelegate.0=JRE {0} does not support debug mode.
+JavaLocalApplicationLaunchConfigurationDelegate.1=JRE {0} does not support run mode.
 
 JavaProjectSourceContainerTypeDelegate.5=Missing required <name> attribute in Java project source container memento.
 JavaProjectSourceContainerTypeDelegate.6=Missing required <javaProject> attribute in Java project source container memento.