]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/1302.data.lp1826759_items_out_typo.sql
LP#1831803: (follow-up) update release notes formatting
[Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / 1302.data.lp1826759_items_out_typo.sql
1 BEGIN;
2
3 SELECT evergreen.upgrade_deps_block_check('1302', :eg_version);
4
5 UPDATE config.org_unit_setting_type
6     SET description = oils_i18n_gettext(
7         'ui.circ.items_out.longoverdue',
8         'Value is a numeric code, describing: A. In which tab ("Items Checked Out", '||
9         'or "Other/Special Circulations") the circulation '||
10         'should appear while checked out, and B. Whether the circulation should '||
11         'continue to appear in the "Other" tab when checked in with '||
12         'outstanding fines.  '||
13         '1 = (A) "Items", (B) "Other".  2 = (A) "Other", (B) "Other".  ' ||
14         '5 = (A) "Items", (B) do not display.  6 = (A) "Other", (B) do not display.',
15         'coust',
16         'description'
17     )
18     WHERE name = 'ui.circ.items_out.longoverdue';
19
20 UPDATE config.org_unit_setting_type
21     set description = oils_i18n_gettext(
22         'ui.circ.items_out.lost',
23         'Value is a numeric code, describing: A. In which tab ("Items Checked Out", '||
24         'or "Other/Special Circulations") the circulation '||
25         'should appear while checked out, and B. Whether the circulation should '||
26         'continue to appear in the "Other" tab when checked in with '||
27         'outstanding fines.  '||
28         '1 = (A) "Items", (B) "Other".  2 = (A) "Other", (B) "Other".  ' ||
29         '5 = (A) "Items", (B) do not display.  6 = (A) "Other", (B) do not display.',
30         'coust',
31         'description'
32     )
33     WHERE name = 'ui.circ.items_out.lost';
34
35 UPDATE config.org_unit_setting_type
36     set description = oils_i18n_gettext(
37         'ui.circ.items_out.claimsreturned',
38         'Value is a numeric code, describing: A. In which tab ("Items Checked Out", '||
39         'or "Other/Special Circulations") the circulation '||
40         'should appear while checked out, and B. Whether the circulation should '||
41         'continue to appear in the "Other" tab when checked in with '||
42         'outstanding fines.  '||
43         '1 = (A) "Items", (B) "Other".  2 = (A) "Other", (B) "Other".  ' ||
44         '5 = (A) "Items", (B) do not display.  6 = (A) "Other", (B) do not display.',
45         'coust',
46         'description'
47     )
48     WHERE name = 'ui.circ.items_out.claimsreturned';
49
50 COMMIT;