Ignore:
Timestamp:
Nov 26, 2013, 11:16:15 PM (11 years ago)
Author:
chronos
Message:
  • Added: Identification code to language list.
  • Fixed: Locale update to database used fixed language id. Now id is detected from language code.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/includes/system.php

    r609 r610  
    3939    (                   
    4040                array(
    41                                 'Title' => 'Soubory',
     41                                'Title' => T('Files'),
    4242                                'Hint' => 'Stahování různých pomocných souborů a programů',
    4343                                'Link' => $this->Link('/download.php'),
     
    4646                ),
    4747                array(
    48                                 'Title' => 'Pokyny',
     48                                'Title' => T('Instructions'),
    4949                                'Hint' => 'Informace k překladu hry',
    5050                                'Link' => $this->Link('/info.php'),
     
    5353                ),
    5454                array(
    55                                 'Title' => 'Zdroje dat',
     55                                'Title' => T('Data source'),
    5656                                'Hint' => 'Informace o překladových skupinách',
    5757                                'Link' => $this->Link('/TranslationList.php?action=grouplist'),
     
    6060                ),
    6161                array(
    62                                 'Title' => 'Prezentace',
     62                                'Title' => T('Presentation'),
    6363                                'Hint' => 'Prezentace a motivace překladu',
    6464                                'Link' => $this->Link('/promotion.php'),
     
    6767                ),             
    6868                array(
    69                                 'Title' => 'IRC chat',
     69                                'Title' => T('IRC chat'),
    7070                                'Hint' => 'IRC chat pro překladatele',
    7171                                'Link' => 'http://embed.mibbit.com/?server=game.zdechov.net%3A6667&channel=%23wowpreklad&forcePrompt=true&charset=utf-8',
     
    7474                ),
    7575                array(
    76                                 'Title' => 'Správa',
     76                                'Title' => T('Administration'),
    7777                                'Hint' => 'Volby pro správu',
    7878                                'Link' => $this->Link('/admin/'),
     
    208208          $this->ModuleManager->Modules['Log']->WriteLog('Stránka "'.
    209209          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));
    211211  }
    212212 
     
    238238                        //$Team = $DbResult->fetch_assoc();
    239239                        //$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>'.
    241241                                        ' <a href="'.$this->System->Link('/user.php?user='.$this->System->User->Id).'">'.T('My page').'</a>'.
    242242                                        ' <a href="'.$this->System->Link('/Options.php').'">'.T('Options').'</a>'.
    243243                                        ' <a title="Vámi přeložené texty" href="'.$this->System->Link('/TranslationList.php?user='.
    244                                         $this->System->User->Id.'&amp;group=0&amp;state=2&amp;text=&amp;entry=').'">Přeložené</a>'.
     244                                        $this->System->User->Id.'&amp;group=0&amp;state=2&amp;text=&amp;entry=').'">'.T('Translated').'</a>'.
    245245                                        ' <a title="Vaše rozpracované text" href="'.$this->System->Link('/TranslationList.php?user='.
    246                                         $this->System->User->Id.'&amp;group=0&amp;state=3&amp;text=&amp;entry=').'">Rozpracované</a>'.
    247                                         ' <a title="Nikým nepřeložené texty" href="'.$this->System->Link('/TranslationList.php?user=0&amp;group=0&amp;state=1&amp;text=&amp;entry=').'">Nepřeložené</a>'.
     246                                        $this->System->User->Id.'&amp;group=0&amp;state=3&amp;text=&amp;entry=').'">'.T('Unfinished').'</a>'.
     247                                        ' <a title="Nikým nepřeložené texty" href="'.$this->System->Link('/TranslationList.php?user=0&amp;group=0&amp;state=1&amp;text=&amp;entry=').'">'.T('Untranslated').'</a>'.
    248248                                        '</span>';
    249249                } else
     
    287287        function ShowSearchBox()
    288288        {
    289                 $Output = '<strong>Hledání:</strong>'.
     289                $Output = '<strong>'.T('Search').':</strong>'.
    290290                                '<form action="'.$this->System->Link('/search/').'" method="get"><div>'.                       
    291291                                '<table>'.
     
    294294                                '</tr>'.
    295295                                '<tr>'.
    296                                 '<th><input type="submit" value="Hledat" /></th>'.
     296                                '<th><input type="submit" value="'.T('Do search').'" /></th>'.
    297297                                '</tr>'.
    298298                                '</table></div>'.
Note: See TracChangeset for help on using the changeset viewer.