Locale and Language ¶
Locale is a set of parameters that defines the user's language, country and any special variant preferences that the user wants to see in their user interface. It is usually identified by an ID consisting of a language ID and a region ID. For example, the ID en_US stands for the locale of English and United States. For consistency, all locale IDs in Yii are canonicalized to the format of LanguageID or LanguageID_RegionID in lower case (e.g. en, en_us).
So the update function in YumTranslationController should look something like this:
The change is "$lang = explode('', $key);"=>"$lang = explode('', $key,2);"
From the docs
So the update function in YumTranslationController should look something like this: The change is "$lang = explode('', $key);"=>"$lang = explode('', $key,2);"