Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNoopur Gupta2017-06-05 06:45:10 +0000
committerNoopur Gupta2017-06-05 09:04:36 +0000
commit85be97aaec58f1eeee9fbcccbf34840dade15c6e (patch)
treeacba6aac36fa0994899cf0835bd3ab333c9ce684 /org.eclipse.debug.core
parent10af30015e5d557d296ad7575686b36723d12eee (diff)
downloadeclipse.platform.debug-85be97aaec58f1eeee9fbcccbf34840dade15c6e.tar.gz
eclipse.platform.debug-85be97aaec58f1eeee9fbcccbf34840dade15c6e.tar.xz
eclipse.platform.debug-85be97aaec58f1eeee9fbcccbf34840dade15c6e.zip
Bug 517740: [Launch Group] Externalisation of strings broke Group Launch
UI Change-Id: I2acb3933ccc9ccfe2a90fd73014dc1ef0ecffb3d Signed-off-by: Noopur Gupta <noopur_gupta@in.ibm.com>
Diffstat (limited to 'org.eclipse.debug.core')
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/internal/core/DebugCoreMessages.java2
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/internal/core/DebugCoreMessages.properties2
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/internal/core/groups/GroupLaunchElement.java2
3 files changed, 3 insertions, 3 deletions
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/internal/core/DebugCoreMessages.java b/org.eclipse.debug.core/core/org/eclipse/debug/internal/core/DebugCoreMessages.java
index 6b402a8b2..c93185478 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/internal/core/DebugCoreMessages.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/internal/core/DebugCoreMessages.java
@@ -43,7 +43,7 @@ public class DebugCoreMessages extends NLS {
public static String GroupLaunchConfigurationDelegate_None;
public static String GroupLaunchConfigurationDelegate_Wait_until_terminated;
public static String GroupLaunchConfigurationDelegate_Waiting_for_termination;
- public static String GroupLaunchElement_inherit_launch_mode;
+ public static String GroupLaunchElement_inherit_launch_mode_label;
public static String GroupLaunchElement_outputRegexp;
public static String LaunchConfiguration_0;
public static String LaunchConfiguration_11;
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/internal/core/DebugCoreMessages.properties b/org.eclipse.debug.core/core/org/eclipse/debug/internal/core/DebugCoreMessages.properties
index b2a918a61..988bdef8a 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/internal/core/DebugCoreMessages.properties
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/internal/core/DebugCoreMessages.properties
@@ -37,7 +37,7 @@ GroupLaunchConfigurationDelegate_mode_run=run
GroupLaunchConfigurationDelegate_None=None
GroupLaunchConfigurationDelegate_Wait_until_terminated=Wait until terminated
GroupLaunchConfigurationDelegate_Waiting_for_termination=Waiting for termination of ''{0}''
-GroupLaunchElement_inherit_launch_mode=inherit
+GroupLaunchElement_inherit_launch_mode_label=Inherit
GroupLaunchElement_outputRegexp=Wait for console output (regexp)
SystemPropertyResolver_0=System property not specified
InputStreamMonitor_label=Input Stream Monitor
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/internal/core/groups/GroupLaunchElement.java b/org.eclipse.debug.core/core/org/eclipse/debug/internal/core/groups/GroupLaunchElement.java
index 4c3eed666..edc9c2f47 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/internal/core/groups/GroupLaunchElement.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/internal/core/groups/GroupLaunchElement.java
@@ -21,7 +21,7 @@ import org.eclipse.debug.internal.core.DebugCoreMessages;
* @since 3.11
*/
public class GroupLaunchElement {
- public static final String MODE_INHERIT = DebugCoreMessages.GroupLaunchElement_inherit_launch_mode;
+ public static final String MODE_INHERIT = "inherit"; //$NON-NLS-1$
/**
* Describes the possible post-launch actions for each

Back to the top