Translation fixes (0 still missing)

This commit is contained in:
Dennis Eichhorn 2016-07-27 13:17:50 +02:00
parent 688b23fbf6
commit 6125dc0fce
6 changed files with 49 additions and 49 deletions

View File

@ -23,21 +23,21 @@ echo $this->getData('nav')->render(); ?>
<section class="box w-100">
<ul class="btns floatLeft">
<li><a href="<?= \phpOMS\Uri\UriFactory::build('/{/lang}/backend/messages/mail/create'); ?>"><i class="fa fa-pencil"></i> <?= $this->l11n->getText(0, 'Backend', 'Create'); ?></a>
<li><a href=""><i class="fa fa-trash"></i> <?= $this->l11n->getText(0, 'Backend', 'Delete'); ?></a>
<li><a href="<?= \phpOMS\Uri\UriFactory::build('/{/lang}/backend/messages/mail/create'); ?>"><i class="fa fa-pencil"></i> <?= $this->getText('Create'); ?></a>
<li><a href=""><i class="fa fa-trash"></i> <?= $this->getText('Delete'); ?></a>
</ul>
</section>
<div class="box w-100">
<table class="table">
<caption><?= $this->l11n->getText('Messages', 'Backend', 'Messages'); ?></caption>
<caption><?= $this->getText('Messages'); ?></caption>
<thead>
<tr>
<td><span class="check"><input type="checkbox"></span>
<td><?= $this->l11n->getText('Messages', 'Backend', 'Tag'); ?>
<td class="wf-100"><?= $this->l11n->getText('Messages', 'Backend', 'Subject'); ?>
<td><?= $this->l11n->getText('Messages', 'Backend', 'From'); ?>
<td><?= $this->l11n->getText('Messages', 'Backend', 'Date'); ?>
<td><?= $this->getText('Tag'); ?>
<td class="wf-100"><?= $this->getText('Subject'); ?>
<td><?= $this->getText('From'); ?>
<td><?= $this->getText('Date'); ?>
<tfoot>
<tr><td colspan="5"><?= \phpOMS\Utils\Converter\File::kilobyteSizeToString($quota['usage']); ?> / <?= \phpOMS\Utils\Converter\File::kilobyteSizeToString($quota['limit']); ?>
<tbody>
@ -62,7 +62,7 @@ echo $this->getData('nav')->render(); ?>
<?php endforeach; ?>
<?php if($count < 1) : ?>
<tr>
<td colspan="5" class="empty"><?= $this->l11n->getText(0, 'Backend', 'Empty'); ?>
<td colspan="5" class="empty"><?= $this->getText('Empty'); ?>
<?php endif; ?>
</table>
</div>

View File

@ -19,13 +19,13 @@ echo $this->getData('nav')->render(); ?>
<div class="inner">
<form>
<table class="layout wf-100">
<tr><td style="width: 1%"><button class="simple"><i class="fa fa-book"></i></button><td><input type="text" placeholder="&#xf007; <?= $this->l11n->getText('Messages', 'Backend', 'To'); ?>" name="to">
<tr><td style="width: 1%"><button class="simple"><i class="fa fa-book"></i></button><td><input type="text" placeholder="&#xf007; <?= $this->l11n->getText('Messages', 'Backend', 'CC'); ?>" name="cc">
<tr><td style="width: 1%"><button class="simple"><i class="fa fa-book"></i></button><td><input type="text" placeholder="&#xf007; <?= $this->l11n->getText('Messages', 'Backend', 'BCC'); ?>" name="bcc">
<tr><td><td><input type="text" placeholder="&#xf040; <?= $this->l11n->getText('Messages', 'Backend', 'Subject'); ?>" name="subject">
<tr><td style="width: 1%"><button class="simple"><i class="fa fa-book"></i></button><td><input type="text" placeholder="&#xf007; <?= $this->getText('To'); ?>" name="to">
<tr><td style="width: 1%"><button class="simple"><i class="fa fa-book"></i></button><td><input type="text" placeholder="&#xf007; <?= $this->getText('CC'); ?>" name="cc">
<tr><td style="width: 1%"><button class="simple"><i class="fa fa-book"></i></button><td><input type="text" placeholder="&#xf007; <?= $this->getText('BCC'); ?>" name="bcc">
<tr><td><td><input type="text" placeholder="&#xf040; <?= $this->getText('Subject'); ?>" name="subject">
<tr><td><td><input type="file" name="files" multiple>
<tr><td><td><div class="textarea" contenteditable="true" style="height: 400px;"></div><textarea placeholder="&#xf040;" style="display: none" name="mail"></textarea>
<tr><td><td><input type="submit" value="<?= $this->l11n->getText(0]['Send']; ?>"> <input type="submit" value="<?= $this->l11n->lang[0, 'Backend', 'Save'); ?>">
<tr><td><td><input type="submit" value="<?= $this->getText(0]['Send']; ?>"> <input type="submit" value="<?= $this->l11n->lang[0, 'Backend', 'Save'); ?>">
</table>
</form>
</div>

