From: dbs Date: Wed, 25 Aug 2010 14:33:47 +0000 (+0000) Subject: Provide i18n support for some coust labels and descriptions X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=4523acfb5c1f2ce2407880f6a9db495bbf68c423;p=evergreen%2Fbjwebb.git Provide i18n support for some coust labels and descriptions git-svn-id: svn://svn.open-ils.org/ILS/trunk@17334 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/src/sql/Pg/950.data.seed-values.sql b/Open-ILS/src/sql/Pg/950.data.seed-values.sql index 297d16a80..ebb6eefb2 100644 --- a/Open-ILS/src/sql/Pg/950.data.seed-values.sql +++ b/Open-ILS/src/sql/Pg/950.data.seed-values.sql @@ -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') +;