Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 45c5a3a2dd88255a9a2b0fb2d1f39bb3ede68545 (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
/****************************************************************************
 * 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.presence.collab.ui;

import org.eclipse.osgi.util.NLS;

/**
 * 
 */
public class Messages extends NLS {
	private static final String BUNDLE_NAME = "org.eclipse.ecf.internal.presence.collab.ui.messages"; //$NON-NLS-1$
	public static String URLShare_ENTER_URL_DEFAULT_URL;
	public static String URLShare_ENTER_URL_DIALOG_TEXT;
	public static String URLShare_ERROR_BROWSER_MESSAGE;
	public static String URLShare_ERROR_BROWSER_TITLE;
	public static String Share_ERROR_RECEIVE_MESSAGE;
	public static String Share_ERROR_RECEIVE_TITLE;
	public static String Share_ERROR_SEND_MESSAGE;
	public static String Share_ERROR_SEND_TITLE;
	public static String URLShare_EXCEPTION_LOG_BROWSER;
	public static String Share_EXCEPTION_LOG_MESSAGE;
	public static String Share_EXCEPTION_LOG_SEND;
	public static String URLShare_INPUT_URL_DIALOG_TITLE;
	public static String URLShare_RECEIVED_URL_MESSAGE;
	public static String URLShare_RECEIVED_URL_TITLE;
	public static String StartURLShareAndViewShare_ERROR_CONTAINERMANAGER_NOT_ACCESSIBLE;
	public static String StartURLShareAndViewShare_STATUS_URLSHARE_NOT_CREATED;
	public static String URLShareRosterContributionItem_ADD_URL_SHARE_MENU_TEXT;
	public static String URLShareRosterContributionItem_BROWSER_ICON;
	public static String URLShareRosterContributionItem_REMOVE_URL_SHARE_MENU_TEXT;
	public static String URLShareRosterEntryContributionItem_SEND_URL_MENU_TEXT;
	public static String ViewShare_EXCEPTION_WORKBENCHPAGE_NULL;
	public static String ViewShare_VIEWSHARE_ERROR_DIALOG_MESSAGE;
	public static String ViewShare_VIEWSHARE_ERROR_DIALOG_TITLE;
	public static String ViewShare_VIEWSHARE_ERROR_LOG_MESSAGE;
	public static String ViewShare_VIEWSHARE_RECEIVED_REQUEST_MESSAGE;
	public static String ViewShare_VIEWSHARE_RECEIVED_REQUEST_TITLE;
	public static String ViewShare_VIEWSHARE_VIEW_REQUEST_DIALOG_MESSAGE;
	public static String ViewShare_VIEWSHARE_VIEW_REQUEST_DIALOG_TITLE;
	public static String ViewShareRosterContributionItem_VIEWSHARE_LISTENER_MENU_ADD_TEXT;
	public static String ViewShareRosterContributionItem_VIEWSHARE_LISTENER_MENU_REMOVE_TEXT;
	public static String ViewShareRosterEntryContributionItem_VIEWSHARE_MENU_TEXT;
	public static String ConsoleShare_RosterContributionItem_CONSOLE_ICON;

	public static String ConsoleShare_STACKSHARE_ERROR_DIALOG_TITLE;
	public static String ConsoleShare_STACKSHARE_ERROR_DIALOG_MESSAGE;
	public static String ConsoleShare_EXCEPTION_WP_NOT_AVAILABLE;
	public static String ConsoleShare_EXCEPTION_WW_NOT_AVAILABLE;
	public static String ConsoleShare_STACK_TRACE_FROM_MESSAGE;
	public static String ConsoleShare_STACK_TRACE_CONTENT;
	public static String ConsoleShare_STACK_TRACE_FROM_TITLE;
	public static String ConsoleShare_STACKSHARE_ERROR_LOG_MESSAGE;
	public static String ConsoleShare_RosterEntryMenu;

	static {
		// initialize resource bundle
		NLS.initializeMessages(BUNDLE_NAME, Messages.class);
	}

	private Messages() {
	}
}

Back to the top