adjust labelling
authorGalen Charlton <gmc@esilibrary.com>
Fri, 26 Aug 2016 15:56:41 +0000 (11:56 -0400)
committerGalen Charlton <gmc@equinoxinitiative.org>
Fri, 3 Nov 2017 20:04:50 +0000 (16:04 -0400)
- The action buttons for acknowledging a temporary
  copy alert now use "Clear"
- Menu items for bringing up the copy alerts dialog
  now uniformly use "Manage Copy Alerts"

Signed-off-by: Galen Charlton <gmc@esilibrary.com>
Signed-off-by: Galen Charlton <gmc@equinoxinitiative.org>
Open-ILS/src/templates/staff/cat/catalog/t_holdings.tt2
Open-ILS/src/templates/staff/cat/volcopy/t_copy_alerts.tt2
Open-ILS/src/templates/staff/circ/checkin/t_checkin_table.tt2
Open-ILS/src/templates/staff/circ/patron/t_checkout.tt2
Open-ILS/src/templates/staff/circ/renew/t_renew.tt2
Open-ILS/src/templates/staff/share/t_copy_alert_manager_dialog.tt2

index 1e98580..1f82fd5 100644 (file)
@@ -83,7 +83,7 @@
     <eg-grid-action handler="replaceBarcodes" group="[% l('Edit') %]"
       label="[% l('Replace Barcodes') %]"></eg-grid-action>
     <eg-grid-action handler="selectedHoldingsCopyAlertsManage" group="[% l('Edit') %]"
-      label="[% l('Acknowledge Copy Alerts') %]"></eg-grid-action>
+      label="[% l('Manage Copy Alerts') %]"></eg-grid-action>
 
     <eg-grid-action handler="selectedHoldingsEmptyVolCopyDelete" group="[% l('Delete') %]" disabled="vols_not_shown"
       label="[% l('Empty Volumes') %]"></eg-grid-action>
index 043a5ea..f18233f 100644 (file)
@@ -71,7 +71,7 @@
             <div class="col-md-3">
               <label>
                 <input type="checkbox" ng-model="acked" ng-change="acked ? a.ack_time('now') : a.ack_time(null)"/>
-                [% l('Acknowledge?') %]
+                [% l('Clear?') %]
               </label>
             </div>
           </div>
index c0ade10..dc938fd 100644 (file)
@@ -37,7 +37,7 @@
   </eg-grid-action>
   <eg-grid-action 
     handler="manageCopyAlerts"
-    label="[% l('Acknowledge Alerts') %]">
+    label="[% l('Manage Copy Alerts') %]">
   </eg-grid-action>
 
   <!-- Show Group -->
index 8980a33..4b93b7e 100644 (file)
@@ -99,7 +99,7 @@
   </eg-grid-action>
   <eg-grid-action
     handler="manageCopyAlerts"
-    label="[% l('Acknowledge Alerts') %]">
+    label="[% l('Manage Copy Alerts') %]">
   </eg-grid-action>
 
   <eg-grid-field label="[% l('Balance Owed') %]"     
index 7f006ce..2acc5eb 100644 (file)
@@ -73,7 +73,7 @@
   </eg-grid-action>
   <eg-grid-action
     handler="manageCopyAlerts"
-    label="[% l('Acknowledge Alerts') %]">
+    label="[% l('Manage Copy Alerts') %]">
   </eg-grid-action>
 
 
index ed28d85..39d3d58 100644 (file)
@@ -15,7 +15,7 @@
         <div class="col-md-2">
           <button ng-if="canBeAcknowledged(alert)"
                   class="btn btn-xs btn-default"
-                  ng-click="alert.acked = !alert.acked" >[% l('Acknowledge') %]</button>
+                  ng-click="alert.acked = !alert.acked" >[% l('Clear') %]</button>
           <button ng-if="canBeRemoved(alert) && mode == 'manage'"
                   class="btn btn-xs btn-default"
                   ng-click="alert.acked = !alert.acked" >[% l('Remove') %]</button>