[open-ils-commits] r16616 - in trunk/Open-ILS/xul/staff_client/server: locale/en-US patron (phasefx)

svn at svn.open-ils.org svn at svn.open-ils.org
Mon Jun 7 13:55:17 EDT 2010


Author: phasefx
Date: 2010-06-07 13:55:13 -0400 (Mon, 07 Jun 2010)
New Revision: 16616

Modified:
   trunk/Open-ILS/xul/staff_client/server/locale/en-US/patron.properties
   trunk/Open-ILS/xul/staff_client/server/patron/display.js
Log:
I'm not a fan of I18N-effort on debug output meant for developers.  In this case, the wrong preferences file was being referenced, causing an error

Modified: trunk/Open-ILS/xul/staff_client/server/locale/en-US/patron.properties
===================================================================
--- trunk/Open-ILS/xul/staff_client/server/locale/en-US/patron.properties	2010-06-07 16:53:55 UTC (rev 16615)
+++ trunk/Open-ILS/xul/staff_client/server/locale/en-US/patron.properties	2010-06-07 17:55:13 UTC (rev 16616)
@@ -75,7 +75,6 @@
 staff.patron.bills.void_all_billings.billings_voided=Billings voided.
 staff.patron.bill_wizard.patron_bill_finish.billing_added=Billing added.
 staff.patron.display.cmd_search_form.no_patron=No Patron Selected
-staff.patron.display.cmd_patron_edit.edit_search=Editor would like to search for: %1$s
 staff.patron.display.cmd_patron_delete.dialog.title=Delete Patron Account
 staff.patron.display.cmd_patron_delete.dialog.message=Completely OBLITERATE this patron account, including bills, payments, bookbags, etc?  This is IRREVERSIBLE.
 staff.patron.display.cmd_patron_delete.dialog.confirmation=Check here to confirm this action.

Modified: trunk/Open-ILS/xul/staff_client/server/patron/display.js
===================================================================
--- trunk/Open-ILS/xul/staff_client/server/patron/display.js	2010-06-07 16:53:55 UTC (rev 16615)
+++ trunk/Open-ILS/xul/staff_client/server/patron/display.js	2010-06-07 17:55:13 UTC (rev 16616)
@@ -218,7 +218,7 @@
                                 obj.reset_nav_styling('cmd_patron_edit');
 
                                 function spawn_search(s) {
-                                    obj.error.sdump('D_TRACE', $("commonStrings").getFormattedString('staff.patron.display.cmd_patron_edit.edit_search', [js2JSON(s)]) ); 
+                                    obj.error.sdump('D_TRACE', 'Editor would like to search for: ' + js2JSON(s)); 
                                     obj.OpenILS.data.stash_retrieve();
                                     xulG.new_patron_tab( {}, { 'doit' : 1, 'query' : js2JSON(s) } );
                                 }



More information about the open-ils-commits mailing list