Translate "Row" in _import_result_form.htm (#3574)
Fixes #3566. Credit to @danharrin
This commit is contained in:
parent
3f449ea3bd
commit
ce3c923c6f
|
|
@ -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 ?>
|
||||
|
|
|
|||
|
|
@ -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',
|
||||
|
|
|
|||
Loading…
Reference in New Issue