Hello,
In the view "pluginmarket / form", please replace
<h1><?php echo JText::_('HIKA_PLUGIN') . JText::_('PLG_HIKASHOP'.strtoupper($this->type).'_'.strtoupper($this->name)); ?></h1>
By
<h1><?php
echo JText::_('HIKA_PLUGIN');
$key = 'PLG_HIKASHOP'.strtoupper($this->type).'_'.strtoupper($this->name);
if(JText::_($key) != $key)
echo JText::_($key);
else
echo $this->name;
?></h1>
It will allow you to have specific translations for the plugin ; but it will fallback on the plugin default name if there is no translation.
Regards,