From 8ca2340de9ca39ae331730730e8a8b23351deda6 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 --- misc/translator/xgettext.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/translator/xgettext.pl b/misc/translator/xgettext.pl index 54360a1971..f9ba3bf8d0 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'; -- 2.20.1