[open-ils-commits] r17334 - trunk/Open-ILS/src/sql/Pg (dbs)
svn at svn.open-ils.org
svn at svn.open-ils.org
Wed Aug 25 10:33:49 EDT 2010
Author: dbs
Date: 2010-08-25 10:33:47 -0400 (Wed, 25 Aug 2010)
New Revision: 17334
Modified:
trunk/Open-ILS/src/sql/Pg/950.data.seed-values.sql
Log:
Provide i18n support for some coust labels and descriptions
Modified: trunk/Open-ILS/src/sql/Pg/950.data.seed-values.sql
===================================================================
--- trunk/Open-ILS/src/sql/Pg/950.data.seed-values.sql 2010-08-25 03:12:00 UTC (rev 17333)
+++ trunk/Open-ILS/src/sql/Pg/950.data.seed-values.sql 2010-08-25 14:33:47 UTC (rev 17334)
@@ -6626,13 +6626,17 @@
INSERT INTO config.org_unit_setting_type (name, label, description, datatype)
VALUES
('circ.holds.alert_if_local_avail',
- 'Holds: Local available alert',
- 'If local copy is available, alert the person making the hold',
+ oils_i18n_gettext('circ.holds.alert_if_local_avail',
+ 'Holds: Local available alert', 'coust', 'label'),
+ oils_i18n_gettext('circ.holds.alert_if_local_avail',
+ 'If local copy is available, alert the person making the hold', 'coust', 'description'),
'bool'),
('circ.holds.deny_if_local_avail',
- 'Holds: Local available block',
- 'If local copy is available, deny the creation of the hold',
+ oils_i18n_gettext('circ.holds.deny_if_local_avail',
+ 'Holds: Local available block', 'coust', 'label'),
+ oils_i18n_gettext('circ.holds.deny_if_local_avail',
+ 'If local copy is available, deny the creation of the hold', 'coust', 'description'),
'bool'),
('circ.holds.clear_shelf.no_capture_holds',
@@ -6640,5 +6644,6 @@
'Holds: Bypass hold capture during clear shelf process', 'coust', 'label'),
oils_i18n_gettext( 'circ.holds.clear_shelf.no_capture_holds',
'During the clear shelf process, avoid capturing new holds on cleared items.', 'coust', 'description'),
- 'bool');
+ 'bool')
+;
More information about the open-ils-commits
mailing list