mirror of
https://codeberg.org/PGPainless/sop-java.git
synced 2024-11-25 16:42:07 +01:00
Fix format strings
This commit is contained in:
parent
2135455cda
commit
6d5005660c
2 changed files with 40 additions and 40 deletions
|
@ -119,39 +119,39 @@ sop.version.usage.option.backend=Print information about the cryptographic backe
|
|||
sop.help.usage.header=Display usage information for the specified subcommand
|
||||
## Malformed Input
|
||||
sop.error.input.malformed_session_key=Session keys are expected in the format 'ALGONUM:HEXKEY'.
|
||||
sop.error.input.not_a_private_key=Input '{0}' does not contain an OpenPGP private key.
|
||||
sop.error.input.not_a_certificate=Input '{0}' does not contain an OpenPGP certificate.
|
||||
sop.error.input.not_a_signature=Input '{0}' does not contain an OpenPGP signature.
|
||||
sop.error.input.not_a_private_key=Input '%s' does not contain an OpenPGP private key.
|
||||
sop.error.input.not_a_certificate=Input '%s' does not contain an OpenPGP certificate.
|
||||
sop.error.input.not_a_signature=Input '%s' does not contain an OpenPGP signature.
|
||||
sop.error.input.malformed_not_after=Invalid date string supplied as value of '--not-after'.
|
||||
sop.error.input.malformed_not_before=Invalid date string supplied as value of '--not-before'.
|
||||
sop.error.input.stdin_not_a_message=Standard Input appears not to contain a valid OpenPGP message.
|
||||
sop.error.input.stdin_not_a_private_key=Standard Input appears not to contain a valid OpenPGP secret key.
|
||||
sop.error.input.stdin_not_openpgp_data=Standard Input appears not to contain valid OpenPGP data
|
||||
## Indirect Data Types
|
||||
sop.error.indirect_data_type.ambiguous_filename=File name '{0}' is ambiguous. File with the same name exists on the filesystem.
|
||||
sop.error.indirect_data_type.environment_variable_not_set=Environment variable '{0}' not set.
|
||||
sop.error.indirect_data_type.environment_variable_empty=Environment variable '{0}' is empty.
|
||||
sop.error.indirect_data_type.input_file_does_not_exist=Input file '{0}' does not exist.
|
||||
sop.error.indirect_data_type.input_not_a_file=Input file '{0}' is not a file.
|
||||
sop.error.indirect_data_type.output_file_already_exists=Output file '{0}' already exists.
|
||||
sop.error.indirect_data_type.output_file_cannot_be_created=Output file '{0}' cannot be created.
|
||||
sop.error.indirect_data_type.ambiguous_filename=File name '%s' is ambiguous. File with the same name exists on the filesystem.
|
||||
sop.error.indirect_data_type.environment_variable_not_set=Environment variable '%s' not set.
|
||||
sop.error.indirect_data_type.environment_variable_empty=Environment variable '%s' is empty.
|
||||
sop.error.indirect_data_type.input_file_does_not_exist=Input file '%s' does not exist.
|
||||
sop.error.indirect_data_type.input_not_a_file=Input file '%s' is not a file.
|
||||
sop.error.indirect_data_type.output_file_already_exists=Output file '%s' already exists.
|
||||
sop.error.indirect_data_type.output_file_cannot_be_created=Output file '%s' cannot be created.
|
||||
sop.error.indirect_data_type.illegal_use_of_env_designator=Special designator '@ENV:' cannot be used for output.
|
||||
sop.error.indirect_data_type.designator_env_not_supported=Special designator '@ENV' is not supported.
|
||||
sop.error.indirect_data_type.designator_fd_not_supported=Special designator '@FD' is not supported.
|
||||
## Runtime Errors
|
||||
sop.error.runtime.no_backend_set=No SOP backend set.
|
||||
sop.error.runtime.cannot_unlock_key=Cannot unlock password-protected secret key from input '{0}'.
|
||||
sop.error.runtime.key_uses_unsupported_asymmetric_algorithm=Secret key from input '{0}' uses an unsupported asymmetric algorithm.
|
||||
sop.error.runtime.cert_uses_unsupported_asymmetric_algorithm=Certificate from input '{0}' uses an unsupported asymmetric algorithm.
|
||||
sop.error.runtime.key_cannot_sign=Secret key from input '{0}' cannot sign.
|
||||
sop.error.runtime.cert_cannot_encrypt=Certificate from input '{0}' cannot encrypt.
|
||||
sop.error.runtime.cannot_unlock_key=Cannot unlock password-protected secret key from input '%s'.
|
||||
sop.error.runtime.key_uses_unsupported_asymmetric_algorithm=Secret key from input '%s' uses an unsupported asymmetric algorithm.
|
||||
sop.error.runtime.cert_uses_unsupported_asymmetric_algorithm=Certificate from input '%s' uses an unsupported asymmetric algorithm.
|
||||
sop.error.runtime.key_cannot_sign=Secret key from input '%s' cannot sign.
|
||||
sop.error.runtime.cert_cannot_encrypt=Certificate from input '%s' cannot encrypt.
|
||||
sop.error.runtime.no_session_key_extracted=Session key not extracted. Feature potentially not supported.
|
||||
sop.error.runtime.no_verifiable_signature_found=No verifiable signature found.
|
||||
## Usage errors
|
||||
sop.error.usage.password_or_cert_required=At least one password file or cert file required for encryption.
|
||||
sop.error.usage.argument_required=Argument '{0}' is required.
|
||||
sop.error.usage.parameter_required=Parameter '{0}' is required.
|
||||
sop.error.usage.option_requires_other_option=Option '{0}' is requested, but no option {1} was provided.
|
||||
sop.error.usage.argument_required=Argument '%s' is required.
|
||||
sop.error.usage.parameter_required=Parameter '%s' is required.
|
||||
sop.error.usage.option_requires_other_option=Option '%s' is requested, but no option %s was provided.
|
||||
# Feature Support
|
||||
sop.error.feature_support.subcommand_not_supported=Subcommand '{0}' is not supported.
|
||||
sop.error.feature_support.option_not_supported=Option '{0}' not supported.
|
||||
sop.error.feature_support.subcommand_not_supported=Subcommand '%s' is not supported.
|
||||
sop.error.feature_support.option_not_supported=Option '%s' not supported.
|
|
@ -118,39 +118,39 @@ sop.version.usage.option.backend=Gebe Informationen
|
|||
sop.help.usage.header=Zeige Nutzungshilfen für den angegebenen Unterbefehl an
|
||||
## Malformed Input
|
||||
sop.error.input.malformed_session_key=Nachrichtenschlüssel werden im folgenden Format erwartet: 'ALGONUM:HEXKEY'
|
||||
sop.error.input.not_a_private_key=Eingabe '{0}' enthält keinen privaten OpenPGP Schlüssel.
|
||||
sop.error.input.not_a_certificate=Eingabe '{0}' enthält kein OpenPGP Zertifikat.
|
||||
sop.error.input.not_a_signature=Eingabe '{0}' enthält keine OpenPGP Signatur.
|
||||
sop.error.input.not_a_private_key=Eingabe '%s' enthält keinen privaten OpenPGP Schlüssel.
|
||||
sop.error.input.not_a_certificate=Eingabe '%s' enthält kein OpenPGP Zertifikat.
|
||||
sop.error.input.not_a_signature=Eingabe '%s' enthält keine OpenPGP Signatur.
|
||||
sop.error.input.malformed_not_after=Ungültige Datumszeichenfolge als Wert von '--not-after'.
|
||||
sop.error.input.malformed_not_before=Ungültige Datumszeichenfolge als Wert von '--not-before'.
|
||||
sop.error.input.stdin_not_a_message=Standard-Eingabe enthält scheinbar keine OpenPGP Nachricht.
|
||||
sop.error.input.stdin_not_a_private_key=Standard-Eingabe enthält scheinbar keinen privaten OpenPGP Schlüssel.
|
||||
sop.error.input.stdin_not_openpgp_data=Standard-Eingabe enthält scheinbar keine gültigen OpenPGP Daten.
|
||||
## Indirect Data Types
|
||||
sop.error.indirect_data_type.ambiguous_filename=Dateiname '{0}' ist mehrdeutig. Datei mit dem selben Namen existiert im Dateisystem.
|
||||
sop.error.indirect_data_type.environment_variable_not_set=Umgebungsvariable '{0}' nicht gesetzt.
|
||||
sop.error.indirect_data_type.environment_variable_empty=Umgebungsvariable '{0}' ist leer.
|
||||
sop.error.indirect_data_type.input_file_does_not_exist=Quelldatei '{0}' existiert nicht.
|
||||
sop.error.indirect_data_type.input_not_a_file=Quelldatei '{0}' ist keine Datei.
|
||||
sop.error.indirect_data_type.output_file_already_exists=Zieldatei '{0}' existiert bereits.
|
||||
sop.error.indirect_data_type.output_file_cannot_be_created=Zieldatei '{0}' kann nicht erstellt werden.
|
||||
sop.error.indirect_data_type.ambiguous_filename=Dateiname '%s' ist mehrdeutig. Datei mit dem selben Namen existiert im Dateisystem.
|
||||
sop.error.indirect_data_type.environment_variable_not_set=Umgebungsvariable '%s' nicht gesetzt.
|
||||
sop.error.indirect_data_type.environment_variable_empty=Umgebungsvariable '%s' ist leer.
|
||||
sop.error.indirect_data_type.input_file_does_not_exist=Quelldatei '%s' existiert nicht.
|
||||
sop.error.indirect_data_type.input_not_a_file=Quelldatei '%s' ist keine Datei.
|
||||
sop.error.indirect_data_type.output_file_already_exists=Zieldatei '%s' existiert bereits.
|
||||
sop.error.indirect_data_type.output_file_cannot_be_created=Zieldatei '%s' kann nicht erstellt werden.
|
||||
sop.error.indirect_data_type.illegal_use_of_env_designator=Besonderer Bezeichner-Präfix '@ENV:' darf nicht für Ausgaben verwendet werden.
|
||||
sop.error.indirect_data_type.designator_env_not_supported=Besonderer Bezeichner-Präfix '@ENV' wird nicht unterstützt.
|
||||
sop.error.indirect_data_type.designator_fd_not_supported=Besonderer Bezeichner-Präfix '@FD' wird nicht unterstützt.
|
||||
## Runtime Errors
|
||||
sop.error.runtime.no_backend_set=Kein SOP Backend gesetzt.
|
||||
sop.error.runtime.cannot_unlock_key=Gesperrter Schlüssel aus Eingabe '{0}' kann nicht entsperrt werden.
|
||||
sop.error.runtime.key_uses_unsupported_asymmetric_algorithm=Privater Schlüssel aus Eingabe '{0}' nutzt nicht unterstütztem asymmetrischen Algorithmus.
|
||||
sop.error.runtime.cert_uses_unsupported_asymmetric_algorithm=Zertifikat aus Eingabe '{0}' nutzt nicht unterstütztem asymmetrischen Algorithmus.
|
||||
sop.error.runtime.key_cannot_sign=Privater Schlüssel aus Eingabe '{0}' kann nicht signieren.
|
||||
sop.error.runtime.cert_cannot_encrypt=Zertifikat aus Eingabe '{0}' kann nicht verschlüsseln.
|
||||
sop.error.runtime.cannot_unlock_key=Gesperrter Schlüssel aus Eingabe '%s' kann nicht entsperrt werden.
|
||||
sop.error.runtime.key_uses_unsupported_asymmetric_algorithm=Privater Schlüssel aus Eingabe '%s' nutzt nicht unterstütztem asymmetrischen Algorithmus.
|
||||
sop.error.runtime.cert_uses_unsupported_asymmetric_algorithm=Zertifikat aus Eingabe '%s' nutzt nicht unterstütztem asymmetrischen Algorithmus.
|
||||
sop.error.runtime.key_cannot_sign=Privater Schlüssel aus Eingabe '%s' kann nicht signieren.
|
||||
sop.error.runtime.cert_cannot_encrypt=Zertifikat aus Eingabe '%s' kann nicht verschlüsseln.
|
||||
sop.error.runtime.no_session_key_extracted=Nachrichtenschlüssel nicht extrahiert. Funktion wird möglicherweise nicht unterstützt.
|
||||
sop.error.runtime.no_verifiable_signature_found=Keine gültigen Signaturen gefunden.
|
||||
## Usage errors
|
||||
sop.error.usage.password_or_cert_required=Es wird mindestens ein Passwort und/oder Zertifikat zur Verschlüsselung benötigt.
|
||||
sop.error.usage.argument_required=Argument '{0}' ist erforderlich.
|
||||
sop.error.usage.parameter_required=Parameter '{0}' ist erforderlich.
|
||||
sop.error.usage.option_requires_other_option=Option '{0}' wurde angegeben, jedoch kein Wert für {1}.
|
||||
sop.error.usage.argument_required=Argument '%s' ist erforderlich.
|
||||
sop.error.usage.parameter_required=Parameter '%s' ist erforderlich.
|
||||
sop.error.usage.option_requires_other_option=Option '%s' wurde angegeben, jedoch kein Wert für %s.
|
||||
# Feature Support
|
||||
sop.error.feature_support.subcommand_not_supported=Unterbefehl '{0}' wird nicht unterstützt.
|
||||
sop.error.feature_support.option_not_supported=Option '{0}' wird nicht unterstützt.
|
||||
sop.error.feature_support.subcommand_not_supported=Unterbefehl '%s' wird nicht unterstützt.
|
||||
sop.error.feature_support.option_not_supported=Option '%s' wird nicht unterstützt.
|
Loading…
Reference in a new issue