From f5df0bc898fd496ab23ebdf38c5bb89bd8914f2d Mon Sep 17 00:00:00 2001 From: Niels Sascha Reedijk Date: Sun, 4 Nov 2012 10:10:51 +0100 Subject: [PATCH] Use uppercase country codes in catalog names. nielx+pulkomandy: With the switch from Pootle we switched to the correct representation of country codes by using lang_COUNTRY (instead of lang_country). Haiku did not respect that yet and instead always looked for lower case country codes, thus not finding all the hard work of the pt_BR team. Other translations currently affected are en_CA and en_GB, though these are not actively maintained. +alpha4 --- src/kits/locale/CatalogData.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/kits/locale/CatalogData.cpp b/src/kits/locale/CatalogData.cpp index 39f0fcccbd..f0bd0e2add 100644 --- a/src/kits/locale/CatalogData.cpp +++ b/src/kits/locale/CatalogData.cpp @@ -16,8 +16,6 @@ BCatalogData::BCatalogData(const char* signature, const char* language, fFingerprint(fingerprint), fNext(NULL) { - fLanguageName.ToLower(); - // canonicalize language-name to lowercase }