View File

@ -22,21 +22,21 @@ echo $this->getData('nav')->render(); ?>
<section class="box w-100">
<ul class="btns floatLeft">
<li><a href="<?= \phpOMS\Uri\UriFactory::build('/{/lang}/backend/messages/mail/create'); ?>"><i class="fa fa-pencil"></i> <?= $this->l11n->getText(0, 'Backend', 'Create'); ?></a>
<li><a href=""><i class="fa fa-trash"></i> <?= $this->l11n->getText(0, 'Backend', 'Delete'); ?></a>
<li><a href="<?= \phpOMS\Uri\UriFactory::build('/{/lang}/backend/messages/mail/create'); ?>"><i class="fa fa-pencil"></i> <?= $this->getText('Create'); ?></a>
<li><a href=""><i class="fa fa-trash"></i> <?= $this->getText('Delete'); ?></a>
</ul>
</section>
<div class="box w-100">
<table class="table">
<caption><?= $this->l11n->getText('Messages', 'Backend', 'Messages'); ?></caption>
<caption><?= $this->getText('Messages'); ?></caption>
<thead>
<tr>
<td><span class="check"><input type="checkbox"></span>
<td><?= $this->l11n->getText('Messages', 'Backend', 'Tag'); ?>
<td class="wf-100"><?= $this->l11n->getText('Messages', 'Backend', 'Subject'); ?>
<td><?= $this->l11n->getText('Messages', 'Backend', 'From'); ?>
<td><?= $this->l11n->getText('Messages', 'Backend', 'Date'); ?>
<td><?= $this->getText('Tag'); ?>
<td class="wf-100"><?= $this->getText('Subject'); ?>
<td><?= $this->getText('From'); ?>
<td><?= $this->getText('Date'); ?>
<tfoot>
<tr><td colspan="5"><?= \phpOMS\Utils\Converter\File::kilobyteSizeToString($quota['usage']); ?> / <?= \phpOMS\Utils\Converter\File::kilobyteSizeToString($quota['limit']); ?>
<tbody>
@ -51,7 +51,7 @@ echo $this->getData('nav')->render(); ?>
<?php endforeach; ?>
<?php if($count < 1) : ?>
<tr>
<td colspan="5" class="empty"><?= $this->l11n->getText(0, 'Backend', 'Empty'); ?>
<td colspan="5" class="empty"><?= $this->getText('Empty'); ?>
<?php endif; ?>
</table>
</div>

View File

