Changeset 618 for trunk/admin/index.php


Ignore:
Timestamp:
Dec 4, 2013, 12:39:55 AM (11 years ago)
Author:
chronos
Message:
  • Added: Language selection menu in top right panel.
  • Added: All language files are updated from administration.
  • Added: LocaleManager to implement basic management functions.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/admin/index.php

    r610 r618  
    9292function ShowLocale()
    9393{
    94         global $Locale, $System;
     94        global $LocaleManager, $System;
    9595       
    96         $Locale->AnalyzeCode(dirname(dirname(__FILE__)));
    97         $Locale->UpdateToDatabase($System->Database, $Locale->Texts->Code);
    98         $FileName = dirname(dirname(__FILE__)).'/locale/'.$Locale->Texts->Code.'.php';
    99         $Locale->SaveToFile($FileName);
     96        $LocaleManager->UpdateAll(dirname(dirname(__FILE__)));
    10097        $Output = 'Překlad rozhraní přegenerován';
    10198        $Output .= '<table class="BaseTable"><tr><th>Originál</th><th>Překlad</th></tr>';
    102         foreach($Locale->Texts->Data as $Index => $Item)
     99        foreach($LocaleManager->CurrentLocale->Texts->Data as $Index => $Item)
    103100          $Output .= '<tr><td>'.$Index.'</td><td>'.$Item.'</td></tr>';
    104101        $Output .= '</table>';
    105         $Output .= 'Překladová soubor '.$FileName.' zaktualizován';
     102        $Output .= 'Překladové soubory zaktualizovány';
    106103        return($Output);
    107104}
Note: See TracChangeset for help on using the changeset viewer.