Changeset 691


Ignore:
Timestamp:
Jan 2, 2014, 7:10:59 PM (10 years ago)
Author:
maron
Message:
  • Added: Download page
Location:
trunk
Files:
3 added
1 deleted
5 edited
1 moved

Legend:

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

    r648 r691  
    8080                        '<table class="Home"><tr><td colspan="3">'.$this->ShowWelcome().
    8181                        '</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>';
    8583
    8684        $Output .= '<tr><td>'.$this->ShowLastTranslated().'</td>'.
  • trunk/includes/Version.php

    r690 r691  
    66// and system will need database update.
    77
    8 $Revision = 690; // Subversion revision
     8$Revision = 691; // Subversion revision
    99$DatabaseRevision = 678; // Database structure revision
    1010$ReleaseTime = '2014-01-02';
  • trunk/includes/global.php

    r653 r691  
    3131include_once(dirname(__FILE__).'/../Modules/Search/Search.php');
    3232include_once(dirname(__FILE__).'/../Modules/FrontPage/FrontPage.php');
     33include_once(dirname(__FILE__).'/../Modules/Download/Download.php');
    3334
    3435
  • trunk/includes/system.php

    r649 r691  
    5757    $this->Menu = array
    5858    (                   
    59                 array(
     59   /*           array(
    6060                                'Title' => T('Files'),
    6161                                'Hint' => 'Stahování různých pomocných souborů a programů',
     
    6464                                'Icon' => '',
    6565                ),
     66                */
    6667                array(
    6768                                'Title' => T('Instructions'),
     
    155156    $this->ModuleManager->RegisterModule(new ModuleSearch($System));
    156157    $this->ModuleManager->RegisterModule(new ModuleFrontPage($System));
     158    $this->ModuleManager->RegisterModule(new ModuleDownload($System));
    157159    $this->ModuleManager->StartAll();
    158160   
  • trunk/locale/cs.php

    r648 r691  
    141141    'There is resoluted if translation is offered either on client side, on server side or both. '.
    142142    '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',
    143144    );
    144145  }
Note: See TracChangeset for help on using the changeset viewer.