Translation fixes (0 still missing)

This commit is contained in:
Dennis Eichhorn 2016-07-27 13:15:05 +02:00
parent 5e6e17aa2f
commit aa44a0f259
3 changed files with 43 additions and 43 deletions

View File

@ -28,13 +28,13 @@ 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('HumanResourceManagement', 'Backend', 'Departments'); ?></caption> <caption><?= $this->getText('Departments'); ?></caption>
<thead> <thead>
<tr> <tr>
<td><?= $this->l11n->getText(0, 'Backend', 'ID'); ?> <td><?= $this->getText('ID'); ?>
<td class="wf-100"><?= $this->l11n->getText('HumanResourceManagement', 'Backend', 'Name'); ?> <td class="wf-100"><?= $this->getText('Name'); ?>
<td><?= $this->l11n->getText('HumanResourceManagement', 'Backend', 'Employees'); ?> <td><?= $this->getText('Employees'); ?>
<td><?= $this->l11n->getText('HumanResourceManagement', 'Backend', 'Parent'); ?> <td><?= $this->getText('Parent'); ?>
<tfoot> <tfoot>
<tr><td colspan="4"><?= $footerView->render(); ?> <tr><td colspan="4"><?= $footerView->render(); ?>
<tbody> <tbody>
@ -48,7 +48,7 @@ echo $this->getData('nav')->render(); ?>
<td> <td>
<?php endforeach; ?> <?php endforeach; ?>
<?php if($c === 0) : ?> <?php if($c === 0) : ?>
<tr><td colspan="4" class="empty"><?= $this->l11n->getText(0, 'Backend', 'Empty'); ?> <tr><td colspan="4" class="empty"><?= $this->getText('Empty'); ?>
<?php endif; ?> <?php endif; ?>
</table> </table>
</div> </div>

View File

@ -30,14 +30,14 @@ 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('HumanResourceManagement', 'Backend', 'Staff'); ?></caption> <caption><?= $this->getText('Staff'); ?></caption>
<thead> <thead>
<tr> <tr>
<td><?= $this->l11n->getText(0, 'Backend', 'ID'); ?> <td><?= $this->getText('ID'); ?>
<td class="wf-100"><?= $this->l11n->getText('HumanResourceManagement', 'Backend', 'Name'); ?> <td class="wf-100"><?= $this->getText('Name'); ?>
<td><?= $this->l11n->getText('HumanResourceManagement', 'Backend', 'Position'); ?> <td><?= $this->getText('Position'); ?>
<td><?= $this->l11n->getText('HumanResourceManagement', 'Backend', 'Department'); ?> <td><?= $this->getText('Department'); ?>
<td><?= $this->l11n->getText('HumanResourceManagement', 'Backend', 'Status'); ?> <td><?= $this->getText('Status'); ?>
<tfoot> <tfoot>
<tr><td colspan="5"><?= $footerView->render(); ?> <tr><td colspan="5"><?= $footerView->render(); ?>
<tbody> <tbody>
@ -50,7 +50,7 @@ echo $this->getData('nav')->render(); ?>
<td><a href="<?= $url; ?>"><?= $value->getNewestStatus()->getStatus(); ?></a> <td><a href="<?= $url; ?>"><?= $value->getNewestStatus()->getStatus(); ?></a>
<?php endforeach; ?> <?php endforeach; ?>
<?php if($c === 0) : ?> <?php if($c === 0) : ?>
<tr><td colspan="5" class="empty"><?= $this->l11n->getText(0, 'Backend', 'Empty'); ?> <tr><td colspan="5" class="empty"><?= $this->getText('Empty'); ?>
<?php endif; ?> <?php endif; ?>
</table> </table>
</div> </div>

View File

