From 9dfe713b5a2a5209cba5025d8e0ebad82615fc99 Mon Sep 17 00:00:00 2001 From: ryan Date: Thu, 3 May 2012 22:00:25 +0000 Subject: [PATCH] Don't concatenate translated strings. see #20518 git-svn-id: http://core.svn.wordpress.org/trunk@20719 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/custom-header.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-admin/custom-header.php b/wp-admin/custom-header.php index 3318c028c..7b59453af 100644 --- a/wp-admin/custom-header.php +++ b/wp-admin/custom-header.php @@ -126,7 +126,7 @@ class Custom_Image_Header { 'id' => 'set-header-text', 'title' => __('Header Text'), 'content' => - '

' . sprintf( '%1$s %2$s %3$s', __( 'For most themes, the header text is your Site Title and Tagline, as defined in the'), __( 'General Settings' ), __( 'section.' ) ) . '

' . + '

' . sprintf( __( 'For most themes, the header text is your Site Title and Tagline, as defined in the General Settings section.' ), admin_url( 'options-general.php' ) ) . '

' . '

' . __( 'In the Header Text section of this page, you can choose whether to display this text or hide it. You can also choose a color for the text by typing in a legitimate HTML hex value (eg: “#ff0000” for red) or by clicking “Select a Color” and dialing in a color using the color picker.') . '

' . '

' . __( 'Don’t forget to Save Changes when you’re done!') . '

' ) );