From 68cd65ff471a34b1a8db2e7f49aa8f97b74ce2af Mon Sep 17 00:00:00 2001 From: Josef Moravec Date: Wed, 26 Oct 2016 22:53:04 +0000 Subject: [PATCH] Bug 17518: Displayed language name for Czech is wrong MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It's "Ceština" and should be "Čeština" Test plan: 1) apply the patch 2) install Czech translation for Koha 3) note the language name in language switcher (in staff client and opac) is right: "Čeština" --- installer/data/mysql/atomicupdate/bug_17518.sql | 1 + installer/data/mysql/mandatory/subtag_registry.sql | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 installer/data/mysql/atomicupdate/bug_17518.sql diff --git a/installer/data/mysql/atomicupdate/bug_17518.sql b/installer/data/mysql/atomicupdate/bug_17518.sql new file mode 100644 index 0000000..380560d --- /dev/null +++ b/installer/data/mysql/atomicupdate/bug_17518.sql @@ -0,0 +1 @@ +UPDATE language_descriptions SET description = 'Čeština' WHERE subtag = 'cs' AND type = 'language' AND lang = 'cs' diff --git a/installer/data/mysql/mandatory/subtag_registry.sql b/installer/data/mysql/mandatory/subtag_registry.sql index d3bbea8..e21577a 100755 --- a/installer/data/mysql/mandatory/subtag_registry.sql +++ b/installer/data/mysql/mandatory/subtag_registry.sql @@ -176,7 +176,7 @@ INSERT INTO language_rfc4646_to_iso639(rfc4646_subtag,iso639_2_code) VALUES ( 'cs','cze'); INSERT INTO language_descriptions(subtag, type, lang, description) -VALUES ( 'cs', 'language', 'cs', 'Ceština'); +VALUES ( 'cs', 'language', 'cs', 'Čeština'); INSERT INTO language_descriptions(subtag, type, lang, description) VALUES ( 'cs', 'language', 'en', 'Czech'); -- 2.1.4