Koha/koha-tmpl/intranet-tmpl/prog/en/includes/ill-batch-modal-strings.inc
Pedro Amorim fc83fb3ebb
Bug 30719: (QA follow-up) Squash:
This is a squash of 25 QA patches located at:
    https://github.com/PTFS-Europe/koha/commits/new_30719

Bug 30719: (QA follow-up) Batch column should be hidden by default
Bug 30719: (QA follow-up) Fix wrong tt filter type
Bug 30719: (QA follow-up) Make atomicupdate idempotent
Bug 30719: (QA follow-up) Use COMMENT syntax in database files
Bug 30719: (QA follow-up) Fix tiny boolean is_system
Bug 30719: (QA follow-up) Add missing CONSTRAINT entries from kohastructure.sql to the atomicupdate file
Bug 30719: (QA follow-up) Add missing koha_object_class and
koha_objects_class methods
Bug 30719: (QA follow-up) Swap search to find
Bug 30719: (QA follow-up) Fix tests
Bug 30719: (QA follow-up) API terminology - id -> batch_id
Bug 30719: (QA follow-up) API terminology - borrowernumber -> patron_id
Bug 30719: (QA follow-up) API terminology - branchcode -> library_id
Bug 30719: (QA follow-up) Make mandatory illbatch_statuses translatable
Bug 30719: (QA follow-up) Improve translatability
Bug 30719: (QA follow-up) Fix capitalization of Interlibrary Loan
Bug 30719: (QA follow-up) Change Branch to Library in ILL batches table
Bug 30719: (QA follow-up) Add template WRAPPER to batch statuses breadrcrumbs
Bug 30719: (QA follow-up) Utilize patron_to_html function to display patron info in batches table
Bug 30719: (QA follow-up) Add mandatory batch statuses to the atomicupdate
Bug 30719: (QA follow-up) Add page-section to the batch statuses list page
Bug 30719: (QA follow-up) Style Save button on batch status edit page
Bug 30719: (QA follow-up) Add question mark to label string, rephrase new ILL batch button
Bug 30719: (QA follow-up) Add noExport class to action columns in batch list table and batch modal table
Bug 30719: (QA follow-up) Add page-section and headers to ILL batch table
Bug 30719: (QA follow-up) Perltidy

Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
2023-10-17 14:45:18 -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 -->