From a271f989522ab3ef15dad899fd904e29ab2563e9 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Thu, 30 Jan 2020 19:15:19 +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. git-svn-id: https://develop.svn.wordpress.org/trunk@47134 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/theme.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/theme.php b/src/wp-includes/theme.php index 1820769691..fd1b93fbaa 100644 --- a/src/wp-includes/theme.php +++ b/src/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,