From 5268a77a802e75f7046c54379203a8f93ba59a21 Mon Sep 17 00:00:00 2001 From: Dominik Schilling Date: Sat, 9 May 2015 19:18:27 +0000 Subject: [PATCH] Sites List Table: Replace context with a translators comment for the site name and tagline. props ramiy. fixes #31849. Built from https://develop.svn.wordpress.org/trunk@32472 git-svn-id: http://core.svn.wordpress.org/trunk@32442 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/class-wp-ms-sites-list-table.php | 3 ++- wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/wp-admin/includes/class-wp-ms-sites-list-table.php b/wp-admin/includes/class-wp-ms-sites-list-table.php index 54a08f9cbe..0fa5b44210 100644 --- a/wp-admin/includes/class-wp-ms-sites-list-table.php +++ b/wp-admin/includes/class-wp-ms-sites-list-table.php @@ -265,7 +265,8 @@ class WP_MS_Sites_List_Table extends WP_List_Table { ' . sprintf( _x( '%1$s – %2$s', '%1$s: site name. %2$s: site tagline.' ), get_option( 'blogname' ), get_option( 'blogdescription ' ) ) . '

'; + /* translators: 1: site name, 2: site tagline. */ + echo '

' . sprintf( __( '%1$s – %2$s' ), get_option( 'blogname' ), get_option( 'blogdescription ' ) ) . '

'; restore_current_blog(); } diff --git a/wp-includes/version.php b/wp-includes/version.php index c03a3918ab..a20750ea3b 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.3-alpha-32471'; +$wp_version = '4.3-alpha-32472'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.