mirror of
https://codeberg.org/PGPainless/sop-java.git
synced 2025-09-08 09:49:44 +02:00
Since picocli 4.7.0, subcommands inherit resources from their parent commands, so we can store shared stuff like error msgs etc. in the parent (sop) resources file. This enables us to rename the parent command downstream (e.g. in pgpainless-cli). Only the help command breaks when renaming the parent command. TODO: Fix
13 lines
816 B
Properties
13 lines
816 B
Properties
# 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
|