1 /* 2 * Copyright (C) 2010, Sasa Zivkov <sasa.zivkov@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 11 package org.eclipse.jgit.http.server; 12 13 import org.eclipse.jgit.nls.NLS; 14 import org.eclipse.jgit.nls.TranslationBundle; 15 16 /** 17 * Translation bundle for JGit http server 18 */ 19 public class HttpServerText extends TranslationBundle { 20 21 /** 22 * Get an instance of this translation bundle 23 * 24 * @return an instance of this translation bundle 25 */ get()26 public static HttpServerText get() { 27 return NLS.getBundleFor(HttpServerText.class); 28 } 29 30 // @formatter:off 31 /***/ public String alreadyInitializedByContainer; 32 /***/ public String cannotGetLengthOf; 33 /***/ public String clientHas175ChunkedEncodingBug; 34 /***/ public String encodingNotSupportedByThisLibrary; 35 /***/ public String expectedRepositoryAttribute; 36 /***/ public String filterMustNotBeNull; 37 /***/ public String internalErrorDuringReceivePack; 38 /***/ public String internalErrorDuringUploadPack; 39 /***/ public String internalServerError; 40 /***/ public String internalServerErrorRequestAttributeWasAlreadySet; 41 /***/ public String invalidBoolean; 42 /***/ public String invalidIndex; 43 /***/ public String invalidRegexGroup; 44 /***/ public String noResolverAvailable; 45 /***/ public String parameterNotSet; 46 /***/ public String pathForParamNotFound; 47 /***/ public String pathNotSupported; 48 /***/ public String receivedCorruptObject; 49 /***/ public String repositoryAccessForbidden; 50 /***/ public String repositoryNotFound; 51 /***/ public String servletAlreadyInitialized; 52 /***/ public String servletMustNotBeNull; 53 /***/ public String servletWasAlreadyBound; 54 /***/ public String unexpectedeOFOn; 55 } 56