Ignore:
Timestamp:
Dec 4, 2013, 9:20:56 AM (11 years ago)
Author:
chronos
Message:
  • Modified: More translated texts.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Modules/News/News.php

    r608 r622  
    2222        $this->System->RegisterPage('news', 'PageNews');
    2323        $this->System->RegisterPage('rss', 'PageRSS');
    24         $this->RegisterRSS(array('Title' => 'Změny systému', 'Channel' => 'news',
     24        $this->RegisterRSS(array('Title' => T('System changes'), 'Channel' => 'news',
    2525          'Callback' => array('PageNews', 'ShowRSS'), 'Permission' => LICENCE_ANONYMOUS));
    2626  }
     
    2828  function ShowBox()
    2929  {
    30         $Output = '<strong>Změny systému:</strong><div class="NewsBox">';
     30        $Output = '<strong>'.T('System changes').':</strong><div class="NewsBox">';
    3131        $DbResult = $this->Database->query('SELECT `News`.`Time`, `User`.`Name`, `News`.`Text`,`News`.`Title`'.
    3232                ' FROM `News` JOIN `User` ON `User`.`ID` = `News`.`User` ORDER BY `Time` DESC LIMIT 10');
     
    8080                $PageList = GetPageList($DbRow[0]);
    8181               
    82                 $Output = '<h3>Novinky</h3>'.$PageList['Output'];
     82                $Output = '<h3>'.T('News').'</h3>'.$PageList['Output'];
    8383                if($this->System->User->Licence(LICENCE_ADMIN))
    8484                        $Output .= ' <a href="?a=add">'.T('Add').'</a>';
     
    141141         $Output = GenerateRSS(array
    142142           (
    143              'Title' => 'WoW překlad - Změny systému',
     143             'Title' => 'WoW překlad - '.T('System changes'),
    144144             'Link' => 'http://'.$this->System->Config['Web']['Host'].$this->System->Link('/'),
    145145             'Description' => 'Překlad textů WoW',
Note: See TracChangeset for help on using the changeset viewer.