View | Details | Raw Unified | Return to bug 26015
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/permissions.inc (-1 / +1 lines)
Lines 7-13 Link Here
7
        <span class="main_permission circulate_permission">Check out and check in items</span>
7
        <span class="main_permission circulate_permission">Check out and check in items</span>
8
        <span class="permissioncode">([% name | html %])</span>
8
        <span class="permissioncode">([% name | html %])</span>
9
    [%- CASE 'catalogue' -%]
9
    [%- CASE 'catalogue' -%]
10
        <span class="main_permission catalogue_permission">Staff access, allows viewing of catalogue in staff client</span>
10
        <span class="main_permission catalogue_permission">Staff access, allows viewing of catalogue in staff interface</span>
11
        <span class="permissioncode">([% name | html %])</span> <span class="required">Required for staff login.</span>
11
        <span class="permissioncode">([% name | html %])</span> <span class="required">Required for staff login.</span>
12
    [%- CASE 'parameters' -%]
12
    [%- CASE 'parameters' -%]
13
        <span class="main_permission parameters_permission">Manage Koha system settings (Administration panel)</span>
13
        <span class="main_permission parameters_permission">Manage Koha system settings (Administration panel)</span>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt (-1 / +1 lines)
Lines 267-273 Link Here
267
                <tr><th scope="row"><b>Warning</b> </th><td>System preference 'AutoCreateAuthorities' set, but needs 'BiblioAddsAuthorities' set as well.</td></tr>
267
                <tr><th scope="row"><b>Warning</b> </th><td>System preference 'AutoCreateAuthorities' set, but needs 'BiblioAddsAuthorities' set as well.</td></tr>
268
                [% END %]
268
                [% END %]
269
                [% IF (warnPrefEasyAnalyticalRecords) %]
269
                [% IF (warnPrefEasyAnalyticalRecords) %]
270
                <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>
270
                <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>
271
                [% END %]
271
                [% END %]
272
                [% IF warnPrefAnonymousPatronOPACPrivacy %]
272
                [% IF warnPrefAnonymousPatronOPACPrivacy %]
273
                    <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>
273
                    <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>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/categories.tt (-2 / +2 lines)
Lines 123-129 Link Here
123
                    </select>
123
                    </select>
124
                </li>
124
                </li>
125
                <li>
125
                <li>
126
                    <label for="hidelostitems">Lost items in staff client: </label>
126
                    <label for="hidelostitems">Lost items in staff interface: </label>
127
                    <select name="hidelostitems" id="hidelostitems">
127
                    <select name="hidelostitems" id="hidelostitems">
128
                        [% IF category.hidelostitems %]
128
                        [% IF category.hidelostitems %]
129
                            <option value="0">Shown</option>
129
                            <option value="0">Shown</option>
Lines 345-351 Link Here
345
                <tr><th scope="row">Upperage limit: </th><td>[% category.upperagelimit | html %] years</td></tr>
345
                <tr><th scope="row">Upperage limit: </th><td>[% category.upperagelimit | html %] years</td></tr>
346
                <tr><th scope="row">Enrollment fee: </th><td>[% category.enrolmentfee | $Price %]</td></tr>
346
                <tr><th scope="row">Enrollment fee: </th><td>[% category.enrolmentfee | $Price %]</td></tr>
347
                <tr><th scope="row">Receives overdue notices: </th><td>[% IF category. overduenoticerequired %]Yes[% ELSE %]No[% END %]</td></tr>
347
                <tr><th scope="row">Receives overdue notices: </th><td>[% IF category. overduenoticerequired %]Yes[% ELSE %]No[% END %]</td></tr>
348
                <tr><th scope="row">Lost items in staff client</th><td>[% IF category.hidelostitems %]Hidden by default[% ELSE %]Shown[% END %]</td></tr>
348
                <tr><th scope="row">Lost items in staff interface</th><td>[% IF category.hidelostitems %]Hidden by default[% ELSE %]Shown[% END %]</td></tr>
349
                <tr><th scope="row">Hold fee: </th><td>[% category.reservefee | $Price %]</td></tr>
349
                <tr><th scope="row">Hold fee: </th><td>[% category.reservefee | $Price %]</td></tr>
350
350
351
                [% IF ( Koha.Preference('CheckPrevCheckout') == 'softyes' || Koha.Preference('CheckPrevCheckout') == 'softno' ) %]
351
                [% IF ( Koha.Preference('CheckPrevCheckout') == 'softyes' || Koha.Preference('CheckPrevCheckout') == 'softno' ) %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt (-2 / +1 lines)
Lines 3-9 Link Here
3
[% USE Koha %]
3
[% USE Koha %]
4
[% SET footerjs = 1 %]
4
[% SET footerjs = 1 %]
5
[% INCLUDE 'doc-head-open.inc' %]
5
[% INCLUDE 'doc-head-open.inc' %]
6
<title>Koha staff client</title>
6
<title>Koha staff interface</title>
7
[% Asset.css("css/mainpage.css") | $raw %]
7
[% Asset.css("css/mainpage.css") | $raw %]
8
[% INCLUDE 'doc-head-close.inc' %]
8
[% INCLUDE 'doc-head-close.inc' %]
9
</head>
9
</head>
10
- 

Return to bug 26015