From: Ben Shum Date: Sun, 19 Feb 2012 19:03:40 +0000 (-0500) Subject: Finances category misspelled in Library Settings X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=refs%2Fheads%2Fuser%2Fbshum%2Ffinance-spelling;p=working%2FEvergreen.git Finances category misspelled in Library Settings In the Library Settings editor, the category of "Finances" was misspelled as "Finanaces". The problem originally occurs in the 0622 upgrade SQL. Since the upgrade SQL has yet to be pushed as part of a stable release, added the spelling correction directly to all files discovered to contain error. Signed-off-by: Ben Shum --- 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 918dce1a39..671a5c3465 100644 --- a/Open-ILS/src/sql/Pg/950.data.seed-values.sql +++ b/Open-ILS/src/sql/Pg/950.data.seed-values.sql @@ -2441,7 +2441,7 @@ INSERT INTO config.settings_group (name, label) VALUES ('opac', oils_i18n_gettext('config.settings_group.opac', 'OPAC', 'coust', 'label')), ('prog', oils_i18n_gettext('config.settings_group.program', 'Program', 'coust', 'label')), ('glob', oils_i18n_gettext('config.settings_group.global', 'Global', 'coust', 'label')), -('finance', oils_i18n_gettext('config.settings_group.finances', 'Finanaces', 'coust', 'label')), +('finance', oils_i18n_gettext('config.settings_group.finances', 'Finances', 'coust', 'label')), ('credit', oils_i18n_gettext('config.settings_group.ccp', 'Credit Card Processing', 'coust', 'label')), ('serial', oils_i18n_gettext('config.settings_group.serial', 'Serials', 'coust', 'label')), ('recall', oils_i18n_gettext('config.settings_group.recall', 'Recalls', 'coust', 'label')), diff --git a/Open-ILS/src/sql/Pg/upgrade/0622.data.YAOUS-i18n-update.sql b/Open-ILS/src/sql/Pg/upgrade/0622.data.YAOUS-i18n-update.sql index 80eca3f5a8..4f70fd0801 100644 --- a/Open-ILS/src/sql/Pg/upgrade/0622.data.YAOUS-i18n-update.sql +++ b/Open-ILS/src/sql/Pg/upgrade/0622.data.YAOUS-i18n-update.sql @@ -17,7 +17,7 @@ INSERT INTO config.settings_group (name, label) VALUES ('opac', oils_i18n_gettext('config.settings_group.opac', 'OPAC', 'coust', 'label')), ('prog', oils_i18n_gettext('config.settings_group.program', 'Program', 'coust', 'label')), ('glob', oils_i18n_gettext('config.settings_group.global', 'Global', 'coust', 'label')), -('finance', oils_i18n_gettext('config.settings_group.finances', 'Finanaces', 'coust', 'label')), +('finance', oils_i18n_gettext('config.settings_group.finances', 'Finances', 'coust', 'label')), ('credit', oils_i18n_gettext('config.settings_group.ccp', 'Credit Card Processing', 'coust', 'label')), ('serial', oils_i18n_gettext('config.settings_group.serial', 'Serials', 'coust', 'label')), ('recall', oils_i18n_gettext('config.settings_group.recall', 'Recalls', 'coust', 'label')), diff --git a/Open-ILS/src/sql/Pg/version-upgrade/2.1-2.2-upgrade-db.sql b/Open-ILS/src/sql/Pg/version-upgrade/2.1-2.2-upgrade-db.sql index d1b5ba34b5..e349bf0d19 100644 --- a/Open-ILS/src/sql/Pg/version-upgrade/2.1-2.2-upgrade-db.sql +++ b/Open-ILS/src/sql/Pg/version-upgrade/2.1-2.2-upgrade-db.sql @@ -5031,7 +5031,7 @@ INSERT INTO config.settings_group (name, label) VALUES ('opac', oils_i18n_gettext('config.settings_group.opac', 'OPAC', 'coust', 'label')), ('prog', oils_i18n_gettext('config.settings_group.program', 'Program', 'coust', 'label')), ('glob', oils_i18n_gettext('config.settings_group.global', 'Global', 'coust', 'label')), -('finance', oils_i18n_gettext('config.settings_group.finances', 'Finanaces', 'coust', 'label')), +('finance', oils_i18n_gettext('config.settings_group.finances', 'Finances', 'coust', 'label')), ('credit', oils_i18n_gettext('config.settings_group.ccp', 'Credit Card Processing', 'coust', 'label')), ('serial', oils_i18n_gettext('config.settings_group.serial', 'Serials', 'coust', 'label')), ('recall', oils_i18n_gettext('config.settings_group.recall', 'Recalls', 'coust', 'label')),