Changeset 842 for trunk/Modules/Translation
- Timestamp:
- Jan 12, 2016, 10:55:07 PM (9 years ago)
- Location:
- trunk/Modules/Translation
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Translation/Translation.php
r838 r842 35 35 'Channel' => 'translation', 'Callback' => array($this, 'ShowRSS'), 'Permission' => LICENCE_ANONYMOUS)); 36 36 $this->System->RegisterMenuItem(array( 37 38 39 40 41 37 'Title' => T('Completion status'), 38 'Hint' => 'Stav dokončení překládů', 39 'Link' => $this->System->Link('/progress/'), 40 'Permission' => LICENCE_ANONYMOUS, 41 'Icon' => '', 42 42 ), 1); 43 $this->System->RegisterMenuItem(array( 44 'Title' => T('Data source'), 45 'Hint' => 'Informace o překladových skupinách', 46 'Link' => $this->System->Link('/TranslationList.php?action=grouplist'), 47 'Permission' => LICENCE_ANONYMOUS, 48 'Icon' => '', 49 )); 43 50 if(array_key_exists('Search', $this->System->ModuleManager->Modules)) 44 51 { -
trunk/Modules/Translation/TranslationList.php
r837 r842 359 359 $Output .= '</td>'; 360 360 if($this->System->User->Licence(LICENCE_ADMIN)) 361 $Output .= '<td><a title="Změny po posledním importu u vybrané překladové skupiny" href=" log.php?group='.362 $Group['Id'].'&type=11 ">'.HumanDate($Group['LastImport']).'</a></td>';361 $Output .= '<td><a title="Změny po posledním importu u vybrané překladové skupiny" href="'.$this->System->Link('/log/?group='. 362 $Group['Id'].'&type=11').'">'.HumanDate($Group['LastImport']).'</a></td>'; 363 363 else $Output .= '<td>'.HumanDate($Group['LastImport']).'</td>'; 364 364 $Output .= '<td><a href="'.$this->System->Link('/client-version/?action=item&id='. … … 370 370 } 371 371 $Output .= '</table>'. 372 '<br /><a title="'.T('Changelog of changes after import').'" href=" log.php?type=11">'.T('Changelog of text modification during import').'</a><br/>';372 '<br /><a title="'.T('Changelog of changes after import').'" href="'.$this->System->Link('/log/?type=11').'">'.T('Changelog of text modification during import').'</a><br/>'; 373 373 if($this->System->User->Licence(LICENCE_ADMIN)) $Output .= '<a href="?action=groupadd">'.T('Add translation group').'</a>'; 374 374 return($Output);
Note:
See TracChangeset
for help on using the changeset viewer.