]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/templates/staff/circ/share/circ_strings.tt2
4f9c917ada986b9b69a56497bff0aee325382986
[working/Evergreen.git] / Open-ILS / src / templates / staff / circ / share / circ_strings.tt2
1 [%# Strings for circ/services/circ.js %]
2
3 <script>
4 angular.module('egCoreMod').run(['egStrings', function(s) {
5 s.PATRON_CARD_INACTIVE =
6   "[% l('The card used to retrieve this account is inactive and may not be used to circulate items.') %]";
7 s.PATRON_INACTIVE =
8   "[% l('This account is inactive and may not circulate items.') %]";
9 s.PATRON_ACCOUNT_EXPIRED =
10   "[% l('This account has expired and may not circulate items.') %]";
11 s.CIRC_CLAIMS_RETURNED = 
12   '[% l('Item "[_1]" is marked as Claims Returned', '{{barcode}}') %]';
13 s.CHECKOUT_FAILED_GENERIC =
14   '[% l('Unable to checkout copy "[_1]" : [_2]', '{{barcode}}', '{{textcode}}') %]';
15 s.EMAILED_CHECKOUT_RECEIPT =
16   "[% l('Emailed checkout receipt') %]";
17 s.COPY_ALERT_MSG_DIALOG_TITLE =
18   '[% l('Copy Alert Message for "[_1]"', '{{copy_barcode}}') %]';
19 s.UNCAT_ALERT_DIALOG =
20   '[% l('Copy "[_1]" was mis-scanned or is not cataloged', '{{copy_barcode}}') %]';
21 s.PERMISSION_DENIED = 
22   '[% l('Permission Denied : [_1]', '{{permission}}') %]';
23 s.PRECAT_CHECKIN_MSG = 
24   '[% l("This item needs to be routed to CATALOGING") %]';
25 s.LOCATION_ALERT_MSG =
26   '[% l("Item [_1] needs to be routed to [_2]", 
27     "{{copy.barcode()}}","{{copy.location().name()}}") %]';
28 s.MARK_DAMAGED_CONFIRM = '[% l("Mark {{num_items}} items as DAMAGED?") %]';
29 s.MARK_MISSING_CONFIRM = '[% l("Mark {{num_items}} items as MISSING?") %]';
30 s.ABORT_TRANSIT_CONFIRM = '[% l("Abort {{num_transits}} transits?") %]';
31 s.ROUTE_TO_HOLDS_SHELF = '[% l("Holds Shelf") %]';
32 s.ROUTE_TO_CATALOGING = '[% l("Cataloging") %]';
33 s.COPY_IN_TRANSIT = '[% l("Copy is In-Transit") %]';
34 s.TOO_MANY_CLAIMS_RETURNED = 
35   '[% l("Patron exceeds claims returned count.  Force this action?") %]';
36 s.MARK_NEVER_CHECKED_OUT = 
37   '[% l("Mark Never Checked Out: [_1]", "{{barcodes.toString()}}") %]'
38 }]);
39 </script>
40
41