diff options
-rw-r--r-- | framework/I18N/TGlobalization.php | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/framework/I18N/TGlobalization.php b/framework/I18N/TGlobalization.php index 1280b6d5..135eea51 100644 --- a/framework/I18N/TGlobalization.php +++ b/framework/I18N/TGlobalization.php @@ -56,6 +56,10 @@ class TGlobalization extends TModule */
private $_translation;
+ /**
+ * @var boolean whether we should translate the default culture
+ */
+ private $_translateDefaultCulture=true;
/**
* Initialize the Culture and Charset for this application.
@@ -89,6 +93,22 @@ class TGlobalization extends TModule /**
* @return string default culture
*/
+ public function getTranslateDefaultCulture()
+ {
+ return $this->_translateDefaultCulture;
+ }
+
+ /**
+ * @param bool default culture, e.g. <tt>en_US</tt> for American English
+ */
+ public function setTranslateDefaultCulture($value)
+ {
+ $this->_translateDefaultCulture = TPropertyValue::ensureBoolean($value);
+ }
+
+ /**
+ * @return string default culture
+ */
public function getDefaultCulture()
{
return $this->_defaultCulture;
@@ -155,7 +175,7 @@ class TGlobalization extends TModule */
public function getTranslationConfiguration()
{
- return ($this->getDefaultCulture() == $this->getCulture())
+ return (!$this->_translateDefaultCulture && ($this->getDefaultCulture() == $this->getCulture()))
? null
: $this->_translation;
}
|