Changeset 790 for trunk/Modules/Forum/Forum.php
- Timestamp:
- Feb 10, 2014, 7:11:06 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Forum/Forum.php
r774 r790 30 30 $this->System->RegisterMenuItem(array( 31 31 'Title' => T('Forum'), 32 'Hint' => 'Forum na debatování ohledně překladu wow',32 'Hint' => T('Forum about translation wow'), 33 33 'Link' => $this->System->Link('/forum/'), 34 34 'Permission' => LICENCE_ANONYMOUS, … … 78 78 $DbResult = $this->System->Database->query('UPDATE `ForumText` SET `Text`="'.$_POST['text'].'" WHERE `User` = '.$this->System->User->Id.' AND `ID` = '.$_GET['Edit']); 79 79 80 $Output .= ShowMessage( 'Text upraven.');80 $Output .= ShowMessage(T('Text edited.')); 81 81 82 82 … … 93 93 $DbRow = $DbResult->fetch_assoc(); 94 94 $Output .= '<form action="?Edit='.$_GET['Edit'].'" method="post">'. 95 '<fieldset><legend> Editovat zprávu</legend>'.95 '<fieldset><legend>'.T('Edit message').'</legend>'. 96 96 'Uživatel: '; 97 97 if($this->System->User->Licence(LICENCE_USER)) $Output .= '<b>'.$this->System->User->Name.'</b><br />'; 98 98 else $Output .= '<input type="text" name="user" /><br />'; 99 $Output .= 'Text zprávy: (Můžete využít <a href="http://www.bbcode.org/reference.php">BB kód</a>)<br/>'.99 $Output .= T('Message text').': ('.T('You can use').' <a href="http://www.bbcode.org/reference.php">'.T('BB code').'</a>)<br/>'. 100 100 '<textarea onkeydown="ResizeTextArea(this)" rows="8" name="text" cols="80">'.$DbRow['Text'].'</textarea> <br/>'. 101 101 '<input type="hidden" name="a" value="add2"/>'. 102 '<input type="submit" value=" Odeslat" /><br /></fieldset>'.102 '<input type="submit" value="'.T('Send').'" /><br /></fieldset>'. 103 103 '</form>'; 104 } else $Output .= ShowMessage( 'Pro vkládaní zpráv musíte byt registrováni.', MESSAGE_CRITICAL);105 } else $Output .= ShowMessage( 'Editovat můžete pouze své zprávy', MESSAGE_CRITICAL);104 } else $Output .= ShowMessage(T('You have to be registered for adding message.'), MESSAGE_CRITICAL); 105 } else $Output .= ShowMessage(T('You can edit only your own message.'), MESSAGE_CRITICAL); 106 106 return($Output); 107 107 } … … 207 207 '<input type="submit" value="Odeslat" /><br /></fieldset>'. 208 208 '</form>'; 209 } else $Output .= ShowMessage( 'Pro vkládaní zpráv musíte byt registrováni.', MESSAGE_CRITICAL);209 } else $Output .= ShowMessage(T('You have to be registered for adding message.'), MESSAGE_CRITICAL); 210 210 return($Output); 211 211 } … … 226 226 '<input type="submit" value="Odeslat" /><br /></fieldset>'. 227 227 '</form>'; 228 } else $Output .= ShowMessage( 'Pro vkládaní zpráv musíte byt registrováni.', MESSAGE_CRITICAL);228 } else $Output .= ShowMessage(T('You have to be registered for adding message.'), MESSAGE_CRITICAL); 229 229 return($Output); 230 230 } … … 251 251 } else $DbRow['Text'] = ''; 252 252 253 if($DbRow['Text'] == $Text) $Output .= ShowMessage( 'Nelze vložit stejnou zprávu vícekrát za sebou.', MESSAGE_WARNING);253 if($DbRow['Text'] == $Text) $Output .= ShowMessage(T('You can\' add same message twice.'), MESSAGE_WARNING); 254 254 else 255 255 { … … 267 267 ' VALUES ('.$this->System->User->Id.', "'.$this->System->User->Name. 268 268 '", "'.$Text.'", NOW(), "'.$_SERVER['REMOTE_ADDR'].'")'); 269 $Output .= ShowMessage( 'Vloženo.');269 $Output .= ShowMessage(T('Added.')); 270 270 } 271 271 } 272 } else $Output .= ShowMessage( 'Nezadán text pro novou zprávu.', MESSAGE_CRITICAL);272 } else $Output .= ShowMessage(T('You have to specified new message.'), MESSAGE_CRITICAL); 273 273 $Output .= '<br/>'; 274 } else $Output .= ShowMessage( 'Pro vkládaní zpráv musíte byt registrováni.', MESSAGE_CRITICAL);274 } else $Output .= ShowMessage(T('You have to be registered for adding message.'), MESSAGE_CRITICAL); 275 275 return($Output); 276 276 }
Note:
See TracChangeset
for help on using the changeset viewer.