diff --git a/system/admin/admin.php b/system/admin/admin.php index 6326612..fb081d6 100644 --- a/system/admin/admin.php +++ b/system/admin/admin.php @@ -1650,7 +1650,7 @@ EOF; } if ($role === 'admin') { $toolbar .= '
  • ' . i18n('Config') . '
  • '; - $toolbar .= '
  • ' . i18n('blog_theme') . '
  • '; + $toolbar .= '
  • ' . i18n('themes') . '
  • '; $toolbar .= '
  • ' . i18n('Backup') . '
  • '; $toolbar .= '
  • ' . i18n('Update') . '
  • '; } diff --git a/system/admin/views/config-widget.html.php b/system/admin/views/config-widget.html.php index 33ba61e..885c534 100644 --- a/system/admin/views/config-widget.html.php +++ b/system/admin/views/config-widget.html.php @@ -29,7 +29,7 @@
    - +
    diff --git a/system/admin/views/layout.html.php b/system/admin/views/layout.html.php index ade3ab1..5d2dda6 100644 --- a/system/admin/views/layout.html.php +++ b/system/admin/views/layout.html.php @@ -170,7 +170,7 @@ if (isset($author[0])) { diff --git a/system/admin/views/theme-settings.html.php b/system/admin/views/theme-settings.html.php index e957d81..da6a2c6 100644 --- a/system/admin/views/theme-settings.html.php +++ b/system/admin/views/theme-settings.html.php @@ -20,27 +20,27 @@ if (file_exists($configPath)) {
    - Theme: + :
    - Version: + :
    - Author: + :
    - Homepage: + :
    - Description: + :
    diff --git a/system/htmly.php b/system/htmly.php index 7c7209a..57bb401 100644 --- a/system/htmly.php +++ b/system/htmly.php @@ -3280,14 +3280,14 @@ get('/admin/themes', function () { if (login()) { config('views.root', 'system/admin/views'); render('theme', array( - 'title' => generate_title('is_default', i18n('blog_theme')), + 'title' => generate_title('is_default', i18n('themes')), 'description' => safe_html(strip_tags(blog_description())), 'canonical' => site_url(), 'metatags' => generate_meta(null, null), 'type' => 'is_admin-content', 'is_admin' => true, 'bodyclass' => 'admin-content', - 'breadcrumb' => '' . config('breadcrumb.home') . ' » ' . i18n('blog_theme') + 'breadcrumb' => '' . config('breadcrumb.home') . ' » ' . i18n('themes') )); } else { $login = site_url() . 'login'; @@ -3331,7 +3331,7 @@ get('/admin/themes/:theme', function ($theme) { 'theme' => $theme, 'is_admin' => true, 'bodyclass' => 'admin-content', - 'breadcrumb' => '' . config('breadcrumb.home') . ' » ' . i18n('blog_theme') . ' » ' . $theme + 'breadcrumb' => '' . config('breadcrumb.home') . ' » ' . i18n('themes') . ' » ' . $theme )); } else { $login = site_url() . 'login';