Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Rennie2014-08-04 07:37:31 +0000
committerDani Megert2014-08-04 07:37:31 +0000
commitb63f6ef06f975d6b72d6466f604e5c70eac912a6 (patch)
tree5b103414261182fc57200ee5e2a9e9ba94bf2ab7
parentd7d2f47cead410f4ec06ec66c745ffd920d1ee48 (diff)
downloadeclipse.platform.ua-b63f6ef06f975d6b72d6466f604e5c70eac912a6.tar.gz
eclipse.platform.ua-b63f6ef06f975d6b72d6466f604e5c70eac912a6.tar.xz
eclipse.platform.ua-b63f6ef06f975d6b72d6466f604e5c70eac912a6.zip
Fixed bug 408346: Don't use strings from internal NLS filesI20140804-2000I20140804-0800
-rw-r--r--org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/Messages.java3
-rw-r--r--org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/Messages.properties3
-rw-r--r--org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/presentations/IntroLaunchBar.java4
3 files changed, 6 insertions, 4 deletions
diff --git a/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/Messages.java b/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/Messages.java
index f6d8bc137..3b07660d5 100644
--- a/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/Messages.java
+++ b/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/Messages.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2004, 2009 IBM Corporation and others.
+ * Copyright (c) 2004, 2014 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
@@ -49,6 +49,7 @@ public class Messages extends NLS {
public static String IntroLaunchBar_close_label;
public static String IntroLaunchBar_close_tooltip;
public static String IntroLaunchBar_restore_tooltip;
+ public static String IntroLaunchBar_welcome;
// Misc
// -------
diff --git a/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/Messages.properties b/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/Messages.properties
index 969253c1c..b71d207be 100644
--- a/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/Messages.properties
+++ b/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/Messages.properties
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2000, 2009 IBM Corporation and others.
+# Copyright (c) 2000, 2014 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
@@ -49,6 +49,7 @@ StaticHTML_welcome = Welcome...
IntroLaunchBar_close_label=Close
IntroLaunchBar_close_tooltip=Close
IntroLaunchBar_restore_tooltip=Restore Welcome
+IntroLaunchBar_welcome=&Welcome
# Misc
# -------
diff --git a/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/presentations/IntroLaunchBar.java b/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/presentations/IntroLaunchBar.java
index 381f6ab0f..bcd404014 100644
--- a/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/presentations/IntroLaunchBar.java
+++ b/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/presentations/IntroLaunchBar.java
@@ -1,5 +1,5 @@
/***************************************************************************************************
- * Copyright (c) 2005, 2008 IBM Corporation and others. All rights reserved. This program and the
+ * Copyright (c) 2005, 2014 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
* http://www.eclipse.org/legal/epl-v10.html
@@ -563,7 +563,7 @@ public class IntroLaunchBar implements IWindowTrim {
* @see org.eclipse.ui.internal.IWindowTrim#getDisplayName()
*/
public String getDisplayName() {
- return WorkbenchMessages.TrimCommon_IntroBar_TrimName;
+ return Messages.IntroLaunchBar_welcome;
}
/*

Back to the top