-- HikaShop version -- : 4.0.0.
-- Joomla version -- : 3.8.13
I noticed that in file /administrator/components/com_hikashop/views/import/tmpl/show.php
there are some non translatable strings:
<?php
foreach($this->importData as $data){
echo '<div id="'.$data->key.'"';
if($data->key != 'file') echo ' style="display:none"';
echo '>';
echo '<div class="hikashop_tile_title">'.$data->text.'</div>';
if($data->key=='folder' && !hikashop_level(2)){
echo hikashop_getUpgradeLink('business');
}elseif($data->key=='vm' && !$this->vm){
echo '<small style="color:red">VirtueMart has not been found in the database</small>';
}elseif($data->key=='mijo' && !$this->mijo){
echo '<small style="color:red">Mjoshop has not been found in the database</small>';
}elseif($data->key=='redshop' && !$this->reds){
echo '<small style="color:red">Redshop has not been found in the database</small>';
}else{
if(in_array($data->key,array('file','textarea','folder','vm','mijo','redshop','openc'))) include(dirname(__FILE__).DS.$data->key.'.php');
else echo $data->data;
}
echo '</div>';
}?>