From 8217b0f2f7cc2e7829632d40ea452115cb861e7d Mon Sep 17 00:00:00 2001 From: Konstantin Obenland Date: Tue, 30 Jun 2015 19:23:25 +0000 Subject: [PATCH] Twenty Fifteen: Add missing textdomain. Props pavelevap. See #32001. Built from https://develop.svn.wordpress.org/trunk@33005 git-svn-id: http://core.svn.wordpress.org/trunk@32976 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-content/themes/twentyfifteen/inc/template-tags.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-content/themes/twentyfifteen/inc/template-tags.php b/wp-content/themes/twentyfifteen/inc/template-tags.php index 57eaba62a1..1baca524ad 100644 --- a/wp-content/themes/twentyfifteen/inc/template-tags.php +++ b/wp-content/themes/twentyfifteen/inc/template-tags.php @@ -120,7 +120,7 @@ function twentyfifteen_entry_meta() { if ( ! is_single() && ! post_password_required() && ( comments_open() || get_comments_number() ) ) { echo ''; /* translators: %s: post title */ - comments_popup_link( sprintf( __( 'Leave a comment on %s' ), get_the_title() ) ); + comments_popup_link( sprintf( __( 'Leave a comment on %s', 'twentyfifteen' ), get_the_title() ) ); echo ''; } } diff --git a/wp-includes/version.php b/wp-includes/version.php index 10a936f8c0..e4e5e05cef 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.3-alpha-33004'; +$wp_version = '4.3-alpha-33005'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.