fix #8131 - chinese translations
[Pman.Core] / DataObjects / I18n.php
index fce1fc4..ba3386f 100644 (file)
@@ -220,13 +220,47 @@ class Pman_Core_DataObjects_I18n extends DB_DataObject
         
     }
     
+    function codeExists($ltype, $key)
+    {
+        $x = DB_DataObject::factory('i18n');
+        $x->ltype = $ltype;
+        $x->lkey = $key;
+        return $x->count() ? true : false;
+    }
+    
+    // load all all to reduce future queries..
+    function translateCache($inlang, $ltype, $build)
+    {
+        static $cache;
+        $key = "{$inlang} {$ltype}";
+        if (isset($cache[$key])) {
+            return $cache[$key];
+        }
+        if (!$build) {
+            return false;
+        }
+        
+        $x = DB_DataObject::factory('i18n');
+        $x->ltype = $ltype;
+        
+        $x->inlang= $inlang;
+        $cache[$key] = $x->fetchAll('lkey', 'lval');
+        
+        return $cache[$key] ;
+
+    }
+    
     
     function translate($inlang,$ltype,$kval)
     {
         
+        $tc = $this->translateCache($inlang, $ltype, false);
+        if ($tc !== false && isset($tc[$kval])) {
+            return $tc[$kval];
+        }
         
         static $cache = array();
-        $cache_key = implode(' ', array($inlang,$ltime,$kval));
+        $cache_key = implode(' ', array($inlang,$ltype,$kval));
         if (isset($cache[$cache_key ])) {
             return $cache[$cache_key];
         }