Changeset 610 for trunk/includes/system.php
- Timestamp:
- Nov 26, 2013, 11:16:15 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/includes/system.php
r609 r610 39 39 ( 40 40 array( 41 'Title' => 'Soubory',41 'Title' => T('Files'), 42 42 'Hint' => 'Stahování různých pomocných souborů a programů', 43 43 'Link' => $this->Link('/download.php'), … … 46 46 ), 47 47 array( 48 'Title' => 'Pokyny',48 'Title' => T('Instructions'), 49 49 'Hint' => 'Informace k překladu hry', 50 50 'Link' => $this->Link('/info.php'), … … 53 53 ), 54 54 array( 55 'Title' => 'Zdroje dat',55 'Title' => T('Data source'), 56 56 'Hint' => 'Informace o překladových skupinách', 57 57 'Link' => $this->Link('/TranslationList.php?action=grouplist'), … … 60 60 ), 61 61 array( 62 'Title' => 'Prezentace',62 'Title' => T('Presentation'), 63 63 'Hint' => 'Prezentace a motivace překladu', 64 64 'Link' => $this->Link('/promotion.php'), … … 67 67 ), 68 68 array( 69 'Title' => 'IRC chat',69 'Title' => T('IRC chat'), 70 70 'Hint' => 'IRC chat pro překladatele', 71 71 'Link' => 'http://embed.mibbit.com/?server=game.zdechov.net%3A6667&channel=%23wowpreklad&forcePrompt=true&charset=utf-8', … … 74 74 ), 75 75 array( 76 'Title' => 'Správa',76 'Title' => T('Administration'), 77 77 'Hint' => 'Volby pro správu', 78 78 'Link' => $this->Link('/admin/'), … … 208 208 $this->ModuleManager->Modules['Log']->WriteLog('Stránka "'. 209 209 implode('/', $this->PathItems).'" nenalezena'.$Referer, LOG_TYPE_PAGE_NOT_FOUND); 210 return(ShowMessage( 'Stránka "'.implode('/', $this->PathItems).'" nenalezena.', MESSAGE_CRITICAL));210 return(ShowMessage(sprintf(T('Page "%s" not found'), implode('/', $this->PathItems)), MESSAGE_CRITICAL)); 211 211 } 212 212 … … 238 238 //$Team = $DbResult->fetch_assoc(); 239 239 //$Output .= ''<span class="MenuItem">Moje překlady: <a href="">Dokončené</a> <a href="">Rozpracované</a> <a href="">Exporty</a> Tým: <a href="">'.$Team['name'].'</a></span>'; 240 $Output .= '<span class="MenuItem2">'.$this->System->User->Name.' <a href="'.$this->System->Link('/?action=logout').'"> Odhlášení</a>'.240 $Output .= '<span class="MenuItem2">'.$this->System->User->Name.' <a href="'.$this->System->Link('/?action=logout').'">'.T('Logout').'</a>'. 241 241 ' <a href="'.$this->System->Link('/user.php?user='.$this->System->User->Id).'">'.T('My page').'</a>'. 242 242 ' <a href="'.$this->System->Link('/Options.php').'">'.T('Options').'</a>'. 243 243 ' <a title="Vámi přeložené texty" href="'.$this->System->Link('/TranslationList.php?user='. 244 $this->System->User->Id.'&group=0&state=2&text=&entry=').'"> Přeložené</a>'.244 $this->System->User->Id.'&group=0&state=2&text=&entry=').'">'.T('Translated').'</a>'. 245 245 ' <a title="Vaše rozpracované text" href="'.$this->System->Link('/TranslationList.php?user='. 246 $this->System->User->Id.'&group=0&state=3&text=&entry=').'"> Rozpracované</a>'.247 ' <a title="Nikým nepřeložené texty" href="'.$this->System->Link('/TranslationList.php?user=0&group=0&state=1&text=&entry=').'"> Nepřeložené</a>'.246 $this->System->User->Id.'&group=0&state=3&text=&entry=').'">'.T('Unfinished').'</a>'. 247 ' <a title="Nikým nepřeložené texty" href="'.$this->System->Link('/TranslationList.php?user=0&group=0&state=1&text=&entry=').'">'.T('Untranslated').'</a>'. 248 248 '</span>'; 249 249 } else … … 287 287 function ShowSearchBox() 288 288 { 289 $Output = '<strong> Hledání:</strong>'.289 $Output = '<strong>'.T('Search').':</strong>'. 290 290 '<form action="'.$this->System->Link('/search/').'" method="get"><div>'. 291 291 '<table>'. … … 294 294 '</tr>'. 295 295 '<tr>'. 296 '<th><input type="submit" value=" Hledat" /></th>'.296 '<th><input type="submit" value="'.T('Do search').'" /></th>'. 297 297 '</tr>'. 298 298 '</table></div>'.
Note:
See TracChangeset
for help on using the changeset viewer.