Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: c3c22cb1e53fcf2f6182a25421bc1a44abf23b47 (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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/****************************************************************************
 * Copyright (c) 2004 Composent, Inc. 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:
 *    Composent, Inc. - initial API and implementation
 *****************************************************************************/

package org.eclipse.ecf.internal.ui;

import org.eclipse.osgi.util.NLS;

public class Messages extends NLS {

	private static final String BUNDLE_NAME = "org.eclipse.ecf.internal.ui.messages";//$NON-NLS-1$

	public static String AbstractConnectWizardPage_CONNECT_ID_LABEL;

	public static String AbstractConnectWizardPage_CONNECTID_ERROR_STATUS;

	public static String AbstractConnectWizardPage_LOGIN_AUTOMATICALLY_LABEL;

	public static String AbstractConnectWizardPage_PASSWORD_LABEL;

	public static String AbstractConnectWizardPage_PROVIDER_TITLE;

	public static String AbstractConnectWizardPage_USERNAME_LABEL;

	public static String AsynchContainerConnectAction_EXCEPTION_CONNECT;

	public static String AsynchContainerConnectAction_JOB_NAME;

	public static String AsynchContainerConnectAction_MONITOR_BEGIN_TASK;

	public static String ConfigurationWizardSelectionPage_CONFIGRATION_ERROR_TITLE;

	public static String ConfigurationWizardSelectionPage_CONFIGURATION_ERROR_MESSAGE;

	public static String ConfigurationWizardSelectionPage_CONFIGURATION_WIZARD_PAGE_NAME;

	public static String ConfigurationWizardSelectionPage_ERROR_MESSAGE;

	public static String ConfigurationWizardSelectionPage_SELECT;

	public static String ConfigurationWizardSelectionPage_UNCATEGORIZED_WIZARD_CATEGORY;

	public static String ConfigurationWizardSelectionPage_WIZARD_CATEGORY;

	public static String ContainerConnectErrorDialog_ERROR_MESSAGE;

	public static String ContainerConnectErrorDialog_ERROR_TITLE;

	public static String ContainerCreateErrorDialog_CREATE_CONTAINER_ERROR_MESSAGE;

	public static String ContainerCreateErrorDialog_CREATE_CONTAINER_ERROR_TITLE;

	public static String Select;

	public static String ConfigurationWizard_title;

	public static String ConnectWizard_title;

	public static String RosterView_ReceiveFile_title;

	public static String RosterView_ReceiveFile_message;

	public static String RosterView_ReceiveFile_filesavetitle;

	public static String RosterView_ReceiveFile_acceptexception_title;

	public static String RosterView_ReceiveFile_acceptexception_message;

	public static String RosterView_SendFile_title;

	public static String RosterView_SendFile_response_title;

	public static String RosterView_SendFile_response_message;

	public static String RosterView_SendFile_requestexception_title;

	public static String RosterView_SendFile_requestexception_message;

	public static String RosterView_SendIM_menutext;

	public static String RosterView_SendFile_menutext;

	public static String AbstractURIHyperlink_EXCEPTION_HYPERLINK;

	public static String SelectProviderAction_WARNING_CONTAINER_TYPE_DESCRIPTION_NOT_FOUND;
	public static String SelectProviderAction_selectProviderDialog_title;
	public static String SelectProviderAction_selectProviderDialog_message;

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

}

Back to the top