Changeset 846 for trunk/Modules/Export/Page.php
- Timestamp:
- Jan 15, 2016, 10:24:05 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Export/Page.php
r843 r846 380 380 { 381 381 $Output .= '<input type="submit" value="'.T('Save').'" '.$DisabledInput[$Editable].'/>'. 382 383 384 385 382 '<input type="hidden" name="Operation" value="Save"/>'. 383 '<br />'. 384 T('Select languades from list witch you want to export from. And edit theirs order.').'<br />'. 385 T('Order is done by numeric value which is can be edit to desirable order. Lines with same number will be renumbered in ascending order.'); 386 386 } 387 387 … … 399 399 $Sequence = '<input type="text" name="seq'.$Langugage['Id'].'" style="text-align: center; width: 40px;" value="'.$Langugage['Sequence2'].'"'.$DisabledInput[$Editable].'/>'; 400 400 $Output .= '<tr> 401 <td>'. $Langugage['Name'].'</td>401 <td>'.T($Langugage['Name']).'</td> 402 402 <td>'.$Selection.'</td><td>'.$Sequence.'</td></tr>'; 403 403 } … … 448 448 foreach($TranslationTree as $Group) 449 449 { 450 // echo $Group['Id'].' ';451 450 foreach($TranslationTree[$Group['Id']]['Items'] as $Column) { 452 451 if(array_key_exists('item'.$Column['Id'], $_POST)) $Selected = true; … … 486 485 $Order = GetOrderTableHeader($TableColumns, 'Name'); 487 486 $Output .= '<form action="?Action=View&ExportId='.$_GET['ExportId'].'" method="post">'. 488 '<h3> Překladové skupiny</h3>';487 '<h3>'.T('Translation groups').'</h3>'; 489 488 if($Editable) 490 489 { … … 518 517 $Output .= '<tr>'. 519 518 '<td>'.$Selection.'<input type="hidden" name="seq'.$Group['Id'].'"/></td>'. 520 '<td>'. $Group['Name'].'</td><td>';519 '<td>'.T($Group['Name']).'</td><td>'; 521 520 if ($Group['MangosTable'] <> '') 522 521 $Output .= $Group['MangosTable'].'.sql '; … … 526 525 $Output .= $Group['DBCFileName'].'.dbc '; 527 526 528 $Output .= 529 $Output .= 530 $Output .= 527 $Output .= '</td><td>'; 528 $Output .= $Columns. '</td>'; 529 $Output .= '</tr>'; 531 530 } 532 531 $Output .= '</table>'. 533 534 532 '</form>'. 533 $PageList['Output']; 535 534 return($Output); 536 535 } … … 726 725 while($Group = $ID->fetch_assoc()) 727 726 { 728 $Output .= '<tr><td>'. $Group['Name'].'</td><td>'.$Group['Translated'].'</td><td>'.$Group['Total'].'</td><td>'.ProgressBar(150, $Group['Percent']).'</td></tr>';727 $Output .= '<tr><td>'.T($Group['Name']).'</td><td>'.$Group['Translated'].'</td><td>'.$Group['Total'].'</td><td>'.ProgressBar(150, $Group['Percent']).'</td></tr>'; 729 728 $Translated += $Group['Translated']; 730 729 $Total += $Group['Total'];
Note:
See TracChangeset
for help on using the changeset viewer.