View Javadoc
1   package org.eclipse.jgit.gpg.bc.internal;
2   
3   import org.eclipse.jgit.nls.NLS;
4   import org.eclipse.jgit.nls.TranslationBundle;
5   
6   /**
7    * Externalized text messages for localization.
8    */
9   public final class BCText extends TranslationBundle {
10  
11  	/**
12  	 * Get an instance of this translation bundle.
13  	 *
14  	 * @return an instance of this translation bundle
15  	 */
16  	public static BCText get() {
17  		return NLS.getBundleFor(BCText.class);
18  	}
19  
20  	// @formatter:off
21  	/***/ public String credentialPassphrase;
22  	/***/ public String gpgFailedToParseSecretKey;
23  	/***/ public String gpgNoCredentialsProvider;
24  	/***/ public String gpgNoKeyring;
25  	/***/ public String gpgNoKeyInLegacySecring;
26  	/***/ public String gpgNoPublicKeyFound;
27  	/***/ public String gpgNoSecretKeyForPublicKey;
28  	/***/ public String gpgNotASigningKey;
29  	/***/ public String gpgKeyInfo;
30  	/***/ public String gpgSigningCancelled;
31  	/***/ public String unableToSignCommitNoSecretKey;
32  
33  }