@ -22,21 +22,21 @@ echo $this->getData('nav')->render(); ?>
<section class="box w-100">
<ul class="btns floatLeft">
<li><a href="<?= \phpOMS\Uri\UriFactory::build('/{/lang}/backend/messages/mail/create'); ?>"><i class="fa fa-pencil"></i> <?= $this->l11n->getText(0, 'Backend', 'Create'); ?></a>
<li><a href=""><i class="fa fa-trash"></i> <?= $this->l11n->getText(0, 'Backend', 'Delete'); ?></a>
<li><a href="<?= \phpOMS\Uri\UriFactory::build('/{/lang}/backend/messages/mail/create'); ?>"><i class="fa fa-pencil"></i> <?= $this->getText('Create'); ?></a>
<li><a href=""><i class="fa fa-trash"></i> <?= $this->getText('Delete'); ?></a>
</ul>
</section>
<div class="box w-100">
<table class="table">
<caption><?= $this->l11n->getText('Messages', 'Backend', 'Messages'); ?></caption>
<caption><?= $this->getText('Messages'); ?></caption>
<thead>
<tr>
<td><span class="check"><input type="checkbox"></span>
<td><?= $this->l11n->getText('Messages', 'Backend', 'Tag'); ?>
<td class="wf-100"><?= $this->l11n->getText('Messages', 'Backend', 'Subject'); ?>
<td><?= $this->l11n->getText('Messages', 'Backend', 'From'); ?>
<td><?= $this->l11n->getText('Messages', 'Backend', 'Date'); ?>
<td><?= $this->getText('Tag'); ?>
<td class="wf-100"><?= $this->getText('Subject'); ?>
<td><?= $this->getText('From'); ?>
<td><?= $this->getText('Date'); ?>
<tfoot>
<tr><td colspan="5"><?= \phpOMS\Utils\Converter\File::kilobyteSizeToString($quota['usage']); ?> / <?= \phpOMS\Utils\Converter\File::kilobyteSizeToString($quota['limit']); ?>
<tbody>
@ -51,7 +51,7 @@ echo $this->getData('nav')->render(); ?>
<?php endforeach; ?>
<?php if($count < 1) : ?>
<tr>
<td colspan="5" class="empty"><?= $this->l11n->getText(0, 'Backend', 'Empty'); ?>
<td colspan="5" class="empty"><?= $this->getText('Empty'); ?>
<?php endif; ?>
</table>
</div>

View File

@ -22,21 +22,21 @@ echo $this->getData('nav')->render(); ?>
<section class="box w-100">
<ul class="btns floatLeft">
<li><a href="<?= \phpOMS\Uri\UriFactory::build('/{/lang}/backend/messages/mail/create'); ?>"><i class="fa fa-pencil"></i> <?= $this->l11n->getText(0, 'Backend', 'Create'); ?></a>
<li><a href=""><i class="fa fa-trash"></i> <?= $this->l11n->getText(0, 'Backend', 'Delete'); ?></a>
<li><a href="<?= \phpOMS\Uri\UriFactory::build('/{/lang}/backend/messages/mail/create'); ?>"><i class="fa fa-pencil"></i> <?= $this->getText('Create'); ?></a>
<li><a href=""><i class="fa fa-trash"></i> <?= $this->getText('Delete'); ?></a>
</ul>
</section>
<div class="box w-100">
<table class="table">
<caption><?= $this->l11n->getText('Messages', 'Backend', 'Messages'); ?></caption>
<caption><?= $this->getText('Messages'); ?></caption>
<thead>
<tr>
<td><span class="check"><input type="checkbox"></span>
<td><?= $this->l11n->getText('Messages', 'Backend', 'Tag'); ?>
<td class="wf-100"><?= $this->l11n->getText('Messages', 'Backend', 'Subject'); ?>
<td><?= $this->l11n->getText('Messages', 'Backend', 'From'); ?>
<td><?= $this->l11n->getText('Messages', 'Backend', 'Date'); ?>
<td><?= $this->getText('Tag'); ?>
<td class="wf-100"><?= $this->getText('Subject'); ?>
<td><?= $this->getText('From'); ?>
<td><?= $this->getText('Date'); ?>
<tfoot>
<tr><td colspan="5"><?= \phpOMS\Utils\Converter\File::kilobyteSizeToString($quota['usage']); ?> / <?= \phpOMS\Utils\Converter\File::kilobyteSizeToString($quota['limit']); ?>
<tbody>
@ -51,7 +51,7 @@ echo $this->getData('nav')->render(); ?>
<?php endforeach; ?>
<?php if($count < 1) : ?>
<tr>
<td colspan="5" class="empty"><?= $this->l11n->getText(0, 'Backend', 'Empty'); ?>
<td colspan="5" class="empty"><?= $this->getText('Empty'); ?>
<?php endif; ?>
</table>
</div>

