From d9cf3680f3e966b21452e3d456c3156ce84b4815 Mon Sep 17 00:00:00 2001 From: Helen Hou-Sandi Date: Wed, 30 Nov 2016 05:48:52 +0000 Subject: [PATCH] Twenty Seventeen: Add textdomain for starter content attachment titles. fixes #38981 for the 4.7 branch. git-svn-id: https://develop.svn.wordpress.org/branches/4.7@39374 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-content/themes/twentyseventeen/functions.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/wp-content/themes/twentyseventeen/functions.php b/src/wp-content/themes/twentyseventeen/functions.php index e1c4e06501..30fdfccb94 100644 --- a/src/wp-content/themes/twentyseventeen/functions.php +++ b/src/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', ), ),