Bug 33274

Summary: Batch patron modification tool headers are not translatable for extended patron attributes
Product: Koha Reporter: Katrin Fischer <katrin.fischer>
Component: I18N/L10NAssignee: Bugs List <koha-bugs>
Status: NEW --- QA Contact: Testopia <testopia>
Severity: minor    
Priority: P5 - low CC: f.demians
Version: Main   
Hardware: All   
OS: All   
GIT URL: Change sponsored?: ---
Patch complexity: --- Documentation contact:
Documentation submission: Text to go in the release notes:
Version(s) released in:
Circulation function:

Description Katrin Fischer 2023-03-19 22:12:53 UTC
The batch patron modification tool adds columns for the patron attributes to the table displaying the patrons to update labelled "Attribute 1" etc. - this header of the table is not translatable:

    my @attributes_header = ();
    for ( 1 .. scalar( $max_nb_attr ) ) {
        push @attributes_header, { attribute => "Attributes $_" };
    }

It would be a lot nicer if we could use the descriptions of the extende dpatron attributes instead of the numbered output.