Translation fixes (0 still missing)

This commit is contained in:
Dennis Eichhorn 2016-07-27 13:15:05 +02:00
parent 9e24a66c06
commit 5bbe34f2a4

View File

@ -29,15 +29,15 @@ echo $this->getData('nav')->render(); ?>
<section class="wf-75 floatLeft"> <section class="wf-75 floatLeft">
<div class="box w-100"> <div class="box w-100">
<table class="table"> <table class="table">
<caption><?= $this->l11n->getText('RiskManagement', 'Backend', 'TopRisks'); ?></caption> <caption><?= $this->getText('TopRisks'); ?></caption>
<thead> <thead>
<tr> <tr>
<td><?= $this->l11n->getText('RiskManagement', 'Backend', 'Severity'); ?> <td><?= $this->getText('Severity'); ?>
<td class="wf-100"><?= $this->l11n->getText('RiskManagement', 'Backend', 'Name'); ?> <td class="wf-100"><?= $this->getText('Name'); ?>
<td><?= $this->l11n->getText('RiskManagement', 'Backend', 'Department'); ?> <td><?= $this->getText('Department'); ?>
<td><?= $this->l11n->getText('RiskManagement', 'Backend', 'Category'); ?> <td><?= $this->getText('Category'); ?>
<td><?= $this->l11n->getText('RiskManagement', 'Backend', 'Process'); ?> <td><?= $this->getText('Process'); ?>
<td><?= $this->l11n->getText('RiskManagement', 'Backend', 'Project'); ?> <td><?= $this->getText('Project'); ?>
<tfoot> <tfoot>
<tr><td colspan="6"><?= $footerView->render(); ?> <tr><td colspan="6"><?= $footerView->render(); ?>
<tbody> <tbody>
@ -51,40 +51,40 @@ echo $this->getData('nav')->render(); ?>
<td> <td>
<?php endforeach; ?> <?php endforeach; ?>
<?php if($c === 0) : ?> <?php if($c === 0) : ?>
<tr><td colspan="6" class="empty"><?= $this->l11n->getText(0, 'Backend', 'Empty'); ?> <tr><td colspan="6" class="empty"><?= $this->getText('Empty'); ?>
<?php endif; ?> <?php endif; ?>
</table> </table>
</div> </div>
</section> </section>
<section class="wf-25 floatLeft"> <section class="wf-25 floatLeft">
<section class="box w-100"> <section class="box w-100">
<header><h1><?= $this->l11n->getText('RiskManagement', 'Backend', 'Statistics'); ?></h1></header> <header><h1><?= $this->getText('Statistics'); ?></h1></header>
<div class="inner"> <div class="inner">
<table class="list"> <table class="list">
<thead> <thead>
<tr> <tr>
<th><?= $this->l11n->getText('RiskManagement', 'Backend', 'Risks'); ?> <th><?= $this->getText('Risks'); ?>
<td>0 <td>0
<tr> <tr>
<th><?= $this->l11n->getText('RiskManagement', 'Backend', 'Causes'); ?> <th><?= $this->getText('Causes'); ?>
<td>0 <td>0
<tr> <tr>
<th><?= $this->l11n->getText('RiskManagement', 'Backend', 'Solutions'); ?> <th><?= $this->getText('Solutions'); ?>
<td>0 <td>0
<tr> <tr>
<th><?= $this->l11n->getText('RiskManagement', 'Backend', 'Department'); ?> <th><?= $this->getText('Department'); ?>
<td>0 <td>0
<tr> <tr>
<th><?= $this->l11n->getText('RiskManagement', 'Backend', 'Category'); ?> <th><?= $this->getText('Category'); ?>
<td>0 <td>0
<tr> <tr>
<th><?= $this->l11n->getText('RiskManagement', 'Backend', 'Process'); ?> <th><?= $this->getText('Process'); ?>
<td>0 <td>0
<tr> <tr>
<th><?= $this->l11n->getText('RiskManagement', 'Backend', 'Project'); ?> <th><?= $this->getText('Project'); ?>
<td>0 <td>0
<tr> <tr>
<th><?= $this->l11n->getText('RiskManagement', 'Backend', 'Total'); ?> <th><?= $this->getText('Total'); ?>
<td>0 <td>0
</table> </table>
</div> </div>