Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: efc17b1989117f6d0772de3b18944c56e088d2a2 (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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
/*******************************************************************************
 * Copyright (c) 2013, 2018 Red Hat Inc. and others.
 * 
 * This program and the accompanying materials are made
 * available under the terms of the Eclipse Public License 2.0
 * which is available at https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * 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;
    /****/
    public static String CreaterepoNewWizardPageTwo_tooltipID;
    /****/
    public static String CreaterepoNewWizardPageTwo_tooltipName;
    /****/
    public static String CreaterepoNewWizardPageTwo_tooltipURL;

    // 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_jobCancelled;
    /****/
    public static String Createrepo_errorExecuting;
    /****/
    public static String Createrepo_errorTryingToFindCommand;
    /****/
    public static String Createrepo_errorCommandNotFound;
    /****/
    public static String Createrepo_errorWrongVersionCreaterepo;
    /****/
    public static String Createrepo_errorWrongVersionYum;
    /****/
    public static String Createrepo_errorCancelled;
    /****/
    public static String Createrepo_errorPasingVersion;

    // 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;

    // CreaterepoPreferencePage
    /****/
    public static String CreaterepoPreferencePage_description;
    /****/
    public static String CreaterepoPreferencePage_generalGroupLabel;
    /****/
    public static String CreaterepoPreferencePage_booleanChecksumName;
    /****/
    public static String CreaterepoPreferencePage_booleanGenerateSQLDB;
    /****/
    public static String CreaterepoPreferencePage_booleanIgnoreSymlinks;
    /****/
    public static String CreaterepoPreferencePage_booleanPrettyXML;
    /****/
    public static String CreaterepoPreferencePage_numWorkers;
    /****/
    public static String CreaterepoPreferencePage_updateGroupLabel;
    /****/
    public static String CreaterepoPreferencePage_booleanCheckTS;
    /****/
    public static String CreaterepoPreferencePage_checkTSNote;
    /****/
    public static String CreaterepoPreferencePage_changelogGroupLabel;
    /****/
    public static String CreaterepoPreferencePage_numChangelogLimit;
    /****/
    public static String CreaterepoPreferencePage_checksumGroupLabel;
    /****/
    public static String CreaterepoPreferencePage_compressionGroupLabel;

    // CreaterepoGeneralPropertyPage
    /****/
    public static String CreaterepoGeneralPropertyPage_projectSettings;
    /****/
    public static String CreaterepoGeneralPropertyPage_workspaceSettings;

    // CreaterepoDeltaPropertyPage
    /****/
    public static String CreaterepoDeltaPropertyPage_description;
    /****/
    public static String CreaterepoDeltaPropertyPage_groupLabel;
    /****/
    public static String CreaterepoDeltaPropertyPage_groupDirectoryLabel;
    /****/
    public static String CreaterepoDeltaPropertyPage_booleanEnableLabel;
    /****/
    public static String CreaterepoDeltaPropertyPage_maxNumberOfDeltas;
    /****/
    public static String CreaterepoDeltaPropertyPage_maxDeltaSize;
    /****/
    public static String CreaterepoDeltaPropertyPage_errorInvalidText;
    /****/
    public static String CreaterepoDeltaPropertyPage_directoryDescription;
    /****/
    public static String CreaterepoDeltaPropertyPage_directoryDialogLabel;

    // ImportRPMDropListener
    /****/
    public static String ImportRPMDropListener_errorCopyingFileToProject;

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

}

Back to the top