Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 9f3a5a071a26f90b12eea9a5151163d8a2c1e9d1 (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
/*******************************************************************************
 * Copyright (C) 2018, Max Hohenegger <eclipse@hohenegger.eu>
 *
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *******************************************************************************/
package org.eclipse.egit.gitflow.internal;

import org.eclipse.osgi.util.NLS;

/**
 * Visible strings for the GitFlow plugin.
 */
public class CoreText extends NLS {

	/**
	 * Do not in-line this into the static initializer as the
	 * "Find Broken Externalized Strings" tool will not be able to find the
	 * corresponding bundle file.
	 */
	private static final String BUNDLE_NAME = "org.eclipse.egit.gitflow.internal.coretext"; //$NON-NLS-1$

	/** */

	static {
		initializeMessages(BUNDLE_NAME, CoreText.class);
	}

	/** */
	public static String AbstractFeatureOperation_notOnAFeautreBranch;

	/** */
	public static String AbstractHotfixOperation_notOnAHotfixBranch;

	/** */
	public static String AbstractReleaseOperation_notOnAReleaseBranch;

	/** */
	public static String AbstractVersionFinishOperation_tagNameExists;

	/** */
	public static String FeatureListOperation_unableToParse;

	/** */
	public static String pushToRemoteFailed;

	/** */
	public static String unableToStoreGitConfig;

	/** */
	public static String FeatureRebaseOperation_notOnAFeatureBranch;

	/** */
	public static String FeatureStartOperation_andBranchMayBeFastForwarded;

	/** */
	public static String FeatureStartOperation_andLocalDevelopIsAheadOfOrigin;

	/** */
	public static String FeatureStartOperation_divergingDevelop;

	/** */
	public static String FeatureStartOperation_notOn;

	/** */
	public static String FeatureTrackOperation_checkoutReturned;

	/** */
	public static String FeatureTrackOperation_localBranchExists;

	/** */
	public static String FeatureTrackOperation_unableToStoreGitConfig;

	/** */
	public static String GitFlowOperation_branchMissing;

	/** */
	public static String GitFlowOperation_branchNotFound;

	/** */
	public static String GitFlowOperation_unableToCheckout;

	/** */
	public static String GitFlowOperation_unableToMerge;

	/** */
	public static String GitFlowRepository_gitFlowRepositoryMayNotBeEmpty;

	/** */
	public static String HotfixFinishOperation_hotfix;

	/** */
	public static String HotfixFinishOperation_mergeFromHotfixToMasterFailed;

	/** */
	public static String InitOperation_initialCommit;

	/** */
	public static String InitOperation_localMasterDoesNotExist;

	/** */
	public static String ReleaseFinishOperation_releaseOf;

	/** */
	public static String ReleaseStartOperation_notOn;

	/** */
	public static String ReleaseStartOperation_releaseNameAlreadyExists;

	/** */
	public static String StartOperation_unableToFindCommitFor;

}

Back to the top