From e41032c589b2a1bbc331b92efe41772aa5b2f967 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 2 Mar 2021 16:08:51 +0100 Subject: [PATCH] Bug 27822: Fix default value for AddressFormat (es-ES) It must be "us" not "US" otherwise you get Template process failed: file error - member-main-address-style-US: not found at /usr/share/koha/lib/C4/Templates.pm line 122" because the system expects "us", not "US". --- installer/data/mysql/localization/es-ES/custom.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installer/data/mysql/localization/es-ES/custom.sql b/installer/data/mysql/localization/es-ES/custom.sql index d92556741c..b38d90205a 100644 --- a/installer/data/mysql/localization/es-ES/custom.sql +++ b/installer/data/mysql/localization/es-ES/custom.sql @@ -19,7 +19,7 @@ UPDATE systempreferences SET value = 'padre|madre' WHERE variable = 'borrowerRelationship'; UPDATE systempreferences SET value = 'Sr.|Sra.' WHERE variable = 'BorrowersTitles'; UPDATE systempreferences SET value = 'FR' WHERE variable = 'CurencyFormat'; -UPDATE systempreferences SET value = 'US' WHERE variable = 'AddressFormat'; +UPDATE systempreferences SET value = 'us' WHERE variable = 'AddressFormat'; UPDATE systempreferences SET value = 'metric' WHERE variable = 'dateformat'; UPDATE systempreferences SET value = 'ddc' WHERE variable = 'DefaultClassificationSource'; UPDATE systempreferences SET value = 'Bienvenido al catálogo!' WHERE variable = 'OpacMainUserBlock'; -- 2.20.1