mirror of
https://github.com/Karaka-Management/oms-Messages.git
synced 2026-02-15 16:58:41 +00:00
Translation fixes (0 still missing)
This commit is contained in:
parent
ad173eb640
commit
688b23fbf6
|
|
@ -23,21 +23,21 @@ echo $this->getData('nav')->render(); ?>
|
||||||
|
|
||||||
<section class="box w-100">
|
<section class="box w-100">
|
||||||
<ul class="btns floatLeft">
|
<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="<?= \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->l11n->getText(0, 'Backend', 'Delete'); ?></a>
|
<li><a href=""><i class="fa fa-trash"></i> <?= $this->getText('Delete'); ?></a>
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<div class="box w-100">
|
<div class="box w-100">
|
||||||
<table class="table">
|
<table class="table">
|
||||||
<caption><?= $this->l11n->getText('Messages', 'Backend', 'Messages'); ?></caption>
|
<caption><?= $this->getText('Messages'); ?></caption>
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<td><span class="check"><input type="checkbox"></span>
|
<td><span class="check"><input type="checkbox"></span>
|
||||||
<td><?= $this->l11n->getText('Messages', 'Backend', 'Tag'); ?>
|
<td><?= $this->getText('Tag'); ?>
|
||||||
<td class="wf-100"><?= $this->l11n->getText('Messages', 'Backend', 'Subject'); ?>
|
<td class="wf-100"><?= $this->getText('Subject'); ?>
|
||||||
<td><?= $this->l11n->getText('Messages', 'Backend', 'From'); ?>
|
<td><?= $this->getText('From'); ?>
|
||||||
<td><?= $this->l11n->getText('Messages', 'Backend', 'Date'); ?>
|
<td><?= $this->getText('Date'); ?>
|
||||||
<tfoot>
|
<tfoot>
|
||||||
<tr><td colspan="5"><?= \phpOMS\Utils\Converter\File::kilobyteSizeToString($quota['usage']); ?> / <?= \phpOMS\Utils\Converter\File::kilobyteSizeToString($quota['limit']); ?>
|
<tr><td colspan="5"><?= \phpOMS\Utils\Converter\File::kilobyteSizeToString($quota['usage']); ?> / <?= \phpOMS\Utils\Converter\File::kilobyteSizeToString($quota['limit']); ?>
|
||||||
<tbody>
|
<tbody>
|
||||||
|
|
@ -62,7 +62,7 @@ echo $this->getData('nav')->render(); ?>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
<?php if($count < 1) : ?>
|
<?php if($count < 1) : ?>
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="5" class="empty"><?= $this->l11n->getText(0, 'Backend', 'Empty'); ?>
|
<td colspan="5" class="empty"><?= $this->getText('Empty'); ?>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -19,13 +19,13 @@ echo $this->getData('nav')->render(); ?>
|
||||||
<div class="inner">
|
<div class="inner">
|
||||||
<form>
|
<form>
|
||||||
<table class="layout wf-100">
|
<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=" <?= $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=" <?= $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=" <?= $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=" <?= $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=" <?= $this->l11n->getText('Messages', 'Backend', 'BCC'); ?>" name="bcc">
|
<tr><td style="width: 1%"><button class="simple"><i class="fa fa-book"></i></button><td><input type="text" placeholder=" <?= $this->getText('BCC'); ?>" name="bcc">
|
||||||
<tr><td><td><input type="text" placeholder=" <?= $this->l11n->getText('Messages', 'Backend', 'Subject'); ?>" name="subject">
|
<tr><td><td><input type="text" placeholder=" <?= $this->getText('Subject'); ?>" name="subject">
|
||||||
<tr><td><td><input type="file" name="files" multiple>
|
<tr><td><td><input type="file" name="files" multiple>
|
||||||
<tr><td><td><div class="textarea" contenteditable="true" style="height: 400px;"></div><textarea placeholder="" style="display: none" name="mail"></textarea>
|
<tr><td><td><div class="textarea" contenteditable="true" style="height: 400px;"></div><textarea placeholder="" 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>
|
</table>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -22,21 +22,21 @@ echo $this->getData('nav')->render(); ?>
|
||||||
|
|
||||||
<section class="box w-100">
|
<section class="box w-100">
|
||||||
<ul class="btns floatLeft">
|
<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="<?= \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->l11n->getText(0, 'Backend', 'Delete'); ?></a>
|
<li><a href=""><i class="fa fa-trash"></i> <?= $this->getText('Delete'); ?></a>
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<div class="box w-100">
|
<div class="box w-100">
|
||||||
<table class="table">
|
<table class="table">
|
||||||
<caption><?= $this->l11n->getText('Messages', 'Backend', 'Messages'); ?></caption>
|
<caption><?= $this->getText('Messages'); ?></caption>
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<td><span class="check"><input type="checkbox"></span>
|
<td><span class="check"><input type="checkbox"></span>
|
||||||
<td><?= $this->l11n->getText('Messages', 'Backend', 'Tag'); ?>
|
<td><?= $this->getText('Tag'); ?>
|
||||||
<td class="wf-100"><?= $this->l11n->getText('Messages', 'Backend', 'Subject'); ?>
|
<td class="wf-100"><?= $this->getText('Subject'); ?>
|
||||||
<td><?= $this->l11n->getText('Messages', 'Backend', 'From'); ?>
|
<td><?= $this->getText('From'); ?>
|
||||||
<td><?= $this->l11n->getText('Messages', 'Backend', 'Date'); ?>
|
<td><?= $this->getText('Date'); ?>
|
||||||
<tfoot>
|
<tfoot>
|
||||||
<tr><td colspan="5"><?= \phpOMS\Utils\Converter\File::kilobyteSizeToString($quota['usage']); ?> / <?= \phpOMS\Utils\Converter\File::kilobyteSizeToString($quota['limit']); ?>
|
<tr><td colspan="5"><?= \phpOMS\Utils\Converter\File::kilobyteSizeToString($quota['usage']); ?> / <?= \phpOMS\Utils\Converter\File::kilobyteSizeToString($quota['limit']); ?>
|
||||||
<tbody>
|
<tbody>
|
||||||
|
|
@ -51,7 +51,7 @@ echo $this->getData('nav')->render(); ?>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
<?php if($count < 1) : ?>
|
<?php if($count < 1) : ?>
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="5" class="empty"><?= $this->l11n->getText(0, 'Backend', 'Empty'); ?>
|
<td colspan="5" class="empty"><?= $this->getText('Empty'); ?>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -22,21 +22,21 @@ echo $this->getData('nav')->render(); ?>
|
||||||
|
|
||||||
<section class="box w-100">
|
<section class="box w-100">
|
||||||
<ul class="btns floatLeft">
|
<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="<?= \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->l11n->getText(0, 'Backend', 'Delete'); ?></a>
|
<li><a href=""><i class="fa fa-trash"></i> <?= $this->getText('Delete'); ?></a>
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<div class="box w-100">
|
<div class="box w-100">
|
||||||
<table class="table">
|
<table class="table">
|
||||||
<caption><?= $this->l11n->getText('Messages', 'Backend', 'Messages'); ?></caption>
|
<caption><?= $this->getText('Messages'); ?></caption>
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<td><span class="check"><input type="checkbox"></span>
|
<td><span class="check"><input type="checkbox"></span>
|
||||||
<td><?= $this->l11n->getText('Messages', 'Backend', 'Tag'); ?>
|
<td><?= $this->getText('Tag'); ?>
|
||||||
<td class="wf-100"><?= $this->l11n->getText('Messages', 'Backend', 'Subject'); ?>
|
<td class="wf-100"><?= $this->getText('Subject'); ?>
|
||||||
<td><?= $this->l11n->getText('Messages', 'Backend', 'From'); ?>
|
<td><?= $this->getText('From'); ?>
|
||||||
<td><?= $this->l11n->getText('Messages', 'Backend', 'Date'); ?>
|
<td><?= $this->getText('Date'); ?>
|
||||||
<tfoot>
|
<tfoot>
|
||||||
<tr><td colspan="5"><?= \phpOMS\Utils\Converter\File::kilobyteSizeToString($quota['usage']); ?> / <?= \phpOMS\Utils\Converter\File::kilobyteSizeToString($quota['limit']); ?>
|
<tr><td colspan="5"><?= \phpOMS\Utils\Converter\File::kilobyteSizeToString($quota['usage']); ?> / <?= \phpOMS\Utils\Converter\File::kilobyteSizeToString($quota['limit']); ?>
|
||||||
<tbody>
|
<tbody>
|
||||||
|
|
@ -51,7 +51,7 @@ echo $this->getData('nav')->render(); ?>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
<?php if($count < 1) : ?>
|
<?php if($count < 1) : ?>
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="5" class="empty"><?= $this->l11n->getText(0, 'Backend', 'Empty'); ?>
|
<td colspan="5" class="empty"><?= $this->getText('Empty'); ?>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -22,21 +22,21 @@ echo $this->getData('nav')->render(); ?>
|
||||||
|
|
||||||
<section class="box w-100">
|
<section class="box w-100">
|
||||||
<ul class="btns floatLeft">
|
<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="<?= \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->l11n->getText(0, 'Backend', 'Delete'); ?></a>
|
<li><a href=""><i class="fa fa-trash"></i> <?= $this->getText('Delete'); ?></a>
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<div class="box w-100">
|
<div class="box w-100">
|
||||||
<table class="table">
|
<table class="table">
|
||||||
<caption><?= $this->l11n->getText('Messages', 'Backend', 'Messages'); ?></caption>
|
<caption><?= $this->getText('Messages'); ?></caption>
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<td><span class="check"><input type="checkbox"></span>
|
<td><span class="check"><input type="checkbox"></span>
|
||||||
<td><?= $this->l11n->getText('Messages', 'Backend', 'Tag'); ?>
|
<td><?= $this->getText('Tag'); ?>
|
||||||
<td class="wf-100"><?= $this->l11n->getText('Messages', 'Backend', 'Subject'); ?>
|
<td class="wf-100"><?= $this->getText('Subject'); ?>
|
||||||
<td><?= $this->l11n->getText('Messages', 'Backend', 'From'); ?>
|
<td><?= $this->getText('From'); ?>
|
||||||
<td><?= $this->l11n->getText('Messages', 'Backend', 'Date'); ?>
|
<td><?= $this->getText('Date'); ?>
|
||||||
<tfoot>
|
<tfoot>
|
||||||
<tr><td colspan="5"><?= \phpOMS\Utils\Converter\File::kilobyteSizeToString($quota['usage']); ?> / <?= \phpOMS\Utils\Converter\File::kilobyteSizeToString($quota['limit']); ?>
|
<tr><td colspan="5"><?= \phpOMS\Utils\Converter\File::kilobyteSizeToString($quota['usage']); ?> / <?= \phpOMS\Utils\Converter\File::kilobyteSizeToString($quota['limit']); ?>
|
||||||
<tbody>
|
<tbody>
|
||||||
|
|
@ -51,7 +51,7 @@ echo $this->getData('nav')->render(); ?>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
<?php if($count < 1) : ?>
|
<?php if($count < 1) : ?>
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="5" class="empty"><?= $this->l11n->getText(0, 'Backend', 'Empty'); ?>
|
<td colspan="5" class="empty"><?= $this->getText('Empty'); ?>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -20,46 +20,46 @@ $boxes = $mail->getBoxes();
|
||||||
echo $this->getData('nav')->render(); ?>
|
echo $this->getData('nav')->render(); ?>
|
||||||
|
|
||||||
<section class="box w-33">
|
<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">
|
<div class="inner">
|
||||||
<form>
|
<form>
|
||||||
<table class="layout">
|
<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">
|
<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) : ?>
|
<?php foreach($boxes as $box) : ?>
|
||||||
<option value="<?= $box; ?>"><?= $box; ?>
|
<option value="<?= $box; ?>"><?= $box; ?>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
</select>
|
</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">
|
<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) : ?>
|
<?php foreach($boxes as $box) : ?>
|
||||||
<option value="<?= $box; ?>"><?= $box; ?>
|
<option value="<?= $box; ?>"><?= $box; ?>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
</select>
|
</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">
|
<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) : ?>
|
<?php foreach($boxes as $box) : ?>
|
||||||
<option value="<?= $box; ?>"><?= $box; ?>
|
<option value="<?= $box; ?>"><?= $box; ?>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
</select>
|
</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">
|
<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) : ?>
|
<?php foreach($boxes as $box) : ?>
|
||||||
<option value="<?= $box; ?>"><?= $box; ?>
|
<option value="<?= $box; ?>"><?= $box; ?>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
</select>
|
</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">
|
<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) : ?>
|
<?php foreach($boxes as $box) : ?>
|
||||||
<option value="<?= $box; ?>"><?= $box; ?>
|
<option value="<?= $box; ?>"><?= $box; ?>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
</select>
|
</select>
|
||||||
<tr><td><input type="submit" value="<?= $this->l11n->getText(0, 'Backend', 'Save'); ?>">
|
<tr><td><input type="submit" value="<?= $this->getText('Save'); ?>">
|
||||||
</table>
|
</table>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user