diff --git a/wp-includes/admin-bar.php b/wp-includes/admin-bar.php index ca26994acc..d3aec38341 100644 --- a/wp-includes/admin-bar.php +++ b/wp-includes/admin-bar.php @@ -613,7 +613,7 @@ function wp_admin_bar_my_sites_menu( $wp_admin_bar ) { array( 'parent' => $menu_id, 'id' => $menu_id . '-n', - 'title' => __( 'New Post' ), + 'title' => get_post_type_object( 'post' )->labels->new_item, 'href' => admin_url( 'post-new.php' ), ) ); diff --git a/wp-includes/version.php b/wp-includes/version.php index f3f7357592..84bc48b6d8 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '5.0-alpha-43589'; +$wp_version = '5.0-alpha-43590'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.