352d46464c
As per comment #17: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=18589#c17 Sorry Josef, I honestly have no idea where those tabs came from :( Every once in a while my copy of Vim decides to embarass me and stick in tabs instead of spaces... <shakes fist at screen> Signed-off-by: Josef Moravec <josef.moravec@gmail.com> Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
19 lines
594 B
C++
19 lines
594 B
C++
<script>
|
|
var ill_borrower_details = _("View borrower details");
|
|
var ill_biblio_details = _("View biblio details");
|
|
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>
|