xref: /JGit/org.eclipse.jgit.lfs/src/org/eclipse/jgit/lfs/internal/LfsText.java (revision 5c5f7c6b146b24f2bd4afae1902df85ad6e57ea3)
1 /*
2  * Copyright (C) 2015, Matthias Sohn <matthias.sohn@sap.com> and others
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Distribution License v. 1.0 which is available at
6  * https://www.eclipse.org/org/documents/edl-v10.php.
7  *
8  * SPDX-License-Identifier: BSD-3-Clause
9  */
10 package org.eclipse.jgit.lfs.internal;
11 
12 import org.eclipse.jgit.nls.NLS;
13 import org.eclipse.jgit.nls.TranslationBundle;
14 
15 /**
16  * Translation bundle for JGit LFS server
17  */
18 public class LfsText extends TranslationBundle {
19 
20 	/**
21 	 * Get an instance of this translation bundle.
22 	 *
23 	 * @return an instance of this translation bundle
24 	 */
get()25 	public static LfsText get() {
26 		return NLS.getBundleFor(LfsText.class);
27 	}
28 
29 	// @formatter:off
30 	/***/ public String corruptLongObject;
31 	/***/ public String inconsistentMediafileLength;
32 	/***/ public String inconsistentContentLength;
33 	/***/ public String incorrectLONG_OBJECT_ID_LENGTH;
34 	/***/ public String invalidLongId;
35 	/***/ public String invalidLongIdLength;
36 	/***/ public String lfsUnavailable;
37 	/***/ public String protocolError;
38 	/***/ public String requiredHashFunctionNotAvailable;
39 	/***/ public String repositoryNotFound;
40 	/***/ public String repositoryReadOnly;
41 	/***/ public String lfsUnathorized;
42 	/***/ public String lfsFailedToGetRepository;
43 	/***/ public String lfsNoDownloadUrl;
44 	/***/ public String serverFailure;
45 	/***/ public String wrongAmoutOfDataReceived;
46 	/***/ public String userConfigInvalid;
47 	/***/ public String missingLocalObject;
48 }
49