mirror of
https://github.com/Karaka-Management/oms-Media.git
synced 2026-01-22 05:58:41 +00:00
Translation fixes (0 still missing)
This commit is contained in:
parent
b1515225a9
commit
c93f2f34aa
|
|
@ -19,15 +19,15 @@
|
|||
|
||||
echo $this->getData('nav')->render(); ?>
|
||||
<section class="box w-50">
|
||||
<header><h1><?= $this->l11n->getText('Media', 'Backend', 'Upload'); ?></h1></header>
|
||||
<header><h1><?= $this->getText('Upload'); ?></h1></header>
|
||||
<div class="inner">
|
||||
<form method="POST" id="media-uploader" action="<?= \phpOMS\Uri\UriFactory::build('/{/lang}/api/media'); ?>">
|
||||
<table class="layout wf-100">
|
||||
<tr><td><label for="iName"><?= $this->l11n->getText('Media', 'Backend', 'Name'); ?></label>
|
||||
<tr><td><label for="iName"><?= $this->getText('Name'); ?></label>
|
||||
<tr><td><input type="text" id="iName" name="name" placeholder="">
|
||||
<tr><td><label for="iFiles"><?= $this->l11n->getText('Media', 'Backend', 'Files'); ?></label>
|
||||
<tr><td><label for="iFiles"><?= $this->getText('Files'); ?></label>
|
||||
<tr><td><input type="file" id="iFiles" name="files" multiple><input name="media" type="hidden">
|
||||
<tr><td><input type="submit" value="<?= $this->l11n->getText(0, 'Backend', 'Create'); ?>">
|
||||
<tr><td><input type="submit" value="<?= $this->getText('Create'); ?>">
|
||||
</table>
|
||||
</form>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -26,14 +26,14 @@ $footerView->setPage(1);
|
|||
echo $this->getData('nav')->render(); ?>
|
||||
<div class="box">
|
||||
<table class="table">
|
||||
<caption><?= $this->l11n->getText('Media', 'Backend', 'Media'); ?></caption>
|
||||
<caption><?= $this->getText('Media'); ?></caption>
|
||||
<thead>
|
||||
<tr>
|
||||
<td class="wf-100"><?= $this->l11n->getText('Media', 'Backend', 'Name'); ?>
|
||||
<td><?= $this->l11n->getText('Media', 'Backend', 'Type'); ?>
|
||||
<td><?= $this->l11n->getText('Media', 'Backend', 'Size'); ?>
|
||||
<td><?= $this->l11n->getText('Media', 'Backend', 'Creator'); ?>
|
||||
<td><?= $this->l11n->getText('Media', 'Backend', 'Created'); ?>
|
||||
<td class="wf-100"><?= $this->getText('Name'); ?>
|
||||
<td><?= $this->getText('Type'); ?>
|
||||
<td><?= $this->getText('Size'); ?>
|
||||
<td><?= $this->getText('Creator'); ?>
|
||||
<td><?= $this->getText('Created'); ?>
|
||||
<tfoot>
|
||||
<tr>
|
||||
<td colspan="3"><?= $footerView->render(); ?>
|
||||
|
|
@ -48,7 +48,7 @@ echo $this->getData('nav')->render(); ?>
|
|||
<td><a href="<?= $url; ?>"><?= $value->getCreatedAt()->format('Y-m-d H:i:s'); ?></a>
|
||||
<?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>
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user