From 9a315d8a4b0203ebc791bdd14bbf120523b62ab7 Mon Sep 17 00:00:00 2001 From: danpros Date: Wed, 29 Nov 2023 20:19:00 +0700 Subject: [PATCH] Update htmly.php --- system/htmly.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/system/htmly.php b/system/htmly.php index 08ce25b..6349f9e 100644 --- a/system/htmly.php +++ b/system/htmly.php @@ -1013,11 +1013,11 @@ get('/admin/scheduled', function () { if (empty($posts) || $page < 1) { render('scheduled', array( - 'title' => 'Scheduled posts' . ' - ' . blog_title(), + 'title' => i18n('Scheduled_posts') . ' - ' . blog_title(), 'description' => strip_tags(blog_description()), 'canonical' => site_url(), 'page' => $page, - 'heading' => 'Scheduled posts', + 'heading' => i18n('Scheduled_posts'), 'posts' => null, 'about' => $author->about, 'name' => $author->name, @@ -1031,10 +1031,10 @@ get('/admin/scheduled', function () { } render('scheduled', array( - 'title' => 'Scheduled posts' . ' - ' . blog_title(), + 'title' => i18n('Scheduled_posts') . ' - ' . blog_title(), 'description' => strip_tags(blog_description()), 'canonical' => site_url(), - 'heading' => 'Scheduled posts', + 'heading' => i18n('Scheduled_posts'), 'page' => $page, 'posts' => $posts, 'about' => $author->about,