From: Dan Wells Date: Wed, 10 Jul 2013 15:39:08 +0000 (-0400) Subject: Add missing oils_i18n call to upgrade script X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=a7b06d177875b01d73f5f33be9e138d6b81c799e;p=evergreen%2Fmasslnc.git Add missing oils_i18n call to upgrade script Simple thinko fix for missing translation function call. Signed-off-by: Dan Wells Signed-off-by: Remington Steed --- diff --git a/Open-ILS/src/sql/Pg/upgrade/0803.data.fill_empty_description.sql b/Open-ILS/src/sql/Pg/upgrade/0803.data.fill_empty_description.sql index 590e7178d9..bb51fe30f6 100644 --- a/Open-ILS/src/sql/Pg/upgrade/0803.data.fill_empty_description.sql +++ b/Open-ILS/src/sql/Pg/upgrade/0803.data.fill_empty_description.sql @@ -3,7 +3,9 @@ BEGIN; SELECT evergreen.upgrade_deps_block_check('0803', :eg_version); UPDATE config.org_unit_setting_type -SET description = 'The amount of time an item will be held on the shelf before the hold expires. For example: "2 weeks" or "5 days"' +SET description = oils_i18n_gettext('circ.holds.default_shelf_expire_interval', + 'The amount of time an item will be held on the shelf before the hold expires. For example: "2 weeks" or "5 days"', + 'coust', 'description') WHERE name = 'circ.holds.default_shelf_expire_interval'; COMMIT;