Changeset 846 for trunk/includes/system.php
- Timestamp:
- Jan 15, 2016, 10:24:05 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/includes/system.php
r845 r846 313 313 $Output2 = ''; 314 314 if((count($this->OnPageNotFound) == 2) 315 and method_exists($this->OnPageNotFound[0], $this->OnPageNotFound[1]))315 and method_exists($this->OnPageNotFound[0], $this->OnPageNotFound[1])) 316 316 $Output2 = call_user_func_array($this->OnPageNotFound, array()); 317 317 if($Output2 != '') $Output .= $this->BaseView->ShowPage($Output2); … … 451 451 { 452 452 $Output .= '<div id="menuitem-group'.$Group['Id'].'" onmouseover="show(\'group'.$Group['Id'].'\')" onmouseout="hide(\'group'.$Group['Id'].'\')">'. 453 '<a href="'.$this->System->Link('/TranslationList.php?group='.$Group['Id'].'&action=filter').'">'.str_replace(' ',' ',$Group['Name']).'</a></div>'. 454 '<div id="group'.$Group['Id'].'" class="hidden-menu-item" onmouseover="show(\'group'.$Group['Id'].'\')" onmouseout="hide(\'group'.$Group['Id'].'\')">'; 455 $Output .= ' <a title="Zde můžete začít překládat" href="'.$this->System->Link('/TranslationList.php?group='.$Group['Id'].'&state=1&user=0&entry=&text=').'">'.T('Untranslated').'</a><br />'. 456 ' <a title="Přeložené texty, můžete zde hlasovat, nebo opravovat překlady" href="'.$this->System->Link('/TranslationList.php?group='.$Group['Id'].'&state=2&user=0&entry=&text=').'">'.T('Translated').'</a><br />'; 453 '<a href="'.$this->System->Link('/TranslationList.php?group='.$Group['Id']. 454 '&action=filter').'">'.str_replace(' ',' ', T($Group['Name'])).'</a></div>'. 455 '<div id="group'.$Group['Id'].'" class="hidden-menu-item" onmouseover="show(\'group'.$Group['Id'].'\')" onmouseout="hide(\'group'.$Group['Id'].'\')">'; 456 $Output .= ' <a title="Zde můžete začít překládat" href="'. 457 $this->System->Link('/TranslationList.php?group='.$Group['Id'].'&state=1&user=0&entry=&text=').'">'.T('Untranslated').'</a><br />'. 458 ' <a title="Přeložené texty, můžete zde hlasovat, nebo opravovat překlady" href="'. 459 $this->System->Link('/TranslationList.php?group='.$Group['Id'].'&state=2&user=0&entry=&text=').'">'.T('Translated').'</a><br />'; 457 460 if($this->System->User->Licence(LICENCE_USER)) 458 461 { 459 $Output .= ' <a title="'.T('Unfinished translations').'" href="'.$this->System->Link('/TranslationList.php?group='.$Group['Id'].'&state=3').'">'.T('Unfinished').'</a><br /> 460 <a title="Všechny překlady, které jste přeložil" href="'.$this->System->Link('/TranslationList.php?group='.$Group['Id'].'&state=1&user='.$this->System->User->Id).'&entry=&text=">'.T('Own').'</a><br />'; 461 } 462 $Output .= ' <a title="'.T('Compose special filter').'" href="'.$this->System->Link('/TranslationList.php?group='.$Group['Id'].'&action=filter').'">'.T('Filter').'</a><br />'; 462 $Output .= ' <a title="'.T('Unfinished translations').'" href="'.$this->System->Link('/TranslationList.php?group='.$Group['Id'].'&state=3').'">'.T('Unfinished').'</a><br />'. 463 ' <a title="Všechny překlady, které jste přeložil" href="'. 464 $this->System->Link('/TranslationList.php?group='.$Group['Id'].'&state=1&user='. 465 $this->System->User->Id).'&entry=&text=">'.T('Own').'</a><br />'; 466 } 467 $Output .= ' <a title="'.T('Compose special filter').'" href="'. 468 $this->System->Link('/TranslationList.php?group='.$Group['Id'].'&action=filter'). 469 '">'.T('Filter').'</a><br />'; 463 470 $Output .= '</div>'; 464 471 }
Note:
See TracChangeset
for help on using the changeset viewer.