Changeset 584 for trunk/Modules/Translation/Save.php
- Timestamp:
- Sep 13, 2013, 8:58:04 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Translation/Save.php
r582 r584 79 79 } 80 80 } 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; 82 83 } 83 84 } … … 100 101 $this->Database->query('UPDATE `'.$Table.'` SET '.$Values.' WHERE `ID` = '.$ExistedText['ID']); 101 102 102 $Output .= 'Změny v překladu <a href="'.$this->System->Link('/form.php?group='.$GroupId.'&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.'&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.'&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.'&ID='.$ExistedText['ID']).'">'. 108 $ExistedText['ID'].'</a> ('.$ExistedText['Entry'].') uloženy jako '.$CompleteText[$NewComplete].'.', LOG_TYPE_TRANSLATION); 104 109 } else 105 110 { 106 111 // Insert new user translation 107 112 $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()'; 109 115 110 116 $CompleteParts = 0; … … 148 154 $LastID = $this->Database->insert_id; 149 155 150 $Output .= 'Text <a href="'.$this->System->Link('/form.php?group='.$GroupId.'&ID='.$LastID).'">'.$LastID.'</a> ze skupiny <a href="TranslationList.php?group='.$GroupId.'&user=0&action=filter">'.$TranslationTree[$GroupId]['Name'].'</a> uložen jako '.$CompleteText[$NewComplete].'. Převzat z <a href="form.php?group='.$GroupId.'&ID='.$TextID.'">'.$TextID.'</a>.<br/>'; 151 $this->System->ModuleManager->Modules['Log']->WriteLog('Text <a href="'.$this->System->Link('/form.php?group='.$GroupId.'&ID='.$LastID).'">'.$LastID.'</a> ze skupiny <a href="TranslationList.php?group='.$GroupId.'&user=0&text=&entry=&action=filter">'.$TranslationTree[$GroupId]['Name'].'</a> uložen jako '.$CompleteText[$NewComplete].'. Převzat z <a href="form.php?group='.$GroupId.'&ID='.$TextID.'">'.$TextID.'</a>.', LOG_TYPE_TRANSLATION); 156 $Output .= 'Text <a href="'.$this->System->Link('/form.php?group='. 157 $GroupId.'&ID='.$LastID).'">'.$LastID.'</a> ze skupiny <a href="TranslationList.php?group='. 158 $GroupId.'&user=0&action=filter">'.$TranslationTree[$GroupId]['Name'].'</a> uložen jako '. 159 $CompleteText[$NewComplete].'. Převzat z <a href="form.php?group='.$GroupId.'&ID='.$TextID.'">'.$TextID.'</a>.<br/>'; 160 $this->System->ModuleManager->Modules['Log']->WriteLog('Text <a href="'. 161 $this->System->Link('/form.php?group='.$GroupId.'&ID='.$LastID).'">'. 162 $LastID.'</a> ze skupiny <a href="TranslationList.php?group='. 163 $GroupId.'&user=0&text=&entry=&action=filter">'. 164 $TranslationTree[$GroupId]['Name'].'</a> uložen jako '.$CompleteText[$NewComplete]. 165 '. Převzat z <a href="form.php?group='.$GroupId.'&ID='.$TextID.'">'.$TextID.'</a>.', LOG_TYPE_TRANSLATION); 152 166 } 153 167 } … … 186 200 } 187 201 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>'; 189 204 190 205 // Update flag for experience info load
Note:
See TracChangeset
for help on using the changeset viewer.