Changeset 816 for trunk/Modules/Export/Export.php
- Timestamp:
- Feb 22, 2015, 11:20:50 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Export/Export.php
r799 r816 13 13 var $TempDir; 14 14 var $SourceDir; 15 15 16 16 function Init() 17 17 { … … 23 23 if(!file_exists($this->SourceDir)) mkdir($this->SourceDir, 0777, true); 24 24 } 25 25 26 26 function SaveAllUsers() { 27 28 29 30 31 32 33 34 35 36 37 //$this->System->Database->query('UPDATE `ExportUser` SET `Sequence`='.$Value.$Condition);38 39 27 $DbResult = $this->System->Database->query('SELECT * FROM `Export` WHERE `Id`='.$this->Id); 28 $Export = $DbResult->fetch_assoc(); 29 if ($Export['AllUsers']) { 30 $DbResult2 = $this->System->Database->query('SELECT ID FROM `User` WHERE `ID` NOT IN(SELECT `User` FROM `ExportUser` WHERE `Export`='.$this->Id.')'); 31 while($UserLine = $DbResult2->fetch_assoc()) 32 { 33 $Condition = ' WHERE `Export`='.$this->Id.' AND `User`='.$UserLine['ID']; 34 $DbResult = $this->System->Database->query('SELECT * FROM `ExportUser` '.$Condition); //,MAX(`Sequence`) as MaxSequence 35 if($DbResult->num_rows > 0) 36 { 37 // $this->System->Database->query('UPDATE `ExportUser` SET `Sequence`='.$Value.$Condition); 38 } else 39 { 40 40 $this->System->Database->query('INSERT INTO `ExportUser` (`Export`, `User`, `Sequence`) VALUES ('.$this->Id.', '.$UserLine['ID'].', 0)'); 41 42 43 41 } 42 } 43 44 44 $this->System->Database->query('SET @I = 0'); 45 46 47 } 48 45 $this->System->Database->query('UPDATE `ExportUser` SET `Sequence` = (@I := @I + 1) WHERE `Export`='.$this->Id.' ORDER BY `Sequence`;'); 46 } 47 } 48 49 49 function LoadFilters() 50 { 50 { 51 51 $DbResult = $this->Database->query('SELECT * FROM `Export` WHERE `Id`='.$this->Id); 52 52 if($DbResult->num_rows == 0) throw new Exception('Export '.$this->Id.' neexistuje'); 53 $this->Export = $DbResult->fetch_assoc(); 53 $this->Export = $DbResult->fetch_assoc(); 54 54 55 55 // Filter selected users 56 56 $this->UserNames = ''; 57 57 $DbResult = $this->Database->query('SELECT `ExportUser`.*, `User`.`Name`, `User`.`ID` FROM `ExportUser` '. 58 59 58 'LEFT JOIN `User` ON `User`.`ID`=`ExportUser`.`User` '. 59 'WHERE `ExportUser`.`Export`='.$this->Id.' ORDER BY `ExportUser`.`Sequence`'); 60 60 while($UserLine = $DbResult->fetch_assoc()) 61 61 { 62 62 $this->UserNames .= ', '.$UserLine['Name']; 63 63 } 64 $this->UserNames = substr($this->UserNames, 2); 65 64 $this->UserNames = substr($this->UserNames, 2); 65 66 66 if($this->Export['ClientVersion'] != '') 67 67 { 68 68 $DbResult = $this->Database->query('SELECT * FROM `ClientVersion` WHERE `Id`='.$this->Export['ClientVersion']); 69 69 $this->ClientVersion = $DbResult->fetch_assoc(); 70 } else $this->ClientVersion = ''; 71 } 72 70 } else $this->ClientVersion = ''; 71 } 72 73 73 function BuildQuery($Group, $Version = '') 74 74 { 75 75 global $TranslationTree; 76 76 $this->SaveAllUsers(); 77 78 if ($Version <> '') 77 78 if ($Version <> '') 79 79 $ExportVersion = $Version; 80 80 else 81 81 $ExportVersion = $this->ClientVersion['BuildNumber']; 82 82 83 84 85 86 83 $DbResultItem = $this->System->Database->query('SELECT * FROM `ExportGroupItem` WHERE `Export`='.$this->Id); 84 while($GroupItem = $DbResultItem->fetch_assoc()) 85 { 86 $GroupItems[$GroupItem['GroupItem']] = 1; 87 87 } 88 88 // Build selected columns … … 93 93 // $Columns = substr($Columns, 0, -2); 94 94 95 95 96 96 $Query = 'SELECT * FROM (SELECT '.$Columns.' T.`ID`,T.`Language`,T.`User`,T.`Entry`,T.`VersionEnd`,T.`VersionStart`, `User`.`Name` AS `UserName` FROM `'.$Group['TablePrefix'].'` AS `T`'. 97 97 ' JOIN `ExportUser` ON (`ExportUser`.`User`=`T`.`User`) AND (`ExportUser`.`Export`='.$this->Id.') '. … … 105 105 foreach($TranslationTree[$Group['Id']]['Items'] as $Column) { 106 106 $OriginalColumns .= ' `T3`.`'.$Column['Column'].'` AS `En'.$Column['Column'].'`, '; 107 if (isset($GroupItems[$Column['Id']])) 107 if (isset($GroupItems[$Column['Id']])) 108 108 $OriginalColumns .= ' `T3`.`'.$Column['Column'].'` AS `'.$Column['Column'].'`, '; 109 109 } 110 110 $OriginalColumns = substr($OriginalColumns, 0, -2); 111 111 112 112 // Expand query for loading english texts 113 113 $Query = 'SELECT `T4`.*, '.$OriginalColumns.' FROM ('.$Query.') AS `T4` '. 114 114 ' LEFT JOIN `'.$Group['TablePrefix'].'` AS `T3` ON (`T3`.`Entry` = `T4`.`Entry`) '. 115 115 'AND (`T3`.`Language` = '.$this->System->Config['OriginalLanguage'].') AND '. 116 '(`T3`.`VersionStart` = `T4`.`VersionStart`) AND (`T3`.`VersionEnd` = `T4`.`VersionEnd`)'; 116 '(`T3`.`VersionStart` = `T4`.`VersionStart`) AND (`T3`.`VersionEnd` = `T4`.`VersionEnd`)'; 117 117 118 118 return($Query); 119 119 } 120 120 121 121 function NeedGeneration() 122 122 { … … 130 130 else return(true); 131 131 // echo $file; 132 132 133 133 $DbResult = $this->Database->query('SELECT `Group`.* FROM `ExportGroup` '. 134 135 $result = false; 134 'JOIN `Group` ON `Group`.`Id` = `ExportGroup`.`Group` WHERE `ExportGroup`.`Export`='.$this->Id); 135 $result = false; 136 136 while($Group = $DbResult->fetch_assoc()) 137 137 { … … 146 146 if ($DbResult2->num_rows > 0) { 147 147 $result = true; 148 } 149 } 148 } 149 } 150 150 return($result); 151 151 } 152 152 153 153 function ExportToMangosSQL() 154 154 { 155 155 global $TranslationTree; 156 156 157 157 $this->LoadFilters(); 158 159 $Buffer = 160 "-- Generováno projektem wowpreklad.zdechov.net\n". 158 159 $Buffer = 160 "-- Generováno projektem wowpreklad.zdechov.net\n". 161 161 "-- ===========================================\n". 162 162 "--\n". … … 168 168 "-- Vzato od uživatelů: ".$this->UserNames."\n". 169 169 "-- Generované tabulky: "; 170 170 171 171 $DbResult = $this->Database->query('SELECT `Group`.* FROM `ExportGroup` '. 172 172 'JOIN `Group` ON `Group`.`Id` = `ExportGroup`.`Group` WHERE `ExportGroup`.`Export`='.$this->Id); 173 173 while($Group = $DbResult->fetch_assoc()) 174 174 { 175 175 $Buffer .= $Group['TablePrefix'].', '; 176 176 } 177 $Buffer .= "\n\n"; 177 $Buffer .= "\n\n"; 178 178 179 179 $DbResult = $this->Database->query('SELECT `Group`.* FROM `ExportGroup` '. 180 180 'JOIN `Group` ON `Group`.`Id` = `ExportGroup`.`Group` WHERE `ExportGroup`.`Export`='.$this->Id); 181 181 while($Group = $DbResult->fetch_assoc()) 182 182 { … … 186 186 $DbResult2 = $this->Database->query($this->BuildQuery($Group)); 187 187 if($DbResult2->num_rows > 0) 188 while($Line = $DbResult2->fetch_array()) 188 while($Line = $DbResult2->fetch_array()) 189 189 { 190 190 $Values = ''; … … 199 199 // Get multicolumn index 200 200 $ColumnItems = explode(',', $Group['MangosTableIndex']); 201 if(count($ColumnItems) > 1) 201 if(count($ColumnItems) > 1) 202 202 { 203 203 $Where = 'CONCAT('; … … 206 206 $Where = substr($Where, 0, -7).')'; 207 207 } else $Where = '`'.$Group['MangosTableIndex'].'`'; 208 $Where .= ' = "'.$Line[$Group['PrimaryKeyItem']].'";'; 209 208 $Where .= ' = "'.$Line[$Group['PrimaryKeyItem']].'";'; 209 210 210 $Line = 'UPDATE `'.$Group['MangosTable'].'` SET '.$Values.' WHERE '.$Where; 211 211 $Line = str_replace("\n", '\n', $Line); 212 212 $Line = str_replace("\r", '', $Line); 213 213 $Buffer .= $Line."\n"; 214 } 214 } 215 215 } 216 216 } … … 218 218 return($Buffer); 219 219 } 220 221 function ExportToAoWoWSQL() 220 221 function ExportToAoWoWSQL() 222 222 { 223 223 global $TranslationTree, $AoWoWconf; 224 224 225 225 //require_once('../aowow/configs/config.php'); 226 226 227 227 $Buffer = $this->ExportToMangosSQL(); 228 228 229 229 /* 230 230 // Data to aowow 231 231 $Database2 = new mysqli($this->Config['Database']['Host'], $this->Config['Database']['User'], $this->Config['Database']['Password'], $this->Config['Database']['Database']); 232 232 $Database2->query('SET NAMES '.$this->Config['Database']['Charset']); 233 $Database2->select_db($AoWoWconf['mangos']['db']); 233 $Database2->select_db($AoWoWconf['mangos']['db']); 234 234 $AoWoWTables = array( 235 'aowow_resistances' => 'Id', 236 'aowow_spelldispeltype' => 'Id', 235 'aowow_resistances' => 'Id', 236 'aowow_spelldispeltype' => 'Id', 237 237 'aowow_skill' => 'skillID', 238 238 ); 239 foreach($AoWoWTables as $AoWoWTable => $IndexColum) 239 foreach($AoWoWTables as $AoWoWTable => $IndexColum) 240 240 { 241 241 $Buffer .= '--'.$AoWoWTable.', '; 242 $Buffer .= "\n\n"; 242 $Buffer .= "\n\n"; 243 243 $Query = 'SELECT `name`,`'.$IndexColum.'` FROM `'.$AoWoWTable.'`'; 244 244 $DbResult = $Database2->query($Query); 245 while($Line = $DbResult->fetch_assoc()) 245 while($Line = $DbResult->fetch_assoc()) 246 246 { 247 247 $Ori_text = $Line['name']; … … 253 253 $Tran = $DbResult2->fetch_assoc(); 254 254 //echo ($Line['name'].'='.$Tran['tran']); 255 if($Tran['Tran'] == '') 255 if($Tran['Tran'] == '') 256 256 { 257 257 $DbResult2 = $Database2->query('SELECT `OptionText` AS `En`, … … 263 263 $Tran = $DbResult2->fetch_assoc(); 264 264 } 265 265 266 266 if($Tran['Tran'] <> '') 267 267 $Buffer .= 'UPDATE `'.$AoWoWTable.'` SET `name` = "'.addslashes($Tran['Tran']).'" WHERE '.$IndexColum.' = '.$Line[$IndexColum].' ;'."\n"; 268 268 } 269 $Buffer .= "\n\n"; 269 $Buffer .= "\n\n"; 270 270 } 271 271 */ 272 272 if($this->Export['WithDiacritic'] != 1) $Buffer = utf2ascii($Buffer); 273 273 return($Buffer); 274 } 275 276 function HaveVarible($String1, $String2, $StartChar = '$') 274 } 275 276 function HaveVarible($String1, $String2, $StartChar = '$') 277 277 { 278 278 //Export only if translate have same varible % 279 279 280 280 if (strpos($String1,$StartChar) !== false) { 281 281 282 282 while ( strpos($String1,$StartChar) !== false) { 283 283 $pos = strpos($String1,$StartChar); … … 291 291 // echo $pos.'-'.$varible.'-'.$String1.'-' .$String2.' 292 292 // '; 293 293 294 294 if (false === strpos($String2,$varible)) { 295 // echo $varible; 295 // echo $varible; 296 296 return(false); 297 297 } … … 299 299 } 300 300 return (true); 301 } 301 } 302 302 303 303 function AddProgress($add = 1) { … … 312 312 { 313 313 global $TranslationTree; 314 314 315 315 $this->LoadFilters(); 316 316 317 317 $DbResult = $this->Database->query('SELECT `Group`.* FROM `ExportGroup` '. 318 319 318 'JOIN `Group` ON `Group`.`Id` = `ExportGroup`.`Group` '. 319 'WHERE `ExportGroup`.`Export`='.$this->Id.' AND `Group`.`DBCFileName` != ""'); 320 320 $Output = 'Počet generovaných skupin: '.$DbResult->num_rows."\n"; 321 321 while($Group = $DbResult->fetch_assoc()) … … 323 323 $this->AddProgress(2); 324 324 $Output .= $Group['Name'].', '; 325 if(file_exists($this->SourceDir.$this->ClientVersion['Version'].'/dbc/'.$Group['DBCFileName'].'.dbc')) 325 if(file_exists($this->SourceDir.$this->ClientVersion['Version'].'/dbc/'.$Group['DBCFileName'].'.dbc')) 326 326 { 327 327 // Load string column index list 328 328 $DbResult2 = $this->Database->query('SELECT * FROM `GroupItem` '. 329 'JOIN `GroupItemDBC` ON `GroupItem`.`Id` = `GroupItemDBC`.`GroupItem` AND `GroupItemDBC`.`ClientVersion` = '.$this->ClientVersion['Id'].' WHERE `GroupItem`.`Group` = '.$Group['Id']);329 'JOIN `GroupItemDBC` ON `GroupItem`.`Id` = `GroupItemDBC`.`GroupItem` AND `GroupItemDBC`.`ClientVersion` = '.$this->ClientVersion['Id'].' WHERE `GroupItem`.`Group` = '.$Group['Id']); 330 330 $ColumnIndexes = array(); 331 331 $ColumnFormat = array(); … … 347 347 $CanExport = false; 348 348 $Output .= ', NE='.$DbRow['ID']; 349 } 349 } 350 350 if (!$this->HaveVarible($DbRow[$Column['Column']],$DbRow['En'.$Column['Column']])) { 351 351 $CanExport = false; 352 352 $Output .= ', NE='.$DbRow['ID']; 353 } 353 } 354 354 } 355 355 356 356 if ($CanExport) 357 357 $LookupTable[$DbRow[$Group['PrimaryKeyItem']]] = $DbRow; 358 358 359 359 } 360 360 361 361 // Open original DBC file 362 362 $SourceDBCFile = new DBCFile(); 363 363 $SourceDBCFile->OpenFile($this->SourceDir.$this->ClientVersion['Version'].'/dbc/'.$Group['DBCFileName'].'.dbc', $ColumnFormat); 364 364 365 365 // Create new DBC file 366 366 if(!file_exists($this->TempDir.'dbc/')) mkdir ($this->TempDir.'dbc/', 0777, true); … … 375 375 $Output .= "\n\r"; 376 376 $RowCount = $SourceDBCFile->GetRecordCount(); 377 $FieldCount = $SourceDBCFile->GetFieldCount(); 377 $FieldCount = $SourceDBCFile->GetFieldCount(); 378 378 for($Row = 0; $Row < $RowCount; $Row++) 379 379 { 380 380 $Line = $SourceDBCFile->GetLine($Row); 381 381 382 382 // Get multicolumn index value 383 383 $PrimaryKeyItem = ''; 384 384 $ColumnItems = explode(',', $Group['DBCIndex']); 385 if(count($ColumnItems) > 1) 385 if(count($ColumnItems) > 1) 386 386 { 387 387 foreach($ColumnItems as $ColumnItem) … … 391 391 392 392 if(array_key_exists($PrimaryKeyItem, $LookupTable)) 393 { 393 { 394 394 // Replace text columns 395 $LookupTableItem = $LookupTable[$PrimaryKeyItem]; 395 $LookupTableItem = $LookupTable[$PrimaryKeyItem]; 396 396 foreach($TranslationTree[$Group['Id']]['Items'] as $GroupItem) 397 { 397 { 398 398 if(array_key_exists($GroupItem['Id'], $ColumnIndexes)) 399 399 $Line[$ColumnIndexes[$GroupItem['Id']]] = $LookupTableItem[$GroupItem['Column']]; … … 401 401 } 402 402 $NewDBCFile->SetLine($Row, $Line); 403 403 404 404 // Show completion progress 405 405 $Progress = round($Row / $RowCount * 100); … … 412 412 $OldProgress = $Progress; 413 413 } 414 } 415 $NewDBCFile->Commit(); 414 } 415 $NewDBCFile->Commit(); 416 416 } else $Output .= ShowMessage('Zdrojový soubor '.$this->SourceDirRelative.$this->ClientVersion['Version'].'/dbc/'.$Group['DBCFileName'].'.dbc'.' nenalezen.'."\n", MESSAGE_CRITICAL); 417 417 } … … 423 423 { 424 424 global $TranslationTree; 425 425 426 426 $this->LoadFilters(); 427 427 … … 440 440 $File2 = new FileStream(); 441 441 $File2->CreateFile($this->TempDir.'lua/'.$Group['LuaFileName'].'.lua'); 442 442 443 443 $LookupTable = array(); 444 444 $DbResult2 = $this->Database->query($this->BuildQuery($Group)); … … 454 454 if ($CanExport) $Output .= ', NE='.$DbRow['ID']; 455 455 $CanExport = false; 456 } 456 } 457 457 if (!$this->HaveVarible($DbRow[$Column['Column']],$DbRow['En'.$Column['Column']])) { 458 458 if ($CanExport) $Output .= ', NE='.$DbRow['ID']; 459 459 $CanExport = false; 460 } 460 } 461 461 if (!$this->HaveVarible($DbRow['En'.$Column['Column']],$DbRow[$Column['Column']],'%')) { 462 462 if ($CanExport) $Output .= ', NE='.$DbRow['ID']; 463 463 $CanExport = false; 464 } 464 } 465 465 if (!$this->HaveVarible($DbRow[$Column['Column']],$DbRow['En'.$Column['Column']],'%')) { 466 466 if ($CanExport) $Output .= ', NE='.$DbRow['ID']; 467 467 $CanExport = false; 468 } 468 } 469 469 if (!$this->HaveVarible($DbRow[$Column['Column']],$DbRow['En'.$Column['Column']],'\\')) { 470 470 if ($CanExport) $Output .= ', NE='.$DbRow['ID']; 471 471 $CanExport = false; 472 } 472 } 473 473 if (!$this->HaveVarible($DbRow['En'.$Column['Column']],$DbRow[$Column['Column']],'\\')) { 474 474 if ($CanExport) $Output .= ', NE='.$DbRow['ID']; … … 478 478 if ($CanExport) $Output .= ', NE='.$DbRow['ID']; 479 479 $CanExport = false; 480 } 480 } 481 481 if (!$this->HaveVarible($DbRow['En'.$Column['Column']],$DbRow[$Column['Column']],'|')) { 482 482 if ($CanExport) $Output .= ', NE='.$DbRow['ID']; … … 486 486 if ($CanExport) $Output .= ', NE='.$DbRow['ID']; 487 487 $CanExport = false; 488 } 488 } 489 489 if (!$this->HaveVarible($DbRow['En'.$Column['Column']],$DbRow[$Column['Column']],chr(10))) { 490 490 if ($CanExport) $Output .= ', NE='.$DbRow['ID']; … … 492 492 } 493 493 } 494 494 495 495 if ($CanExport) 496 496 $LookupTable[$DbRow['ShortCut']] = $DbRow; 497 497 } 498 498 499 499 while(!$File->EOF()) 500 500 { … … 505 505 $Value['ShortCut'] = trim($LineParts[0]); 506 506 $Line = trim($LineParts[1]); 507 507 508 508 if($Line[0] == '"') 509 509 { … … 519 519 // $Value['Text'] = addslashes(stripslashes($Value['Text'])); 520 520 $Line = trim(substr($Line, strpos($TempLine, '"') + 1)); // Skip closing quote and semicolon { 521 } else 521 } else 522 522 { 523 523 // Nonstring value … … 552 552 return($Output); 553 553 } 554 554 555 555 function GetReadme() { 556 556 $_GET['ExportId'] = $this->Id; 557 557 $PageExport = new PageExport($this->System); 558 $this->LoadFilters(); 558 $this->LoadFilters(); 559 559 $Output = ''; 560 560 //generation readme … … 572 572 '<meta http-equiv="content-type" content="application/xhtml+xml; charset=utf-8" />'. 573 573 '<title>Čeština pro WoW</title>'. 574 '</head><body>'. 574 '</head><body>'. 575 575 '<h1>České WoW - čestina pro klienta hry World of Warcraft</h1>'. 576 576 577 577 '<table cellspacing="10"><tr><td valign="top">'. 578 578 579 579 '<p>Texty přebírány z projektu <a href="http://wowpreklad.zdechov.net/">wowpreklad.zdechov.net</a><br>'. 580 580 '<a href="http://wowpreklad.zdechov.net/export/?Action=View&ExportId='.$this->Id.'&Tab=0">Export '.$this->Id.'</a></p><br>'. 581 582 581 582 583 583 '<p><strong>Vlastnosti</strong>'. 584 584 '<ul>'. … … 591 591 '</p>'. 592 592 '<br>'. 593 593 594 594 '<h2>Nejčastější otázky</h2>'. 595 '<p><strong>Jak mám vyhledávat věci v aukci nebo výpravy na internetu s nainstalovanou češtinou?</strong><br> 596 Pokud používáte addon, který mění názvy předmětů jenom zdánlivě pro vás, potřebujete pro vyhledávání v aukci zjistit původní anglický název. Tento název zjistíte jednoduše držením klávesy shift a kliknutím na předmět při otevřené aukci, nebo chatu. Vytvořený odkaz v chatu, nebo text v aukci je v původním znění. Stejně zjistíte i název výpravy kliknutím se shift na výpravu v "quest logu". 595 '<p><strong>Jak mám vyhledávat věci v aukci nebo výpravy na internetu s nainstalovanou češtinou?</strong><br> 596 Pokud používáte addon, který mění názvy předmětů jenom zdánlivě pro vás, potřebujete pro vyhledávání v aukci zjistit původní anglický název. Tento název zjistíte jednoduše držením klávesy shift a kliknutím na předmět při otevřené aukci, nebo chatu. Vytvořený odkaz v chatu, nebo text v aukci je v původním znění. Stejně zjistíte i název výpravy kliknutím se shift na výpravu v "quest logu". 597 597 Pokud jste na serveru s českou lokalizaci (tedy nepoužíváte addon), musíte využít český název pro vyhledávání. Server by měl mít spuštěnou vlastní obdobu databáze wowhead.</p>'. 598 598 599 '<p><strong>Po nainstalování češtiny a spouštění přes soubor WoWlua.exe mi klesl výrazně výkon</strong><br> 600 Problém může být spojen s použitím integrované grafiky místo herní.</p>'. 601 602 '<p><strong>Při spouštění hry přes soubor WoWLua.exe se mi neukládá žádné nastavení addonů a podobně</strong><br> 603 Problém může být způsoben špatně nastavenými právy u souboru WoWLua.exe. Můžete přenastavit práva, nebo spouštět jako správce.</p>'. 604 605 '<p><strong>Po spuštění souboru WoWLua.exe mi píše chybu:</strong><br> 606 Cannot stream required archive data. Please check the network connection. 607 Chyba může být způsobena tím, že jste nenainstalovali češtinu do adresáře se hrou. 608 Nebo jste nainstalovali do jiné verze hry, než je požadovaná. Může se vztahovat i na požadovanou lokalizaci (enUS, enGB)</p>'. 609 610 '<p><strong>Po nainstalování češtiny nemám žádné výpravy (questy) česky</strong><br> 611 Zkontrolujte si v přihlášení, jestli máte povolený addon CzWoW v seznamu addonů.</p>'. 612 613 '<p><strong>Addon mi hlásí spoustu chyb.</strong><br> 614 Chyba může být způsobena kolizí s jinými addony. Vyzkoušejte spuštění hry pouze s addonem CzWoW.</p>'. 615 616 '<p><strong>Ve hře se mi špatně zobrazuje diakritika (háčky, čárky)</strong><br> 617 Chyba je způsobena chybějícími fonty do hry. Potřebné fonty si stáhněte mezi soubory ke stažení.</p>'. 618 619 '<p><strong>Mám nainstalovánu češtinu a nejde mi spustit Wow.exe.</strong><br> 620 Pokud chcete opět spouštět hru přes původní Wow.exe v angličtině, musíte češtinu nejprve odinstalovat ze systému. Především se jedná o soubor Data/enGB/patch-enGB-5.MPQ či Data/enUS/patch-enUS-5.MPQ, který je nutno smazat. U novějších verzí se soubor může jmenovat wow-update-base-50000.MPQ.</p>'. 621 622 '<p><strong>Jak mám hru spustit?</strong><br> 623 Hru musíte spustit přes soubor WowLua.exe v kořenovém adresáři hry.</p>'. 624 625 '<p><strong>Mohu použít tuto češtinu na oficiálních serverech?</strong><br> 599 '<p><strong>Po nainstalování češtiny a spouštění přes soubor WoWlua.exe mi klesl výrazně výkon</strong><br> 600 Problém může být spojen s použitím integrované grafiky místo herní.</p>'. 601 602 '<p><strong>Při spouštění hry přes soubor WoWLua.exe se mi neukládá žádné nastavení addonů a podobně</strong><br> 603 Problém může být způsoben špatně nastavenými právy u souboru WoWLua.exe. Můžete přenastavit práva, nebo spouštět jako správce.</p>'. 604 605 '<p><strong>Po spuštění souboru WoWLua.exe mi píše chybu:</strong><br> 606 Cannot stream required archive data. Please check the network connection. 607 Chyba může být způsobena tím, že jste nenainstalovali češtinu do adresáře se hrou. 608 Nebo jste nainstalovali do jiné verze hry, než je požadovaná. Může se vztahovat i na požadovanou lokalizaci (enUS, enGB)</p>'. 609 610 '<p><strong>Po nainstalování češtiny nemám žádné výpravy (questy) česky</strong><br> 611 Zkontrolujte si v přihlášení, jestli máte povolený addon CzWoW v seznamu addonů.</p>'. 612 613 '<p><strong>Addon mi hlásí spoustu chyb.</strong><br> 614 Chyba může být způsobena kolizí s jinými addony. Vyzkoušejte spuštění hry pouze s addonem CzWoW.</p>'. 615 616 '<p><strong>Ve hře se mi špatně zobrazuje diakritika (háčky, čárky)</strong><br> 617 Chyba je způsobena chybějícími fonty do hry. Potřebné fonty si stáhněte mezi soubory ke stažení.</p>'. 618 619 '<p><strong>Mám nainstalovánu češtinu a nejde mi spustit Wow.exe.</strong><br> 620 Pokud chcete opět spouštět hru přes původní Wow.exe v angličtině, musíte češtinu nejprve odinstalovat ze systému. Především se jedná o soubor Data/enGB/patch-enGB-5.MPQ či Data/enUS/patch-enUS-5.MPQ, který je nutno smazat. U novějších verzí se soubor může jmenovat wow-update-base-50000.MPQ.</p>'. 621 622 '<p><strong>Jak mám hru spustit?</strong><br> 623 Hru musíte spustit přes soubor WowLua.exe v kořenovém adresáři hry.</p>'. 624 625 '<p><strong>Mohu použít tuto češtinu na oficiálních serverech?</strong><br> 626 626 Ne úplně, protože se vystavujete riziku zablokování vašeho účtu z důvodu použití upravené hry. Na oficiálním serveru lze využít pouze Addon s češtinou CzWoW. Instalační soubor určený pro oficiální servery je už takto přizpůsoben.</p>'. 627 627 628 628 '</td><td>'; 629 629 … … 631 631 632 632 $Output .= '</td></tr></table>'. 633 634 633 634 635 635 '</body></html>'; 636 636 return $Output; 637 } 638 637 } 638 639 639 function ExportToXML() 640 640 { 641 641 global $TranslationTree; 642 642 643 643 $this->LoadFilters(); 644 644 … … 653 653 foreach(explode(',', $this->UserNames) as $UserName) 654 654 $Buffer .= " <user>".$UserName."</user>\n"; 655 $Buffer .= 655 $Buffer .= 656 656 " </contributors>\n". 657 657 " </meta>\n". … … 659 659 660 660 $DbResult = $this->Database->query('SELECT `Group`.* FROM `ExportGroup` '. 661 661 'JOIN `Group` ON `Group`.`Id` = `ExportGroup`.`Group` WHERE `ExportGroup`.`Export`='.$this->Id); 662 662 while($Group = $DbResult->fetch_assoc()) 663 663 { … … 669 669 $Buffer .= ' <group id="'.$Group['Id'].'" name="'.$Group['TablePrefix'].'">'."\n"; 670 670 $DbResult2 = $this->Database->query($this->BuildQuery($Group)); 671 while($Line = $DbResult2->fetch_assoc()) 671 while($Line = $DbResult2->fetch_assoc()) 672 672 { 673 673 $Buffer .= ' <item id="'.$Line['Entry'].'" user="'.$Line['UserName'].'">'."\n"; … … 681 681 } 682 682 $Buffer .= " </item>\n"; 683 } 683 } 684 684 $Buffer .= " </group>\n"; 685 685 } … … 688 688 "</document>"; 689 689 return($Buffer); 690 } 690 } 691 691 } 692 692 … … 706 706 $this->Dependencies = array(); 707 707 } 708 708 709 709 function Start() 710 710 { 711 712 713 714 715 716 717 711 $this->System->RegisterPage('export', 'PageExport'); 712 $this->System->RegisterMenuItem(array( 713 'Title' => 'Exporty', 714 'Hint' => 'Zde si můžete stáhnout přeložené texty', 715 'Link' => $this->System->Link('/export/'), 716 'Permission' => LICENCE_ANONYMOUS, 717 'Icon' => '', 718 718 ), 2); 719 719 }
Note:
See TracChangeset
for help on using the changeset viewer.