https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=37860

Kyle M Hall (khall) <k...@bywatersolutions.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|Signed Off                  |Failed QA
                 CC|                            |k...@bywatersolutions.com

--- Comment #5 from Kyle M Hall (khall) <k...@bywatersolutions.com> ---
Couple easy to fix qa issues:
1) primary_contact_method sees be labeled as "Main contact method" in other
templates. Can you update that?
2) The primary_contact_method output needs to be run through a an if/elseif or
switch statement to it can be translatable. Here is the code from moremember.tt
you could use:
[% SWITCH patron.primary_contact_method %]
    [% CASE 'phone' %]
        <span>Primary phone</span>
    [% CASE 'phonepro' %]
        <span>Secondary phone</span>
    [% CASE 'mobile' %]
        <span>Other phone</span>
    [% CASE 'email' %]
        <span>Primary email</span>
    [% CASE 'emailpro' %]
        <span>Secondary email</span>
    [% CASE 'fax' %]
        <span>Fax</span>
[% END %]

-- 
You are receiving this mail because:
You are watching all bug changes.
_______________________________________________
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

Reply via email to