Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: f0a4f2d8ba57927feeb3e871868e622108ef2f6f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/*******************************************************************************
 * Copyright (c) 2000, 2011 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
 *
 * Contributors:
 *     IBM - Initial API and implementation
 *     Pawel Piech - Wind River - adapted to use in Debug view
 *******************************************************************************/
package org.eclipse.debug.internal.ui.views.launch;

import org.eclipse.osgi.util.NLS;

public class LaunchViewMessages extends NLS {
	private static final String BUNDLE_NAME = "org.eclipse.debug.internal.ui.views.launch.LaunchViewMessages";//$NON-NLS-1$

	public static String Breadcrumb_NoActiveContext;
    public static String LaunchView_ViewModeMenu_label;
    public static String DebugViewModeAction_Auto_label;
    public static String DebugViewModeAction_Auto_tooltip;
    public static String DebugViewModeAction_Auto_description;
    public static String DebugViewModeAction_Full_label;
    public static String DebugViewModeAction_Full_tooltip;
    public static String DebugViewModeAction_Full_description;
    public static String DebugViewModeAction_Compact_label;
    public static String DebugViewModeAction_Compact_tooltip;
    public static String DebugViewModeAction_Compact_description;

    public static String BreadcrumbDropDownAutoExpandAction_label;
    public static String BreadcrumbDropDownAutoExpandAction_tooltip;
    public static String BreadcrumbDropDownAutoExpandAction_description;

    public static String DebugToolBarAction_View_label;
    public static String DebugToolBarAction_View_tooltip;
    public static String DebugToolBarAction_View_description;

	static {
		// load message values from bundle file
		NLS.initializeMessages(BUNDLE_NAME, LaunchViewMessages.class);
	}
}

Back to the top