From b5c9418d8849e829cdf8d23cf7e2fb36e7889671 Mon Sep 17 00:00:00 2001 From: Konstantin Obenland Date: Tue, 30 Jun 2015 19:22:10 +0000 Subject: [PATCH] Twenty Fifteen: Add missing textdomain. Props pavelevap. See #32001. git-svn-id: https://develop.svn.wordpress.org/trunk@33005 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-content/themes/twentyfifteen/inc/template-tags.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-content/themes/twentyfifteen/inc/template-tags.php b/src/wp-content/themes/twentyfifteen/inc/template-tags.php index 57eaba62a1..1baca524ad 100644 --- a/src/wp-content/themes/twentyfifteen/inc/template-tags.php +++ b/src/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 ''; } }