@@ -, +, @@
* Editing a patron record in the staff interface
* Viewing the 'Details' tab of a patron in staff interface
* Triggering a "duplicate" patron warning and looking at the details
of the existing patron record
* Self registering a patron in the OPAC
* Viewing 'Personal details' tab in the OPAC for a registered patron
"Other:" in
misc/translator/Koha-messages.pot
---
.../intranet-tmpl/prog/en/modules/members/memberentrygen.tt | 6 +++---
.../prog/en/modules/members/moremember-brief.tt | 2 +-
.../intranet-tmpl/prog/en/modules/members/moremember.tt | 2 +-
.../opac-tmpl/bootstrap/en/modules/opac-memberentry.tt | 3 ++-
4 files changed, 7 insertions(+), 6 deletions(-)
--- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt
+++ a/koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt
@@ -438,9 +438,9 @@ legend:hover {
[% END %]
[% IF ( other ) %]
-
+
[% ELSE %]
-
+
[% END %]
[% IF ( none ) %]
@@ -450,7 +450,7 @@ legend:hover {
[% ELSE %]
-
+
[% END # /UNLESS ( opduplicate )%]
--- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember-brief.tt
+++ a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember-brief.tt
@@ -41,7 +41,7 @@
[% UNLESS ( I ) %]
[% IF ( patron.initials ) %]
Initials: [% patron.initials | html %][% END %]
[% IF ( patron.dateofbirth ) %]Date of birth:[% patron.dateofbirth | $KohaDates %][% END %]
- [% IF ( patron.sex ) %]Gender:[% IF ( patron.sex == 'F' ) %]Female[% ELSIF ( patron.sex == 'M' ) %]Male[% ELSIF ( patron.sex == 'O' ) %]Other[% ELSE %][% patron.sex | html %][% END %][% END %]
+ [% IF ( patron.sex ) %]Gender:[% IF ( patron.sex == 'F' ) %]Female[% ELSIF ( patron.sex == 'M' ) %]Male[% ELSIF ( patron.sex == 'O' ) %][% tp('gender', 'Other') | html %][% ELSE %][% patron.sex | html %][% END %][% END %]
[% END %]
[% IF guarantees %]
--- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt
+++ a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt
@@ -184,7 +184,7 @@
[% IF ( patron.sex ) %]
Gender:
- [% IF ( patron.sex == 'F' ) %]Female[% ELSIF ( patron.sex == 'M' ) %]Male[% ELSIF (patron.sex == 'O' ) %]Other[% ELSE %][% patron.sex | html %][% END %]
+ [% IF ( patron.sex == 'F' ) %]Female[% ELSIF ( patron.sex == 'M' ) %]Male[% ELSIF (patron.sex == 'O' ) %][% tp('gender', 'Other') | html %][% ELSE %][% patron.sex | html %][% END %]
[% END %]
[% END %]
--- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-memberentry.tt
+++ a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-memberentry.tt
@@ -7,6 +7,7 @@
[% USE KohaDates %]
[% USE Math %]
[% USE AdditionalContents %]
+[% PROCESS 'i18n.inc' %]
[% SET OpacNav = AdditionalContents.get( location => "OpacNav", lang => lang, library => logged_in_user.branchcode || default_branch, blocktitle => 0 ) %]
[% SET OpacNavBottom = AdditionalContents.get( location => "OpacNavBottom", lang => lang, library => logged_in_user.branchcode || default_branch, blocktitle => 0 ) %]
[% SET userupdateview = 1 %]
@@ -432,7 +433,7 @@
[% END %]
-
+
[% IF borrower.sex == 'O' %]
[% ELSE %]
--