mirror of
https://codeberg.org/PGPainless/sop-java.git
synced 2025-09-10 02:39:45 +02:00
Rename resource bundles and name resources after options/parameters
This commit is contained in:
parent
7de94f1815
commit
dc5f11469f
56 changed files with 229 additions and 269 deletions
|
@ -1,23 +0,0 @@
|
|||
# SPDX-FileCopyrightText: 2022 Paul Schaub <vanitasvitae@fsfe.org>
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
usage.header=Decrypt a message from standard input
|
||||
usage.option.session_key_out=Can be used to learn the session key on successful decryption
|
||||
usage.option.with_session_key.0=Symmetric message key (session key).
|
||||
usage.option.with_session_key.1=Enables decryption of the "CIPHERTEXT" using the session key directly against the "SEIPD" packet.
|
||||
usage.option.with_session_key.2=Is an INDIRECT data type (e.g. file, environment variable, file descriptor...)
|
||||
usage.option.with_password.0=Symmetric passphrase to decrypt the message with.
|
||||
usage.option.with_password.1=Enables decryption based on any "SKESK" packets in the "CIPHERTEXT".
|
||||
usage.option.with_password_2=Is an INDIRECT data type (e.g. file, environment variable, file descriptor...)
|
||||
usage.option.verify_out=Emits signature verification status to the designated output
|
||||
usage.option.certs=Certificates for signature verification
|
||||
usage.option.not_before.0=ISO-8601 formatted UTC date (e.g. '2020-11-23T16:35Z)
|
||||
usage.option.not_before.1=Reject signatures with a creation date not in range.
|
||||
usage.option.not_before.2=Defaults to beginning of time ('-').
|
||||
usage.option.not_after.0=ISO-8601 formatted UTC date (e.g. '2020-11-23T16:35Z)
|
||||
usage.option.not_after.1=Reject signatures with a creation date not in range.
|
||||
usage.option.not_after.2=Defaults to current system time ('now').
|
||||
usage.option.not_after.3=Accepts special value '-' for end of time.
|
||||
usage.option.with_key_password.0=Passphrase to unlock the secret key(s).
|
||||
usage.option.with_key_password.1=Is an INDIRECT data type (e.g. file, environment variable, file descriptor...).
|
||||
usage.param.keys=Secret keys to attempt decryption with
|
|
@ -1,23 +0,0 @@
|
|||
# SPDX-FileCopyrightText: 2022 Paul Schaub <vanitasvitae@fsfe.org>
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
usage.header=Entschlüssle eine Nachricht von Standard-Eingabe
|
||||
usage.option.session_key_out=Extrahiere den Nachrichtenschlüssel nach erfolgreicher Entschlüsselung
|
||||
usage.option.with_session_key.0=Symmetrischer Nachrichtenschlüssel (Sitzungsschlüssel).
|
||||
usage.option.with_session_key.1=Ermöglicht direkte Entschlüsselung des im "CIPHERTEXT" enhaltenen "SEIPD" Paketes mithilfe des Nachrichtenschlüssels.
|
||||
usage.option.with_session_key.2=Ist INDIREKTER Datentyp (z.B.. Datei, Umgebungsvariable, Dateideskriptor...).
|
||||
usage.option.with_password.0=Symmetrisches Passwort zur Entschlüsselung der Nachricht.
|
||||
usage.option.with_password.1=Ermöglicht Entschlüsselung basierend auf im "CIPHERTEXT" enthaltenen "SKESK" Paketen.
|
||||
usage.option.with_password.2=Ist INDIREKTER Datentyp (z.B.. Datei, Umgebungsvariable, Dateideskriptor...).
|
||||
usage.option.verify_out=Schreibe Status der Signaturprüfung in angegebene Ausgabe
|
||||
usage.option.certs=Zertifikate zur Signaturprüfung
|
||||
usage.option.not_before.0=Nach ISO-8601 formatierter UTC Zeitstempel (z.B.. '2020-11-23T16:35Z)
|
||||
usage.option.not_before.1=Lehne Signaturen mit Erstellungsdatum außerhalb des Gültigkeitsbereichs ab.
|
||||
usage.option.not_before.2=Standardmäßig: Anbeginn der Zeit ('-').
|
||||
usage.option.not_after.0=Nach ISO-8601 formatierter UTC Zeitstempel (z.B.. '2020-11-23T16:35Z)
|
||||
usage.option.not_after.1=Lehne Signaturen mit Erstellungsdatum außerhalb des Gültigkeitsbereichs ab.
|
||||
usage.option.not_after.2=Standardmäßig: Aktueller Zeitunkt ('now').
|
||||
usage.option.not_after.3=Akzeptiert speziellen Wert '-' für das Ende aller Zeiten.
|
||||
usage.option.with_key_password.0=Passwort zum Entsperren der privaten Schlüssel
|
||||
usage.option.with_key_password.1=Ist INDIREKTER Datentyp (z.B.. Datei, Umgebungsvariable, Dateideskriptor...).
|
||||
usage.param.keys=Private Schlüssel zum Entschlüsseln der Nachricht
|
|
@ -1,12 +0,0 @@
|
|||
# SPDX-FileCopyrightText: 2022 Paul Schaub <vanitasvitae@fsfe.org>
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
usage.header=Create a detached signature on the data from standard input
|
||||
usage.option.armor=ASCII armor the output
|
||||
usage.option.as.0=Specify the output format of the signed message
|
||||
usage.option.as.1=Defaults to 'binary'.
|
||||
usage-option.as.2=If '--as=text' and the input data is not valid UTF-8, sign fails with return code 53.
|
||||
usage.option.with_key_password.0=Passphrase to unlock the secret key(s).
|
||||
usage.option.with_key_password.1=Is an INDIRECT data type (e.g. file, environment variable, file descriptor...).
|
||||
usage.option.micalg_out=Emits the digest algorithm used to the specified file in a way that can be used to populate the micalg parameter for the PGP/MIME Content-Type (RFC3156)
|
||||
usage.parameter.keys=Secret keys used for signing
|
|
@ -1,12 +0,0 @@
|
|||
# SPDX-FileCopyrightText: 2022 Paul Schaub <vanitasvitae@fsfe.org>
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
usage.header=Erstelle abgetrennte Signatur über Nachricht von Standard-Eingabe
|
||||
usage.option.armor=Schütze Ausgabe mit ASCII Armor
|
||||
usage.option.as.0=Bestimme Signaturformat der Nachricht.
|
||||
usage.option.as.1=Standardmäßig: 'binary'.
|
||||
usage-option.as.2=Ist die Standard-Eingabe nicht UTF-8 kodiert und '--as=text' gesetzt, so wird inline-sign Fehlercode 53 zurückgeben.
|
||||
usage.option.with_key_password.0=Passwort zum Entsperren des privaten Schlüssels
|
||||
usage.option.with_key_password.1=Ist ein INDIREKTER Datentyp (z.B.. Datei, Umgebungsvariable, Dateideskriptor...).
|
||||
usage.option.micalg_out=Gibt den verwendeten Digest-Algorithmus an die angegebene Ausgabe in einer Form aus, die zum Auffüllen des micalg-Parameters für den PGP/MIME Content-Type (RFC3156) verwendet werden kann.
|
||||
usage.parameter.keys=Private Signaturschlüssel
|
|
@ -1,13 +0,0 @@
|
|||
# SPDX-FileCopyrightText: 2022 Paul Schaub <vanitasvitae@fsfe.org>
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
usage.header=Verify a detached signature over the data from standard input
|
||||
usage.option.not_before.0=ISO-8601 formatted UTC date (e.g. '2020-11-23T16:35Z)
|
||||
usage.option.not_before.1=Reject signatures with a creation date not in range.
|
||||
usage.option.not_before.2=Defaults to beginning of time ("-").
|
||||
usage.option.not_after.1=ISO-8601 formatted UTC date (e.g. '2020-11-23T16:35Z)
|
||||
usage.option.not_after.2=Reject signatures with a creation date not in range.
|
||||
usage.option.not_after.3=Defaults to current system time ("now").\
|
||||
usage.option.not_after.4 = Accepts special value "-" for end of time.
|
||||
usage.parameter.signature=Detached signature
|
||||
usage.parameter.certs=Public key certificates for signature verification
|
|
@ -1,13 +0,0 @@
|
|||
# SPDX-FileCopyrightText: 2022 Paul Schaub <vanitasvitae@fsfe.org>
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
usage.header=Prüfe eine abgetrennte Signatur über eine Nachricht von Standard-Eingabe
|
||||
usage.option.not_before.0=Nach ISO-8601 formatierter UTC Zeitstempel (z.B.. '2020-11-23T16:35Z)
|
||||
usage.option.not_before.1=Lehne Signaturen mit Erstellungsdatum außerhalb des Gültigkeitsbereichs ab.
|
||||
usage.option.not_before.2=Standardmäßig: Anbeginn der Zeit ('-').
|
||||
usage.option.not_after.0=Nach ISO-8601 formatierter UTC Zeitstempel (z.B.. '2020-11-23T16:35Z)
|
||||
usage.option.not_after.1=Lehne Signaturen mit Erstellungsdatum außerhalb des Gültigkeitsbereichs ab.
|
||||
usage.option.not_after.2=Standardmäßig: Aktueller Zeitunkt ('now').
|
||||
usage.option.not_after.3=Akzeptiert speziellen Wert '-' für das Ende aller Zeiten.
|
||||
usage.parameter.signature=Abgetrennte Signatur
|
||||
usage.parameter.certs=Zertifikate (öffentliche Schlüssel) zur Signaturprüfung
|
|
@ -1,12 +0,0 @@
|
|||
# SPDX-FileCopyrightText: 2022 Paul Schaub <vanitasvitae@fsfe.org>
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
usage.header=Encrypt a message from standard input
|
||||
usage.option.armor=ASCII armor the output
|
||||
usage.option.type=Type of the input data. Defaults to 'binary'
|
||||
usage.option.with_password.0=Encrypt the message with a password.
|
||||
usage.option.with_password.1=Is an INDIRECT data type (e.g. file, environment variable, file descriptor...)
|
||||
usage.option.sign_with=Sign the output with a private key
|
||||
usage.option.with_key_password.0=Passphrase to unlock the secret key(s).
|
||||
usage.option.with_key_password.1=Is an INDIRECT data type (e.g. file, environment variable, file descriptor...).
|
||||
usage.param.certs=Certificates the message gets encrypted to
|
|
@ -1,12 +0,0 @@
|
|||
# SPDX-FileCopyrightText: 2022 Paul Schaub <vanitasvitae@fsfe.org>
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
usage.header=Verschlüssle eine Nachricht von Standard-Eingabe
|
||||
usage.option.armor=Schütze Ausgabe mit ASCII Armor
|
||||
usage.option.type=Format der Nachricht. Standardmäßig 'binary'
|
||||
usage.option.with_password.0=Verschlüssle die Nachricht mit einem Passwort
|
||||
usage.option.with_password.1=Ist ein INDIREKTER Datentyp (z.B.. Datei, Umgebungsvariable, Dateideskriptor...).
|
||||
usage.option.sign_with=Signiere die Nachricht mit einem privaten Schlüssel
|
||||
usage.option.with_key_password.0=Passwort zum Entsperren der privaten Schlüssel
|
||||
usage.option.with_key_password.1=Ist INDIREKTER Datentyp (z.B.. Datei, Umgebungsvariable, Dateideskriptor...).
|
||||
usage.param.certs=Zertifikate für die die Nachricht verschlüsselt werden soll
|
|
@ -1,8 +0,0 @@
|
|||
# SPDX-FileCopyrightText: 2022 Paul Schaub <vanitasvitae@fsfe.org>
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
usage.header=Generate a secret key
|
||||
usage.option.armor=ASCII armor the output
|
||||
usage.option.user_id=User-ID, e.g. "Alice <alice@example.com>"
|
||||
usage.option.with_key_password.0=Password to protect the private key with
|
||||
usage.option.with_key_password.1=Is an INDIRECT data type (e.g. file, environment variable, file descriptor...).
|
|
@ -1,8 +0,0 @@
|
|||
# SPDX-FileCopyrightText: 2022 Paul Schaub <vanitasvitae@fsfe.org>
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
usage.header=Generiere einen privaten Schlüssel
|
||||
usage.option.armor=Schütze Ausgabe mit ASCII Armor
|
||||
usage.option.user_id=Nutzer-ID, z.B.. "Alice <alice@example.com>"
|
||||
usage.option.with_key_password.0=Passwort zum Schutz des privaten Schlüssels
|
||||
usage.option.with_key_password.1=Ist ein INDIREKTER Datentyp (z.B.. Datei, Umgebungsvariable, Dateideskriptor...).
|
|
@ -1,14 +0,0 @@
|
|||
# SPDX-FileCopyrightText: 2022 Paul Schaub <vanitasvitae@fsfe.org>
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
usage.header=Create an inline-signed message from data on standard input
|
||||
usage.option.armor=ASCII armor the output
|
||||
usage.option.as.0=Specify the signature format of the signed message
|
||||
usage.option.as.1='text' and 'binary' will produce inline-signed messages.
|
||||
usage.option.as.2='cleartextsigned' will make use of the cleartext signature framework.
|
||||
usage.option.as.3=Defaults to 'binary'.
|
||||
usage.option.as.4=If '--as=text' and the input data is not valid UTF-8, inline-sign fails with return code 53.
|
||||
usage.option.with_key_password.0=Passphrase to unlock the secret key(s).
|
||||
usage.option.with_key_password.1=Is an INDIRECT data type (e.g. file, environment variable, file descriptor...).
|
||||
usage.option.micalg=Emits the digest algorithm used to the specified file in a way that can be used to populate the micalg parameter for the PGP/MIME Content-Type (RFC3156)
|
||||
usage.parameter.keys=Secret keys used for signing
|
|
@ -1,14 +0,0 @@
|
|||
# SPDX-FileCopyrightText: 2022 Paul Schaub <vanitasvitae@fsfe.org>
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
usage.header=Signiere eine Nachricht von Standard-Eingabe mit eingebetteten Signaturen
|
||||
usage.option.armor=Schütze Ausgabe mit ASCII Armor
|
||||
usage.option.as.0=Bestimme Signaturformat der Nachricht.
|
||||
usage.option.as.1='text' und 'binary' resultieren in eingebettete Signaturen.
|
||||
usage.option.as.2='cleartextsigned' wird die Nachricht Klartext-signieren.
|
||||
usage.option.as.3=Standardmäßig: 'binary'.
|
||||
usage.option.as.4=Ist die Standard-Eingabe nicht UTF-8 kodiert und '--as=text' gesetzt, so wird inline-sign Fehlercode 53 zurückgeben.
|
||||
usage.option.with_key_password.0=Passwort zum Entsperren des privaten Schlüssels
|
||||
usage.option.with_key_password.1=Ist ein INDIREKTER Datentyp (z.B.. Datei, Umgebungsvariable, Dateideskriptor...).
|
||||
usage.option.micalg=Gibt den verwendeten Digest-Algorithmus an die angegebene Ausgabe in einer Form aus, die zum Auffüllen des micalg-Parameters für den PGP/MIME Content-Type (RFC3156) verwendet werden kann.
|
||||
usage.parameter.keys=Private Signaturschlüssel
|
|
@ -1,13 +0,0 @@
|
|||
# SPDX-FileCopyrightText: 2022 Paul Schaub <vanitasvitae@fsfe.org>
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
usage.header=Verify inline-signed data from standard input
|
||||
usage.option.not_before.0=ISO-8601 formatted UTC date (e.g. '2020-11-23T16:35Z)
|
||||
usage.option.not_before.1=Reject signatures with a creation date not in range.
|
||||
usage.option.not_before.2=Defaults to beginning of time ("-").
|
||||
usage.option.not_after.0=ISO-8601 formatted UTC date (e.g. '2020-11-23T16:35Z)
|
||||
usage.option.not_after.1=Reject signatures with a creation date not in range.
|
||||
usage.option.not_after.2=Defaults to current system time ("now").
|
||||
usage.option.not_after.3=Accepts special value "-" for end of time.
|
||||
usage.option.verifications_out=File to write details over successful verifications to
|
||||
usage.parameter.certs=Public key certificates for signature verification
|
|
@ -1,13 +0,0 @@
|
|||
# SPDX-FileCopyrightText: 2022 Paul Schaub <vanitasvitae@fsfe.org>
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
usage.header=Prüfe eingebettete Signaturen einer Nachricht von Standard-Eingabe
|
||||
usage.option.not_before.0=Nach ISO-8601 formatierter UTC Zeitstempel (z.B.. '2020-11-23T16:35Z)
|
||||
usage.option.not_before.1=Lehne Signaturen mit Erstellungsdatum außerhalb des Gültigkeitsbereichs ab.
|
||||
usage.option.not_before.2=Standardmäßig: Anbeginn der Zeit ('-').
|
||||
usage.option.not_after.0=Nach ISO-8601 formatierter UTC Zeitstempel (z.B.. '2020-11-23T16:35Z)
|
||||
usage.option.not_after.1=Lehne Signaturen mit Erstellungsdatum außerhalb des Gültigkeitsbereichs ab.
|
||||
usage.option.not_after.2=Standardmäßig: Aktueller Zeitunkt ('now').
|
||||
usage.option.not_after.3=Akzeptiert speziellen Wert '-' für das Ende aller Zeiten.
|
||||
usage.option.verifications_out=Schreibe Status der Signaturprüfung in angegebene Ausgabe
|
||||
usage.parameter.certs=Zertifikate (öffentlich Schlüssel) zur Signaturprüfung
|
|
@ -2,4 +2,4 @@
|
|||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
usage.header=Add ASCII Armor to standard input
|
||||
usage.option.label=Label to be used in the header and tail of the armoring
|
||||
label=Label to be used in the header and tail of the armoring
|
|
@ -2,4 +2,4 @@
|
|||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
usage.header=Schütze Standard-Eingabe mit ASCII Armor
|
||||
usage.option.label=Label für Kopf- und Fußzeile der ASCII Armor
|
||||
label=Label für Kopf- und Fußzeile der ASCII Armor
|
23
sop-java-picocli/src/main/resources/msg_decrypt.properties
Normal file
23
sop-java-picocli/src/main/resources/msg_decrypt.properties
Normal file
|
@ -0,0 +1,23 @@
|
|||
# SPDX-FileCopyrightText: 2022 Paul Schaub <vanitasvitae@fsfe.org>
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
usage.header=Decrypt a message from standard input
|
||||
session-key-out=Can be used to learn the session key on successful decryption
|
||||
with-session-key.0=Symmetric message key (session key).
|
||||
with-session-key.1=Enables decryption of the "CIPHERTEXT" using the session key directly against the "SEIPD" packet.
|
||||
with-session-key.2=Is an INDIRECT data type (e.g. file, environment variable, file descriptor...)
|
||||
with-password.0=Symmetric passphrase to decrypt the message with.
|
||||
with-password.1=Enables decryption based on any "SKESK" packets in the "CIPHERTEXT".
|
||||
with-password.2=Is an INDIRECT data type (e.g. file, environment variable, file descriptor...)
|
||||
verify-out=Emits signature verification status to the designated output
|
||||
certs=Certificates for signature verification
|
||||
not-before.0=ISO-8601 formatted UTC date (e.g. '2020-11-23T16:35Z)
|
||||
not-before.1=Reject signatures with a creation date not in range.
|
||||
not-before.2=Defaults to beginning of time ('-').
|
||||
not-after.0=ISO-8601 formatted UTC date (e.g. '2020-11-23T16:35Z)
|
||||
not-after.1=Reject signatures with a creation date not in range.
|
||||
not-after.2=Defaults to current system time ('now').
|
||||
not-after.3=Accepts special value '-' for end of time.
|
||||
with-key-password.0=Passphrase to unlock the secret key(s).
|
||||
with-key-password.1=Is an INDIRECT data type (e.g. file, environment variable, file descriptor...).
|
||||
keys=Secret keys to attempt decryption with
|
|
@ -0,0 +1,23 @@
|
|||
# SPDX-FileCopyrightText: 2022 Paul Schaub <vanitasvitae@fsfe.org>
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
usage.header=Entschlüssle eine Nachricht von Standard-Eingabe
|
||||
session-key-out=Extrahiere den Nachrichtenschlüssel nach erfolgreicher Entschlüsselung
|
||||
with-session-key.0=Symmetrischer Nachrichtenschlüssel (Sitzungsschlüssel).
|
||||
with-session-key.1=Ermöglicht direkte Entschlüsselung des im "CIPHERTEXT" enhaltenen "SEIPD" Paketes mithilfe des Nachrichtenschlüssels.
|
||||
with_session-key.2=Ist INDIREKTER Datentyp (z.B.. Datei, Umgebungsvariable, Dateideskriptor...).
|
||||
with-password.0=Symmetrisches Passwort zur Entschlüsselung der Nachricht.
|
||||
with-password.1=Ermöglicht Entschlüsselung basierend auf im "CIPHERTEXT" enthaltenen "SKESK" Paketen.
|
||||
with-password.2=Ist INDIREKTER Datentyp (z.B.. Datei, Umgebungsvariable, Dateideskriptor...).
|
||||
verify-out=Schreibe Status der Signaturprüfung in angegebene Ausgabe
|
||||
certs=Zertifikate zur Signaturprüfung
|
||||
not-before.0=Nach ISO-8601 formatierter UTC Zeitstempel (z.B.. '2020-11-23T16:35Z)
|
||||
not-before.1=Lehne Signaturen mit Erstellungsdatum außerhalb des Gültigkeitsbereichs ab.
|
||||
not-before.2=Standardmäßig: Anbeginn der Zeit ('-').
|
||||
not-after.0=Nach ISO-8601 formatierter UTC Zeitstempel (z.B.. '2020-11-23T16:35Z)
|
||||
not-after.1=Lehne Signaturen mit Erstellungsdatum außerhalb des Gültigkeitsbereichs ab.
|
||||
not-after.2=Standardmäßig: Aktueller Zeitunkt ('now').
|
||||
not-after.3=Akzeptiert speziellen Wert '-' für das Ende aller Zeiten.
|
||||
with-key-password.0=Passwort zum Entsperren der privaten Schlüssel
|
||||
with-key-password.1=Ist INDIREKTER Datentyp (z.B.. Datei, Umgebungsvariable, Dateideskriptor...).
|
||||
keys=Private Schlüssel zum Entschlüsseln der Nachricht
|
|
@ -0,0 +1,12 @@
|
|||
# SPDX-FileCopyrightText: 2022 Paul Schaub <vanitasvitae@fsfe.org>
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
usage.header=Create a detached signature on the data from standard input
|
||||
armor=ASCII armor the output
|
||||
as.0=Specify the output format of the signed message
|
||||
as.1=Defaults to 'binary'.
|
||||
as.2=If '--as=text' and the input data is not valid UTF-8, sign fails with return code 53.
|
||||
with-key-password.0=Passphrase to unlock the secret key(s).
|
||||
with-key-password.1=Is an INDIRECT data type (e.g. file, environment variable, file descriptor...).
|
||||
micalg-out=Emits the digest algorithm used to the specified file in a way that can be used to populate the micalg parameter for the PGP/MIME Content-Type (RFC3156)
|
||||
keys=Secret keys used for signing
|
|
@ -0,0 +1,12 @@
|
|||
# SPDX-FileCopyrightText: 2022 Paul Schaub <vanitasvitae@fsfe.org>
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
usage.header=Erstelle abgetrennte Signatur über Nachricht von Standard-Eingabe
|
||||
armor=Schütze Ausgabe mit ASCII Armor
|
||||
as.0=Bestimme Signaturformat der Nachricht.
|
||||
as.1=Standardmäßig: 'binary'.
|
||||
as.2=Ist die Standard-Eingabe nicht UTF-8 kodiert und '--as=text' gesetzt, so wird inline-sign Fehlercode 53 zurückgeben.
|
||||
with-key-password.0=Passwort zum Entsperren des privaten Schlüssels
|
||||
with-key-password.1=Ist ein INDIREKTER Datentyp (z.B.. Datei, Umgebungsvariable, Dateideskriptor...).
|
||||
micalg-out=Gibt den verwendeten Digest-Algorithmus an die angegebene Ausgabe in einer Form aus, die zum Auffüllen des micalg-Parameters für den PGP/MIME Content-Type (RFC3156) verwendet werden kann.
|
||||
keys=Private Signaturschlüssel
|
|
@ -0,0 +1,13 @@
|
|||
# SPDX-FileCopyrightText: 2022 Paul Schaub <vanitasvitae@fsfe.org>
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
usage.header=Verify a detached signature over the data from standard input
|
||||
not-before.0=ISO-8601 formatted UTC date (e.g. '2020-11-23T16:35Z)
|
||||
not-before.1=Reject signatures with a creation date not in range.
|
||||
not-before.2=Defaults to beginning of time ("-").
|
||||
not-after.1=ISO-8601 formatted UTC date (e.g. '2020-11-23T16:35Z)
|
||||
not-after.2=Reject signatures with a creation date not in range.
|
||||
not-after.3=Defaults to current system time ("now").\
|
||||
not-after.4 = Accepts special value "-" for end of time.
|
||||
signature=Detached signature
|
||||
certs=Public key certificates for signature verification
|
|
@ -0,0 +1,13 @@
|
|||
# SPDX-FileCopyrightText: 2022 Paul Schaub <vanitasvitae@fsfe.org>
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
usage.header=Prüfe eine abgetrennte Signatur über eine Nachricht von Standard-Eingabe
|
||||
not-before.0=Nach ISO-8601 formatierter UTC Zeitstempel (z.B.. '2020-11-23T16:35Z)
|
||||
not-before.1=Lehne Signaturen mit Erstellungsdatum außerhalb des Gültigkeitsbereichs ab.
|
||||
not-before.2=Standardmäßig: Anbeginn der Zeit ('-').
|
||||
not-after.0=Nach ISO-8601 formatierter UTC Zeitstempel (z.B.. '2020-11-23T16:35Z)
|
||||
not-after.1=Lehne Signaturen mit Erstellungsdatum außerhalb des Gültigkeitsbereichs ab.
|
||||
not-after.2=Standardmäßig: Aktueller Zeitunkt ('now').
|
||||
not-after.3=Akzeptiert speziellen Wert '-' für das Ende aller Zeiten.
|
||||
signature=Abgetrennte Signatur
|
||||
certs=Zertifikate (öffentliche Schlüssel) zur Signaturprüfung
|
12
sop-java-picocli/src/main/resources/msg_encrypt.properties
Normal file
12
sop-java-picocli/src/main/resources/msg_encrypt.properties
Normal file
|
@ -0,0 +1,12 @@
|
|||
# SPDX-FileCopyrightText: 2022 Paul Schaub <vanitasvitae@fsfe.org>
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
usage.header=Encrypt a message from standard input
|
||||
armor=ASCII armor the output
|
||||
type=Type of the input data. Defaults to 'binary'
|
||||
with-password.0=Encrypt the message with a password.
|
||||
with-password.1=Is an INDIRECT data type (e.g. file, environment variable, file descriptor...)
|
||||
sign-with=Sign the output with a private key
|
||||
with-key-password.0=Passphrase to unlock the secret key(s).
|
||||
with-key-password.1=Is an INDIRECT data type (e.g. file, environment variable, file descriptor...).
|
||||
certs=Certificates the message gets encrypted to
|
|
@ -0,0 +1,12 @@
|
|||
# SPDX-FileCopyrightText: 2022 Paul Schaub <vanitasvitae@fsfe.org>
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
usage.header=Verschlüssle eine Nachricht von Standard-Eingabe
|
||||
armor=Schütze Ausgabe mit ASCII Armor
|
||||
type=Format der Nachricht. Standardmäßig 'binary'
|
||||
with-password.0=Verschlüssle die Nachricht mit einem Passwort
|
||||
with-password.1=Ist ein INDIREKTER Datentyp (z.B.. Datei, Umgebungsvariable, Dateideskriptor...).
|
||||
sign-with=Signiere die Nachricht mit einem privaten Schlüssel
|
||||
with-key-password.0=Passwort zum Entsperren der privaten Schlüssel
|
||||
with-key-password.1=Ist INDIREKTER Datentyp (z.B.. Datei, Umgebungsvariable, Dateideskriptor...).
|
||||
certs=Zertifikate für die die Nachricht verschlüsselt werden soll
|
|
@ -2,4 +2,4 @@
|
|||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
usage.header=Extract a public key certificate from a secret key from standard input
|
||||
usage.option.armor=ASCII armor the output
|
||||
armor=ASCII armor the output
|
|
@ -2,4 +2,4 @@
|
|||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
usage.header=Extrahiere Zertifikat (öffentlichen Schlüssel) aus privatem Schlüssel von Standard-Eingabe
|
||||
usage.option.armor=Schütze Ausgabe mit ASCII Armor
|
||||
armor=Schütze Ausgabe mit ASCII Armor
|
|
@ -0,0 +1,8 @@
|
|||
# SPDX-FileCopyrightText: 2022 Paul Schaub <vanitasvitae@fsfe.org>
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
usage.header=Generate a secret key
|
||||
armor=ASCII armor the output
|
||||
user-id=User-ID, e.g. "Alice <alice@example.com>"
|
||||
with-key-password.0=Password to protect the private key with
|
||||
with-key-password.1=Is an INDIRECT data type (e.g. file, environment variable, file descriptor...).
|
|
@ -0,0 +1,8 @@
|
|||
# SPDX-FileCopyrightText: 2022 Paul Schaub <vanitasvitae@fsfe.org>
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
usage.header=Generiere einen privaten Schlüssel
|
||||
armor=Schütze Ausgabe mit ASCII Armor
|
||||
user-id=Nutzer-ID, z.B.. "Alice <alice@example.com>"
|
||||
with-key-password.0=Passwort zum Schutz des privaten Schlüssels
|
||||
with-key-password.1=Ist ein INDIREKTER Datentyp (z.B.. Datei, Umgebungsvariable, Dateideskriptor...).
|
|
@ -2,5 +2,5 @@
|
|||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
usage.header=Split signatures from a clearsigned message
|
||||
usage.option.armor=ASCII armor the output
|
||||
usage.option.signatures_out=Destination to which a detached signatures block will be written
|
||||
armor=ASCII armor the output
|
||||
signatures-out=Destination to which a detached signatures block will be written
|
|
@ -2,5 +2,5 @@
|
|||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
usage.header=Trenne Signaturen von Klartext-signierter Nachricht
|
||||
usage.option.armor=Schütze Ausgabe mit ASCII Armor
|
||||
usage.option.signatures_out=Schreibe abgetrennte Signaturen in Ausgabe
|
||||
armor=Schütze Ausgabe mit ASCII Armor
|
||||
signatures-out=Schreibe abgetrennte Signaturen in Ausgabe
|
|
@ -0,0 +1,14 @@
|
|||
# SPDX-FileCopyrightText: 2022 Paul Schaub <vanitasvitae@fsfe.org>
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
usage.header=Create an inline-signed message from data on standard input
|
||||
armor=ASCII armor the output
|
||||
as.0=Specify the signature format of the signed message
|
||||
as.1='text' and 'binary' will produce inline-signed messages.
|
||||
as.2='cleartextsigned' will make use of the cleartext signature framework.
|
||||
as.3=Defaults to 'binary'.
|
||||
as.4=If '--as=text' and the input data is not valid UTF-8, inline-sign fails with return code 53.
|
||||
with-key-password.0=Passphrase to unlock the secret key(s).
|
||||
with-key-password.1=Is an INDIRECT data type (e.g. file, environment variable, file descriptor...).
|
||||
micalg=Emits the digest algorithm used to the specified file in a way that can be used to populate the micalg parameter for the PGP/MIME Content-Type (RFC3156)
|
||||
keys=Secret keys used for signing
|
|
@ -0,0 +1,14 @@
|
|||
# SPDX-FileCopyrightText: 2022 Paul Schaub <vanitasvitae@fsfe.org>
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
usage.header=Signiere eine Nachricht von Standard-Eingabe mit eingebetteten Signaturen
|
||||
armor=Schütze Ausgabe mit ASCII Armor
|
||||
as.0=Bestimme Signaturformat der Nachricht.
|
||||
as.1='text' und 'binary' resultieren in eingebettete Signaturen.
|
||||
as.2='cleartextsigned' wird die Nachricht Klartext-signieren.
|
||||
as.3=Standardmäßig: 'binary'.
|
||||
as.4=Ist die Standard-Eingabe nicht UTF-8 kodiert und '--as=text' gesetzt, so wird inline-sign Fehlercode 53 zurückgeben.
|
||||
with-key-password.0=Passwort zum Entsperren des privaten Schlüssels
|
||||
with-key-password.1=Ist ein INDIREKTER Datentyp (z.B.. Datei, Umgebungsvariable, Dateideskriptor...).
|
||||
micalg=Gibt den verwendeten Digest-Algorithmus an die angegebene Ausgabe in einer Form aus, die zum Auffüllen des micalg-Parameters für den PGP/MIME Content-Type (RFC3156) verwendet werden kann.
|
||||
keys=Private Signaturschlüssel
|
|
@ -0,0 +1,13 @@
|
|||
# SPDX-FileCopyrightText: 2022 Paul Schaub <vanitasvitae@fsfe.org>
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
usage.header=Verify inline-signed data from standard input
|
||||
not-before.0=ISO-8601 formatted UTC date (e.g. '2020-11-23T16:35Z)
|
||||
not-before.1=Reject signatures with a creation date not in range.
|
||||
not-before.2=Defaults to beginning of time ("-").
|
||||
not-after.0=ISO-8601 formatted UTC date (e.g. '2020-11-23T16:35Z)
|
||||
not-after.1=Reject signatures with a creation date not in range.
|
||||
not-after.2=Defaults to current system time ("now").
|
||||
not-after.3=Accepts special value "-" for end of time.
|
||||
verifications-out=File to write details over successful verifications to
|
||||
certs=Public key certificates for signature verification
|
|
@ -0,0 +1,13 @@
|
|||
# SPDX-FileCopyrightText: 2022 Paul Schaub <vanitasvitae@fsfe.org>
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
usage.header=Prüfe eingebettete Signaturen einer Nachricht von Standard-Eingabe
|
||||
not-before.0=Nach ISO-8601 formatierter UTC Zeitstempel (z.B.. '2020-11-23T16:35Z)
|
||||
not-before.1=Lehne Signaturen mit Erstellungsdatum außerhalb des Gültigkeitsbereichs ab.
|
||||
not-before.2=Standardmäßig: Anbeginn der Zeit ('-').
|
||||
not-after.0=Nach ISO-8601 formatierter UTC Zeitstempel (z.B.. '2020-11-23T16:35Z)
|
||||
not-after.1=Lehne Signaturen mit Erstellungsdatum außerhalb des Gültigkeitsbereichs ab.
|
||||
not-after.2=Standardmäßig: Aktueller Zeitunkt ('now').
|
||||
not-after.3=Akzeptiert speziellen Wert '-' für das Ende aller Zeiten.
|
||||
verifications-out=Schreibe Status der Signaturprüfung in angegebene Ausgabe
|
||||
certs=Zertifikate (öffentlich Schlüssel) zur Signaturprüfung
|
|
@ -5,7 +5,7 @@ sop.name=sop
|
|||
usage.header=Stateless OpenPGP Protocol
|
||||
usage.footerHeading=Powered by picocli%n
|
||||
|
||||
sop.locale=Locale for description texts
|
||||
locale=Locale for description texts
|
||||
# Generic
|
||||
usage.synopsisHeading=Usage:\u0020
|
||||
usage.commandListHeading = %nCommands:%n
|
|
@ -5,7 +5,7 @@ sop.name=sop
|
|||
usage.header=Stateless OpenPGP Protocol
|
||||
usage.footerHeading=Powered by Picocli%n
|
||||
|
||||
sop.locale=Gebietsschema für Beschreibungstexte
|
||||
locale=Gebietsschema für Beschreibungstexte
|
||||
# Generic
|
||||
usage.synopsisHeading=Aufruf:\u0020
|
||||
usage.commandListHeading=%nBefehle:%n
|
|
@ -2,5 +2,5 @@
|
|||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
usage.header=Display version information about the tool
|
||||
usage.option.extended=Print an extended version string
|
||||
usage.option.backend=Print information about the cryptographic backend
|
||||
extended=Print an extended version string
|
||||
backend=Print information about the cryptographic backend
|
|
@ -2,5 +2,5 @@
|
|||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
usage.header=Zeige Versionsinformationen über das Programm
|
||||
usage.option.extended=Gebe erweiterte Versionsinformationen aus
|
||||
usage.option.backend=Gebe Informationen über das kryptografische Backend aus
|
||||
extended=Gebe erweiterte Versionsinformationen aus
|
||||
backend=Gebe Informationen über das kryptografische Backend aus
|
Loading…
Add table
Add a link
Reference in a new issue