Koha/koha-tmpl/intranet-tmpl/prog/en/includes/ill-batch-modal-strings.inc
Pedro Amorim a5dbafec5b
Bug 30719: ILL Batches
- Add batch column to requests table
- Establish if there are any availability or metadata enrichment plugins and pass that to the template
- Verify if we have any backend that can support batches, if not, don't show the option
- Updates to the ILL toolbar
- New ILL batch modal
- New Koha classes
- API specs

Co-authored-by: Andrew Isherwood <andrew.isherwood@ptfs-europe.com>
Signed-off-by: Edith Speller <Edith.Speller@ukhsa.gov.uk>
Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
2023-10-17 14:45:15 -03:00

38 lines
1.6 KiB
PHP

<!-- ill-batch-table-strings.inc -->
<script>
var ill_batch_add = _("Add new batch");
var ill_batch_update = _("Update batch");
var ill_batch_none = _("None");
var ill_batch_retrieving_metadata = _("Retrieving metadata");
var ill_batch_api_fail = _("Unable to retrieve batch details");
var ill_batch_statuses_api_fail = _("Unable to retrieve batch statuses");
var ill_batch_api_request_fail = _("Unable to create local request");
var ill_batch_requests_api_fail = _("Unable to retrieve batch requests");
var ill_batch_unknown = _("Unknown");
var ill_batch_doi = _("DOI");
var ill_batch_pmid = _("PubMed ID");
var ill_populate_waiting = _("Retrieving...");
var ill_populate_failed = _("Failed to retrieve");
var ill_button_remove = _("Remove");
var ill_batch_create_api_fail = _("Unable to create batch request");
var ill_batch_update_api_fail = _("Unable to updatecreate batch request");
var ill_batch_item_remove = _("Are you sure you want to remove this item from the batch");
var ill_batch_create_cancel_button = _("Close");
var ill_batch_metadata_more = _("More");
var ill_batch_metadata_less = _("Less");
var ill_batch_available_via = _("Available via");
var ill_batch_metadata = {
'doi': _("DOI"),
'pmid': _("PubMed ID"),
'issn': _("ISSN"),
'title': _("Title"),
'year': _("Year"),
'issue': _("Issue"),
'pages': _("Pages"),
'publisher': _("Publisher"),
'article_title': _("Article title"),
'article_author': _("Article author"),
'volume': _("Volume")
};
</script>
<!-- / ill-batch-table-strings.inc -->