Rewrite egit clone wizard UI
[egit/zawir.git] / org.spearce.egit.ui / src / org / spearce / egit / ui / UIText.java
blob57bf19594d4456696117eded50dfb4994b5b91b0
1 /*
2 * Copyright (C) 2006 Shawn Pearce <spearce@spearce.org>
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License, version 2.1, as published by the Free Software Foundation.
8 * This library is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * Lesser General Public License for more details.
13 * You should have received a copy of the GNU Lesser General Public
14 * License along with this library; if not, write to the Free Software
15 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
17 package org.spearce.egit.ui;
19 import org.eclipse.osgi.util.NLS;
21 /**
22 * Text resources for the plugin. Strings here can be i18n-ed simpler and avoid
23 * duplicating strings.
25 public class UIText extends NLS {
26 /** */
27 public static String SharingWizard_windowTitle;
29 /** */
30 public static String SharingWizard_failed;
32 /** */
33 public static String GenericOperationFailed;
35 /** */
36 public static String ExistingOrNewPage_title;
38 /** */
39 public static String ExistingOrNewPage_description;
41 /** */
42 public static String ExistingOrNewPage_groupHeader;
44 /** */
45 public static String ExistingOrNewPage_useExisting;
47 /** */
48 public static String ExistingOrNewPage_createNew;
50 /** */
51 public static String GitCloneWizard_title;
53 /** */
54 public static String GitCloneWizard_jobName;
56 /** */
57 public static String GitCloneWizard_failed;
59 /** */
60 public static String CloneSourcePage_title;
62 /** */
63 public static String CloneSourcePage_description;
65 /** */
66 public static String CloneSourcePage_groupLocation;
68 /** */
69 public static String CloneSourcePage_groupAuthentication;
71 /** */
72 public static String CloneSourcePage_groupConnection;
74 /** */
75 public static String CloneSourcePage_promptURI;
77 /** */
78 public static String CloneSourcePage_promptHost;
80 /** */
81 public static String CloneSourcePage_promptPath;
83 /** */
84 public static String CloneSourcePage_promptUser;
86 /** */
87 public static String CloneSourcePage_promptPassword;
89 /** */
90 public static String CloneSourcePage_promptScheme;
92 /** */
93 public static String CloneSourcePage_promptPort;
95 /** */
96 public static String CloneSourcePage_fieldRequired;
98 /** */
99 public static String CloneSourcePage_fieldNotSupported;
101 /** */
102 public static String CloneSourcePage_fileNotFound;
104 /** */
105 public static String CloneSourcePage_internalError;
107 /** */
108 public static String SourceBranchPage_branchList;
110 /** */
111 public static String SourceBranchPage_selectAll;
113 /** */
114 public static String SourceBranchPage_selectNone;
116 /** */
117 public static String SourceBranchPage_errorBranchRequired;
119 /** */
120 public static String CloneDestinationPage_title;
122 /** */
123 public static String CloneDestinationPage_description;
125 /** */
126 public static String CloneDestinationPage_groupDestination;
128 /** */
129 public static String CloneDestinationPage_groupConfiguration;
131 /** */
132 public static String CloneDestinationPage_promptDirectory;
134 /** */
135 public static String CloneDestinationPage_promptInitialBranch;
137 /** */
138 public static String CloneDestinationPage_promptRemoteName;
140 /** */
141 public static String CloneDestinationPage_fieldRequired;
143 /** */
144 public static String CloneDestinationPage_browseButton;
146 /** */
147 public static String CloneDestinationPage_errorExists;
149 /** */
150 public static String Decorator_failedLazyLoading;
152 /** */
153 public static String QuickDiff_failedLoading;
155 /** */
156 public static String ResourceHistory_toggleCommentWrap;
158 /** */
159 public static String ResourceHistory_toggleRevDetail;
161 /** */
162 public static String ResourceHistory_toggleRevComment;
164 /** */
165 public static String ResourceHistory_toggleTooltips;
167 /** */
168 public static String HistoryPage_authorColumn;
170 /** */
171 public static String HistoryPage_dateColumn;
173 /** */
174 public static String HistoryPage_pathnameColumn;
176 /** */
177 public static String HistoryPage_refreshJob;
179 /** */
180 public static String HistoryPage_findbar_findTooltip;
182 /** */
183 public static String HistoryPage_findbar_find;
185 /** */
186 public static String HistoryPage_findbar_next;
188 /** */
189 public static String HistoryPage_findbar_previous;
191 /** */
192 public static String HistoryPage_findbar_ignorecase;
194 /** */
195 public static String HistoryPage_findbar_commit;
197 /** */
198 public static String HistoryPage_findbar_comments;
200 /** */
201 public static String HistoryPage_findbar_author;
203 /** */
204 public static String HistoryPage_findbar_committer;
206 /** */
207 public static String HistoryPage_findbar_changeto_commit;
209 /** */
210 public static String HistoryPage_findbar_changeto_comments;
212 /** */
213 public static String HistoryPage_findbar_changeto_author;
215 /** */
216 public static String HistoryPage_findbar_changeto_committer;
218 /** */
219 public static String HistoryPage_findbar_exceeded;
221 /** */
222 public static String HistoryPage_findbar_notFound;
224 /** */
225 public static String HistoryPreferencePage_title;
227 /** */
228 public static String WindowCachePreferencePage_title;
230 /** */
231 public static String WindowCachePreferencePage_packedGitWindowSize;
233 /** */
234 public static String WindowCachePreferencePage_packedGitLimit;
236 /** */
237 public static String WindowCachePreferencePage_deltaBaseCacheLimit;
239 /** */
240 public static String WindowCachePreferencePage_packedGitMMAP;
242 /** */
243 public static String WindowCachePreferencePage_note;
245 /** */
246 public static String WindowCachePreferencePage_needRestart;
248 static {
249 initializeMessages(UIText.class.getPackage().getName() + ".uitext",
250 UIText.class);