Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSarika Sinha2018-05-07 09:20:03 +0000
committerSarika Sinha2018-05-07 09:20:03 +0000
commit3d920a7a364fdc3fa02da2c12f056ca4375525ce (patch)
tree5fb03f885241a694bf8754085a6aa0830b45750b /org.eclipse.debug.ui
parent46583c3593ba9da5fe382828e0440b238382fc31 (diff)
downloadeclipse.platform.debug-3d920a7a364fdc3fa02da2c12f056ca4375525ce.tar.gz
eclipse.platform.debug-3d920a7a364fdc3fa02da2c12f056ca4375525ce.tar.xz
eclipse.platform.debug-3d920a7a364fdc3fa02da2c12f056ca4375525ce.zip
Diffstat (limited to 'org.eclipse.debug.ui')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/LaunchConfigurationsMessages.java5
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/LaunchConfigurationsMessages.properties3
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/ui/PrototypeTab.java6
3 files changed, 10 insertions, 4 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/LaunchConfigurationsMessages.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/LaunchConfigurationsMessages.java
index 684d3ba97..a64e0bd0f 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/LaunchConfigurationsMessages.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/LaunchConfigurationsMessages.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2017 IBM Corporation and others.
+ * Copyright (c) 2000, 2018 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -187,6 +187,9 @@ public class LaunchConfigurationsMessages extends NLS {
public static String PrototypeTab_Reset_Menu_Action_9;
public static String PrototypeTab_Explanation_Label_10;
public static String PrototypeTab_Explanation_Label_11;
+ public static String PrototypeTab_Atrribute_label;
+ public static String PrototypeTab_Modified_label;
+ public static String PrototypeTab_Property_Value_label;
public static String FavoritesDialog_1;
public static String FavoritesDialog_2;
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/LaunchConfigurationsMessages.properties b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/LaunchConfigurationsMessages.properties
index a5d736e33..abb90ef93 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/LaunchConfigurationsMessages.properties
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/LaunchConfigurationsMessages.properties
@@ -214,6 +214,9 @@ PrototypeTab_Reset_Button_Label_8=&Reset
PrototypeTab_Reset_Menu_Action_9=Reset selected checked attribute(s) with prototype value(s)
PrototypeTab_Explanation_Label_10=- Values of checked attributes from prototype are applied to associated launch configurations.
PrototypeTab_Explanation_Label_11=- Values of unchecked attributes from prototype are not applied to associated launch configurations.
+PrototypeTab_Atrribute_label=Attribute
+PrototypeTab_Modified_label=Modified
+PrototypeTab_Property_Value_label=Prototype Value
FavoritesDialog_1=Organize {0} Favorites
FavoritesDialog_2=Fa&vorites:
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/PrototypeTab.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/PrototypeTab.java
index 155c968fe..9d26b679a 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/PrototypeTab.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/PrototypeTab.java
@@ -82,11 +82,11 @@ public class PrototypeTab extends AbstractLaunchConfigurationTab {
private static final String PROTOTYPE_TAB_ID = "org.eclipse.debug.ui.prototypeTab"; //$NON-NLS-1$
- private static final String ATTRIBUTE = "Attribute"; //$NON-NLS-1$
+ private static final String ATTRIBUTE = LaunchConfigurationsMessages.PrototypeTab_Atrribute_label;
- private static final String MODIFIED = "Modified"; //$NON-NLS-1$
+ private static final String MODIFIED = LaunchConfigurationsMessages.PrototypeTab_Modified_label;
- private static final String PROTOTYPE_VALUE = "Prototype Value"; //$NON-NLS-1$
+ private static final String PROTOTYPE_VALUE = LaunchConfigurationsMessages.PrototypeTab_Property_Value_label;
private ILaunchConfiguration fSelectedLaunchConfiguration;

Back to the top