Ignore:
Timestamp:
Jan 9, 2014, 2:44:51 PM (11 years ago)
Author:
maron
Message:
  • Modify: Progress.php like all list task
  • Modify: Search in form for same text
Location:
trunk/Modules/Translation
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Modules/Translation/Form.php

    r736 r743  
    4949          foreach($TranslationTree[$GroupId]['Items'] as $Index => $TextItem)
    5050            $Columns .= ' `Orig`.`'.$TextItem['Column'].'` as `Orig_'.$TextItem['Column'].'`, `Tran`.`'.$TextItem['Column'].'` as `'.$TextItem['Column'].'`,';
     51
     52
     53            //search for same text with other entry
     54                                          foreach($TranslationTree[$GroupId]['Items'] as $Index => $TextItem)
     55                                                  if($TextItem['Visible'] == 1)
     56                                                  if (($LineAJ[$TextItem['Column']] <> '') and
     57                    ($LineAJ[$TextItem['Column']] == $Line[$TextItem['Column']]) and
     58                    (strlen($LineAJ[$TextItem['Column']]) < 20)
     59                   )
     60                 {       
     61                                $sql = 'SELECT '.$Columns.' Tran.`Entry` FROM `'.$Table.'` as Tran';
     62                    $join = ' JOIN `'.$Table.'` as `Orig` ON `Orig`.`Language` = 0 AND `Tran`.`Entry` = `Orig`.`Entry` AND `Tran`.`VersionEnd` = `Orig`.`VersionEnd` ';
     63                    $where = ' WHERE '.'( `Tran`.'.$Language.' ) AND '.' `Orig`.`'.$TextItem['Column'].'` = "'.$LineAJ[$TextItem['Column']].'" ORDER BY `Tran`.`ModifyTime` DESC LIMIT 1';
     64                    $DbResult = $this->Database->query($sql.$join.$where);
     65                    while ($LineSearch = $DbResult->fetch_assoc()) {
     66                      $Line[$TextItem['Column']] = $LineSearch[$TextItem['Column']];
     67                    }
     68                 }     
    5169         
    5270                                $sql = 'SELECT '.$Columns.' Tran.`Entry` FROM `'.$Table.'` as Tran';
     
    6886          }
    6987         
     88                   
    7089        } else {
    7190                                $DbResult = $this->Database->query('SELECT * FROM `'.$Table.'` WHERE '.
  • trunk/Modules/Translation/LoadNames.php

    r739 r743  
    5858
    5959
    60   //todo:haveto load
    6160  $Text = '';
    6261        function LoadNames() {
     
    7877                                        } else {
    7978                                        if(($GroupId == 13)) {
    80                                                 $names = GetTranslatNames($Text, 0, array('Dictionary' => 'Text', 'TextGlobalString' => 'Text', 'TextArea' => 'Name', 'TextCharacterClass' => 'Name','TextCharacterRace' => 'Name1',),false);
     79                                                $names = GetTranslatNames($Text, 0, array('Dictionary' => 'Text', 'TextGlobalString' => 'Text', 'TextArea' => 'Name', 'TextItemSublass' => 'Name', 'TextCharacterRace' => 'Name1',),false);
    8180            } else {
    82                                                 $names = GetTranslatNames($Text, 0, array('Dictionary' => 'Text'));
     81                                                $names = GetTranslatNames($Text, 0, GetTranslatNamesArray());
    8382                                        }
    8483                                        }
  • trunk/Modules/Translation/Progress.php

    r636 r743  
    112112$Output .= $this->ShowStatTable();
    113113
    114 $Output .= '<div>Počet stáhnutí přeložených textů v SQL souboru: <strong>';   
    115 $ID = $this->Database->query('SELECT count(distinct(`IP`)) FROM `Log` WHERE `Type` = 2');
    116 $Line = $ID->fetch_row();
    117 $Output .= $Line[0];
    118 $Output .= '</strong></div>';
    119                
    120 $Output .= '<div>Počet stáhnutí: <strong>';     
    121 $ID = $this->Database->query('SELECT count(distinct(`IP`)) FROM `Log` WHERE `Type` = 0');
    122 $Line = $ID->fetch_row();
    123 $Output .= $Line[0];
    124 $Output .= '</strong></div>';
    125114    return($Output);
    126115  }
Note: See TracChangeset for help on using the changeset viewer.