From 73ff914d5d537947b5fdc4cd602e79f41af5179a Mon Sep 17 00:00:00 2001 From: Julian Maurice Date: Fri, 3 Jul 2020 17:36:04 +0400 Subject: [PATCH] Bug 25922: Fix typo 'arial-label' -> 'aria-label' Signed-off-by: Julian Maurice Signed-off-by: Katrin Fischer Signed-off-by: Jonathan Druart --- misc/translator/xgettext.pl | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) 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'; -- 1.7.2.5