Add missing oils_i18n call to upgrade script
authorDan Wells <dbw2@calvin.edu>
Wed, 10 Jul 2013 15:39:08 +0000 (11:39 -0400)
committerDan Wells <dbw2@calvin.edu>
Wed, 10 Jul 2013 15:49:59 +0000 (11:49 -0400)
Simple thinko fix for missing translation function call.

Signed-off-by: Dan Wells <dbw2@calvin.edu>
Signed-off-by: Remington Steed <rjs7@calvin.edu>
Open-ILS/src/sql/Pg/upgrade/0803.data.fill_empty_description.sql

index 590e717..bb51fe3 100644 (file)
@@ -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;