Skip to main content
summaryrefslogtreecommitdiffstats
blob: f5e2bbeaf0df17080c85440b3d121c367b0ed862 (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
/*******************************************************************************
 * Copyright (c) 2004, 2008 Tasktop Technologies 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:
 *     Tasktop Technologies - initial API and implementation
 *******************************************************************************/

package org.eclipse.mylyn.internal.tasks.ui.util;

import org.eclipse.osgi.util.NLS;

public class Messages extends NLS {
	private static final String BUNDLE_NAME = "org.eclipse.mylyn.internal.tasks.ui.util.messages"; //$NON-NLS-1$

	static {
		// load message values from bundle file
		reloadMessages();
	}

	public static void reloadMessages() {
		NLS.initializeMessages(BUNDLE_NAME, Messages.class);
	}

	public static String AttachmentUtil_Attachments_not_supported_by_connector;

	public static String AttachmentUtil_The_context_is_empty;

	public static String AttachmentUtil_Downloading_attachment;

	public static String AttachmentUtil_Mylyn_Information;

	public static String CopyAttachmentToClipboardJob_Copy_Attachment_to_Clipboard;

	public static String CopyAttachmentToClipboardJob_Copying_Attachment_to_Clipboard;

	public static String DownloadAttachmentJob_Copy_Attachment_to_Clipboard;

	public static String DownloadAttachmentJob_Downloading_Attachment;

	public static String TaskListElementImporter_Could_not_read_task_list;

	public static String TaskListElementImporter__failed_;

	public static String TaskListElementImporter_Mylyn_task_list_corrupt;

	public static String TaskListElementImporter_Unable_to_read_the_Mylyn_task_list;

	public static String TasksUiInternal_already_exists;

	public static String TasksUiInternal_Configuration_Refresh_Failed;

	public static String TasksUiInternal_Creating_task;

	public static String TasksUiInternal_Create_Task;

	public static String TasksUiInternal_Edit_Repository_Query;

	public static String TasksUiInternal_INPORT_TASK;

	public static String TasksUiInternal_The_new_task_will_be_added_to_the_X_container;

	public static String TasksUiInternal_Query_Synchronization_Failed;

	public static String TasksUiInternal_Task;

	public static String TasksUiInternal_Task_Synchronization_Failed;

	public static String TasksUiMenus_Copy_Contents;

	public static String TasksUiMenus_Copy_URL;

	public static String TasksUiMenus_File_exists_;

	public static String TasksUiMenus_Overwrite_existing_file_;

	public static String TasksUiMenus_Save_;
}

Back to the top