Provide i18n support for some coust labels and descriptions
authordbs <dbs@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Wed, 25 Aug 2010 14:33:47 +0000 (14:33 +0000)
committerdbs <dbs@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Wed, 25 Aug 2010 14:33:47 +0000 (14:33 +0000)
git-svn-id: svn://svn.open-ils.org/ILS/trunk@17334 dcc99617-32d9-48b4-a31d-7c20da2025e4

Open-ILS/src/sql/Pg/950.data.seed-values.sql

index 297d16a..ebb6eef 100644 (file)
@@ -6626,13 +6626,17 @@ INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
 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 @@ INSERT INTO config.org_unit_setting_type (name, label, description, datatype)
             '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')
+;