From 0d96d11d9651fbcabf33d8791ebba18c117aa4b5 Mon Sep 17 00:00:00 2001 From: Dan Wells Date: Wed, 10 Jul 2013 11:39:08 -0400 Subject: [PATCH] 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 --- Open-ILS/src/sql/Pg/upgrade/0803.data.fill_empty_description.sql | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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; -- 2.11.0