]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/templates/staff/circ/share/circ_strings.tt2
LP#1350042 Browser client templates/scripts (phase 1)
[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.COPY_ALERT_MSG_DIALOG_TITLE =
16   '[% l('Copy Alert Message for "[_1]"', '{{copy_barcode}}') %]';
17 s.UNCAT_ALERT_DIALOG =
18   '[% l('Copy "[_1]" was mis-scanned or is not cataloged', '{{copy_barcode}}') %]';
19 s.PERMISSION_DENIED = 
20   '[% l('Permission Denied : [_1]', '{{permission}}') %]';
21 s.PRECAT_CHECKIN_MSG = 
22   '[% l("This item needs to be routed to CATALOGING") %]';
23 s.LOCATION_ALERT_MSG =
24   '[% l("Item [_1] needs to be routed to [_2]", 
25     "{{copy.barcode()}}","{{copy.location().name()}}") %]';
26 s.MARK_DAMAGED_CONFIRM = '[% l("Mark {{num_items}} items as DAMAGED?") %]';
27 s.MARK_MISSING_CONFIRM = '[% l("Mark {{num_items}} items as MISSING?") %]';
28 s.ABORT_TRANSIT_CONFIRM = '[% l("Abort {{num_transits}} transits?") %]';
29 s.ROUTE_TO_HOLDS_SHELF = '[% l("Holds Shelf") %]';
30 s.ROUTE_TO_CATALOGING = '[% l("Cataloging") %]';
31 s.COPY_IN_TRANSIT = '[% l("Copy is In-Transit") %]';
32 s.TOO_MANY_CLAIMS_RETURNED = 
33   '[% l("Patron exceeds claims returned count.  Force this action?") %]';
34 s.MARK_NEVER_CHECKED_OUT = 
35   '[% l("Mark Never Checked Out: [_1]", "{{barcodes.toString()}}") %]'
36 }]);
37 </script>
38
39