Koha/koha-tmpl/intranet-tmpl/prog/en/includes/ill-list-table-strings.inc
Katrin Fischer 2dfafa5b9d
Bug 32525: Standardize labels on list of ILL requests and ILL request details page
This changes some labels so they match up between the
ILL requests list and the detail page of a request:

* 'View biblio details' to 'View bibliographic record'
* 'View borrower details' to 'View patron details'
* 'Branch' table heading to 'Library' in list view
* 'Request number' to 'Request ID' in list view
* 'Type' to 'Request type' in detail view
* 'Bibliographic record' to 'Bibliographic record ID"

To test:
*  Install a backend and activate the ILL module, see:
   https://wiki.koha-community.org/wiki/ILL_backends
*  Add a new request
*  Compare the table headings with the labels on the detail page
*  Apply patch
*  Verify listed changes from above

Signed-off-by: Owen Leonard <oleonard@myacpl.org>

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
2023-02-24 16:59:16 -03:00

21 lines
672 B
C++

<!-- ill-list-table-strings.inc -->
<script>
var ill_borrower_details = _("View patron details");
var ill_biblio_details = _("View bibliographic record");
var ill_statuses = {
new: _("New request"),
req: _("Requested"),
genreq: _("Requested from partners"),
rev: _("Reverted"),
que: _("Queued request"),
canc: _("Cancellation requested"),
comp: _("Completed"),
del: _("Delete request")
};
var ill_manage = _("Manage request");
var ill_columns = {
biblio_id: _("Bibliographic record ID"),
updated: _("Updated on")
};
</script>
<!-- / ill-list-table-strings.inc -->