Ignore:
Timestamp:
Sep 13, 2013, 8:58:04 PM (11 years ago)
Author:
chronos
Message:
  • Modified: Page statistic moved to module Translation and renamed to progress.
File:
1 edited

Legend:

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

    r582 r584  
    7979                                                                                }
    8080                                                                        }
    81                                                                         if((($CompleteParts & (1 << ($GroupItem['Sequence'] - 1))) == 0) and ($EnglishFound[$GroupItem['Column']] != '')) $Completable = false;
     81                                                                        if((($CompleteParts & (1 << ($GroupItem['Sequence'] - 1))) == 0) and
     82                                                                          ($EnglishFound[$GroupItem['Column']] != '')) $Completable = false;
    8283                                                                }
    8384                                                        }
     
    100101                                                        $this->Database->query('UPDATE `'.$Table.'` SET '.$Values.' WHERE `ID` = '.$ExistedText['ID']);
    101102       
    102                                                         $Output .= 'Změny v překladu <a href="'.$this->System->Link('/form.php?group='.$GroupId.'&amp;ID='.$ExistedText['ID']).'">'.$ExistedText['ID'].'</a> ('.$ExistedText['Entry'].') uloženy jako '.$CompleteText[$NewComplete].'.<br />';
    103                                                         $this->System->ModuleManager->Modules['Log']->WriteLog('Změny v překladu <a href="'.$this->System->Link('/form.php?group='.$GroupId.'&amp;ID='.$ExistedText['ID']).'">'.$ExistedText['ID'].'</a> ('.$ExistedText['Entry'].') uloženy jako '.$CompleteText[$NewComplete].'.', LOG_TYPE_TRANSLATION);
     103                                                        $Output .= 'Změny v překladu <a href="'.$this->System->Link('/form.php?group='.
     104                                                          $GroupId.'&amp;ID='.$ExistedText['ID']).'">'.$ExistedText['ID'].'</a> ('.
     105                                                          $ExistedText['Entry'].') uloženy jako '.$CompleteText[$NewComplete].'.<br />';
     106                                                        $this->System->ModuleManager->Modules['Log']->WriteLog('Změny v překladu <a href="'.
     107                                                          $this->System->Link('/form.php?group='.$GroupId.'&amp;ID='.$ExistedText['ID']).'">'.
     108                                                          $ExistedText['ID'].'</a> ('.$ExistedText['Entry'].') uloženy jako '.$CompleteText[$NewComplete].'.', LOG_TYPE_TRANSLATION);
    104109                                                } else
    105110                                                {
    106111                                                        // Insert new user translation
    107112                                                        $Columns = '`Entry`, `VersionStart`, `VersionEnd`, `Language`, `User`, `Take`, `ModifyTime`';
    108                                                         $Values = $EnglishFound['Entry'].', '.$EnglishFound['VersionStart'].', '.$EnglishFound['VersionEnd'].', '.$Language.', '.$this->System->User->Id.', '.$SourceText['ID'].', NOW()';
     113                                                        $Values = $EnglishFound['Entry'].', '.$EnglishFound['VersionStart'].', '.
     114                                                          $EnglishFound['VersionEnd'].', '.$Language.', '.$this->System->User->Id.', '.$SourceText['ID'].', NOW()';
    109115       
    110116                                                        $CompleteParts = 0;
     
    148154                                                        $LastID = $this->Database->insert_id;
    149155       
    150                                                         $Output .= 'Text <a href="'.$this->System->Link('/form.php?group='.$GroupId.'&amp;ID='.$LastID).'">'.$LastID.'</a> ze skupiny <a href="TranslationList.php?group='.$GroupId.'&amp;user=0&amp;action=filter">'.$TranslationTree[$GroupId]['Name'].'</a> uložen jako '.$CompleteText[$NewComplete].'. Převzat z <a href="form.php?group='.$GroupId.'&amp;ID='.$TextID.'">'.$TextID.'</a>.<br/>';
    151                                                         $this->System->ModuleManager->Modules['Log']->WriteLog('Text <a href="'.$this->System->Link('/form.php?group='.$GroupId.'&amp;ID='.$LastID).'">'.$LastID.'</a> ze skupiny <a href="TranslationList.php?group='.$GroupId.'&amp;user=0&amp;text=&amp;entry=&amp;action=filter">'.$TranslationTree[$GroupId]['Name'].'</a> uložen jako '.$CompleteText[$NewComplete].'. Převzat z <a href="form.php?group='.$GroupId.'&amp;ID='.$TextID.'">'.$TextID.'</a>.', LOG_TYPE_TRANSLATION);
     156                                                        $Output .= 'Text <a href="'.$this->System->Link('/form.php?group='.
     157                                                          $GroupId.'&amp;ID='.$LastID).'">'.$LastID.'</a> ze skupiny <a href="TranslationList.php?group='.
     158                                                    $GroupId.'&amp;user=0&amp;action=filter">'.$TranslationTree[$GroupId]['Name'].'</a> uložen jako '.
     159                                                          $CompleteText[$NewComplete].'. Převzat z <a href="form.php?group='.$GroupId.'&amp;ID='.$TextID.'">'.$TextID.'</a>.<br/>';
     160                                                        $this->System->ModuleManager->Modules['Log']->WriteLog('Text <a href="'.
     161                                                          $this->System->Link('/form.php?group='.$GroupId.'&amp;ID='.$LastID).'">'.
     162                                                          $LastID.'</a> ze skupiny <a href="TranslationList.php?group='.
     163                                                          $GroupId.'&amp;user=0&amp;text=&amp;entry=&amp;action=filter">'.
     164                                                          $TranslationTree[$GroupId]['Name'].'</a> uložen jako '.$CompleteText[$NewComplete].
     165                                                          '. Převzat z <a href="form.php?group='.$GroupId.'&amp;ID='.$TextID.'">'.$TextID.'</a>.', LOG_TYPE_TRANSLATION);
    152166                                                }
    153167                                        }
     
    186200                        }
    187201       
    188                         $Output .= 'Z této stránky můžete být automaticky přesměrování. Nastavit kam chcete být přesměrování si můžete v <a href="'.$this->System->Link('/Options.php').'" title="Nastavení uživatele">Nastavení</a>';
     202                        $Output .= 'Z této stránky můžete být automaticky přesměrování. Nastavit kam chcete být přesměrování si můžete v <a href="'.
     203                          $this->System->Link('/Options.php').'" title="Nastavení uživatele">Nastavení</a>';
    189204       
    190205                        // Update flag for experience info load
Note: See TracChangeset for help on using the changeset viewer.