From: Julian Maurice Date: Fri, 3 Jul 2020 13:36:04 +0000 (+0400) Subject: Bug 25922: Fix typo 'arial-label' -> 'aria-label' X-Git-Url: http://git.equinoxoli.org/?p=koha.git;a=commitdiff_plain;h=73ff914d5d537947b5fdc4cd602e79f41af5179a Bug 25922: Fix typo 'arial-label' -> 'aria-label' Signed-off-by: Julian Maurice Signed-off-by: Katrin Fischer Signed-off-by: Jonathan Druart --- diff --git a/misc/translator/xgettext.pl b/misc/translator/xgettext.pl index 54360a1..f9ba3bf 100755 --- a/misc/translator/xgettext.pl +++ b/misc/translator/xgettext.pl @@ -117,7 +117,7 @@ sub text_extract { # value [tag=input], meta my $tag; $tag = lc($1) if $t =~ /^<(\S+)/s; - for my $a ('alt', 'content', 'title', 'value', 'label', 'placeholder', 'arial-label') { + for my $a ('alt', 'content', 'title', 'value', 'label', 'placeholder', 'aria-label') { if ($attr->{$a}) { next if $a eq 'label' && $tag ne 'optgroup'; next if $a eq 'content' && $tag ne 'meta';