Translation fixes (0 still missing)

This commit is contained in:
Dennis Eichhorn 2016-07-27 13:17:50 +02:00
parent ac333c2de5
commit 69ed44dd28
2 changed files with 15 additions and 15 deletions

View File

@ -17,28 +17,28 @@
echo $this->getData('nav')->render(); ?>
<section class="box w-50">
<header><h1><?= $this->l11n->getText('EventManagement', 'Backend', 'Event'); ?></h1></header>
<header><h1><?= $this->getText('Event'); ?></h1></header>
<div class="inner">
<form>
<table class="layout wf-100">
<tr><td colspan="3"><label for="iName"><?= $this->l11n->getText('EventManagement', 'Backend', 'Name'); ?></label>
<tr><td colspan="3"><label for="iName"><?= $this->getText('Name'); ?></label>
<tr><td colspan="2"><input type="text" id="iName" name="name" placeholder="" required><td>
<tr><td colspan="3"><label for="iDescription"><?= $this->l11n->getText('EventManagement', 'Backend', 'Description'); ?></label>
<tr><td colspan="3"><label for="iDescription"><?= $this->getText('Description'); ?></label>
<tr><td colspan="2"><textarea id="iDescription" name="description"></textarea><td>
<tr><td colspan="3"><label for="iStatus"><?= $this->l11n->getText('EventManagement', 'Backend', 'Status'); ?></label>
<tr><td colspan="3"><label for="iStatus"><?= $this->getText('Status'); ?></label>
<tr><td colspan="2"><select id="iStatus" name="status">
<option value="">
</select><td>
<tr><td colspan="3"><label for="iFiles"><?= $this->l11n->getText('EventManagement', 'Backend', 'Files'); ?></label>
<tr><td colspan="3"><label for="iFiles"><?= $this->getText('Files'); ?></label>
<tr><td colspan="2"><input type="file" id="iFiles" name="file" multiple><td>
<tr><td><label for="iStart"><?= $this->l11n->getText('EventManagement', 'Backend', 'Start') ?><label><td><label for="iEnd"><?= $this->l11n->getText('EventManagement', 'Backend', 'End') ?><label><td>
<tr><td><label for="iStart"><?= $this->getText('Start') ?><label><td><label for="iEnd"><?= $this->getText('End') ?><label><td>
<tr><td><input type="datetime-local" id="iStart" name="start" required><td><input type="datetime-local" id="iEnd" name="end" required><td>
<tr><td><label for="iResponsibility"><?= $this->l11n->getText('EventManagement', 'Backend', 'Responsibility'); ?></label><td><label for="iUser"><?= $this->l11n->getText('EventManagement', 'Backend', 'UserGroup'); ?></label><td>
<tr><td><label for="iResponsibility"><?= $this->getText('Responsibility'); ?></label><td><label for="iUser"><?= $this->getText('UserGroup'); ?></label><td>
<tr><td><select id="iStatus" name="status">
<option value="">
</select>
<td><span class="input"><button type="button" formaction=""><i class="fa fa-book"></i></button><input type="text" id="iUser" name="user" placeholder=""></span><td><button><?= $this->l11n->getText(0, 'Backend', 'Add'); ?></button>
<tr><td colspan="3"><input type="submit" value="<?= $this->l11n->getText(0, 'Backend', 'Create'); ?>">
<td><span class="input"><button type="button" formaction=""><i class="fa fa-book"></i></button><input type="text" id="iUser" name="user" placeholder=""></span><td><button><?= $this->getText('Add'); ?></button>
<tr><td colspan="3"><input type="submit" value="<?= $this->getText('Create'); ?>">
</table>
</form>
</div>

View File

@ -23,13 +23,13 @@ echo $this->getData('nav')->render(); ?>
<div class="box w-100">
<table class="table">
<caption><?= $this->l11n->getText('EventManagement', 'Backend', 'Events') ?></caption>
<caption><?= $this->getText('Events') ?></caption>
<thead>
<tr>
<td><?= $this->l11n->getText('EventManagement', 'Backend', 'Status'); ?>
<td class="wf-100"><?= $this->l11n->getText('EventManagement', 'Backend', 'Title'); ?>
<td><?= $this->l11n->getText('EventManagement', 'Backend', 'Start'); ?>
<td><?= $this->l11n->getText('EventManagement', 'Backend', 'End'); ?>
<td><?= $this->getText('Status'); ?>
<td class="wf-100"><?= $this->getText('Title'); ?>
<td><?= $this->getText('Start'); ?>
<td><?= $this->getText('End'); ?>
<tfoot>
<tr>
<td colspan="5"><?= $footerView->render(); ?>
@ -37,7 +37,7 @@ echo $this->getData('nav')->render(); ?>
<?php $count = 0; foreach([] as $key => $value) : $count++; ?>
<?php endforeach; ?>
<?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; ?>
</table>
</div>