1 /*
2 * Copyright (C) 2014, SAP AG 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.transport.http.apache.internal;
12
13 import org.eclipse.jgit.nls.NLS;
14 import org.eclipse.jgit.nls.TranslationBundle;
15
16 /**
17 * Translation bundle for archivers
18 */
19 public class HttpApacheText extends TranslationBundle {
20 /**
21 * Get an instance of this translation bundle.
22 *
23 * @return an instance of this translation bundle
24 */
25 public static HttpApacheText get() {
26 return NLS.getBundleFor(HttpApacheText.class);
27 }
28
29 // @formatter:off
30 /***/ public String unexpectedSSLContextException;
31 }