Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 79e8f73d8bb9c005d0f734824219c22b023f4b68 (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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/*******************************************************************************
 * Copyright (c) 2000, 2006 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
 *******************************************************************************/
package org.eclipse.ui.internal.console;

import org.eclipse.osgi.util.NLS;

public class ConsoleMessages extends NLS {
	private static final String BUNDLE_NAME = "org.eclipse.ui.internal.console.ConsoleMessages";//$NON-NLS-1$

	public static String AbstractConsole_0;

	public static String ConsoleDropDownAction_0;
	public static String ConsoleDropDownAction_1;

	public static String ConsoleManager_0;

	public static String ConsoleManager_consoleContentChangeJob;

	public static String ConsoleView_0;

	public static String PinConsoleAction_0;
	public static String PinConsoleAction_1;

	public static String ClearOutputAction_title;
	public static String ClearOutputAction_toolTipText;

	public static String TextViewerGotoLineAction_Enter_line_number__8;
	public static String TextViewerGotoLineAction_Exceptions_occurred_attempt_to_go_to_line_2;
	public static String TextViewerGotoLineAction_Go_to__Line____Ctrl_L_4;
	public static String TextViewerGotoLineAction_Go_To_Line_1;
	public static String TextViewerGotoLineAction_Line_number_out_of_range_1;
	public static String TextViewerGotoLineAction_Not_a_number_2;

	public static String ScrollLockAction_0;
	public static String ScrollLockAction_1;
	public static String FollowHyperlinkAction_0;
	public static String FollowHyperlinkAction_1;
	public static String OpenConsoleAction_0;
	public static String OpenConsoleAction_1;
	public static String CloseConsoleAction_0;
	public static String CloseConsoleAction_1;

    public static String TextConsolePage_SelectAllDescrip;
    public static String TextConsolePage_SelectAllText;
    public static String TextConsolePage_CutText;
    public static String TextConsolePage_CutDescrip;
    public static String TextConsolePage_CopyText;
    public static String TextConsolePage_CopyDescrip;
    public static String TextConsolePage_PasteText;
    public static String TextConsolePage_PasteDescrip;
    
	static {
		// load message values from bundle file
		NLS.initializeMessages(BUNDLE_NAME, ConsoleMessages.class);
	}

    public static String PatternMatchListenerExtension_3;

    public static String PatternMatchListenerExtension_4;

    public static String PatternMatchListenerExtension_5;
}

Back to the top