Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects
Commit 3721b9aa authored by Nicolas's avatar Nicolas
Browse files

Mise en place des clés de traduction

parent d51d62cc
No related branches found
No related tags found
No related merge requests found
...@@ -5,8 +5,8 @@ use \NicolasBejean\Importer\Block\Adminhtml\ProductImages\Index; ...@@ -5,8 +5,8 @@ use \NicolasBejean\Importer\Block\Adminhtml\ProductImages\Index;
?> ?>
<div class="importer"> <div class="importer">
<div class="actions"> <div class="actions">
<button class="btn cancel"><i class="far fa-trash-alt"></i> Cancel all uploads</button> <button class="btn cancel"><i class="far fa-trash-alt"></i> <?php echo __('Cancel all uploads') ?></button>
<button class="btn start"><i class="fas fa-upload"></i> Start all uploads</button> <button class="btn start"><i class="fas fa-upload"></i> <?php echo __('Start all uploads') ?></button>
</div> </div>
<div class="dropzoneWrapper"> <div class="dropzoneWrapper">
...@@ -14,14 +14,14 @@ use \NicolasBejean\Importer\Block\Adminhtml\ProductImages\Index; ...@@ -14,14 +14,14 @@ use \NicolasBejean\Importer\Block\Adminhtml\ProductImages\Index;
<span class="cloud_upload"> <span class="cloud_upload">
<i class="fas fa-cloud-upload-alt"></i> <i class="fas fa-cloud-upload-alt"></i>
</span> </span>
<div>Drag and drop your file here</div> <div><?php echo __('Drag and drop your file here') ?></div>
</div> </div>
<span>OR</span> <span><?php echo __('OR') ?></span>
<div class="fileinput-button"> <div class="fileinput-button">
<label for="file">Select file</label> <label for="file"><?php echo __('Select file') ?></label>
<input type="file" name="files[]" id="file"> <input type="file" name="files[]" id="file">
</div> </div>
<p>File size limit : 10 MB</p> <p><?php echo __('File size limit : 10 MB') ?></p>
</div> </div>
<div class="previewWrapper"> <div class="previewWrapper">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment