Changeset 691
- Timestamp:
- Jan 2, 2014, 7:10:59 PM (11 years ago)
- Location:
- trunk
- Files:
-
- 3 added
- 1 deleted
- 5 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/FrontPage/FrontPage.php
r648 r691 80 80 '<table class="Home"><tr><td colspan="3">'.$this->ShowWelcome(). 81 81 '</td></tr>'; 82 $file = $this->System->Config['Web']['TempFolder'].'mpq/Instalace_CzechWoW_3.3.3a.exe'; 83 if (file_exists($file)) 84 $Output .= '<tr><td><h3><a href="'.$file.'" title="'.T('Automatic every day generated czech text for client').' ('.date('d.m.Y h:i',(filemtime($file))).')">'.sprintf(T('Download czech text %s'), '3.3.5a').'</a></h3><br/></tr><td>'; 82 $Output .= '<tr><td><h3><a href="'.$this->System->Link('/download/').'">'.T('Download Czech File').'</a></h3></tr><td>'; 85 83 86 84 $Output .= '<tr><td>'.$this->ShowLastTranslated().'</td>'. -
trunk/includes/Version.php
r690 r691 6 6 // and system will need database update. 7 7 8 $Revision = 69 0; // Subversion revision8 $Revision = 691; // Subversion revision 9 9 $DatabaseRevision = 678; // Database structure revision 10 10 $ReleaseTime = '2014-01-02'; -
trunk/includes/global.php
r653 r691 31 31 include_once(dirname(__FILE__).'/../Modules/Search/Search.php'); 32 32 include_once(dirname(__FILE__).'/../Modules/FrontPage/FrontPage.php'); 33 include_once(dirname(__FILE__).'/../Modules/Download/Download.php'); 33 34 34 35 -
trunk/includes/system.php
r649 r691 57 57 $this->Menu = array 58 58 ( 59 array(59 /* array( 60 60 'Title' => T('Files'), 61 61 'Hint' => 'Stahování různých pomocných souborů a programů', … … 64 64 'Icon' => '', 65 65 ), 66 */ 66 67 array( 67 68 'Title' => T('Instructions'), … … 155 156 $this->ModuleManager->RegisterModule(new ModuleSearch($System)); 156 157 $this->ModuleManager->RegisterModule(new ModuleFrontPage($System)); 158 $this->ModuleManager->RegisterModule(new ModuleDownload($System)); 157 159 $this->ModuleManager->StartAll(); 158 160 -
trunk/locale/cs.php
r648 r691 141 141 'There is resoluted if translation is offered either on client side, on server side or both. '. 142 142 'Term "Czech server" doesn\'t mean that server is operated by Czech people but that it is possible to play in Czech.' => '', 143 'Download Czech File' => 'Stáhnout češtinu', 143 144 ); 144 145 }
Note:
See TracChangeset
for help on using the changeset viewer.