Changeset 791


Ignore:
Timestamp:
Feb 11, 2014, 12:45:27 PM (10 years ago)
Author:
maron
Message:
  • fixed: default Version in translation list
  • added: localization Download.php
Location:
trunk
Files:
5 edited

Legend:

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

    r790 r791  
    6363  '<a href="http://jenicko.savana.cz/wow/forum/viewtopic.php?id=218&amp;action=all">'.T('Czech shouts from W3').'</a> - '.T('sound files taken from Warcraft 3 and used in wow.').'<br />
    6464  <br />'.
    65   '<h3>Doplňky pro server:</h3>'.
     65  '<h3>'.T('Add-ons for server').':</h3>'.
    6666
    67   '<a href="http://mangos.cjb.net/forums/index.php?showforum=15">Čeština do Minimanageru</a><br />
     67  '<a href="http://mangos.cjb.net/forums/index.php?showforum=15">'.T('Czech to Minimanager').'</a><br />
    6868  <a href="http://mangos.cjb.net/forums/index.php?showtopic=359">'.T('Czech for AoWoW').'</a> <a href="'.$fileslink.'/AoWoW.zip">'.T('Czech for AoWoW').' (zip)</a> - '.T('Web viewer database for emulator mangos like wowhead.com').'<br />
    6969  <br />';
  • trunk/Modules/Translation/TranslationList.php

    r786 r791  
    8181                $Output .= '</select></td>';
    8282
    83                 // Version
    84                 $Filter['Version'] = GetParameter('version', 0, true, true);
    85     if (($Filter['Version'] == 0) and ($this->System->User->Licence(LICENCE_USER))) $Filter['Version'] = $this->System->User->PreferredVersion;
     83    if ($this->System->User->Licence(LICENCE_USER))
     84                $Filter['Version'] = GetParameter('version', $this->System->User->PreferredVersion, true, true);
     85    else
     86                $Filter['Version'] = GetParameter('version', 0, true, true);
    8687                if($Filter['Version'] != 0)
    8788                {
  • trunk/Modules/User/User.php

    r789 r791  
    9898  var $Database;
    9999  var $OnlineStateTimeout;
     100  var $PreferredVersion = 0;
    100101 
    101102  function __construct($System)
  • trunk/includes/Version.php

    r790 r791  
    66// and system will need database update.
    77
    8 $Revision = 790; // Subversion revision
     8$Revision = 791; // Subversion revision
    99$DatabaseRevision = 787; // Database structure revision
    1010$ReleaseTime = '2014-02-09';
  • trunk/locale/cs.php

    r790 r791  
    218218      'Czech for AoWoW' => 'Čeština pro AoWoW',
    219219      'Other add-ons' => 'Další doplňky',
     220      'Add-ons for server' => 'Doplňky pro server',
    220221      'An internal error occurred! <br /> Administrator has been made ​​aware of it and the error soon will be removed.' => 'Došlo k vnitřní chybě!<br/> O chybě byl uvědoměn správce webu a chybu brzy odstraní.',
    221222      '' => '',
Note: See TracChangeset for help on using the changeset viewer.