Changeset 622 for trunk/includes/system.php
- Timestamp:
- Dec 4, 2013, 9:20:56 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/includes/system.php
r618 r622 267 267 { 268 268 $Output .= '<form action="'.$this->System->Link('/?action=login').'" method="post"> '. 269 'Jméno: <input type="text" name="LoginUser" size="8 " /> '.270 'Heslo: <td><input type="password" name="LoginPass" size="8" /> '.269 T('Name').': <input type="text" name="LoginUser" size="8 " /> '. 270 T('Password').': <td><input type="password" name="LoginPass" size="8" /> '. 271 271 '<input type="submit" value="'.T('Login').'" /></form> '. 272 272 '<a href="'.$this->System->Link('/registrace.php').'">'.T('Registration').'</a>'; … … 293 293 } else 294 294 { 295 $Output .= '<strong> Přihlášení:</strong>295 $Output .= '<strong>'.T('Login').':</strong> 296 296 <form action="" method="post"> 297 297 <table> … … 303 303 </tr> 304 304 <tr> 305 <th><input type="submit" value=" Přihlásit" /></th>305 <th><input type="submit" value="'.T('Do login').'" /></th> 306 306 </tr> 307 307 </table> … … 415 415 $Output .= '</td></tr>'; 416 416 if($this->System->Config['Web']['ShowRuntimeInfo'] == true) 417 $Output .= '<tr><td colspan="3" style="text-align: center;"> Doba generování: '.418 $ScriptGenerateDuration.' s / '.ini_get('max_execution_time').' s Použitá paměť: '.417 $Output .= '<tr><td colspan="3" style="text-align: center;">'.T('Generating duration').': '. 418 $ScriptGenerateDuration.' s / '.ini_get('max_execution_time').' s '.T('Used memory').': '. 419 419 HumanSize(memory_get_peak_usage(FALSE)).' / '.ini_get('memory_limit').'B <a href="http://validator.w3.org/check?uri='. 420 420 htmlentities('http://'.$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'].'?'.$_SERVER['QUERY_STRING']).'">HTML validator</a></td></tr>';
Note:
See TracChangeset
for help on using the changeset viewer.