Bugzilla – Attachment 142272 Details for
Bug 31672
Remove 'Your' from tab descriptions in OPAC patron account
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 31672: Remove 'Your' from tab descriptions in OPAC patron account
Bug-31672-Remove-Your-from-tab-descriptions-in-OPA.patch (text/plain), 7.47 KB, created by
Lucas Gass (lukeg)
on 2022-10-20 17:38:14 UTC
(
hide
)
Description:
Bug 31672: Remove 'Your' from tab descriptions in OPAC patron account
Filename:
MIME Type:
Creator:
Lucas Gass (lukeg)
Created:
2022-10-20 17:38:14 UTC
Size:
7.47 KB
patch
obsolete
>From 11c5d9c2287012cd941307ce6279b042cf2d88b3 Mon Sep 17 00:00:00 2001 >From: Katrin Fischer <katrin.fischer.83@web.de> >Date: Mon, 3 Oct 2022 16:48:52 +0000 >Subject: [PATCH] Bug 31672: Remove 'Your' from tab descriptions in OPAC patron > account > >I'll try to keep the test plan simple: >* Go to patron account in OPAC >* Verify that the your from the beginning of the tab > descriptions has been removed > >Bonus: This moves the Recalls history tab below the Holds history >as this is the more logical place for it. > >Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> > >Signed-off-by: Lucas Gass <lucas@bywatersolutions.com> >--- > .../bootstrap/en/includes/usermenu.inc | 52 +++++++++---------- > 1 file changed, 26 insertions(+), 26 deletions(-) > >diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/includes/usermenu.inc b/koha-tmpl/opac-tmpl/bootstrap/en/includes/usermenu.inc >index 1c23e01181..f81b58ffe4 100644 >--- a/koha-tmpl/opac-tmpl/bootstrap/en/includes/usermenu.inc >+++ b/koha-tmpl/opac-tmpl/bootstrap/en/includes/usermenu.inc >@@ -7,14 +7,14 @@ > [% ELSE %] > <li> > [% END %] >- <a href="/cgi-bin/koha/opac-user.pl">your summary</a></li> >+ <a href="/cgi-bin/koha/opac-user.pl">Summary</a></li> > [% IF ( OPACFinesTab ) %] > [% IF ( accountview ) %] > <li class="active"> > [% ELSE %] > <li> > [% END %] >- <a href="/cgi-bin/koha/opac-account.pl">your charges</a></li> >+ <a href="/cgi-bin/koha/opac-account.pl">Charges</a></li> > [% END %] > > [% IF ( userupdateview ) %] >@@ -22,11 +22,11 @@ > [% ELSE %] > <li> > [% END %] >- <a href="/cgi-bin/koha/opac-memberentry.pl">your personal details</a></li> >+ <a href="/cgi-bin/koha/opac-memberentry.pl">Personal details</a></li> > > [% IF Koha.Preference('GDPR_Policy') # remove when extending %] > [% IF consentview %]<li class="active">[% ELSE %]<li>[% END %] >- <a href="/cgi-bin/koha/opac-patron-consent.pl">your consents</a> >+ <a href="/cgi-bin/koha/opac-patron-consent.pl">Consents</a> > </li> > [% END %] > >@@ -36,7 +36,7 @@ > [% ELSE %] > <li> > [% END %] >- <a href="/cgi-bin/koha/opac-tags.pl?mine=1">your tags</a></li> >+ <a href="/cgi-bin/koha/opac-tags.pl?mine=1">Tags</a></li> > [% END %] > > [% IF logged_in_user.category.effective_change_password %] >@@ -45,7 +45,7 @@ > [% ELSE %] > <li> > [% END %] >- <a href="/cgi-bin/koha/opac-passwd.pl">change your password</a></li> >+ <a href="/cgi-bin/koha/opac-passwd.pl">Change password</a></li> > [% END %] > > [% IF EnableOpacSearchHistory %] >@@ -54,7 +54,7 @@ > [% ELSE %] > <li> > [% END %] >- <a href="/cgi-bin/koha/opac-search-history.pl">your search history</a></li> >+ <a href="/cgi-bin/koha/opac-search-history.pl">Search history</a></li> > [% END %] > > [% IF ( opacreadinghistory ) %] >@@ -63,14 +63,14 @@ > [% ELSE %] > <li> > [% END %] >- <a href="/cgi-bin/koha/opac-readingrecord.pl">your checkout history</a></li> >+ <a href="/cgi-bin/koha/opac-readingrecord.pl">Checkout history</a></li> > [% IF ( OPACPrivacy ) %] > [% IF ( privacyview ) %] > <li class="active"> > [% ELSE %] > <li> > [% END %] >- <a href="/cgi-bin/koha/opac-privacy.pl">your privacy</a></li> >+ <a href="/cgi-bin/koha/opac-privacy.pl">Privacy</a></li> > [% END %] > [% END # / opacreadinghistory %] > >@@ -80,7 +80,16 @@ > [% ELSE %] > <li> > [% END %] >- <a href="/cgi-bin/koha/opac-holdshistory.pl">your holds history</a></li> >+ <a href="/cgi-bin/koha/opac-holdshistory.pl">Holds history</a></li> >+ [% END %] >+ >+ [% IF Koha.Preference('UseRecalls') %] >+ [% IF ( recallsview ) %] >+ <li class="active"> >+ [% ELSE %] >+ <li> >+ [% END %] >+ <a href="/cgi-bin/koha/opac-recalls.pl">Recalls history</a> > [% END %] > > [% IF ( suggestion ) %] >@@ -89,7 +98,7 @@ > [% ELSE %] > <li> > [% END %] >- <a href="/cgi-bin/koha/opac-suggestions.pl">your purchase suggestions</a></li> >+ <a href="/cgi-bin/koha/opac-suggestions.pl">Purchase suggestions</a></li> > [% END %] > > [% IF ( EnhancedMessagingPreferences ) %] >@@ -99,7 +108,7 @@ > [% ELSE %] > <li> > [% END %] >- <a href="/cgi-bin/koha/opac-messaging.pl">your messaging</a></li> >+ <a href="/cgi-bin/koha/opac-messaging.pl">Messaging</a></li> > [% END %] > [% END %] > >@@ -109,7 +118,7 @@ > [% ELSE %] > <li> > [% END %] >- <a href="/cgi-bin/koha/opac-shelves.pl?op=list">your lists</a></li> >+ <a href="/cgi-bin/koha/opac-shelves.pl?op=list">Lists</a></li> > [% END %] > > [% IF Koha.Preference( 'RoutingSerials' ) && logged_in_user && logged_in_user.get_routing_lists.count %] >@@ -118,7 +127,7 @@ > [% ELSE %] > <li> > [% END %] >- <a href="/cgi-bin/koha/opac-routing-lists.pl">your routing lists</a></li> >+ <a href="/cgi-bin/koha/opac-routing-lists.pl">Routing lists</a></li> > [% END %] > > [% IF Koha.Preference( 'useDischarge' ) == 1 %] >@@ -127,7 +136,7 @@ > [% ELSE %] > <li> > [% END %] >- <a href="/cgi-bin/koha/opac-discharge.pl">ask for a discharge</a></li> >+ <a href="/cgi-bin/koha/opac-discharge.pl">Ask for discharge</a></li> > [% END %] > > [% IF Koha.Preference( 'ILLModule' ) == 1 %] >@@ -136,7 +145,7 @@ > [% ELSE %] > <li> > [% END %] >- <a href="/cgi-bin/koha/opac-illrequests.pl">your interlibrary loan requests</a></li> >+ <a href="/cgi-bin/koha/opac-illrequests.pl">Interlibrary loan requests</a></li> > [% END %] > > [% IF Koha.Preference( 'CurbsidePickup' ) %] >@@ -145,16 +154,7 @@ > [% ELSE %] > <li> > [% END %] >- <a href="/cgi-bin/koha/opac-curbside-pickups.pl">your curbside pickups</a></li> >- [% END %] >- >- [% IF Koha.Preference('UseRecalls') %] >- [% IF ( recallsview ) %] >- <li class="active"> >- [% ELSE %] >- <li> >- [% END %] >- <a href="/cgi-bin/koha/opac-recalls.pl">your recalls history</a> >+ <a href="/cgi-bin/koha/opac-curbside-pickups.pl">Curbside pickups</a></li> > [% END %] > > </ul> >-- >2.30.2
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 31672
:
141281
|
141282
| 142272