Signed-off-by: Shula Link <slink@gchrl.org> user/slink/lp1826759_items_out_typo
authorShula Link <slink@gchrl.org>
Thu, 18 Mar 2021 14:27:02 +0000 (10:27 -0400)
committerShula Link <slink@gchrl.org>
Thu, 18 Mar 2021 14:29:11 +0000 (10:29 -0400)
Spelling correction based on lp1826759; oustanding to outstanding.

Open-ILS/src/sql/Pg/950.data.seed-values.sql
Open-ILS/src/sql/Pg/upgrade/XXXX.data.lp1826759.items_out_typo.sql [new file with mode: 0644]

index c694c9a..92fa466 100644 (file)
@@ -17011,7 +17011,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',
@@ -17031,7 +17031,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',
@@ -17051,7 +17051,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 (file)
index 0000000..d6c7ba0
--- /dev/null
@@ -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;