Bug 25922: Fix typo 'arial-label' -> 'aria-label'
authorJulian Maurice <julian.maurice@biblibre.com>
Fri, 3 Jul 2020 13:36:04 +0000 (17:36 +0400)
committerJonathan Druart <jonathan.druart@bugs.koha-community.org>
Mon, 20 Jul 2020 15:45:31 +0000 (17:45 +0200)
Signed-off-by: Julian Maurice <julian.maurice@biblibre.com>

Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>

misc/translator/xgettext.pl

index 54360a1..f9ba3bf 100755 (executable)
@@ -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';