From 29fca1ba49c39311c7bfcb427290434c17e42bfd Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Sun, 18 Sep 2011 21:45:23 +0000 Subject: [PATCH] Don't burden translators with a few strings we'll be changing. git-svn-id: https://develop.svn.wordpress.org/trunk@18708 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/includes/template.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-admin/includes/template.php b/wp-admin/includes/template.php index 1803253908..ea1adb0b2c 100644 --- a/wp-admin/includes/template.php +++ b/wp-admin/includes/template.php @@ -2244,9 +2244,9 @@ function wp_pointer_enqueue( $hook_suffix ) { add_action( 'admin_enqueue_scripts', 'wp_pointer_enqueue' ); function _wp_pointer_print_admin_bar() { - $pointer_content = '

' . __('The admin bar has been updated in WordPress 3.3.') . '

'; - $pointer_content .= '

' . sprintf( __('Have some feedback? Visit this ticket.'), 'http://core.trac.wordpress.org/ticket/18197' ) . '

'; - $pointer_content .= '

' . sprintf( __('P.S. You are looking at a new admin pointer. Chime in here.'), 'http://core.trac.wordpress.org/ticket/18693' ) . '

'; + $pointer_content = '

' . ('The admin bar has been updated in WordPress 3.3.') . '

'; + $pointer_content .= '

' . sprintf( ('Have some feedback? Visit this ticket.'), 'http://core.trac.wordpress.org/ticket/18197' ) . '

'; + $pointer_content .= '

' . sprintf( ('P.S. You are looking at a new admin pointer. Chime in here.'), 'http://core.trac.wordpress.org/ticket/18693' ) . '

'; ?>