wp/wp-includes/admin-bar.php
changeset 22 8c2e4d02f4ef
parent 21 48c4eec2b7e6
--- a/wp/wp-includes/admin-bar.php	Fri Sep 05 18:40:08 2025 +0200
+++ b/wp/wp-includes/admin-bar.php	Fri Sep 05 18:52:52 2025 +0200
@@ -205,7 +205,7 @@
 			'parent' => 'wp-logo-external',
 			'id'     => 'learn',
 			'title'  => __( 'Learn WordPress' ),
-			'href'   => 'https://learn.wordpress.org/',
+			'href'   => __( 'https://learn.wordpress.org/' ),
 		)
 	);
 
@@ -453,7 +453,7 @@
 }
 
 /**
- * Adds the "Edit site" link to the Toolbar.
+ * Adds the "Edit Site" link to the Toolbar.
  *
  * @since 5.9.0
  * @since 6.3.0 Added `$_wp_current_template_id` global for editing of current template directly from the admin bar.
@@ -479,7 +479,7 @@
 	$wp_admin_bar->add_node(
 		array(
 			'id'    => 'site-editor',
-			'title' => __( 'Edit site' ),
+			'title' => __( 'Edit Site' ),
 			'href'  => add_query_arg(
 				array(
 					'postType' => 'wp_template',