From af9feb76ed92cb01fa0771b3de992760193ccc27 Mon Sep 17 00:00:00 2001 From: Kurt Zenisek Date: Wed, 22 Jul 2020 11:17:19 -0500 Subject: [PATCH] Update wording. The serverOffline message was being shown even though the site was online & working perfectly fine while it was an issue with the client's connection (while they weren't necessarily considered offline.) --- wp-includes/template.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/template.php b/wp-includes/template.php index fea32b142..e36bbdd74 100644 --- a/wp-includes/template.php +++ b/wp-includes/template.php @@ -144,7 +144,7 @@ function wp_service_worker_get_error_messages() { 'wp_service_worker_error_messages', array( 'clientOffline' => __( 'It seems you are offline. Please check your internet connection and try again.', 'pwa' ), - 'serverOffline' => __( 'The server appears to be down. Please try again later.', 'pwa' ), + 'serverOffline' => __( 'The server appears to be down, or your connection isn\'t working as expected. Please try again later.', 'pwa' ), 'error' => __( 'Something prevented the page from being rendered. Please try again.', 'pwa' ), 'comment' => __( 'Your comment will be submitted once you are back online!', 'pwa' ), )