Changeset 608 for trunk/Modules/News


Ignore:
Timestamp:
Nov 26, 2013, 10:12:48 PM (11 years ago)
Author:
chronos
Message:
  • Added: Implemented mechanism for update interface translation list from source code. Resulted list is saved to lanugage file and database.
File:
1 edited

Legend:

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

    r581 r608  
    3333        while($DbRow = $DbResult->fetch_assoc())
    3434                $Output .= '<div><strong>'.$DbRow['Title'].' ('.HumanDate($DbRow['Time']).')</strong> <br />'.$DbRow['Text'].' ('.$DbRow['Name'].')</div>';
    35         $Output .= '<a href="'.$this->System->Link('/news/').'">Všechny zprávy</a>';
     35        $Output .= '<a href="'.$this->System->Link('/news/').'">'.T('All news').'</a>';
    3636        $Output .= '</div>';   
    3737        return($Output);
     
    8282                $Output = '<h3>Novinky</h3>'.$PageList['Output'];
    8383                if($this->System->User->Licence(LICENCE_ADMIN))
    84                         $Output .= ' <a href="?a=add">Vložit</a>';
     84                        $Output .= ' <a href="?a=add">'.T('Add').'</a>';
    8585                $Output .= '<div class="shoutbox">';
    8686                $DbResult = $this->System->Database->query('SELECT `News`.`Time`, `News`.`Text`, `News`.`Title`, '.
     
    103103                          '<input type="submit" value="Uložit"/><br/>'.
    104104                          '</form>';
    105                 } else $Output = ShowMessage('Nemáte oprávnění', MESSAGE_CRITICAL);
     105                } else $Output = ShowMessage(T('Access denied'), MESSAGE_CRITICAL);
    106106                return($Output);
    107107        }
     
    120120                          $Output .= $this->ShowList();
    121121                  } else $Output = ShowMessage('Nezadány údaje', MESSAGE_CRITICAL);
    122                 } else $Output = ShowMessage('Nemáte oprávnění', MESSAGE_CRITICAL);
     122                } else $Output = ShowMessage(T('Access denied'), MESSAGE_CRITICAL);
    123123                return($Output);
    124124        }
Note: See TracChangeset for help on using the changeset viewer.