Translation fixes (0 still missing)

This commit is contained in:
Dennis Eichhorn 2016-07-27 13:17:50 +02:00
parent 805ecd81eb
commit aa1ea6b280

View File

@ -28,17 +28,17 @@ echo $this->getData('nav')->render(); ?>
<div class="box w-100"> <div class="box w-100">
<table class="table"> <table class="table">
<caption><?= $this->l11n->getText('Production', 'Backend', 'Productions'); ?></caption> <caption><?= $this->getText('Productions'); ?></caption>
<thead> <thead>
<tr> <tr>
<td><?= $this->l11n->getText('Production', 'Backend', 'Status'); ?> <td><?= $this->getText('Status'); ?>
<td><?= $this->l11n->getText(0, 'Backend', 'ID'); ?> <td><?= $this->getText('ID'); ?>
<td><?= $this->l11n->getText(0, 'Backend', 'ID'); ?> <td><?= $this->getText('ID'); ?>
<td class="wf-100"><?= $this->l11n->getText('Production', 'Backend', 'Article'); ?> <td class="wf-100"><?= $this->getText('Article'); ?>
<td><?= $this->l11n->getText('Production', 'Backend', 'Quantity'); ?> <td><?= $this->getText('Quantity'); ?>
<td><?= $this->l11n->getText('Production', 'Backend', 'Start'); ?> <td><?= $this->getText('Start'); ?>
<td><?= $this->l11n->getText('Production', 'Backend', 'Due'); ?> <td><?= $this->getText('Due'); ?>
<td><?= $this->l11n->getText('Production', 'Backend', 'Done'); ?> <td><?= $this->getText('Done'); ?>
<tfoot> <tfoot>
<tr><td colspan="8"><?= $footerView->render(); ?> <tr><td colspan="8"><?= $footerView->render(); ?>
<tbody> <tbody>
@ -52,7 +52,7 @@ echo $this->getData('nav')->render(); ?>
<?php endforeach; ?> <?php endforeach; ?>
<?php if($c === 0) : ?> <?php if($c === 0) : ?>
<tr> <tr>
<td colspan="8" class="empty"><?= $this->l11n->getText(0, 'Backend', 'Empty'); ?> <td colspan="8" class="empty"><?= $this->getText('Empty'); ?>
<?php endif; ?> <?php endif; ?>
</table> </table>
</div> </div>