From 342a473e065e2bcc6d1f6b7340c633f34d6dcc38 Mon Sep 17 00:00:00 2001 From: Jb Audras Date: Tue, 7 Jun 2022 05:28:08 +0000 Subject: [PATCH] Text Changes: Improve consistency of admin error notices in `wp-admin/options.php`. This changeset replaces Error: with Error:, for better consistency. Follow-up to [53458]. Fixes #50785. git-svn-id: https://develop.svn.wordpress.org/trunk@53476 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/options.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-admin/options.php b/src/wp-admin/options.php index d63b10eb4f..4e6ecbeb64 100644 --- a/src/wp-admin/options.php +++ b/src/wp-admin/options.php @@ -245,7 +245,7 @@ if ( 'update' === $action ) { // We are saving settings sent from a settings pag wp_die( sprintf( /* translators: %s: The options page name. */ - __( 'Error: Options page %s not found in the allowed options list.' ), + __( 'Error: Options page %s not found in the allowed options list.' ), '' . esc_html( $option_page ) . '' ) );