diff --git a/Theme/Backend/splash.tpl.php b/Theme/Backend/splash.tpl.php
index b8a26fb..f85db1c 100644
--- a/Theme/Backend/splash.tpl.php
+++ b/Theme/Backend/splash.tpl.php
@@ -24,7 +24,7 @@ if (isset($this->nav[\Modules\Navigation\Models\NavigationType::CONTENT])) :
diff --git a/Theme/backend/mid-side.tpl.php b/Theme/backend/mid-side.tpl.php
index db967b0..ae38715 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, 'Backend', 'Navigation')
+ . '' . $this->getText('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, 'Backend', $link['nav_name']) . '';
+ . $this->getText(5, 'Backend', $link['nav_name']) . '';
}
}
}
diff --git a/Theme/backend/mid.tpl.php b/Theme/backend/mid.tpl.php
index 6eb8df0..1efeb46 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', 'Backend', $link['nav_name']) . '';
+ . $this->getText($link['nav_name']) . '';
}
}
}
diff --git a/Theme/backend/side.tpl.php b/Theme/backend/side.tpl.php
index 798e776..9dc5652 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', 'Backend', $parent['nav_name']); ?>