View File

@ -20,46 +20,46 @@ $boxes = $mail->getBoxes();
echo $this->getData('nav')->render(); ?>
<section class="box w-33">
<header><h1><?= $this->l11n->getText('Messages', 'Backend', 'Mailboxes'); ?></h1></header>
<header><h1><?= $this->getText('Mailboxes'); ?></h1></header>
<div class="inner">
<form>
<table class="layout">
<tr><td><label for="iInbox"><?= $this->l11n->getText('Messages', 'Backend', 'Inbox'); ?></label>
<tr><td><label for="iInbox"><?= $this->getText('Inbox'); ?></label>
<tr><td><select id="iInbox" name="inbox">
<option value=""><?= $this->l11n->getText(0, 'Backend', 'Select'); ?>
<option value=""><?= $this->getText('Select'); ?>
<?php foreach($boxes as $box) : ?>
<option value="<?= $box; ?>"><?= $box; ?>
<?php endforeach; ?>
</select>
<tr><td><label for="iOutbox"><?= $this->l11n->getText('Messages', 'Backend', 'Outbox'); ?></label>
<tr><td><label for="iOutbox"><?= $this->getText('Outbox'); ?></label>
<tr><td><select id="iOutbox" name="outbox">
<option value=""><?= $this->l11n->getText(0, 'Backend', 'Select'); ?>
<option value=""><?= $this->getText('Select'); ?>
<?php foreach($boxes as $box) : ?>
<option value="<?= $box; ?>"><?= $box; ?>
<?php endforeach; ?>
</select>
<tr><td><label for="iDraft"><?= $this->l11n->getText('Messages', 'Backend', 'Draft'); ?></label>
<tr><td><label for="iDraft"><?= $this->getText('Draft'); ?></label>
<tr><td><select id="iDraft" name="draft">
<option value=""><?= $this->l11n->getText(0, 'Backend', 'Select'); ?>
<option value=""><?= $this->getText('Select'); ?>
<?php foreach($boxes as $box) : ?>
<option value="<?= $box; ?>"><?= $box; ?>
<?php endforeach; ?>
</select>
<tr><td><label for="iTrash"><?= $this->l11n->getText('Messages', 'Backend', 'Trash'); ?></label>
<tr><td><label for="iTrash"><?= $this->getText('Trash'); ?></label>
<tr><td><select id="iTrash" name="trash">
<option value=""><?= $this->l11n->getText(0, 'Backend', 'Select'); ?>
<option value=""><?= $this->getText('Select'); ?>
<?php foreach($boxes as $box) : ?>
<option value="<?= $box; ?>"><?= $box; ?>
<?php endforeach; ?>
</select>
<tr><td><label for="iSpam"><?= $this->l11n->getText('Messages', 'Backend', 'Spam'); ?></label>
<tr><td><label for="iSpam"><?= $this->getText('Spam'); ?></label>
<tr><td><select id="iSpam" name="spam">
<option value=""><?= $this->l11n->getText(0, 'Backend', 'Select'); ?>
<option value=""><?= $this->getText('Select'); ?>
<?php foreach($boxes as $box) : ?>
<option value="<?= $box; ?>"><?= $box; ?>
<?php endforeach; ?>
</select>
<tr><td><input type="submit" value="<?= $this->l11n->getText(0, 'Backend', 'Save'); ?>">
<tr><td><input type="submit" value="<?= $this->getText('Save'); ?>">
</table>
</form>
</div>