diff --git a/Theme/Backend/Lang/en.lang.php b/Theme/Backend/Lang/en.lang.php index 6fc58f8..4c3f78c 100644 --- a/Theme/Backend/Lang/en.lang.php +++ b/Theme/Backend/Lang/en.lang.php @@ -19,6 +19,7 @@ return ['Media' => [ 'Creator' => 'Creator', 'Data' => 'Data', 'Description' => 'Description', + 'Edit' => 'Edit', 'Editability' => 'Editability', 'Extension' => 'Extension', 'Files' => 'Files', diff --git a/Theme/Backend/media-single.tpl.php b/Theme/Backend/media-single.tpl.php index b5d075d..a7c1266 100644 --- a/Theme/Backend/media-single.tpl.php +++ b/Theme/Backend/media-single.tpl.php @@ -35,11 +35,11 @@ echo $this->getData('nav')->render();
| Name | = $this->printHtml($media->getName()); ?> - |
| Size | = $this->printHtml($media->getSize()); ?> - |
| Created at | = $this->printHtml($media->getCreatedAt()->format('Y-m-d')); ?> - |
| Created by | = $this->printHtml($media->getCreatedBy()->getName1()); ?> - |
| Description | = $this->printHtml($media->getDescription()); ?> + |
| = $this->getHtml('Name') ?> | = $this->printHtml($media->getName()); ?> + |
| = $this->getHtml('Size') ?> | = $this->printHtml($media->getSize()); ?> + |
| = $this->getHtml('Created') ?> | = $this->printHtml($media->getCreatedAt()->format('Y-m-d')); ?> + |
| = $this->getHtml('Creator') ?> | = $this->printHtml($media->getCreatedBy()->getName1()); ?> + |
| = $this->getHtml('Description') ?> | = $this->printHtml($media->getDescription()); ?> |