typo
[Pman.Admin] / Translations.php
index 2f5501a..a0c8aec 100644 (file)
@@ -1,5 +1,8 @@
 <?php
 
+die("NOT USED!?");
+// see core_template code..
+
 
 /**
  * Pman_Admin_Translation:
@@ -41,8 +44,35 @@ class Pman_Admin_Translations extends Pman
     }
     
     
-    function get()
+    function get($module, $opts = Array())
     {
+        
+        if (!empty($module)) {
+            $this->init();
+            //DB_DataObject::debugLevel(1);
+            require_once 'Services/JSON.php';
+            $d = DB_DataObject::factory('translations');
+            $d->module = $module;
+            $d->selectAdd();
+            $d->selectAdd('distinct(tlang) as tlang');
+            header('Content-type: text/javascript');
+            $langs= $d->fetchAll('tlang');
+            foreach($langs as $lang) {
+                // output the translations strings file..
+                
+                    
+                $this->loadOriginalStrings($module);
+                
+                $data = $this->loadTranslateDB($lang,$module);
+                
+                $j = new Services_JSON();
+                echo "_T.{$lang}= Roo.apply( _T.{$lang} || { }, " .  $j->stringify($data, null, 4) . ");\n";
+                
+            }
+            exit;
+            
+        }
+        
         // load and parse json file containing all translations...
         if (isset($_REQUEST['id'])) {
             return $this->post();
@@ -62,10 +92,12 @@ class Pman_Admin_Translations extends Pman
         $module = $_REQUEST['module'];
         
         
-         $this->loadOriginalStrings($lang,$module); // what needs translating..
-        
-        
+        $this->loadOriginalStrings($module); // what needs translating..
         
+        $ff = $this->bootLoader;
+        if (empty($ff->Pman['public_cache_dir'])) {
+            $this->jerr("public_cache_dir has not been set up");
+        }
         
         
         
@@ -79,7 +111,7 @@ class Pman_Admin_Translations extends Pman
         foreach($this->original as $k=>$ar) {
             foreach($ar as $tr=>$trv) {
                 // $hint = isset($hints[$tr]) ? $hints[$tr] : '';
-                $key = md5($k.'-'.$tr);
+                $key = $trv;
                 $ret[] = array(
                     'id' => $lang.'/'.$key,
                     'msum' => $key,
@@ -100,12 +132,12 @@ class Pman_Admin_Translations extends Pman
         
     }
     
-    function post() 
+    function post($v
     {
          
-        $fm = HTML_FlexyFramework::get();
-        $enable = explode(',',   $fm->enable);
-        if (empty($_REQUEST['module']) || !in_array($_REQUEST['module'], $enable)) {
+         
+        
+        if (empty($_REQUEST['module']) || !in_array($_REQUEST['module'], $this->modulesList())) {
             $this->jerr("NO MODULE / INVALID MODULE");
         }
         
@@ -113,12 +145,21 @@ class Pman_Admin_Translations extends Pman
         //txt  é \85ç\9b®
         list($lang,$id) = explode('/', $_REQUEST['id']);
         
-        $this->loadOriginalStrings();
+        $this->loadOriginalStrings($_REQUEST['module']);
         
         $data = $this->loadTranslateDB($lang,$_REQUEST['module']);
         
         $data[$id] = $_REQUEST['txt'];
         
+        if (!isset($this->originalKeys[$id])) {
+            
+            
+            $this->jerr("invalid key ?");
+        }
+        
+        $this->saveTranslateDB($lang,$_REQUEST['module'],$this->originalKeys[$id], $id, $_REQUEST['txt']);
+        
+        
         
         $this->writeTransMod($lang,$_REQUEST['module'], $data);
         // write merged file..
@@ -131,21 +172,52 @@ class Pman_Admin_Translations extends Pman
      * load strings that need translating..
      */
     
