Hello all,
I am a developer for an international web app which uses the Yii framework. Ive noticed that when my application is requested in the Belgian locale ("be"), the CLocale class makes use of a file which contains Cyrillic characters for abbreviations for currency, months, and all of the other settings provided by i18n.
My Belgian audience is quite confused as to why their month abbreviations are in Cyrillic characters.
The official languages for Belgium are Dutch, French, and German, all which use Latin characters, none of which use Cyrillic characters. I was assuming this was a technical oversight on Yii’s behalf at first, and that the original developers of Yii used an atypical country code standard for the filenaming convention for i18v/data files. This is not the case, and the correct CLocale::datapath is always chosen for Belgium, “be.php”.
I then assumed it was a bug, but havent found any information denoting it as such, or documenting the issue at all. I am currently running Yii 1.8, so I assumed this might be something fixed in Yii 1.10. I downloaded 1.10, and unfortunately, "../framework/i18n/data/be.php" is the same data, with Cyrillic alphabet characters for month representations, etc.
I have been searching online, on the Yii documentation, and through this forum, for related issues, but have come up with nothing so far. I cant imagine my app is the first to encounter this problem. Can anyone explain to me why Belgium’s data file contains non Belgian language characters (and more importantly, Cyrillic alphabet chars), and how to alleviate this issue?