Rewrite egit clone wizard UI
[egit/zawir.git] / org.spearce.egit.core / src / org / spearce / egit / core / CoreText.java
blob9aef8150c3932b23e2f2b8232be38ea4eedee1ac
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.core;
19 import org.eclipse.osgi.util.NLS;
21 /**
22 * Possibly Translated strings for the Egit plugin.
24 public class CoreText extends NLS {
25 /** */
26 public static String AssumeUnchangedOperation_failed;
28 /** */
29 public static String AssumeUnchangedOperation_adding;
31 /** */
32 public static String UpdateOperation_updating;
34 /** */
35 public static String UpdateOperation_failed;
37 /** */
38 public static String ConnectProviderOperation_connecting;
40 /** */
41 public static String ConnectProviderOperation_creating;
43 /** */
44 public static String ConnectProviderOperation_recordingMapping;
46 /** */
47 public static String ConnectProviderOperation_updatingCache;
49 /** */
50 public static String DisconnectProviderOperation_disconnecting;
52 /** */
53 public static String AddOperation_adding;
55 /** */
56 public static String AddOperation_failed;
58 /** */
59 public static String UntrackOperation_adding;
61 /** */
62 public static String UntrackOperation_failed;
64 /** */
65 public static String GitProjectData_lazyResolveFailed;
67 /** */
68 public static String GitProjectData_mappedResourceGone;
70 /** */
71 public static String GitProjectData_cannotReadHEAD;
73 /** */
74 public static String GitProjectData_missing;
76 /** */
77 public static String GitProjectData_saveFailed;
79 /** */
80 public static String GitProjectData_notifyChangedFailed;
82 /** */
83 public static String RepositoryFinder_finding;
85 /** */
86 public static String MoveDeleteHook_cannotModifyFolder;
88 /** */
89 public static String MoveDeleteHook_operationError;
91 /** */
92 public static String Error_CanonicalFile;
94 /** */
95 public static String CheckpointJob_writing;
97 /** */
98 public static String CheckpointJob_name;
100 /** */
101 public static String CheckpointJob_failed;
103 /** */
104 public static String CloneOperation_title;
106 static {
107 final Class c = CoreText.class;
108 initializeMessages(c.getPackage().getName() + ".coretext", c);