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

(-)a/misc/translator/tmpl_process3.pl (-1 / +1 lines)
Lines 59-65 sub text_replace_tag ($$) { Link Here
59
    # value [tag=input], meta
59
    # value [tag=input], meta
60
    my $tag = lc($1) if $t =~ /^<(\S+)/s;
60
    my $tag = lc($1) if $t =~ /^<(\S+)/s;
61
    my $translated_p = 0;
61
    my $translated_p = 0;
62
    for my $a ('alt', 'content', 'title', 'value','label') {
62
    for my $a ('alt', 'content', 'title', 'value', 'label', 'placeholder') {
63
    if ($attr->{$a}) {
63
    if ($attr->{$a}) {
64
        next if $a eq 'label' && $tag ne 'optgroup';
64
        next if $a eq 'label' && $tag ne 'optgroup';
65
        next if $a eq 'content' && $tag ne 'meta';
65
        next if $a eq 'content' && $tag ne 'meta';
(-)a/misc/translator/xgettext.pl (-2 / +1 lines)
Lines 102-108 sub text_extract (*) { Link Here
102
        } elsif ($kind eq C4::TmplTokenType::TAG && %$attr) {
102
        } elsif ($kind eq C4::TmplTokenType::TAG && %$attr) {
103
            # value [tag=input], meta
103
            # value [tag=input], meta
104
            my $tag = lc($1) if $t =~ /^<(\S+)/s;
104
            my $tag = lc($1) if $t =~ /^<(\S+)/s;
105
            for my $a ('alt', 'content', 'title', 'value','label') {
105
            for my $a ('alt', 'content', 'title', 'value', 'label', 'placeholder') {
106
                if ($attr->{$a}) {
106
                if ($attr->{$a}) {
107
                    next if $a eq 'label' && $tag ne 'optgroup';
107
                    next if $a eq 'label' && $tag ne 'optgroup';
108
                    next if $a eq 'content' && $tag ne 'meta';
108
                    next if $a eq 'content' && $tag ne 'meta';
109
- 

Return to bug 5709