Skip to main content
summaryrefslogtreecommitdiffstats
blob: 99d46675e02a51e457e2fe8a6c0d45b5ded5cab7 (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
/*******************************************************************************
 * Copyright (c) 2004, 2009 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.bugzilla.ui.editor;

import org.eclipse.osgi.util.NLS;

public class Messages extends NLS {
	private static final String BUNDLE_NAME = "org.eclipse.mylyn.internal.bugzilla.ui.editor.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 BugzillaPeoplePart_People;

	public static String BugzillaPeoplePart__Select_to_remove_;

	public static String BugzillaPlanningEditorPart_Current_Estimate;

	public static String BugzillaPlanningEditorPart_Team_Planning;

	public static String BugzillaResponseDetailDialog_Titel;

	public static String BugzillaResponseDetailDialog_Bug_Line;

	public static String BugzillaResponseDetailDialog_Action_Line;

	public static String BugzillaResponseDetailDialog_Email_Line;

	public static String BugzillaTaskEditorPage_Changes_Submitted_Message;

	public static String BugzillaTaskEditorPage_Please_enter_a_description_before_submitting;

	public static String BugzillaTaskEditorPage_Please_enter_a_short_summary_before_submitting;

	public static String BugzillaTaskEditorPage_Please_select_a_component_before_submitting;

	public static String BugzillaTaskEditorPage_Please_enter_a_bugid_for_duplicate_of_before_submitting;

	public static String BugzillaVotesEditor_Show_votes;

	public static String BugzillaVotesEditor_Vote;
}

Back to the top