Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: fb45b30dd21121b095c118631dc2355b1e3f1df1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/*
 * Copyright (C) 2021, Thomas Wolf <thomas.wolf@paranor.ch> and others
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Distribution License v. 1.0 which is available at
 * https://www.eclipse.org/org/documents/edl-v10.php.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */
package org.eclipse.jgit.internal.transport.sshd.agent.connector;

import org.eclipse.jgit.nls.NLS;
import org.eclipse.jgit.nls.TranslationBundle;

/**
 * Externalized text messages for localization.
 */
public final class Texts extends TranslationBundle {

	/**
	 * Get an instance of this translation bundle.
	 *
	 * @return an instance of this translation bundle
	 */
	public static Texts get() {
		return NLS.getBundleFor(Texts.class);
	}

	// @formatter:off
	/***/ public String errCloseMappedFile;
	/***/ public String errLastError;
	/***/ public String errReleaseSharedMemory;
	/***/ public String errUnknown;
	/***/ public String logErrorLoadLibrary;
	/***/ public String msgCloseFailed;
	/***/ public String msgConnectFailed;
	/***/ public String msgNoMappedFile;
	/***/ public String msgNoSharedMemory;
	/***/ public String msgPageantUnavailable;
	/***/ public String msgReadFailed;
	/***/ public String msgSendFailed;
	/***/ public String msgSendFailed2;
	/***/ public String msgSharedMemoryFailed;
	/***/ public String msgShortRead;
	/***/ public String pageant;
	/***/ public String unixDefaultAgent;

}

Back to the top