From 3df6a4a9dab258ca172443c475bde54d0885ce37 Mon Sep 17 00:00:00 2001
From: "Dominik Schilling (ocean90)"
Date: Sat, 9 May 2015 19:18:00 +0000
Subject: [PATCH] Sites List Table: Replace context with a translators comment
for the site name and tagline.
props ramiy.
fixes #31849.
git-svn-id: https://develop.svn.wordpress.org/trunk@32472 602fd350-edb4-49c9-b593-d223f7449a82
---
src/wp-admin/includes/class-wp-ms-sites-list-table.php | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/wp-admin/includes/class-wp-ms-sites-list-table.php b/src/wp-admin/includes/class-wp-ms-sites-list-table.php
index 54a08f9cbe..0fa5b44210 100644
--- a/src/wp-admin/includes/class-wp-ms-sites-list-table.php
+++ b/src/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();
}