Translation fixes (0 still missing)

This commit is contained in:
Dennis Eichhorn 2016-07-27 13:15:05 +02:00
parent 6d991ab611
commit f96efc08c0
2 changed files with 14 additions and 14 deletions

View File

@ -20,15 +20,15 @@ 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('Support', 'Backend', 'Tickets'); ?></caption> <caption><?= $this->getText('Tickets'); ?></caption>
<thead> <thead>
<tr><td><?= $this->l11n->getText(0, 'Backend', 'ID'); ?> <tr><td><?= $this->getText('ID'); ?>
<td><?= $this->l11n->getText('Support', 'Backend', 'Status'); ?> <td><?= $this->getText('Status'); ?>
<td><?= $this->l11n->getText('Support', 'Backend', 'Priority'); ?> <td><?= $this->getText('Priority'); ?>
<td class="full"><?= $this->l11n->getText('Support', 'Backend', 'Title'); ?> <td class="full"><?= $this->getText('Title'); ?>
<td><?= $this->l11n->getText('Support', 'Backend', 'Responsible'); ?> <td><?= $this->getText('Responsible'); ?>
<tfoot> <tfoot>
<tbody> <tbody>
<tr><td colspan="5" class="empty"><?= $this->l11n->getText(0, 'Backend', 'Empty'); ?> <tr><td colspan="5" class="empty"><?= $this->getText('Empty'); ?>
</table> </table>
</div> </div>

View File

@ -19,22 +19,22 @@
echo $this->getData('nav')->render(); ?> echo $this->getData('nav')->render(); ?>
<section class="box w-50"> <section class="box w-50">
<header><h1><?= $this->l11n->getText('Support', 'Backend', 'Ticket') ?></h1></header> <header><h1><?= $this->getText('Ticket') ?></h1></header>
<div class="inner"> <div class="inner">
<form action="<?= \phpOMS\Uri\UriFactory::build('/{/lang}/api/reporter/template'); ?>" method="post"> <form action="<?= \phpOMS\Uri\UriFactory::build('/{/lang}/api/reporter/template'); ?>" method="post">
<table class="layout wf-100"> <table class="layout wf-100">
<tbody> <tbody>
<tr><td><label for="iTitle"><?= $this->l11n->getText('Support', 'Backend', 'Department') ?></label> <tr><td><label for="iTitle"><?= $this->getText('Department') ?></label>
<tr><td><select></select> <tr><td><select></select>
<tr><td><label for="iTitle"><?= $this->l11n->getText('Support', 'Backend', 'Topic') ?></label> <tr><td><label for="iTitle"><?= $this->getText('Topic') ?></label>
<tr><td><select></select> <tr><td><select></select>
<tr><td><label for="iTitle"><?= $this->l11n->getText('Support', 'Backend', 'Title') ?></label> <tr><td><label for="iTitle"><?= $this->getText('Title') ?></label>
<tr><td><input id="iTitle" name="name" type="text" required> <tr><td><input id="iTitle" name="name" type="text" required>
<tr><td><label for="iTitle"><?= $this->l11n->getText('Support', 'Backend', 'Description') ?></label> <tr><td><label for="iTitle"><?= $this->getText('Description') ?></label>
<tr><td><textarea required></textarea> <tr><td><textarea required></textarea>
<tr><td><label for="iFile"><?= $this->l11n->getText('Support', 'Backend', 'Files') ?></label> <tr><td><label for="iFile"><?= $this->getText('Files') ?></label>
<tr><td><input id="iFile" name="fileVisual" type="file" multiple><input id="iFileHidden" name="files" type="hidden"> <tr><td><input id="iFile" name="fileVisual" type="file" multiple><input id="iFileHidden" name="files" type="hidden">
<tr><td><input type="submit" value="<?= $this->l11n->getText(0, 'Backend', 'Create') ?>"> <tr><td><input type="submit" value="<?= $this->getText('Create') ?>">
</table> </table>
</form> </form>
</div> </div>