add ger language

This commit is contained in:
Dennis Eichhorn 2020-06-07 22:22:39 +02:00
parent 55cada6ef8
commit 13da1b9495
3 changed files with 8 additions and 0 deletions

View File

@ -53,6 +53,7 @@ return ['Helper' => [
'Standalone' => 'Eigenständig',
'Storage' => 'Speicher',
'Tag' => 'Tag',
'Tags' => 'Tags',
'Template' => 'Template',
'Title' => 'Titel',
'Type' => 'Typ',

View File

@ -53,6 +53,7 @@ return ['Helper' => [
'Standalone' => 'Standalone',
'Storage' => 'Storage',
'Tag' => 'Tag',
'Tags' => 'Tags',
'Template' => 'Template',
'Title' => 'Title',
'Type' => 'Type',

View File

@ -134,6 +134,12 @@ echo $this->getData('nav')->render(); ?>
<tr>
<td><?= $this->getHtml('Created'); ?>
<td><?= $template->getCreatedAt()->format('Y-m-d'); ?>
<tr>
<td><?= $this->getHtml('Tags'); ?>
<td>
<?php $tags = $template->getTags(); foreach ($tags as $tag) : ?>
<span class="tag" style="background: <?= $this->printHtml($tag->getColor()); ?>"><?= $this->printHtml($tag->getTitle()); ?></span>
<?php endforeach; ?>
</table>
</div>
</div>