Index: utils/ofarc/OFArc.m ================================================================== --- utils/ofarc/OFArc.m +++ utils/ofarc/OFArc.m @@ -57,23 +57,23 @@ [stream writeString: @"\n"]; [stream writeLine: OF_LOCALIZED(@"full_usage", @"Options:\n" @" -a --append Append to archive\n" @" -c --create Create archive\n" - @" -C --directory Extract into the specified " + @" -C --directory= Extract into the specified " @"directory\n" - @" -E --encoding The encoding used by the archive " + @" -E --encoding= The encoding used by the archive " "(only tar files)\n" @" -f --force Force / overwrite files\n" @" -h --help Show this help\n" @" -l --list List all files in the archive\n" @" -n --no-clobber Never overwrite files\n" @" -p --print Print one or more files from the " @"archive\n" @" -q --quiet Quiet mode (no output, except " @"errors)\n" - @" -t --type Archive type (gz, lha, tar, tgz, " + @" -t --type= Archive type (gz, lha, tar, tgz, " @"zip)\n" @" -v --verbose Verbose output for file list\n" @" -x --extract Extract files")]; } Index: utils/ofarc/localization/de.json ================================================================== --- utils/ofarc/localization/de.json +++ utils/ofarc/localization/de.json @@ -1,9 +1,9 @@ /* * German localization for ofarc. * - * Copyright (c) 2017-2023 Jonathan Schleifer + * Copyright (c) 2017-2024 Jonathan Schleifer * * Permission to use, copy, modify, and/or distribute this localization for * any purpose with or without fee is hereby granted. */ @@ -15,20 +15,20 @@ ], full_usage: [ "Optionen:\n", " -a --append Zu Archiv hinzufügen\n", " -c --create Archiv erstellen\n", - " -C --directory In angegebenes Verzeichnis entpacken\n", - " -E --encoding Das Encoding des Archivs (nur tar-Dateien)\n", + " -C --directory= In angegebenes Verzeichnis entpacken\n", + " -E --encoding= Das Encoding des Archivs (nur tar-Dateien)\n", " -f --force Existierende Dateien überschreiben\n", " -h --help Diese Hilfe anzeigen\n", " -l --list Alle Dateien im Archiv auflisten\n", " -n --no-clobber Dateien niemals überschreiben\n", " -p --print Eine oder mehr Dateien aus dem Archiv ausgeben", "\n", " -q --quiet Ruhiger Modus (keine Ausgabe außer Fehler)\n", - " -t --type Archiv-Typ (gz, lha, tar, tgz, zip)\n", + " -t --type= Archiv-Typ (gz, lha, tar, tgz, zip)\n", " -v --verbose Ausführlicher Modus für Datei-Liste\n", " -x --extract Dateien entpacken" ], "2_options_mutually_exclusive": [ "Fehler: -%[shortopt1] / --%[longopt1] und ", Index: utils/ofdns/OFDNS.m ================================================================== --- utils/ofdns/OFDNS.m +++ utils/ofdns/OFDNS.m @@ -42,17 +42,17 @@ if (full) { [stream writeString: @"\n"]; [stream writeLine: OF_LOCALIZED(@"full_usage", @"Options:\n " - @"-c --class " + @"-c --class= " @" The DNS class to query (defaults to IN)\n " - @"-h --help " + @"-h --help " @" Show this help\n " - @"-s --server" + @"-s --server=" @" The server to query\n " - @"-t --type " + @"-t --type= " @" The record type to query (defaults to ALL, can be " @"repeated)\n " @" --tcp " @" Force using TCP for the query")]; } Index: utils/ofdns/localization/de.json ================================================================== --- utils/ofdns/localization/de.json +++ utils/ofdns/localization/de.json @@ -1,9 +1,9 @@ /* * German localization for ofdns. * - * Copyright (c) 2020-2023 Jonathan Schleifer + * Copyright (c) 2020-2024 Jonathan Schleifer * * Permission to use, copy, modify, and/or distribute this localization for * any purpose with or without fee is hereby granted. */ @@ -11,20 +11,20 @@ { usage: "Benutzung: %[prog] -[chst] domain1 [domain2 ...]", full_usage: [ "Optionen:\n", - " -c --class Die anzufragende DNS-Klasse (standardmäßig IN)\n", - " -h --help Diese Hilfe anzeigen\n", - " -s --server Der abzufragende Server\n", - " -t --type Der anzufragende Record-Typ (standardmäßig ALL,\n", - " kann wiederholt werden)\n", - " --tcp Benutzung von TCP erzwingen" + " -c --class= Die anzufragende DNS-Klasse (standardmäßig IN)\n", + " -h --help Diese Hilfe anzeigen\n", + " -s --server= Der abzufragende Server\n", + " -t --type= Der anzufragende Record-Typ (standardmäßig ALL,\n", + " kann wiederholt werden)\n", + " --tcp Benutzung von TCP erzwingen" ], long_option_requires_argument: [ "%[prog]: Option --%[opt] benötigt ein Argument" ], option_requires_argument: "%[prog]: Option -%[opt] benötigt ein Argument", unknown_long_option: "%[prog]: Unbekannte Option: --%[opt]", unknown_option: "%[prog]: Unbekannte Option: -%[opt]", failed_to_resolve: "Auflösen fehlgeschlagen: %[exception]", } Index: utils/ofhttp/OFHTTP.m ================================================================== --- utils/ofhttp/OFHTTP.m +++ utils/ofhttp/OFHTTP.m @@ -104,29 +104,29 @@ if (full) { [stream writeString: @"\n"]; [stream writeLine: OF_LOCALIZED(@"full_usage", @"Options:\n " - @"-b --body " + @"-b --body= " @" Specify the file to send as body\n " @" " @" (- for standard input)\n " @"-c --continue " @" Continue download of existing file\n " @"-f --force " @" Force / overwrite existing file\n " @"-h --help " @" Show this help\n " - @"-H --header " + @"-H --header= " @" Add a header (e.g. X-Foo:Bar)\n " - @"-m --method " + @"-m --method= " @" Set the method of the HTTP request\n " - @"-o --output " + @"-o --output= " @" Specify output file name\n " @"-O --detect-filename" @" Do a HEAD request to detect the file name\n " - @"-P --proxy " + @"-P --proxy= " @" Specify SOCKS5 proxy\n " @"-q --quiet " @" Quiet mode (no output, except errors)\n " @"-v --verbose " @" Verbose mode (print headers)\n " Index: utils/ofhttp/localization/de.json ================================================================== --- utils/ofhttp/localization/de.json +++ utils/ofhttp/localization/de.json @@ -1,9 +1,9 @@ /* * German localization for ofhttp. * - * Copyright (c) 2017-2023 Jonathan Schleifer + * Copyright (c) 2017-2024 Jonathan Schleifer * * Permission to use, copy, modify, and/or distribute this localization for * any purpose with or without fee is hereby granted. */ @@ -11,21 +11,21 @@ { usage: "Benutzung: %[prog] -[cehHmoOPqv] iri1 [iri2 ...]", full_usage: [ "Optionen:\n", - " -b --body Angegebene Datei als Body übergeben\n", + " -b --body= Angegebene Datei als Body übergeben\n", " (- für Standard-Eingabe)\n", " -c --continue Download von existierender Datei ", "fortsetzen\n", " -f --force Existierende Datei überschreiben\n", " -h --help Diese Hilfe anzeigen\n", - " -H --header Einen Header (z.B. X-Foo:Bar) hinzufügen\n", - " -m --method HTTP Request-Methode setzen\n", - " -o --output Ausgabe-Dateiname angeben\n", + " -H --header= Einen Header (z.B. X-Foo:Bar) hinzufügen\n", + " -m --method= HTTP Request-Methode setzen\n", + " -o --output= Ausgabe-Dateiname angeben\n", " -O --detect-filename Dateiname mittels HEAD-Request ermitteln\n", - " -P --proxy SOCKS5-Proxy angeben\n", + " -P --proxy= SOCKS5-Proxy angeben\n", " -q --quiet Ruhiger Modus (keine Ausgabe außer Fehler)", "\n", " -v --verbose Ausführlicher Modus (gibt Header aus)\n", " --insecure TLS-Fehler ignorieren und unsichere\n", " Weiterleitungen erlauben\n",