[open-ils-commits] r9191 - in
trunk/Open-ILS/xul/staff_client/server: circ locale/en-US
svn at svn.open-ils.org
svn at svn.open-ils.org
Wed Apr 2 13:40:55 EDT 2008
Author: phasefx
Date: 2008-04-02 13:04:36 -0400 (Wed, 02 Apr 2008)
New Revision: 9191
Modified:
trunk/Open-ILS/xul/staff_client/server/circ/util.js
trunk/Open-ILS/xul/staff_client/server/locale/en-US/circ.properties
Log:
Change some of the wording for hold freeze/thaw. Need to rethink fancy_prompt in light of i18n (maybe do away with it), so there are some lingering uses of freeze/thaw in the staff client
Modified: trunk/Open-ILS/xul/staff_client/server/circ/util.js
===================================================================
--- trunk/Open-ILS/xul/staff_client/server/circ/util.js 2008-04-02 16:44:45 UTC (rev 9190)
+++ trunk/Open-ILS/xul/staff_client/server/circ/util.js 2008-04-02 17:04:36 UTC (rev 9191)
@@ -1412,12 +1412,12 @@
{
'persist' : 'hidden width ordinal',
'id' : 'frozen',
- 'label' : document.getElementById('circStrings').getString('staff.circ.utils.frozen'),
+ 'label' : document.getElementById('circStrings').getString('staff.circ.utils.active'),
'flex' : 0,
'primary' : false,
'hidden' : true,
'render' : function(my) {
- if (get_bool( my.ahr.frozen() )) {
+ if (!get_bool( my.ahr.frozen() )) {
return document.getElementById('circStrings').getString('staff.circ.utils.yes');
} else {
return document.getElementById('circStrings').getString('staff.circ.utils.no');
Modified: trunk/Open-ILS/xul/staff_client/server/locale/en-US/circ.properties
===================================================================
--- trunk/Open-ILS/xul/staff_client/server/locale/en-US/circ.properties 2008-04-02 16:44:45 UTC (rev 9190)
+++ trunk/Open-ILS/xul/staff_client/server/locale/en-US/circ.properties 2008-04-02 17:04:36 UTC (rev 9191)
@@ -264,7 +264,8 @@
staff.circ.utils.hold_status.3=In-Transit
staff.circ.utils.hold_status.4=Ready for pickup
staff.circ.utils.frozen=Frozen?
-staff.circ.utils.thaw_date=Thaw Date
+staff.circ.utils.active=Active?
+staff.circ.utils.thaw_date=Activation Date
staff.circ.utils.thaw_date.none=No Date
staff.circ.utils.pickup_lib=Pickup Library (Full Name)
staff.circ.utils.current_copy.none=No Copy
More information about the open-ils-commits
mailing list