From a611462cc5c452a1cfbf605d27d2e89f290b9ae3 Mon Sep 17 00:00:00 2001 From: Galen Charlton Date: Mon, 12 Jun 2017 11:11:29 -0400 Subject: [PATCH] webstaff: adjust add special/following issue modal title Signed-off-by: Galen Charlton --- Open-ILS/src/templates/staff/serials/index.tt2 | 1 + Open-ILS/web/js/ui/default/staff/serials/directives/view-items-grid.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Open-ILS/src/templates/staff/serials/index.tt2 b/Open-ILS/src/templates/staff/serials/index.tt2 index 0696cc39f8..20b8994bd8 100644 --- a/Open-ILS/src/templates/staff/serials/index.tt2 +++ b/Open-ILS/src/templates/staff/serials/index.tt2 @@ -42,6 +42,7 @@ angular.module('egCoreMod').run(['egStrings', function(s) { s.SERIALS_EDIT_SISS_HC = "[% l('Edit issue information') %]"; s.SERIALS_ISSUANCE_PREDICT = "[% l('Predict New Issues: Initial Values') %]"; s.SERIALS_ISSUANCE_ADD = "[% l('Add following issue') %]"; + s.SERIALS_SPECIAL_ISSUANCE_ADD = "[% l('Add special issue') %]"; s.CONFIRM_DELETE_SUBSCRIPTION = "[% l('Delete selected subscription(s)?') %]"; s.CONFIRM_DELETE_SUBSCRIPTION_MESSAGE = "[% l('Will delete {{count}} subscription(s)') %]"; diff --git a/Open-ILS/web/js/ui/default/staff/serials/directives/view-items-grid.js b/Open-ILS/web/js/ui/default/staff/serials/directives/view-items-grid.js index 329c7e1dc8..2f7e298fbe 100644 --- a/Open-ILS/web/js/ui/default/staff/serials/directives/view-items-grid.js +++ b/Open-ILS/web/js/ui/default/staff/serials/directives/view-items-grid.js @@ -230,7 +230,7 @@ function($scope , $q , egSerialsCoreSvc , egCore , egGridDataProvider , orderByF $scope.add_special_issuance = function() { return egSerialsCoreSvc.new_holding_code({ - title : egCore.strings.SERIALS_ISSUANCE_ADD, + title : egCore.strings.SERIALS_SPECIAL_ISSUANCE_ADD, can_change_adhoc : false, adhoc : true }).then(function(hc) { -- 2.11.0