diff --git a/index.php b/index.php
index 2de519a..7e4a3da 100644
--- a/index.php
+++ b/index.php
@@ -204,12 +204,12 @@ if (empty($module) && $type != '') {
'
%s | ',
$core->adminurl->get('translater', ['type' => $module->type, 'module' => $module->id]),
html::escapeHTML(sprintf(__('Translate module %s'), __($module->name))),
- html::escapeHTML(__($module->id))
+ html::escapeHTML($module->id)
);
} else {
$res .= sprintf(
'
%s | ',
- html::escapeHTML(__($module->id))
+ html::escapeHTML($module->id)
);
}
$codes = $module->getLangs();
@@ -229,7 +229,7 @@ if (empty($module) && $type != '') {
$res .= sprintf(
'%s | %s | %s |
',
implode(', ', $codes),
- html::escapeHTML($module->name),
+ html::escapeHTML(__($module->name)),
$module->version
);
}