From 54734b4396fb949b2feda16fd5c00c7093accfaa Mon Sep 17 00:00:00 2001 From: audrasjb Date: Thu, 20 Feb 2025 23:16:20 +0000 Subject: [PATCH] Administration: Capitalize "Edit Site" strings for consistency. This changeset brings more consistency by capitalizing the "Edit Site" strings located in the Toolbar and on the Site Editor screen. Props bronsonquick, sabernhardt, audrasjb, peterwilsoncc, adamsilverstein. Fixes #62971. Built from https://develop.svn.wordpress.org/trunk@59850 git-svn-id: http://core.svn.wordpress.org/trunk@59192 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/site-editor.php | 2 +- wp-includes/admin-bar.php | 4 ++-- wp-includes/version.php | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/wp-admin/site-editor.php b/wp-admin/site-editor.php index a4a3cca276..17797d09e0 100644 --- a/wp-admin/site-editor.php +++ b/wp-admin/site-editor.php @@ -265,7 +265,7 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
-

+

add_node( array( 'id' => 'site-editor', - 'title' => __( 'Edit site' ), + 'title' => __( 'Edit Site' ), 'href' => add_query_arg( array( 'postType' => 'wp_template', diff --git a/wp-includes/version.php b/wp-includes/version.php index 169b231815..61e173895f 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.8-alpha-59849'; +$wp_version = '6.8-alpha-59850'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.