mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-27 11:07:44 +00:00
Merge pull request #8283 from sylvestre/flt
fix ftl - Identifiers may only contain lowercase characters and -
This commit is contained in:
commit
eefe70f883
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-b = octal bytes
|
||||||
od-help-c = ASCII characters or backslash escapes
|
od-help-c = ASCII characters or backslash escapes
|
||||||
od-help-d = unsigned decimal 2-byte units
|
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-format = select output format or formats
|
||||||
od-help-output-duplicates = do not use * to mark line suppression
|
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
|
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-b = octets octaux
|
||||||
od-help-c = caractères ASCII ou échappements antislash
|
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 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-format = sélectionner le(s) format(s) de sortie
|
||||||
od-help-output-duplicates = ne pas utiliser * pour marquer la suppression de ligne
|
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
|
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(
|
||||||
Arg::new("D")
|
Arg::new("D")
|
||||||
.short('D')
|
.short('D')
|
||||||
.help(get_message("od-help-D"))
|
.help(get_message("od-help-d4"))
|
||||||
.action(ArgAction::SetTrue),
|
.action(ArgAction::SetTrue),
|
||||||
)
|
)
|
||||||
.arg(
|
.arg(
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue