Editor: Combine Date template description translations.

Combine the 2 translatable strings into 1 string. Why? The example URL does not require a separate translation. Combining makes the string easier to view in context.

Follow-up to [55500].

Props SergeyBiryukov.
See #57892.
Built from https://develop.svn.wordpress.org/trunk@55501


git-svn-id: http://core.svn.wordpress.org/trunk@55033 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
hellofromTonya 2023-03-09 16:55:20 +00:00
parent 230a23206d
commit 8031a399be
2 changed files with 2 additions and 6 deletions

View File

@ -155,11 +155,7 @@ function get_default_block_template_types() {
),
'date' => array(
'title' => _x( 'Date', 'Template name' ),
/* translators: %s: Example URL. */
'description' => sprintf(
__( 'Displays a post archive when a specific date is visited (e.g., %s).' ),
__( 'example.com/2023/' )
),
'description' => __( 'Displays a post archive when a specific date is visited (e.g., example.com/2023/).' ),
),
'tag' => array(
'title' => _x( 'Tag', 'Template name' ),

View File

@ -16,7 +16,7 @@
*
* @global string $wp_version
*/
$wp_version = '6.2-beta5-55500';
$wp_version = '6.2-beta5-55501';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.