Translation fixes (0 still missing)

This commit is contained in:
Dennis Eichhorn 2016-07-27 13:15:05 +02:00
parent c4b238d699
commit 6a0a439e65
3 changed files with 15 additions and 15 deletions

View File

@ -25,8 +25,8 @@
<div class="box w-100"> <div class="box w-100">
<div class="tabular"> <div class="tabular">
<ul class="tab-links"> <ul class="tab-links">
<li><label for="c-tab-1"><?= $this->l11n->getText('News', 'Backend', 'Plain') ?></label> <li><label for="c-tab-1"><?= $this->getText('Plain') ?></label>
<li><label for="c-tab-2"><?= $this->l11n->getText('News', 'Backend', 'Preview') ?></label> <li><label for="c-tab-2"><?= $this->getText('Preview') ?></label>
</ul> </ul>
<div class="tab-content"> <div class="tab-content">
<input type="radio" id="c-tab-1" name="tabular-1" checked> <input type="radio" id="c-tab-1" name="tabular-1" checked>

View File

@ -30,9 +30,9 @@ echo $this->getData('nav')->render(); ?>
<div class="box w-100"> <div class="box w-100">
<div class="tabular"> <div class="tabular">
<ul class="tab-links"> <ul class="tab-links">
<li><label for="c-tab-1"><?= $this->l11n->getText('Editor', 'Backend', 'Start') ?></label> <li><label for="c-tab-1"><?= $this->getText('Start') ?></label>
<li><label for="c-tab-2"><?= $this->l11n->getText('Editor', 'Backend', 'Insert') ?></label> <li><label for="c-tab-2"><?= $this->getText('Insert') ?></label>
<li><label for="c-tab-3"><?= $this->l11n->getText('Editor', 'Backend', 'Layout') ?></label> <li><label for="c-tab-3"><?= $this->getText('Layout') ?></label>
</ul> </ul>
<div class="tab-content"> <div class="tab-content">
<input type="radio" id="c-tab-1" name="tabular-1" checked> <input type="radio" id="c-tab-1" name="tabular-1" checked>
@ -89,8 +89,8 @@ echo $this->getData('nav')->render(); ?>
<div class="box w-100"> <div class="box w-100">
<div class="tabular"> <div class="tabular">
<ul class="tab-links"> <ul class="tab-links">
<li><label for="c-tab2-1"><?= $this->l11n->getText('Editor', 'Backend', 'Text') ?></label> <li><label for="c-tab2-1"><?= $this->getText('Text') ?></label>
<li><label for="c-tab2-2"><?= $this->l11n->getText('Editor', 'Backend', 'Preview') ?></label> <li><label for="c-tab2-2"><?= $this->getText('Preview') ?></label>
</ul> </ul>
<div class="tab-content"> <div class="tab-content">
<input type="radio" id="c-tab2-1" name="tabular-2" checked> <input type="radio" id="c-tab2-1" name="tabular-2" checked>
@ -108,12 +108,12 @@ echo $this->getData('nav')->render(); ?>
<div class="inner"> <div class="inner">
<form> <form>
<table class="layout"> <table class="layout">
<tr><td colspan="2"><label><?= $this->l11n->getText('Editor', 'Backend', 'Permission') ?></label> <tr><td colspan="2"><label><?= $this->getText('Permission') ?></label>
<tr><td><select> <tr><td><select>
<option> <option>
</select> </select>
<tr><td colspan="2"><label><?= $this->l11n->getText('Editor', 'Backend', 'GroupUser') ?></label> <tr><td colspan="2"><label><?= $this->getText('GroupUser') ?></label>
<tr><td><input id="iPermission" name="group" type="text" placeholder="&#xf084;"><td><button><?= $this->l11n->getText(0, 'Backend', 'Add') ?></button> <tr><td><input id="iPermission" name="group" type="text" placeholder="&#xf084;"><td><button><?= $this->getText('Add') ?></button>
</table> </table>
</form> </form>
</div> </div>

View File

@ -25,12 +25,12 @@ $footerView->setPage(1);
echo $this->getData('nav')->render(); ?> echo $this->getData('nav')->render(); ?>
<div class="box"> <div class="box">
<table class="table"> <table class="table">
<caption><?= $this->l11n->getText('Editor', 'Backend', 'Documents'); ?></caption> <caption><?= $this->getText('Documents'); ?></caption>
<thead> <thead>
<tr> <tr>
<td class="wf-100"><?= $this->l11n->getText('Editor', 'Backend', 'Name'); ?> <td class="wf-100"><?= $this->getText('Name'); ?>
<td><?= $this->l11n->getText('Editor', 'Backend', 'Creator'); ?> <td><?= $this->getText('Creator'); ?>
<td><?= $this->l11n->getText('Editor', 'Backend', 'Created'); ?> <td><?= $this->getText('Created'); ?>
<tfoot> <tfoot>
<tr> <tr>
<td colspan="3"><?= $footerView->render(); ?> <td colspan="3"><?= $footerView->render(); ?>
@ -38,7 +38,7 @@ echo $this->getData('nav')->render(); ?>
<?php $count = 0; foreach([] as $key => $value) : $count++; ?> <?php $count = 0; foreach([] as $key => $value) : $count++; ?>
<?php endforeach; ?> <?php endforeach; ?>
<?php if($count === 0) : ?> <?php if($count === 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>