]> source.dussan.org Git - jgit.git/blob
6b662615466e537940f2185c07762d01d8f4cb4f
[jgit.git] /
1 /*
2  * Copyright (C) 2021, Thomas Wolf <thomas.wolf@paranor.ch> 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.sshd.agent.connector;
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 Texts 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 Texts get() {
26                 return NLS.getBundleFor(Texts.class);
27         }
28
29         // @formatter:off
30         /***/ public String errCloseMappedFile;
31         /***/ public String errLastError;
32         /***/ public String errReleaseSharedMemory;
33         /***/ public String errUnknown;
34         /***/ public String logErrorLoadLibrary;
35         /***/ public String msgCloseFailed;
36         /***/ public String msgConnectFailed;
37         /***/ public String msgNoMappedFile;
38         /***/ public String msgNoSharedMemory;
39         /***/ public String msgPageantUnavailable;
40         /***/ public String msgReadFailed;
41         /***/ public String msgSendFailed;
42         /***/ public String msgSendFailed2;
43         /***/ public String msgSharedMemoryFailed;
44         /***/ public String msgShortRead;
45
46 }