Changeset 609 for trunk/includes
- Timestamp:
- Nov 26, 2013, 10:45:01 PM (11 years ago)
- Location:
- trunk/includes
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/includes/Locale.php
r608 r609 29 29 function Translate($Text) 30 30 { 31 if(array_key_exists($Text, $this->Texts->Data) )31 if(array_key_exists($Text, $this->Texts->Data) and ($this->Texts->Data[$Text] != '')) 32 32 return($this->Texts->Data[$Text]); 33 33 else return($Text); … … 96 96 ' function Load()'."\n". 97 97 ' {'."\n". 98 ' $this->Code = \' cs\';'."\n".98 ' $this->Code = \''.$this->Texts->Code.'\';'."\n". 99 99 ' $this->Data = array('."\n"; 100 100 foreach($this->Texts->Data as $Index => $Item) -
trunk/includes/Version.php
r608 r609 6 6 // and system will need database update. 7 7 8 $Revision = 60 8; // Subversion revision8 $Revision = 609; // Subversion revision 9 9 $DatabaseRevision = 608; // Database structure revision 10 10 $ReleaseTime = '2013-11-26'; -
trunk/includes/system.php
r603 r609 239 239 //$Output .= ''<span class="MenuItem">Moje překlady: <a href="">Dokončené</a> <a href="">Rozpracované</a> <a href="">Exporty</a> Tým: <a href="">'.$Team['name'].'</a></span>'; 240 240 $Output .= '<span class="MenuItem2">'.$this->System->User->Name.' <a href="'.$this->System->Link('/?action=logout').'">Odhlášení</a>'. 241 ' <a href="'.$this->System->Link('/user.php?user='.$this->System->User->Id).'"> Moje stránka</a>'.242 ' <a href="'.$this->System->Link('/Options.php').'"> Nastavení</a>'.241 ' <a href="'.$this->System->Link('/user.php?user='.$this->System->User->Id).'">'.T('My page').'</a>'. 242 ' <a href="'.$this->System->Link('/Options.php').'">'.T('Options').'</a>'. 243 243 ' <a title="Vámi přeložené texty" href="'.$this->System->Link('/TranslationList.php?user='. 244 244 $this->System->User->Id.'&group=0&state=2&text=&entry=').'">Přeložené</a>'. … … 252 252 'Jméno: <input type="text" name="LoginUser" size="8 " /> '. 253 253 'Heslo: <td><input type="password" name="LoginPass" size="8" /> '. 254 '<input type="submit" value=" Přihlásit" /></form> '.254 '<input type="submit" value="'.T('Login').'" /></form> '. 255 255 '<a href="'.$this->System->Link('/registrace.php').'">'.T('Registration').'</a></span>'; 256 256 } … … 323 323 global $TranslationTree; 324 324 325 $Output = '<strong> Překladové skupiny:</strong><br /><div id="TranslationMenu">';325 $Output = '<strong>'.T('Translate groups').':</strong><br /><div id="TranslationMenu">'; 326 326 $DbResult = $this->System->Database->select('Group', '`Id`, `Name`', '1 ORDER BY `Name`'); 327 327 while($Group = $DbResult->fetch_assoc()) … … 382 382 $Output .= '</td>'. 383 383 '</tr><tr>'. 384 '<td colspan="4" class="page-bottom"> Verze: '.$Revision.' ('.HumanDate($ReleaseTime).')'.385 ' <a href="http://svn.zdechov.net/trac/wowpreklad/browser/trunk"> Zdrojové soubory</a> '.386 '<a href="http://svn.zdechov.net/trac/wowpreklad/log/trunk?verbose=on"> Novinky</a> '.384 '<td colspan="4" class="page-bottom">'.T('Version').': '.$Revision.' ('.HumanDate($ReleaseTime).')'. 385 ' <a href="http://svn.zdechov.net/trac/wowpreklad/browser/trunk">'.T('Source code').'</a> '. 386 '<a href="http://svn.zdechov.net/trac/wowpreklad/log/trunk?verbose=on">'.T('Changelog').'</a> '. 387 387 $this->System->Config['Web']['WebCounter']; 388 388
Note:
See TracChangeset
for help on using the changeset viewer.