Ignore:
Timestamp:
Feb 11, 2014, 5:18:51 PM (10 years ago)
Author:
maron
Message:
File:
1 edited

Legend:

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

    r790 r792  
    2626    if(array_key_exists('Search', $this->System->ModuleManager->Modules))
    2727      $this->System->ModuleManager->Modules['Search']->RegisterSearch('forumthread',
    28       'Název vlákna fóra', array('UserName', 'Text'), '`ForumThread`', $this->System->Link('/forum/?search='));
     28      T('Name of thread forum'), array('UserName', 'Text'), '`ForumThread`', $this->System->Link('/forum/?search='));
    2929               
    3030    $this->System->RegisterMenuItem(array(
     
    9494                                $Output .= '<form action="?Edit='.$_GET['Edit'].'" method="post">'.
    9595                                                '<fieldset><legend>'.T('Edit message').'</legend>'.
    96                                                 'Uživatel: ';
     96                                                T('User').': ';
    9797                                if($this->System->User->Licence(LICENCE_USER)) $Output .= '<b>'.$this->System->User->Name.'</b><br />';
    9898                                else $Output .= '<input type="text" name="user" /><br />';
     
    202202                                if($this->System->User->Licence(LICENCE_USER)) $Output .= '<b>'.$this->System->User->Name.'</b><br />';
    203203                                else $Output .= '<input type="text" name="user" /><br />';
    204                         $Output .= 'Text zprávy: (Můžete využít <a href="http://www.bbcode.org/reference.php">BB kód</a>)<br/>'.                         
     204                        $Output .= T('Message text').': ('.T('You can use').' <a href="http://www.bbcode.org/reference.php">'.T('BB code').'</a>)<br/>'.                         
    205205                        '<textarea onkeydown="ResizeTextArea(this)" name="text" cols="80"></textarea> <br/>'.
    206206                        '<input type="hidden" name="a" value="add2"/>'.
    207                         '<input type="submit" value="Odeslat" /><br /></fieldset>'.
     207                        '<input type="submit" value="'.T('Send').'" /><br /></fieldset>'.
    208208                        '</form>';
    209209                }       else $Output .= ShowMessage(T('You have to be registered for adding message.'), MESSAGE_CRITICAL);
     
    221221                                if($this->System->User->Licence(LICENCE_USER)) $Output .= '<b>'.$this->System->User->Name.'</b><br />';
    222222                                else $Output .= '<input type="text" name="user" /><br />';
    223                         $Output .= 'Název vlákna: <br />'.
     223                        $Output .= T('Name of thread').': <br />'.
    224224                        '<textarea onkeydown="ResizeTextArea(this)" name="text" rows="1" cols="30"></textarea> <br/>'.
    225225                        '<input type="hidden" name="a" value="add2"/>'.
    226                         '<input type="submit" value="Odeslat" /><br /></fieldset>'.
     226                        '<input type="submit" value="'.T('Send').'" /><br /></fieldset>'.
    227227                        '</form>';
    228228                }       else $Output .= ShowMessage(T('You have to be registered for adding message.'), MESSAGE_CRITICAL);
Note: See TracChangeset for help on using the changeset viewer.