aboutsummaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit.http.server/src/org/eclipse/jgit/http/server/HttpServerText.java
blob: 5939920fbfed4255623af7136f7c6fa3e427e5e8 (plain)
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
/*
 * Copyright (C) 2010, Sasa Zivkov <sasa.zivkov@sap.com> and others
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Distribution License v. 1.0 which is available at
 * https://www.eclipse.org/org/documents/edl-v10.php.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

package org.eclipse.jgit.http.server;

import org.eclipse.jgit.nls.NLS;
import org.eclipse.jgit.nls.TranslationBundle;

/**
 * Translation bundle for JGit http server
 */
@SuppressWarnings("MissingSummary")
public class HttpServerText extends TranslationBundle {

	/**
	 * Get an instance of this translation bundle
	 *
	 * @return an instance of this translation bundle
	 */
	public static HttpServerText get() {
		return NLS.getBundleFor(HttpServerText.class);
	}

	// @formatter:off
	/***/ public String alreadyInitializedByContainer;
	/***/ public String cannotGetLengthOf;
	/***/ public String clientHas175ChunkedEncodingBug;
	/***/ public String encodingNotSupportedByThisLibrary;
	/***/ public String expectedRepositoryAttribute;
	/***/ public String filterMustNotBeNull;
	/***/ public String internalErrorDuringReceivePack;
	/***/ public String internalErrorDuringUploadPack;
	/***/ public String internalServerError;
	/***/ public String internalServerErrorRequestAttributeWasAlreadySet;
	/***/ public String invalidBoolean;
	/***/ public String invalidIndex;
	/***/ public String invalidRegexGroup;
	/***/ public String noResolverAvailable;
	/***/ public String parameterNotSet;
	/***/ public String pathForParamNotFound;
	/***/ public String pathNotSupported;
	/***/ public String receivedCorruptObject;
	/***/ public String repositoryAccessForbidden;
	/***/ public String repositoryNotFound;
	/***/ public String servletAlreadyInitialized;
	/***/ public String servletMustNotBeNull;
	/***/ public String servletWasAlreadyBound;
	/***/ public String unexpectedeOFOn;
}