Changeset 837 for trunk/Modules/Translation/TranslationList.php
- Timestamp:
- Dec 27, 2015, 5:47:00 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Translation/TranslationList.php
r833 r837 332 332 $DbRow = $DbResult->fetch_row(); 333 333 $PageList = GetPageList($DbRow[0]); 334 $Output = '<h3> Seznam překladových skupin</h3>'.334 $Output = '<h3>'.T('List of translation groups').'</h3>'. 335 335 $PageList['Output']; 336 336 337 337 $Output .= '<table class="BaseTable">'; 338 338 $TableColumns = array( 339 array('Name' => 'Name', 'Title' => 'Jméno'),340 array('Name' => 'SourceType', 'Title' => 'Typ zdroje'),341 array('Name' => '', 'Title' => 'Zdroje'),342 array('Name' => 'LastImport', 'Title' => 'Datum posledního importu'),343 array('Name' => 'LastVersion', 'Title' => 'Verze posledního importu'),339 array('Name' => 'Name', 'Title' => T('Name')), 340 array('Name' => 'SourceType', 'Title' => T('Source type')), 341 array('Name' => '', 'Title' => T('Sources')), 342 array('Name' => 'LastImport', 'Title' => T('Date of last import')), 343 array('Name' => 'LastVersion', 'Title' => T('Version of last import')), 344 344 ); 345 345 if($this->System->User->Licence(LICENCE_ADMIN)) 346 $TableColumns[] = array('Name' => '', 'Title' => 'Akce');346 $TableColumns[] = array('Name' => '', 'Title' => T('Actions')); 347 347 348 348 $Order = GetOrderTableHeader($TableColumns, 'Name', 0); … … 365 365 GetVersionWOWId($Group['LastVersion'])).'">'.GetVersionWOW($Group['LastVersion']).'</a></td>'; 366 366 if($this->System->User->Licence(LICENCE_ADMIN)) 367 $Output .= '<td><a href="?action=groupdelete&id='.$Group['Id'].'"> Smazat</a></td>';367 $Output .= '<td><a href="?action=groupdelete&id='.$Group['Id'].'">'.T('Remove').'</a></td>'; 368 368 $Output .= '</tr>'; 369 369 370 370 } 371 371 $Output .= '</table>'. 372 '<br /><a title=" Záznam změn po importu" href="log.php?type=11">Záznam změn v textech při importu</a><br/>';373 if($this->System->User->Licence(LICENCE_ADMIN)) $Output .= '<a href="?action=groupadd"> Přidat překladovou skupinu</a>';372 '<br /><a title="'.T('Changelog of changes after import').'" href="log.php?type=11">'.T('Changelog of text modification during import').'</a><br/>'; 373 if($this->System->User->Licence(LICENCE_ADMIN)) $Output .= '<a href="?action=groupadd">'.T('Add translation group').'</a>'; 374 374 return($Output); 375 375 } … … 384 384 $Table = $TranslationTree[$GroupId]['TablePrefix']; 385 385 386 $Output = '<h3> Základní filtrování textů</h3><br/>'.387 '<table class="BaseTable"><tr><th> Odkaz</th><th>Popis</th></tr>'.388 '<tr><td><a title=" Všechny dostupné texty ve skupině" href="?group='.$GroupId.'&state=4">Všechny</a></td>'.389 '<td> Zobrazit všechny dostupné anglické texty ve skupině.</td></tr>'.390 '<tr><td><a title=" Přeložené texty, můžete zde hlasovat, nebo text opravovat" href="?group='.$GroupId.'&state=2">Přeložené</a></td>'.391 '<td> Zobrazit pouze již přeložené texty.</td></tr>'.392 '<tr><td><a title=" Nepřeložené texty" href="?group='.$GroupId.'&state=1">Nepřeložené</a></td>'.393 '<td> Dosud nepřeložené texty, které je potřeba přeložit.</td></tr>'.394 '<tr><td><a title=" Nedokončené texty" href="?group='.$GroupId.'&state=3">Nedokončené</a></td>'.395 '<td> Texty označené jako rozpracované.</td></tr>';386 $Output = '<h3>'.T('Basic text filtering').'</h3><br/>'. 387 '<table class="BaseTable"><tr><th>'.T('Link').'</th><th>'.T('Description').'</th></tr>'. 388 '<tr><td><a title="'.T('All texts available in group').'" href="?group='.$GroupId.'&state=4">'.T('All').'</a></td>'. 389 '<td>'.T('Show all available original texts in group').'</td></tr>'. 390 '<tr><td><a title="'.T('Translated texts, you can modify them here').'" href="?group='.$GroupId.'&state=2">'.T('Translated').'</a></td>'. 391 '<td>'.T('Show only translated texts').'</td></tr>'. 392 '<tr><td><a title="'.T('Untranslated texts').'" href="?group='.$GroupId.'&state=1">'.T('Untranslated').'</a></td>'. 393 '<td>'.T('Not yet translated texts which need to be translated').'</td></tr>'. 394 '<tr><td><a title="'.T('Unfinished texts').'" href="?group='.$GroupId.'&state=3">'.T('Unfinished').'</a></td>'. 395 '<td>'.T('Texts marked as unfinished').'</td></tr>'; 396 396 397 397 if($this->System->User->Licence(LICENCE_USER)) 398 398 { 399 $Output .= '<tr><td><a title=" Nedokončené texty" href="?group='.$GroupId.'&state=3&user='.$this->System->User->Id.'">Moje nedokončené</a></td>400 <td> Nedokončené texty přihlášeného uživatele</td></tr>401 <tr><td><a title=" Přeložené texty přihlášeného uživatele" href="?group='.$GroupId.'&state=2&user='.$this->System->User->Id.'">Moje přeložené</a></td>402 <td> Přeložené texty přihlášeného uživatele</td></tr>';399 $Output .= '<tr><td><a title="'.T('Unfinished texts').'" href="?group='.$GroupId.'&state=3&user='.$this->System->User->Id.'">'.T('My unfinished').'</a></td> 400 <td>'.T('Unfinished texts of logged-in user').'</td></tr> 401 <tr><td><a title="'.T('Translated texts of logged-in user').'" href="?group='.$GroupId.'&state=2&user='.$this->System->User->Id.'">'.T('My translated').'</a></td> 402 <td>'.T('Translated texts of logged-in user').'</td></tr>'; 403 403 } 404 404 405 405 $Output .= '<tr><td><form action="?group='.$GroupId.'&entry=" method="post"><div>'. 406 406 '<input type="text" name="text" size="8" />'. 407 '<input type="submit" value=" Hledat" />'.407 '<input type="submit" value="'.T('Search').'" />'. 408 408 '</div></form>'. 409 '</td><td> Vyhledat pomocí textu</td></tr>';409 '</td><td>'.T('Search using text').'</td></tr>'; 410 410 411 411 $Output .= '<tr><td><form action="?group='.$GroupId.'&text=" method="post"><div>'. 412 412 '<input type="text" name="entry" size="8" />'. 413 '<input type="submit" value=" Hledat" />'.413 '<input type="submit" value="'.T('Search').'" />'. 414 414 '</div></form>'. 415 '</td><td> Zobrazit podle ID textu v databázi MaNGOSu</td></tr>';415 '</td><td>'.T('Show by datbase text ID').'</td></tr>'; 416 416 417 417 $Output .= '</table>';
Note:
See TracChangeset
for help on using the changeset viewer.