Skip to main content
summaryrefslogtreecommitdiffstats
blob: 1d6379d6f2c0fd47a8e882486c64514858aae3eb (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
/*******************************************************************************
 * Copyright (c) 2004, 2015 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.search;

import org.eclipse.osgi.util.NLS;

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

	public static String CreateQueryFromSearchAction_Name_of_query_to_be_added_to_the_X;

	public static String RepositorySearchResult_Task_search_X_matches;

	public static String RepositorySearchResult_Task_search_1_match;

	public static String RepositorySearchResultView_Add_to_X_Category;

	public static String RepositorySearchResultView_Create_Query_from_Search_;

	public static String RepositorySearchResultView_Filter_Completed_Tasks;

	public static String RepositorySearchResultView_Group_By_Owner;

	public static String RepositorySearchResultView_Open_in_Editor;

	public static String RepositorySearchResultView_Open_Search_with_Browser_Label;

	public static String RepositorySearchResultView_Refine_Search_;

	public static String SearchHitCollector_Querying_Repository_;

	public static String SearchHitCollector_Repository_connector_could_not_be_found;

	public static String SearchHitCollector_Search_failed;

	public static String SearchHitCollector_Search_cancelled;

	public static String SearchResultsLabelProvider_OF;

	public static String SearchResultTreeContentProvider_Complete;

	public static String SearchResultTreeContentProvider_Incomplete;

	public static String SearchResultTreeContentProvider__unknown_;

	public static String SearchResultSortAction_Sort_Label;
}

Back to the top