View | Details | Raw Unified | Return to bug 25922
Collapse All | Expand All

(-)a/misc/translator/xgettext.pl (-2 / +1 lines)
Lines 117-123 sub text_extract { Link Here
117
            # value [tag=input], meta
117
            # value [tag=input], meta
118
            my $tag;
118
            my $tag;
119
            $tag = lc($1) if $t =~ /^<(\S+)/s;
119
            $tag = lc($1) if $t =~ /^<(\S+)/s;
120
            for my $a ('alt', 'content', 'title', 'value', 'label', 'placeholder', 'arial-label') {
120
            for my $a ('alt', 'content', 'title', 'value', 'label', 'placeholder', 'aria-label') {
121
                if ($attr->{$a}) {
121
                if ($attr->{$a}) {
122
                    next if $a eq 'label' && $tag ne 'optgroup';
122
                    next if $a eq 'label' && $tag ne 'optgroup';
123
                    next if $a eq 'content' && $tag ne 'meta';
123
                    next if $a eq 'content' && $tag ne 'meta';
124
- 

Return to bug 25922