diff --git a/Theme/Backend/mid-side.tpl.php b/Theme/Backend/mid-side.tpl.php
index e3b5349..db967b0 100644
--- a/Theme/Backend/mid-side.tpl.php
+++ b/Theme/Backend/mid-side.tpl.php
@@ -20,7 +20,7 @@
/* Looping through all links */
if (isset($this->nav[\Modules\Navigation\Models\NavigationType::CONTENT_SIDE])) {
echo '
'
- . '
' . $this->l11n->getText(0, 'Navigation')
+ . '' . $this->l11n->getText(0, 'Backend', 'Navigation')
. ''
. '
'
. ''
@@ -31,7 +31,7 @@ if (isset($this->nav[\Modules\Navigation\Models\NavigationType::CONTENT_SIDE]))
/** @var array $data */
if ($link['nav_parent'] == $data[1]) {
echo '
'
- . $this->l11n->getText(5, $link['nav_name']) . '';
+ . $this->l11n->getText(5, 'Backend', $link['nav_name']) . '';
}
}
}
diff --git a/Theme/Backend/mid.tpl.php b/Theme/Backend/mid.tpl.php
index e98bd71..6eb8df0 100644
--- a/Theme/Backend/mid.tpl.php
+++ b/Theme/Backend/mid.tpl.php
@@ -23,7 +23,7 @@ if (isset($this->nav[\Modules\Navigation\Models\NavigationType::CONTENT])) {
foreach ($parent as $link) {
if ($link['nav_parent'] == $this->parent) {
echo ''
- . $this->l11n->getText('Navigation', $link['nav_name']) . '';
+ . $this->l11n->getText('Navigation', 'Backend', $link['nav_name']) . '';
}
}
}
diff --git a/Theme/Backend/side.tpl.php b/Theme/Backend/side.tpl.php
index c5225c4..798e776 100644
--- a/Theme/Backend/side.tpl.php
+++ b/Theme/Backend/side.tpl.php
@@ -25,12 +25,12 @@ if (isset($this->nav[\Modules\Navigation\Models\NavigationType::SIDE])) : ?>
- = $this->l11n->getText('Navigation', $parent['nav_name']); ?>