-    function loadOriginalStrings($lang, $module)
+    function loadOriginalStrings($module)
     {
         // since this can handle errors better.!!?
         $info = $this->moduleJavascriptFilesInfo($module);
         //print_r($info);
-        $tfile =$info->basedir . '/'. $info->translation_data;
+        
+        
+        
+        $this->original  = array();
+        $tfile = $info->basedir . '/'. $info->translation_data;
          //var_dump($tfile);
-        if (empty($tfile) || !file_exists($tfile)) {
-            return array();
-        }
+        //if (empty($tfile) || !file_exists($tfile)) {
+            
+            foreach($info->filesmtime as $f =>$mt) {
+                $bjs = preg_replace('/\.js$/','.bjs', $f);
+                if (!file_exists($bjs)) {
+                    continue;
+                }
+                $jd = json_decode(file_get_contents($bjs));
+                if (empty($jd->strings)) {
+                    continue;
+                }
+                foreach($jd->strings as $tkey => $val) {
+                    $line = array(
+                        'module' => $module,
+                        'tfile' => preg_replace('/\.js$/','',  basename($bjs)),
+                    );
+                    
+                    
+                }
+                
+                $this->original[str_replace('.bjs', '', basename($bjs)) ] = array_flip((array)$jd->strings);
+            }
+             
+            file_put_contents($tfile, json_encode($this->original));
+            
+            
+        //}
         
         
-        require_once 'Services/JSON.php';
-        $j = new Services_JSON();
-        $this->original = $j->decode('{'. file_get_contents($tfile).'}');
+        print_R($this->original);exit;
+        
+        
+        $this->original = (array) json_decode( file_get_contents($tfile) );
+        ksort($this->original);
+
         $this->originalKeys = array();
         
         // 
@@ -161,28 +233,7 @@ class Pman_Admin_Translations extends Pman
      
     
     
-    /**
-     * 
-     * Load the user translated strings.
-     * {root}/_translation_/{lang}/{module}.js
-     *
-     * 
-     *
-     * 
-     */
-    function loadTranslate($lang, $module)
-    {
-         
-        $fn = $this->getTransFilename($lang,$module);
-        
-         
-        if (!file_exists($fn)) {
-            return array();
-        }
-        
-        return (array) json_decode(file_get_contents($fn));
-        //$this->data = (array) $j->decode(substr(file_get_contents($this->fn), strlen($this->prefix), -1));
-    }
+   
     /***
      *
      * loadTranslateDB -
@@ -199,8 +250,9 @@ class Pman_Admin_Translations extends Pman
         //DB_DataObject::debugLevel(1);
         $d = DB_DataObject::factory('translations');
         $d->module = $module;
-        $d->lang = $lang;
-        
+        $d->tlang = $lang;
+        $d->whereAdd('LENGTH(tval) > 0');
+        $ret = array();
         
         if ($d->count()) {
             // since key includes file 
@@ -218,7 +270,10 @@ class Pman_Admin_Translations extends Pman
         
         
         $default = (array) json_decode(file_get_contents($fn));
-        echo '<PRE>';print_r($default); print_r($this->originalKeys);exit;
+        //echo '<PRE>';print_r($default); print_r($this->originalKeys);exit;
+        
+        
+        
         foreach($default as $k=>$v) {
             if (isset($ret[$k])) {
                 continue; // skip database already holds a version of this translation.
@@ -227,13 +282,13 @@ class Pman_Admin_Translations extends Pman
             if (!isset($this->originalKeys[$k])) {
                 continue;
             }
+            
             // it's current..
             $this->saveTranslateDB($lang, $module, $this->originalKeys[$k], $k, $v);
             $ret[$k] = $v;
             
             
         }
-        
         return $ret;
         
          
@@ -241,9 +296,9 @@ class Pman_Admin_Translations extends Pman
     
     function saveTranslateDB($lang, $module, $tfile, $tkey, $tval)
     {
-        $d = DB_DataObject('translations');
+        $d = DB_DataObject::factory('translations');
         $d->module = $module;
-        $d->lang = $lang;
+        $d->tlang = $lang;
         $d->tfile = $tfile;
         $d->tkey = $tkey;
         if ($d->find(true)) {
@@ -289,11 +344,11 @@ class Pman_Admin_Translations extends Pman
     
     function writeTransMod($lang, $module, $data)
     {
-        print_R($data);
+        //print_R($data);
         
         
         $fn = $this->getTransFilename($lang, $module);
-        
+        require_once 'Services/JSON.php';
         $j = new Services_JSON();
         
         file_put_contents($fn, $j->stringify($data, null, 4));
@@ -317,6 +372,6 @@ class Pman_Admin_Translations extends Pman
         //$this->writeTrans($lang);
     }
      
-    
+     
     
 }
\ No newline at end of file