1 /* 2 * Copyright (C) 2020, Michael Dardis <git@md-5.net> 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.internal.transport.jsch; 11 12 import org.eclipse.jgit.nls.NLS; 13 import org.eclipse.jgit.nls.TranslationBundle; 14 15 /** 16 * Externalized text messages for localization. 17 */ 18 public final class JSchText extends TranslationBundle { 19 20 /** 21 * Get an instance of this translation bundle. 22 * 23 * @return an instance of this translation bundle 24 */ 25 public static JSchText get() { 26 return NLS.getBundleFor(JSchText.class); 27 } 28 29 // @formatter:off 30 /***/ public String connectionFailed; 31 /***/ public String sshUserNameError; 32 /***/ public String transportSSHRetryInterrupt; 33 /***/ public String unknownHost; 34 35 }