Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/internal')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/LaunchConfigurationsMessages.java7
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/LaunchConfigurationsMessages.properties8
2 files changed, 13 insertions, 2 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 db766f6da..92a7edbd3 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, 2018 IBM Corporation and others.
+ * Copyright (c) 2000, 2019 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
@@ -12,6 +12,7 @@
* IBM - Initial API and implementation
* Ian Pun & Lucas Bullen (Red Hat Inc.) - Bug 518652
* Axel Richard (Obeo) - Bug 41353 - Launch configurations prototypes
+ * Jens Reimann (jreimann@redhat.com) - add copy & paste support
*******************************************************************************/
package org.eclipse.debug.internal.ui.launchConfigurations;
@@ -188,6 +189,10 @@ public class LaunchConfigurationsMessages extends NLS {
public static String EnvironmentTab_20;
public static String EnvironmentTab_AttributeLabel_AppendEnvironmentVariables;
public static String EnvironmentTab_AttributeLabel_EnvironmentVariables;
+ public static String EnvironmentTab_Copy;
+ public static String EnvironmentTab_Paste;
+ public static String EnvironmentTab_Paste_Overwrite_Title;
+ public static String EnvironmentTab_Paste_Overwrite_Message;
public static String PrototypeTab_Prototype_1;
public static String PrototypeTab_Label_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 8c54c53ff..68194d4dd 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
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2000, 2018 IBM Corporation and others.
+# Copyright (c) 2000, 2019 IBM Corporation and others.
#
# This program and the accompanying materials
# are made available under the terms of the Eclipse Public License 2.0
@@ -12,6 +12,7 @@
# IBM Corporation - initial API and implementation
# Ian Pun & Lucas Bullen (Red Hat Inc.) - Bug 518652
# Axel Richard (Obeo) - Bug 41353 - Launch configurations prototypes
+# Jens Reimann (jreimann@redhat.com) - add copy & paste support
###############################################################################
CommonTab__Browse_6=&Browse...
@@ -198,6 +199,11 @@ EnvironmentTab_Remove_6=Rem&ove
EnvironmentTab_Environment_7=Environment
EnvironmentTab_8=&Name:
EnvironmentTab_9=&Value:
+EnvironmentTab_Copy=&Copy
+EnvironmentTab_Paste=&Paste
+EnvironmentTab_Paste_Overwrite_Title=Overwrite variables?
+EnvironmentTab_Paste_Overwrite_Message=Pasting will overwrite the following variables: {0}
+
# This externalized string is used in the select environment variables dialog's label provider.
# Each item in the dialog is a single environment variable.

Back to the top