Commit 86ba0daf authored by Nicolas Widart's avatar Nicolas Widart

Translating text

parent 6ee9ffc0
...@@ -11,5 +11,7 @@ return [ ...@@ -11,5 +11,7 @@ return [
'filename' => 'Filename', 'filename' => 'Filename',
'width' => 'Width', 'width' => 'Width',
'height' => 'Height' 'height' => 'Height'
] ],
'choose image' => 'Choose an image',
'insert' => 'Insert this image'
]; ];
...@@ -11,5 +11,7 @@ return [ ...@@ -11,5 +11,7 @@ return [
'filename' => 'Nom de fichier', 'filename' => 'Nom de fichier',
'width' => 'Largeur', 'width' => 'Largeur',
'height' => 'Hauteur' 'height' => 'Hauteur'
] ],
'choose image' => 'Choissisez une image',
'insert' => 'Selectionner cette image'
]; ];
...@@ -12,14 +12,14 @@ ...@@ -12,14 +12,14 @@
<div class="container"> <div class="container">
<div class="row"> <div class="row">
<div class="col-md-8"> <div class="col-md-8">
<h1>Choose Image</h1> <h1>{{ trans('media::media.choose image') }}</h1>
<?php if ($files): ?> <?php if ($files): ?>
<ul class="list-unstyled"> <ul class="list-unstyled">
<?php foreach($files as $file): ?> <?php foreach($files as $file): ?>
<li class="pull-left" style="margin-right: 20px"> <li class="pull-left" style="margin-right: 20px">
<img src="{{ $file->path }}" alt="" class="img-thumbnail" style="width: 250px;"/> <img src="{{ $file->path }}" alt="" class="img-thumbnail" style="width: 250px;"/>
<a class="jsInsertImage btn btn-primary btn-flat" href="#" style="display: block">Insert</a> <a class="jsInsertImage btn btn-primary btn-flat" href="#" style="display: block">{{ trans('media::media.insert') }}</a>
</li> </li>
<?php endforeach; ?> <?php endforeach; ?>
</ul> </ul>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment