From b6c2f11c5444743cdd6b2053e1622a604175d535 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Helen=20Hou-Sand=C3=AD?= Date: Wed, 30 Nov 2016 05:48:44 +0000 Subject: [PATCH] Twenty Seventeen: Add textdomain for starter content attachment titles. fixes #38981. Built from https://develop.svn.wordpress.org/trunk@39373 git-svn-id: http://core.svn.wordpress.org/trunk@39313 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-content/themes/twentyseventeen/functions.php | 6 +++--- wp-includes/version.php | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/wp-content/themes/twentyseventeen/functions.php b/wp-content/themes/twentyseventeen/functions.php index e1c4e06501..30fdfccb94 100644 --- a/wp-content/themes/twentyseventeen/functions.php +++ b/wp-content/themes/twentyseventeen/functions.php @@ -139,15 +139,15 @@ function twentyseventeen_setup() { 'attachments' => array( 'image-espresso' => array( - 'post_title' => _x( 'Espresso', 'Theme starter content' ), + 'post_title' => _x( 'Espresso', 'Theme starter content', 'twentyseventeen' ), 'file' => 'assets/images/espresso.jpg', ), 'image-sandwich' => array( - 'post_title' => _x( 'Sandwich', 'Theme starter content' ), + 'post_title' => _x( 'Sandwich', 'Theme starter content', 'twentyseventeen' ), 'file' => 'assets/images/sandwich.jpg', ), 'image-coffee' => array( - 'post_title' => _x( 'Coffee', 'Theme starter content' ), + 'post_title' => _x( 'Coffee', 'Theme starter content', 'twentyseventeen' ), 'file' => 'assets/images/coffee.jpg', ), ), diff --git a/wp-includes/version.php b/wp-includes/version.php index 50e3c9b0a8..e6afb3db34 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.8-alpha-39371'; +$wp_version = '4.8-alpha-39373'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.