Signed-off-by: Tiffany Little <tlittle@georgialibraries.org>
Signed-off-by: Gina Monti <gmonti@biblio.org>
Signed-off-by: Galen Charlton <gmc@equinoxOLI.org>
'acq',
oils_i18n_gettext(
'acq.fund.allow_rollover_without_money',
- 'Allow funds to be rolled over without bringing the money along',
+ 'Rollover encumbrances only',
'coust',
'label'
),
oils_i18n_gettext(
'acq.fund.allow_rollover_without_money',
- 'Allow funds to be rolled over without bringing the money along. This makes money left in the old fund disappear, modeling its return to some outside entity.',
+ 'Rollover encumbrances only when doing fiscal year end. This makes money left in the old fund disappear, modeling its return to some outside entity.',
'coust',
'description'
),
--- /dev/null
+BEGIN;
+
+UPDATE config.org_unit_setting_type
+ SET label = 'Rollover encumbrances only'
+ SET description = 'Rollover encumbrances only when doing fiscal year end. This makes money left in the old fund disappear, modeling its return to some outside entity.'
+ WHERE name= 'acq.fund.allow_rollover_without_money';
+
+COMMIT;
\ No newline at end of file