Translate "Row" in _import_result_form.htm (#3574)

Fixes #3566. Credit to @danharrin
This commit is contained in:
danharrin 2018-05-31 22:14:08 +01:00 committed by Luke Towers
parent 3f449ea3bd
commit ce3c923c6f
2 changed files with 2 additions and 1 deletions

View File

@ -61,7 +61,7 @@
<ul>
<?php foreach ($importResults->{$code} as $row => $message): ?>
<li>
<strong>Row <?= $row + $sourceIndexOffset ?></strong>
<strong><?= e(trans('backend::lang.import_export.row', ['row' => $row + $sourceIndexOffset])) ?></strong>
- <?= e($message) ?>
</li>
<?php endforeach ?>

View File

@ -446,6 +446,7 @@ return [
'import_export' => [
'upload_csv_file' => '1. Upload a CSV file',
'import_file' => 'Import file',
'row' => 'Row :row',
'first_row_contains_titles' => 'First row contains column titles',
'first_row_contains_titles_desc' => 'Leave this checked if the first row in the CSV is used as the column titles.',
'match_columns' => '2. Match the file columns to database fields',