Changeset 603 for trunk/includes
- Timestamp:
- Nov 26, 2013, 12:22:41 AM (11 years ago)
- Location:
- trunk/includes
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/includes/Version.php
r602 r603 6 6 // and system will need database update. 7 7 8 $Revision = 60 2; // Subversion revision8 $Revision = 603; // Subversion revision 9 9 $DatabaseRevision = 600; // Database structure revision 10 10 $ReleaseTime = '2013-11-25'; -
trunk/includes/global.php
r596 r603 10 10 include_once(dirname(__FILE__).'/Version.php'); 11 11 include_once(dirname(__FILE__).'/AppModule.php'); 12 include_once(dirname(__FILE__).'/Locale.php'); 13 $Locale = new Locale(); 14 $Locale->Dir = dirname(__FILE__).'/../locale'; 15 $Locale->Load($Config['Web']['Locale']); 12 16 13 17 // Include application modules -
trunk/includes/system.php
r602 r603 253 253 'Heslo: <td><input type="password" name="LoginPass" size="8" /> '. 254 254 '<input type="submit" value="Přihlásit" /></form> '. 255 '<a href="'.$this->System->Link('/registrace.php').'"> Registrace</a></span>';255 '<a href="'.$this->System->Link('/registrace.php').'">'.T('Registration').'</a></span>'; 256 256 } 257 257 $Output .= '</div>'; … … 303 303 function ShowMainMenu() 304 304 { 305 $Output = '<strong> Nabídka:</strong>'.305 $Output = '<strong>'.T('Menu').':</strong>'. 306 306 '<div class="verticalmenu"><ul>'; 307 307 foreach($this->System->Menu as $MenuItem)
Note:
See TracChangeset
for help on using the changeset viewer.