Bugzilla – Attachment 107226 Details for
Bug 26015
Terminology: staff interface should be used everywhere
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 26015: Terminology: Use staff interface instead of staff client
Bug-26015-Terminology-Use-staff-interface-instead-.patch (text/plain), 5.66 KB, created by
Owen Leonard
on 2020-07-23 12:00:45 UTC
(
hide
)
Description:
Bug 26015: Terminology: Use staff interface instead of staff client
Filename:
MIME Type:
Creator:
Owen Leonard
Created:
2020-07-23 12:00:45 UTC
Size:
5.66 KB
patch
obsolete
>From 9cc4d5dddfb09c213725aba72b4b458fa99c5a63 Mon Sep 17 00:00:00 2001 >From: Katrin Fischer <katrin.fischer.83@web.de> >Date: Sat, 18 Jul 2020 01:17:45 +0200 >Subject: [PATCH] Bug 26015: Terminology: Use staff interface instead of staff > client > >We have agreed to use 'staff interface' instead of 'staff client' >and similar terms. This fixes the template files where staff client >appears: > >To test: >- Check Administration > Patron categories >- Check the title of the staff interface start page in your > browser tab >- Check the description of hte catalogue permission >- One more: this changes the message shown when someone managed > to log in as the database user - as we no longer allow that, I am > not sure if it can be triggered. > >Signed-off-by: Owen Leonard <oleonard@myacpl.org> >--- > koha-tmpl/intranet-tmpl/prog/en/includes/permissions.inc | 2 +- > koha-tmpl/intranet-tmpl/prog/en/modules/about.tt | 2 +- > koha-tmpl/intranet-tmpl/prog/en/modules/admin/categories.tt | 4 ++-- > koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt | 2 +- > 4 files changed, 5 insertions(+), 5 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/permissions.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/permissions.inc >index 368202b7cc..9f678ebd13 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/includes/permissions.inc >+++ b/koha-tmpl/intranet-tmpl/prog/en/includes/permissions.inc >@@ -7,7 +7,7 @@ > <span class="main_permission circulate_permission">Check out and check in items</span> > <span class="permissioncode">([% name | html %])</span> > [%- CASE 'catalogue' -%] >- <span class="main_permission catalogue_permission">Staff access, allows viewing of catalogue in staff client</span> >+ <span class="main_permission catalogue_permission">Staff access, allows viewing of catalogue in staff interface</span> > <span class="permissioncode">([% name | html %])</span> <span class="required">Required for staff login.</span> > [%- CASE 'parameters' -%] > <span class="main_permission parameters_permission">Manage Koha system settings (Administration panel)</span> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt >index 70ed9b183f..d4d0184aef 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt >@@ -267,7 +267,7 @@ > <tr><th scope="row"><b>Warning</b> </th><td>System preference 'AutoCreateAuthorities' set, but needs 'BiblioAddsAuthorities' set as well.</td></tr> > [% END %] > [% IF (warnPrefEasyAnalyticalRecords) %] >- <tr><th scope="row"><b>Warning</b> </th><td>System preference 'EasyAnalyticalRecords' set, but UseControlNumber preference is set to 'Use'. Set it to 'Don't use' or else the 'Show analytics' links in the staff client and the OPAC will be broken.</td></tr> >+ <tr><th scope="row"><b>Warning</b> </th><td>System preference 'EasyAnalyticalRecords' set, but UseControlNumber preference is set to 'Use'. Set it to 'Don't use' or else the 'Show analytics' links in the staff interface and the OPAC will be broken.</td></tr> > [% END %] > [% IF warnPrefAnonymousPatronOPACPrivacy %] > <tr><th scope="row"><b>Warning</b> </th><td>System preference 'OPACPrivacy' set, but AnonymousPatron preference is set to '0'. Set it to a valid borrower number if you want that this feature works correctly.</td></tr> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/categories.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/categories.tt >index 77146a78db..77f8db112f 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/categories.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/categories.tt >@@ -123,7 +123,7 @@ > </select> > </li> > <li> >- <label for="hidelostitems">Lost items in staff client: </label> >+ <label for="hidelostitems">Lost items in staff interface: </label> > <select name="hidelostitems" id="hidelostitems"> > [% IF category.hidelostitems %] > <option value="0">Shown</option> >@@ -345,7 +345,7 @@ > <tr><th scope="row">Upperage limit: </th><td>[% category.upperagelimit | html %] years</td></tr> > <tr><th scope="row">Enrollment fee: </th><td>[% category.enrolmentfee | $Price %]</td></tr> > <tr><th scope="row">Receives overdue notices: </th><td>[% IF category. overduenoticerequired %]Yes[% ELSE %]No[% END %]</td></tr> >- <tr><th scope="row">Lost items in staff client</th><td>[% IF category.hidelostitems %]Hidden by default[% ELSE %]Shown[% END %]</td></tr> >+ <tr><th scope="row">Lost items in staff interface</th><td>[% IF category.hidelostitems %]Hidden by default[% ELSE %]Shown[% END %]</td></tr> > <tr><th scope="row">Hold fee: </th><td>[% category.reservefee | $Price %]</td></tr> > > [% IF ( Koha.Preference('CheckPrevCheckout') == 'softyes' || Koha.Preference('CheckPrevCheckout') == 'softno' ) %] >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt >index 569af7ac82..ab6098a4b3 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt >@@ -3,7 +3,7 @@ > [% USE Koha %] > [% SET footerjs = 1 %] > [% INCLUDE 'doc-head-open.inc' %] >-<title>Koha staff client</title> >+<title>Koha staff interface</title> > [% Asset.css("css/mainpage.css") | $raw %] > [% INCLUDE 'doc-head-close.inc' %] > </head> >-- >2.11.0
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 26015
:
107049
|
107226
|
107643
|
108304
|
108305
|
109141
|
109142
|
109143
|
109144
|
109145
|
109146
|
109147
|
109279
|
109280
|
109281