From e2db1fb80955e1ec8b8d8b5bc9da96a7b3f52193 Mon Sep 17 00:00:00 2001 From: Shula Link Date: Thu, 18 Mar 2021 10:27:02 -0400 Subject: [PATCH] Lp 1826759: Spelling correction: oustanding to outstanding Correct the spelling of "oustanding" to "outstanding" in the descriptions of 3 config.org_unit_setting_type entries: * ui.circ.items_out.longoverdue * ui.circ.items_out.lost * ui.circ.items_out.claimsreturned Signed-off-by: Shula Link Signed-off-by: Jason Stephenson --- Open-ILS/src/sql/Pg/950.data.seed-values.sql | 6 +- .../XXXX.data.lp1826759.items_out_typo.sql | 56 +++++++++++++++++++ 2 files changed, 59 insertions(+), 3 deletions(-) create mode 100644 Open-ILS/src/sql/Pg/upgrade/XXXX.data.lp1826759.items_out_typo.sql diff --git a/Open-ILS/src/sql/Pg/950.data.seed-values.sql b/Open-ILS/src/sql/Pg/950.data.seed-values.sql index 45dcbe2fee..d0b580cc2f 100644 --- a/Open-ILS/src/sql/Pg/950.data.seed-values.sql +++ b/Open-ILS/src/sql/Pg/950.data.seed-values.sql @@ -17002,7 +17002,7 @@ VALUES ( 'or "Other/Special Circulations") the circulation '|| 'should appear while checked out, and B. Whether the circulation should '|| 'continue to appear in the "Other" tab when checked in with '|| -'oustanding fines. '|| +'outstanding fines. '|| '1 = (A) "Items", (B) "Other". 2 = (A) "Other", (B) "Other". ' || '5 = (A) "Items", (B) do not display. 6 = (A) "Other", (B) do not display.', 'coust', @@ -17022,7 +17022,7 @@ VALUES ( 'or "Other/Special Circulations") the circulation '|| 'should appear while checked out, and B. Whether the circulation should '|| 'continue to appear in the "Other" tab when checked in with '|| -'oustanding fines. '|| +'outstanding fines. '|| '1 = (A) "Items", (B) "Other". 2 = (A) "Other", (B) "Other". ' || '5 = (A) "Items", (B) do not display. 6 = (A) "Other", (B) do not display.', 'coust', @@ -17042,7 +17042,7 @@ VALUES ( 'or "Other/Special Circulations") the circulation '|| 'should appear while checked out, and B. Whether the circulation should '|| 'continue to appear in the "Other" tab when checked in with '|| -'oustanding fines. '|| +'outstanding fines. '|| '1 = (A) "Items", (B) "Other". 2 = (A) "Other", (B) "Other". ' || '5 = (A) "Items", (B) do not display. 6 = (A) "Other", (B) do not display.', 'coust', diff --git a/Open-ILS/src/sql/Pg/upgrade/XXXX.data.lp1826759.items_out_typo.sql b/Open-ILS/src/sql/Pg/upgrade/XXXX.data.lp1826759.items_out_typo.sql new file mode 100644 index 0000000000..d6c7ba05ed --- /dev/null +++ b/Open-ILS/src/sql/Pg/upgrade/XXXX.data.lp1826759.items_out_typo.sql @@ -0,0 +1,56 @@ +BEGIN; + +UPDATE config.org_unit_setting_type + SET description = oils_i18n_gettext('ui.circ.show_billing_tab_on_bills', + 'If enabled and a patron has outstanding bills and the alert page is not required, show the billing tab by default, instead of the checkout tab, when a patron is loaded', + 'coust', 'description') + WHERE name = 'ui.circ.show_billing_tab_on_bills'; +UPDATE config.org_unit_setting_type + SET description = oils_i18n_gettext('ui.circ.show_billing_tab_on_bills', + 'If enabled and a patron has outstanding bills and the alert page is not required, show the billing tab by default, instead of the checkout tab, when a patron is loaded', + 'coust', 'description') + WHERE name = 'ui.circ.show_billing_tab_on_bills'; +UPDATE config.org_unit_setting_type + SET description = oils_i18n_gettext( + 'ui.circ.items_out.longoverdue', + 'Value is a numeric code, describing: A. In which tab ("Items Checked Out", '|| + 'or "Other/Special Circulations") the circulation '|| + 'should appear while checked out, and B. Whether the circulation should '|| + 'continue to appear in the "Other" tab when checked in with '|| + 'outstanding fines. '|| + '1 = (A) "Items", (B) "Other". 2 = (A) "Other", (B) "Other". ' || + '5 = (A) "Items", (B) do not display. 6 = (A) "Other", (B) do not display.', + 'coust', + 'description' + ) + WHERE name = 'ui.circ.items_out.longoverdue'; +UPDATE config.org_unit_setting_type + set description = oils_i18n_gettext( + 'ui.circ.items_out.lost', + 'Value is a numeric code, describing: A. In which tab ("Items Checked Out", '|| + 'or "Other/Special Circulations") the circulation '|| + 'should appear while checked out, and B. Whether the circulation should '|| + 'continue to appear in the "Other" tab when checked in with '|| + 'outstanding fines. '|| + '1 = (A) "Items", (B) "Other". 2 = (A) "Other", (B) "Other". ' || + '5 = (A) "Items", (B) do not display. 6 = (A) "Other", (B) do not display.', + 'coust', + 'description' + ) + WHERE name = 'ui.circ.items_out.lost'; +UPDATE config.org_unit_setting_type + set description = oils_i18n_gettext( + 'ui.circ.items_out.claimsreturned', + 'Value is a numeric code, describing: A. In which tab ("Items Checked Out", '|| + 'or "Other/Special Circulations") the circulation '|| + 'should appear while checked out, and B. Whether the circulation should '|| + 'continue to appear in the "Other" tab when checked in with '|| + 'outstanding fines. '|| + '1 = (A) "Items", (B) "Other". 2 = (A) "Other", (B) "Other". ' || + '5 = (A) "Items", (B) do not display. 6 = (A) "Other", (B) do not display.', + 'coust', + 'description' + ) + WHERE name = 'ui.circ.items_out.claimsreturned'; + +END; -- 2.43.2