From 72900b3d88dc326ace5b091d2ba8cea5ffb28a90 Mon Sep 17 00:00:00 2001 From: Edward Welbourne Date: Tue, 23 May 2017 17:18:18 +0200 Subject: Fix CLDR C++ generation to name "Han with Bopomofo" properly We were using "Han With Bopomofo" (capitalized With) so that an enum member in qlocale.h would be suitably camel-case; however, this lead to spurious changes in qlocale_data_p.h where it names the script. Use the correct (lower-case with) form and arrange for the enum members to be generated with first letter of each word upper-case (but not with each word capitalize()d; some words in there are already camel-case, so .capitalize()ing would lower-case the later sub-words in these). Change-Id: I974c89dd40814eaf3bd538f06b9b4ebf17492f20 Reviewed-by: Konstantin Ritt Reviewed-by: Lars Knoll --- util/local_database/enumdata.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'util/local_database/enumdata.py') diff --git a/util/local_database/enumdata.py b/util/local_database/enumdata.py index aa2adfa52f..2d16e5851d 100644 --- a/util/local_database/enumdata.py +++ b/util/local_database/enumdata.py @@ -798,7 +798,7 @@ script_list = { 137 : [ "Newa", "Newa" ], 138 : [ "Osage", "Osge" ], 139 : [ "Tangut", "Tang" ], - 140 : [ "Han With Bopomofo", "Hanb" ], + 140 : [ "Han with Bopomofo", "Hanb" ], 141 : [ "Jamo", "Jamo" ] } -- cgit v1.2.3