From 46a08859d074fb1417954d0cad600a871cc72c72 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Thu, 30 Jan 2020 19:17:06 +0000 Subject: [PATCH] Themes: Replace `—` with `–` as a separator between Monday and Friday in theme starter content. The `ndash` standardly is the "through" indicator for showing inclusive dates and numbers, while the `mdash` is an interruptor and used as an aside. Props mikejdent, garrett-eclipse. Fixes #48286. Built from https://develop.svn.wordpress.org/trunk@47134 git-svn-id: http://core.svn.wordpress.org/trunk@46934 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/theme.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/theme.php b/wp-includes/theme.php index 1820769691..fd1b93fbaa 100644 --- a/wp-includes/theme.php +++ b/wp-includes/theme.php @@ -2058,7 +2058,7 @@ function get_theme_starter_content() { '' . _x( 'Address', 'Theme starter content' ) . "\n", _x( '123 Main Street', 'Theme starter content' ) . "\n" . _x( 'New York, NY 10001', 'Theme starter content' ) . "\n\n", '' . _x( 'Hours', 'Theme starter content' ) . "\n", - _x( 'Monday—Friday: 9:00AM–5:00PM', 'Theme starter content' ) . "\n" . _x( 'Saturday & Sunday: 11:00AM–3:00PM', 'Theme starter content' ), + _x( 'Monday–Friday: 9:00AM–5:00PM', 'Theme starter content' ) . "\n" . _x( 'Saturday & Sunday: 11:00AM–3:00PM', 'Theme starter content' ), ) ), 'filter' => true, diff --git a/wp-includes/version.php b/wp-includes/version.php index a639dd0e91..a1629c36e9 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.4-alpha-47133'; +$wp_version = '5.4-alpha-47134'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.