Skip to content

Commit 4d7bd55

Browse files
committed
fix ftl - Identifiers may only contain lowercase characters and -
1 parent 2140961 commit 4d7bd55

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/uu/od/locales/en-US.ftl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ od-help-a = named characters, ignoring high-order bit
7070
od-help-b = octal bytes
7171
od-help-c = ASCII characters or backslash escapes
7272
od-help-d = unsigned decimal 2-byte units
73-
od-help-D = unsigned decimal 4-byte units
73+
od-help-d4 = unsigned decimal 4-byte units
7474
od-help-format = select output format or formats
7575
od-help-output-duplicates = do not use * to mark line suppression
7676
od-help-width = output BYTES bytes per output line. 32 is implied when BYTES is not

src/uu/od/locales/fr-FR.ftl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ od-help-a = caractères nommés, ignorant le bit d'ordre supérieur
7171
od-help-b = octets octaux
7272
od-help-c = caractères ASCII ou échappements antislash
7373
od-help-d = unités décimales non signées 2-octets
74-
od-help-D = unités décimales non signées 4-octets
74+
od-help-d4 = unités décimales non signées 4-octets
7575
od-help-format = sélectionner le(s) format(s) de sortie
7676
od-help-output-duplicates = ne pas utiliser * pour marquer la suppression de ligne
7777
od-help-width = sortir OCTETS octets par ligne de sortie. 32 est impliqué quand OCTETS n'est pas

src/uu/od/src/od.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ pub fn uu_app() -> Command {
350350
.arg(
351351
Arg::new("D")
352352
.short('D')
353-
.help(get_message("od-help-D"))
353+
.help(get_message("od-help-d4"))
354354
.action(ArgAction::SetTrue),
355355
)
356356
.arg(

0 commit comments

Comments
 (0)