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

Translating text

parent 6ee9ffc0
......@@ -11,5 +11,7 @@ return [
'filename' => 'Filename',
'width' => 'Width',
'height' => 'Height'
]
],
'choose image' => 'Choose an image',
'insert' => 'Insert this image'
];
......@@ -11,5 +11,7 @@ return [
'filename' => 'Nom de fichier',
'width' => 'Largeur',
'height' => 'Hauteur'
]
],
'choose image' => 'Choissisez une image',
'insert' => 'Selectionner cette image'
];
......@@ -12,14 +12,14 @@
<div class="container">
<div class="row">
<div class="col-md-8">
<h1>Choose Image</h1>
<h1>{{ trans('media::media.choose image') }}</h1>
<?php if ($files): ?>
<ul class="list-unstyled">
<?php foreach($files as $file): ?>
<li class="pull-left" style="margin-right: 20px">
<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>
<?php endforeach; ?>
</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