From: phasefx Date: Wed, 4 Nov 2009 21:28:23 +0000 (+0000) Subject: wrong identifiers for the plural versions of these strings X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=0f0f14aa48668955aa63f868aac26047e686e75e;p=evergreen%2Fjoelewis.git wrong identifiers for the plural versions of these strings git-svn-id: svn://svn.open-ils.org/ILS/trunk@14775 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/xul/staff_client/server/patron/holds.js b/Open-ILS/xul/staff_client/server/patron/holds.js index b72b65ab9a..be3914ceaa 100644 --- a/Open-ILS/xul/staff_client/server/patron/holds.js +++ b/Open-ILS/xul/staff_client/server/patron/holds.js @@ -763,7 +763,7 @@ patron.holds.prototype = { var hold_list = util.functional.map_list(obj.retrieve_ids, function(o){return o.id;}); var msg_singular = document.getElementById('circStrings').getFormattedString('staff.circ.holds.activation_date.prompt',[hold_list.join(', ')]); - var msg_plural = document.getElementById('circStrings').getFormattedString('staff.circ.holds.activation_date.prompt',[hold_list.join(', ')]); + var msg_plural = document.getElementById('circStrings').getFormattedString('staff.circ.holds.activation_date.prompt.plural',[hold_list.join(', ')]); var msg = obj.retrieve_ids.length > 1 ? msg_plural : msg_singular; var value = 'YYYY-MM-DD'; var title = document.getElementById('circStrings').getString('staff.circ.holds.modifying_holds'); @@ -808,7 +808,7 @@ patron.holds.prototype = { var hold_list = util.functional.map_list(obj.retrieve_ids, function(o){return o.id;}); var msg_singular = document.getElementById('circStrings').getFormattedString('staff.circ.holds.expire_time.prompt',[hold_list.join(', ')]); - var msg_plural = document.getElementById('circStrings').getFormattedString('staff.circ.holds.expire_time.prompt',[hold_list.join(', ')]); + var msg_plural = document.getElementById('circStrings').getFormattedString('staff.circ.holds.expire_time.prompt.plural',[hold_list.join(', ')]); var msg = obj.retrieve_ids.length > 1 ? msg_plural : msg_singular; var value = 'YYYY-MM-DD'; var title = document.getElementById('circStrings').getString('staff.circ.holds.modifying_holds'); @@ -850,7 +850,7 @@ patron.holds.prototype = { var hold_list = util.functional.map_list(obj.retrieve_ids, function(o){return o.id;}); var msg_singular = document.getElementById('circStrings').getFormattedString('staff.circ.holds.shelf_expire_time.prompt',[hold_list.join(', ')]); - var msg_plural = document.getElementById('circStrings').getFormattedString('staff.circ.holds.shelf_expire_time.prompt',[hold_list.join(', ')]); + var msg_plural = document.getElementById('circStrings').getFormattedString('staff.circ.holds.shelf_expire_time.prompt.plural',[hold_list.join(', ')]); var msg = obj.retrieve_ids.length > 1 ? msg_plural : msg_singular; var value = 'YYYY-MM-DD'; var title = document.getElementById('circStrings').getString('staff.circ.holds.modifying_holds');