mirror of
https://github.com/uutils/coreutils.git
synced 2025-07-07 21:45:01 +00:00
fix ftl - Identifiers may only contain lowercase characters and -
This commit is contained in:
parent
2140961c8e
commit
4d7bd55df0
3 changed files with 3 additions and 3 deletions
|
@ -70,7 +70,7 @@ od-help-a = named characters, ignoring high-order bit
|
|||
od-help-b = octal bytes
|
||||
od-help-c = ASCII characters or backslash escapes
|
||||
od-help-d = unsigned decimal 2-byte units
|
||||
od-help-D = unsigned decimal 4-byte units
|
||||
od-help-d4 = unsigned decimal 4-byte units
|
||||
od-help-format = select output format or formats
|
||||
od-help-output-duplicates = do not use * to mark line suppression
|
||||
od-help-width = output BYTES bytes per output line. 32 is implied when BYTES is not
|
||||
|
|
|
@ -71,7 +71,7 @@ od-help-a = caractères nommés, ignorant le bit d'ordre supérieur
|
|||
od-help-b = octets octaux
|
||||
od-help-c = caractères ASCII ou échappements antislash
|
||||
od-help-d = unités décimales non signées 2-octets
|
||||
od-help-D = unités décimales non signées 4-octets
|
||||
od-help-d4 = unités décimales non signées 4-octets
|
||||
od-help-format = sélectionner le(s) format(s) de sortie
|
||||
od-help-output-duplicates = ne pas utiliser * pour marquer la suppression de ligne
|
||||
od-help-width = sortir OCTETS octets par ligne de sortie. 32 est impliqué quand OCTETS n'est pas
|
||||
|
|
|
@ -350,7 +350,7 @@ pub fn uu_app() -> Command {
|
|||
.arg(
|
||||
Arg::new("D")
|
||||
.short('D')
|
||||
.help(get_message("od-help-D"))
|
||||
.help(get_message("od-help-d4"))
|
||||
.action(ArgAction::SetTrue),
|
||||
)
|
||||
.arg(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue