From e9794649ec4e0fd4ea92d399236a92935c03d0cb Mon Sep 17 00:00:00 2001 From: Seaton Jiang Date: Sat, 8 Feb 2025 17:11:45 +0800 Subject: [PATCH] chore: emphasis on exclusive widgets --- inc/theme-widgets.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/inc/theme-widgets.php b/inc/theme-widgets.php index 34d1c3d..1315caf 100644 --- a/inc/theme-widgets.php +++ b/inc/theme-widgets.php @@ -211,7 +211,7 @@ class widget_ad extends WP_Widget add_action('admin_enqueue_scripts', array($this, 'scripts')); $widget_ops = array( - 'name' => __('图片广告', 'kratos'), + 'name' => __('Kratos - 图片广告', 'kratos'), 'description' => __('显示自定义图片广告的工具', 'kratos'), ); @@ -280,7 +280,7 @@ class widget_about extends WP_Widget add_action('admin_enqueue_scripts', array($this, 'scripts')); $widget_ops = array( - 'name' => __('个人简介', 'kratos'), + 'name' => __('Kratos - 个人简介', 'kratos'), 'description' => __('站长个人简介的展示工具', 'kratos'), ); @@ -349,7 +349,7 @@ class widget_tags extends WP_Widget public function __construct() { $widget_ops = array( - 'name' => __('标签聚合', 'kratos'), + 'name' => __('Kratos - 标签聚合', 'kratos'), 'description' => __('文章标签的展示工具', 'kratos'), ); @@ -417,7 +417,7 @@ class widget_posts extends WP_Widget public function __construct() { $widget_ops = array( - 'name' => __('文章聚合', 'kratos'), + 'name' => __('Kratos - 文章聚合', 'kratos'), 'description' => __('展示最热、随机、最新文章的工具', 'kratos'), ); @@ -508,7 +508,7 @@ class widget_comments extends WP_Widget public function __construct() { $widget_ops = array( - 'name' => __('最近评论', 'kratos'), + 'name' => __('Kratos - 最近评论', 'kratos'), 'description' => __('展示站点最近的评论', 'kratos'), ); @@ -561,7 +561,7 @@ class widget_toc extends WP_Widget add_action('admin_enqueue_scripts', array($this, 'scripts')); $widget_ops = array( - 'name' => __('文章目录', 'kratos'), + 'name' => __('Kratos - 文章目录', 'kratos'), 'description' => __('仅在有目录规则的文章中显示目录的工具', 'kratos'), );