@ -16,24 +16,24 @@
echo $this->getData('nav')->render(); ?> echo $this->getData('nav')->render(); ?>
<section itemscope itemtype="http://schema.org/Person" class="box w-33"> <section itemscope itemtype="http://schema.org/Person" class="box w-33">
<header><h1><?= $this->l11n->getText('HumanResourceManagement', 'Backend', 'Employee'); ?></h1></header> <header><h1><?= $this->getText('Employee'); ?></h1></header>
<div class="inner"> <div class="inner">
<!-- @formatter:off --> <!-- @formatter:off -->
<table class="list"> <table class="list">
<tr> <tr>
<th><?= $this->l11n->getText('HumanResourceManagement', 'Backend', 'Name'); ?> <th><?= $this->getText('Name'); ?>
<td><span itemprop="familyName"><?= $account->getName3(); ?></span>, <span itemprop="givenName"><?= $account->getName1(); ?></span> <td><span itemprop="familyName"><?= $account->getName3(); ?></span>, <span itemprop="givenName"><?= $account->getName1(); ?></span>
<tr> <tr>
<th><?= $this->l11n->getText('HumanResourceManagement', 'Backend', 'Position'); ?> <th><?= $this->getText('Position'); ?>
<td itemprop="jobTitle">Sailor <td itemprop="jobTitle">Sailor
<tr> <tr>
<th><?= $this->l11n->getText('HumanResourceManagement', 'Backend', 'Department'); ?> <th><?= $this->getText('Department'); ?>
<td itemprop="jobTitle">Sailor <td itemprop="jobTitle">Sailor
<tr> <tr>
<th><?= $this->l11n->getText('HumanResourceManagement', 'Backend', 'Birthday'); ?> <th><?= $this->getText('Birthday'); ?>
<td itemprop="birthDate">06.09.1934 <td itemprop="birthDate">06.09.1934
<tr> <tr>
<th><?= $this->l11n->getText('HumanResourceManagement', 'Backend', 'Email'); ?> <th><?= $this->getText('Email'); ?>
<td itemprop="email"><a href="mailto:>donald.duck@email.com<"><?= $account->getEmail(); ?></a> <td itemprop="email"><a href="mailto:>donald.duck@email.com<"><?= $account->getEmail(); ?></a>
<tr> <tr>
<th>Address <th>Address
@ -45,7 +45,7 @@ echo $this->getData('nav')->render(); ?>
<th class="vT">Work <th class="vT">Work
<td itemprop="address">SMALLSYS INC<br>795 E DRAGRAM<br>TUCSON AZ 85705<br>USA <td itemprop="address">SMALLSYS INC<br>795 E DRAGRAM<br>TUCSON AZ 85705<br>USA
<tr> <tr>
<th><?= $this->l11n->getText('HumanResourceManagement', 'Backend', 'Phone'); ?> <th><?= $this->getText('Phone'); ?>
<td> <td>
<tr> <tr>
<th>Private <th>Private
@ -57,7 +57,7 @@ echo $this->getData('nav')->render(); ?>
<th>Work <th>Work
<td itemprop="telephone">+01 12345-4567 <td itemprop="telephone">+01 12345-4567
<tr> <tr>
<th><?= $this->l11n->getText('HumanResourceManagement', 'Backend', 'Status'); ?> <th><?= $this->getText('Status'); ?>
<td><span class="tag green"><?= $account->getStatus(); ?></span> <td><span class="tag green"><?= $account->getStatus(); ?></span>
</table> </table>
<!-- @formatter:on --> <!-- @formatter:on -->
@ -65,24 +65,24 @@ echo $this->getData('nav')->render(); ?>
</section> </section>
<section class="box w-33"> <section class="box w-33">
<header><h1><?= $this->l11n->getText('HumanResourceManagement', 'Backend', 'Overview'); ?></h1></header> <header><h1><?= $this->getText('Overview'); ?></h1></header>
<div class="inner"> <div class="inner">
<!-- @formatter:off --> <!-- @formatter:off -->
<table class="list"> <table class="list">
<tr> <tr>
<th><?= $this->l11n->getText('HumanResourceManagement', 'Backend', 'Start'); ?> <th><?= $this->getText('Start'); ?>
<td><span itemprop="familyName"><?= $account->getName3(); ?></span> <td><span itemprop="familyName"><?= $account->getName3(); ?></span>
<tr> <tr>
<th><?= $this->l11n->getText('HumanResourceManagement', 'Backend', 'End'); ?> <th><?= $this->getText('End'); ?>
<td><span itemprop="familyName"><?= $account->getName3(); ?></span> <td><span itemprop="familyName"><?= $account->getName3(); ?></span>
<tr> <tr>
<th><?= $this->l11n->getText('HumanResourceManagement', 'Backend', 'Hours'); ?> <th><?= $this->getText('Hours'); ?>
<td><span itemprop="familyName"><?= $account->getName3(); ?></span> <td><span itemprop="familyName"><?= $account->getName3(); ?></span>
<tr> <tr>
<th><?= $this->l11n->getText('HumanResourceManagement', 'Backend', 'Vacation'); ?> <th><?= $this->getText('Vacation'); ?>
<td><span itemprop="familyName"><?= $account->getName3(); ?></span> <td><span itemprop="familyName"><?= $account->getName3(); ?></span>
<tr> <tr>
<th><?= $this->l11n->getText('HumanResourceManagement', 'Backend', 'Salary'); ?> <th><?= $this->getText('Salary'); ?>
<td><span itemprop="familyName"><?= $account->getName3(); ?></span> <td><span itemprop="familyName"><?= $account->getName3(); ?></span>
</table> </table>
<!-- @formatter:on --> <!-- @formatter:on -->
@ -91,14 +91,14 @@ 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('HumanResourceManagement', 'Backend', 'Working'); ?></caption> <caption><?= $this->getText('Working'); ?></caption>
<thead> <thead>
<tr> <tr>
<td><?= $this->l11n->getText('HumanResourceManagement', 'Backend', 'Start'); ?> <td><?= $this->getText('Start'); ?>
<td><?= $this->l11n->getText('HumanResourceManagement', 'Backend', 'End'); ?> <td><?= $this->getText('End'); ?>
<td><?= $this->l11n->getText('HumanResourceManagement', 'Backend', 'Position'); ?> <td><?= $this->getText('Position'); ?>
<td><?= $this->l11n->getText('HumanResourceManagement', 'Backend', 'Department'); ?> <td><?= $this->getText('Department'); ?>
<td><?= $this->l11n->getText('HumanResourceManagement', 'Backend', 'Salary'); ?> <td><?= $this->getText('Salary'); ?>
<tfoot> <tfoot>
<tr><td colspan="4"><?= $footerView->render(); ?> <tr><td colspan="4"><?= $footerView->render(); ?>
<tbody> <tbody>
@ -110,19 +110,19 @@ echo $this->getData('nav')->render(); ?>
<td><a href="<?= $url; ?>"><?= $value->getNewestHistory()->getPosition(); ?></a> <td><a href="<?= $url; ?>"><?= $value->getNewestHistory()->getPosition(); ?></a>
<?php endforeach; ?> <?php endforeach; ?>
<?php if($c === 0) : ?> <?php if($c === 0) : ?>
<tr><td colspan="4" class="empty"><?= $this->l11n->getText(0, 'Backend', 'Empty'); ?> <tr><td colspan="4" class="empty"><?= $this->getText('Empty'); ?>
<?php endif; ?> <?php endif; ?>
</table> </table>
</div> </div>
<div class="box w-100"> <div class="box w-100">
<table class="table"> <table class="table">
<caption><?= $this->l11n->getText('HumanResourceManagement', 'Backend', 'Timing'); ?></caption> <caption><?= $this->getText('Timing'); ?></caption>
<thead> <thead>
<tr> <tr>
<td><?= $this->l11n->getText('HumanResourceManagement', 'Backend', 'Start'); ?> <td><?= $this->getText('Start'); ?>
<td><?= $this->l11n->getText('HumanResourceManagement', 'Backend', 'End'); ?> <td><?= $this->getText('End'); ?>
<td class="wf-100"><?= $this->l11n->getText('HumanResourceManagement', 'Backend', 'Type'); ?> <td class="wf-100"><?= $this->getText('Type'); ?>
<tfoot> <tfoot>
<tr><td colspan="4"><?= $footerView->render(); ?> <tr><td colspan="4"><?= $footerView->render(); ?>
<tbody> <tbody>
@ -134,24 +134,24 @@ echo $this->getData('nav')->render(); ?>
<td><a href="<?= $url; ?>"><?= $value->getNewestHistory()->getPosition(); ?></a> <td><a href="<?= $url; ?>"><?= $value->getNewestHistory()->getPosition(); ?></a>
<?php endforeach; ?> <?php endforeach; ?>
<?php if($c === 0) : ?> <?php if($c === 0) : ?>
<tr><td colspan="4" class="empty"><?= $this->l11n->getText(0, 'Backend', 'Empty'); ?> <tr><td colspan="4" class="empty"><?= $this->getText('Empty'); ?>
<?php endif; ?> <?php endif; ?>
</table> </table>
</div> </div>
<section class="box w-33"> <section class="box w-33">
<header><h1><?= $this->l11n->getText('HumanResourceManagement', 'Backend', 'Salary'); ?></h1></header> <header><h1><?= $this->getText('Salary'); ?></h1></header>
<div class="inner"> <div class="inner">
<!-- @formatter:off --> <!-- @formatter:off -->
<table class="list"> <table class="list">
<tr> <tr>
<th><?= $this->l11n->getText('HumanResourceManagement', 'Backend', 'Date'); ?> <th><?= $this->getText('Date'); ?>
<td><span itemprop="familyName"><?= $account->getName3(); ?></span> <td><span itemprop="familyName"><?= $account->getName3(); ?></span>
<tr> <tr>
<th><?= $this->l11n->getText('HumanResourceManagement', 'Backend', 'SalaryType'); ?> <th><?= $this->getText('SalaryType'); ?>
<td><span itemprop="familyName"><?= $account->getName3(); ?></span> <td><span itemprop="familyName"><?= $account->getName3(); ?></span>
<tr> <tr>
<th><?= $this->l11n->getText('HumanResourceManagement', 'Backend', 'Amount'); ?> <th><?= $this->getText('Amount'); ?>
<td><span itemprop="familyName"><?= $account->getName3(); ?></span> <td><span itemprop="familyName"><?= $account->getName3(); ?></span>
</table> </table>
<!-- @formatter:on --> <!-- @formatter:on -->