👌 Remove unnecessary lang string

This commit is contained in:
Vladimir Kattsov 2017-02-27 11:08:23 +03:00
parent c73e0ea811
commit aec4591410
3 changed files with 3 additions and 5 deletions

View File

@ -18,8 +18,7 @@ return [
'widget_title_default' => 'Website',
'online' => 'Online',
'maintenance' => 'In maintenance',
'manage_themes' => 'Manage themes',
'customize_theme' => 'Customize Theme'
'manage_themes' => 'Manage themes'
]
],
'theme' => [

View File

@ -17,8 +17,7 @@ return [
'widget_title_default' => 'Веб-сайт',
'online' => 'Онлайн',
'maintenance' => 'в разработке',
'manage_themes' => 'Управление темами',
'customize_theme' => 'Настройка Темы'
'manage_themes' => 'Управление темами'
]
],
'theme' => [

View File

@ -29,7 +29,7 @@
<?php if ($theme->hasCustomData()): ?>
<li>
<a href="<?= Backend::url('cms/themes/update/'.$theme->getDirName()) ?>">
<?= e(trans('cms::lang.dashboard.active_theme.customize_theme')) ?>
<?= e(trans('cms::lang.theme.customize_theme')) ?>
</a>
</li>
<?php endif ?>