Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: bb859b8618771d47ad50da785705be053725cf7b (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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
/*******************************************************************************
 * Copyright (c) 2013 Red Hat 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:
 *     Neil Guzman - initial API and implementation
 *******************************************************************************/
package org.eclipse.linuxtools.internal.rpm.createrepo;

import org.eclipse.osgi.util.NLS;

/**
 * Messages displayed across the plugin.
 */
public final class Messages {

	private static final String BUNDLE_NAME = "org.eclipse.linuxtools.internal.rpm.createrepo.messages"; //$NON-NLS-1$

	// CreaterepoWizard
	/****/
	public static String CreaterepoWizard_errorCreatingProject;
	/****/
	public static String CreaterepoWizard_openFileOnCreation;
	/****/
	public static String CreaterepoWizard_errorOpeningNewlyCreatedFile;

	// CreaterepoNewWizardPageOne
	/****/
	public static String CreaterepoNewWizardPageOne_wizardPageName;
	/****/
	public static String CreaterepoNewWizardPageOne_wizardPageTitle;
	/****/
	public static String CreaterepoNewWizardPageOne_wizardPageDescription;

	// CreaterepoNewWizardPageTwo
	/****/
	public static String CreaterepoNewWizardPageTwo_wizardPageName;
	/****/
	public static String CreaterepoNewWizardPageTwo_wizardPageTitle;
	/****/
	public static String CreaterepoNewWizardPageTwo_wizardPageDescription;
	/****/
	public static String CreaterepoNewWizardPageTwo_labelID;
	/****/
	public static String CreaterepoNewWizardPageTwo_labelName;
	/****/
	public static String CreaterepoNewWizardPageTwo_labelURL;
	/****/
	public static String CreaterepoNewWizardPageTwo_errorID;
	/****/
	public static String CreaterepoNewWizardPageTwo_errorName;
	/****/
	public static String CreaterepoNewWizardPageTwo_errorURL;

	// CreaterepoProject
	/****/
	public static String CreaterepoProject_executeCreaterepo;
	/****/
	public static String CreaterepoProject_errorGettingFile;
	/****/
	public static String CreaterepoProject_consoleName;

	// Createrepo
	/****/
	public static String Createrepo_jobName;
	/****/
	public static String Createrepo_errorExecuting;

	// RepoFormEditor
	/****/
	public static String RepoFormEditor_errorInitializingForm;
	/****/
	public static String RepoFormEditor_errorInitializingProject;

	// ImportRPMsPage
	/****/
	public static String ImportRPMsPage_title;
	/****/
	public static String ImportRPMsPage_formHeaderText;
	/****/
	public static String ImportRPMsPage_sectionTitle;
	/****/
	public static String ImportRPMsPage_sectionInstruction;
	/****/
	public static String ImportRPMsPage_buttonImportRPMs;
	/****/
	public static String ImportRPMsPage_buttonRemoveRPMs;
	/****/
	public static String ImportRPMsPage_buttonCreateRepo;
	/****/
	public static String ImportRPMsPage_errorRefreshingTree;
	/****/
	public static String ImportRPMsPage_errorResourceChanged;

	// ImportRPMsPage$ImportButtonListener
	/****/
	public static String ImportButtonListener_error;

	// ImportRPMsPage$RemoveButtonListener
	/****/
	public static String RemoveButtonListener_error;

	// MetadataPage
	/****/
	public static String MetadataPage_title;
	/****/
	public static String MetadataPage_formHeaderText;
	/****/
	public static String MetadataPage_sectionTitleRevision;
	/****/
	public static String MetadataPage_sectionInstructionRevision;
	/****/
	public static String MetadataPage_labelRevision;
	/****/
	public static String MetadataPage_sectionTitleTags;
	/****/
	public static String MetadataPage_sectionInstructionTags;
	/****/
	public static String MetadataPage_labelTags;
	/****/
	public static String MetadataPage_buttonAddTag;
	/****/
	public static String MetadataPage_buttonEditTag;
	/****/
	public static String MetadataPage_buttonRemoveTag;
	/****/
	public static String MetadataPage_errorSavingPreferences;

	// CreaterepoResourceChangeListener
	/****/
	public static String CreaterepoResourceChangeListener_errorGettingResource;

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

}

Back to the top