diff --git a/htdocs/imports/import.php b/htdocs/imports/import.php index e9ee3d0bece..e8551a74a2f 100644 --- a/htdocs/imports/import.php +++ b/htdocs/imports/import.php @@ -424,7 +424,11 @@ if ($step == 2 && $datatoimport) print ''; print ''; - print ''.$langs->trans("ChooseFormatOfFileToImport", img_picto('', 'next', '')).'

'; + print ''; + $s = $langs->trans("ChooseFormatOfFileToImport", '{s1}'); + $s = str_replace('{s1}', img_picto('', 'next'), $s); + print $s; + print '

'; print '
'; // You can use div-table-responsive-no-min if you dont need reserved height for your table print ''; @@ -542,14 +546,18 @@ if ($step == 3 && $datatoimport) print ''; print ''; - print ''; + print ''; print ''; print ''; print ''; print ''; - print ''; + print ''; - print ''.$langs->trans("ChooseFileToImport", img_picto('', 'next')).'

'; + print ''; + $s = $langs->trans("ChooseFileToImport", '{s1}'); + $s = str_replace('{s1}', img_picto('', 'next'), $s); + print $s; + print '

'; print '
'; // You can use div-table-responsive-no-min if you dont need reserved height for your table print '
'; @@ -857,7 +865,11 @@ if ($step == 4 && $datatoimport) print ''; print '
'; - print ''.$langs->trans("SelectImportFields", img_picto('', 'grip_title', '', false, 0, 0, '', '', 0)).' '; + print ''; + $s = $langs->trans("SelectImportFields", '{s1}'); + $s = str_replace('{s1}', img_picto('', 'grip_title', '', false, 0, 0, '', '', 0), $s); + print $s; + print ' '; $htmlother->select_import_model($importmodelid, 'importmodelid', $datatoimport, 1); print ''; print '
';