Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 56d59bb540f825e9f96ab0f2fd129f8aec77660a (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
/*
 * Copyright (C) 2015, Matthias Sohn <matthias.sohn@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.lfs.server.internal;

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

/**
 * Translation bundle for JGit LFS server
 */
public class LfsServerText extends TranslationBundle {

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

	// @formatter:off
	/***/ public String failedToCalcSignature;
	/***/ public String invalidPathInfo;
	/***/ public String objectNotFound;
	/***/ public String undefinedS3AccessKey;
	/***/ public String undefinedS3Bucket;
	/***/ public String undefinedS3Region;
	/***/ public String undefinedS3Hostname;
	/***/ public String undefinedS3SecretKey;
	/***/ public String undefinedS3StorageClass;
	/***/ public String unparsableEndpoint;
	/***/ public String unsupportedOperation;
	/***/ public String unsupportedUtf8;
}

Back to the top