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
This commit is contained in:
parent
481bbb3128
commit
46a08859d0
|
@ -2058,7 +2058,7 @@ function get_theme_starter_content() {
|
|||
'<strong>' . _x( 'Address', 'Theme starter content' ) . "</strong>\n",
|
||||
_x( '123 Main Street', 'Theme starter content' ) . "\n" . _x( 'New York, NY 10001', 'Theme starter content' ) . "\n\n",
|
||||
'<strong>' . _x( 'Hours', 'Theme starter content' ) . "</strong>\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,
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue