From 69f1a2e34f2f6584033e6b314f575655090477c9 Mon Sep 17 00:00:00 2001 From: olatechpro Date: Wed, 3 Apr 2024 15:48:12 +0100 Subject: [PATCH] Small text change for Filters and Columns #1572 --- modules/content-overview/content-overview.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/content-overview/content-overview.php b/modules/content-overview/content-overview.php index 793f708c..d443782c 100644 --- a/modules/content-overview/content-overview.php +++ b/modules/content-overview/content-overview.php @@ -1126,7 +1126,7 @@ public function get_content_overview_form_columns() { // custom columns $columns['custom'] = [ 'title' => esc_html__('Custom Columns', 'publishpress'), - 'message' => esc_html__('You do not have any custom column. Use this area to add new custom column', 'publishpress'), + 'message' => esc_html__('Click the "Add New" button to create new columns.', 'publishpress'), 'columns' => is_array($content_overview_datas['content_overview_custom_columns']) ? $content_overview_datas['content_overview_custom_columns'] : [] ]; @@ -1188,7 +1188,7 @@ public function get_content_overview_form_filters() { // custom filters $filters['custom'] = [ 'title' => esc_html__('Custom filters', 'publishpress'), - 'message' => esc_html__('You do not have any custom filter. Use this area to add new custom filter', 'publishpress'), + 'message' => esc_html__('Click the "Add New" button to create new filters.', 'publishpress'), 'filters' => $content_overview_datas['content_overview_custom_filters'] ];