diff --git a/src/wp-admin/includes/class-wp-site-health.php b/src/wp-admin/includes/class-wp-site-health.php index 2ddfaadc4b39d..6dee7ab524886 100644 --- a/src/wp-admin/includes/class-wp-site-health.php +++ b/src/wp-admin/includes/class-wp-site-health.php @@ -2759,20 +2759,20 @@ public function get_test_autoloaded_options() { */ public function get_test_search_engine_visibility() { $result = array( - 'label' => __( 'Search engine indexing is enabled.', 'default' ), + 'label' => __( 'Search engine indexing is enabled.' ), 'status' => 'good', 'badge' => array( - 'label' => __( 'Privacy', 'default' ), + 'label' => __( 'Privacy' ), 'color' => 'blue', ), 'description' => sprintf( '
%s
', - __( 'Search engines can crawl and index your site. No action needed.', 'default' ) + __( 'Search engines can crawl and index your site. No action needed.' ) ), 'actions' => sprintf( '', esc_url( admin_url( 'options-reading.php#blog_public' ) ), - __( 'Review your visibility settings', 'default' ) + __( 'Review your visibility settings' ) ), 'test' => 'search_engine_visibility', ); @@ -2780,11 +2780,11 @@ public function get_test_search_engine_visibility() { // If indexing is discouraged, flip to “recommended”: if ( ! get_option( 'blog_public' ) ) { $result['status'] = 'recommended'; - $result['label'] = __( 'Search engines are discouraged from indexing this site.', 'default' ); + $result['label'] = __( 'Search engines are discouraged from indexing this site.' ); $result['badge']['color'] = 'blue'; $result['description'] = sprintf( '%s
', - __( 'Your site is hidden from search engines. Consider enabling indexing if this is a public site.', 'default' ) + __( 'Your site is hidden from search engines. Consider enabling indexing if this is a public site.' ) ); } diff --git a/src/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php b/src/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php index 6b1d44d440247..5599af4689979 100644 --- a/src/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php +++ b/src/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php @@ -95,7 +95,7 @@ public function register_routes() { 'force' => array( 'type' => 'boolean', 'default' => false, - 'description' => __( 'Whether to bypass Trash and force deletion.', 'default' ), + 'description' => __( 'Whether to bypass Trash and force deletion.' ), ), ), ), @@ -510,7 +510,7 @@ public function get_item_schema() { // Base properties for every Post. 'properties' => array( 'id' => array( - 'description' => __( 'Unique identifier for the post.', 'default' ), + 'description' => __( 'Unique identifier for the post.' ), 'type' => 'integer', 'context' => array( 'view', 'edit', 'embed' ), 'readonly' => true, @@ -771,7 +771,7 @@ public function get_create_params() { protected function get_parent_font_family_post( $font_family_id ) { $error = new WP_Error( 'rest_post_invalid_parent', - __( 'Invalid post parent ID.', 'default' ), + __( 'Invalid post parent ID.' ), array( 'status' => 404 ) ); diff --git a/src/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php b/src/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php index a99a885d3945c..7be62616df194 100644 --- a/src/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php +++ b/src/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php @@ -298,7 +298,7 @@ public function get_item_schema() { // Base properties for every Post. 'properties' => array( 'id' => array( - 'description' => __( 'Unique identifier for the post.', 'default' ), + 'description' => __( 'Unique identifier for the post.' ), 'type' => 'integer', 'context' => array( 'view', 'edit', 'embed' ), 'readonly' => true,