You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

BCText.java 922B

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