From 57260a27b8ac4a286ad32e4d7810d4d432948ab4 Mon Sep 17 00:00:00 2001 From: Torsten Landsiedel Date: Sun, 13 Aug 2023 19:56:55 +0200 Subject: [PATCH] Fix copy text for robots.txt viewer (#464) --- HealthCheck/Tools/class-health-check-robotstxt.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HealthCheck/Tools/class-health-check-robotstxt.php b/HealthCheck/Tools/class-health-check-robotstxt.php index d85d49c..e5e8102 100644 --- a/HealthCheck/Tools/class-health-check-robotstxt.php +++ b/HealthCheck/Tools/class-health-check-robotstxt.php @@ -18,7 +18,7 @@ class Health_Check_Robotstxt extends Health_Check_Tool { public function __construct() { $this->label = __( 'robots.txt Viewer', 'health-check' ); - $this->description = __( 'The robots.txt file tells search engines which folders are allowed to crawl and which not. WordPress generates a virtual files if there is no physical file. If there is a non-virtual file, the content is shown here.', 'health-check' ); + $this->description = __( 'The robots.txt file tells search engines which directories are allowed to be crawled and which not. WordPress generates a virtual file if there is no physical file. If there is a non-virtual file, the content will be displayed here.', 'health-check' ); parent::__construct(); }