I18N: Separate two "About" strings with different context.

Props desrosj, XpertOne, Nao.
Fixes #44139.

git-svn-id: https://develop.svn.wordpress.org/trunk@43527 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2018-07-24 15:03:19 +00:00
parent 335b69cedc
commit 6c32fcd011
2 changed files with 4 additions and 2 deletions

View File

@ -11,7 +11,8 @@ require_once( dirname( __FILE__ ) . '/admin.php' );
wp_enqueue_script( 'underscore' ); wp_enqueue_script( 'underscore' );
$title = __( 'About' ); /* translators: Page title of the About WordPress page in the admin. */
$title = _x( 'About', 'page title' );
list( $display_version ) = explode( '-', get_bloginfo( 'version' ) ); list( $display_version ) = explode( '-', get_bloginfo( 'version' ) );

View File

@ -2088,7 +2088,8 @@ function wp_privacy_generate_personal_data_export_file( $request_id ) {
// First, build an "About" group on the fly for this report. // First, build an "About" group on the fly for this report.
$about_group = array( $about_group = array(
'group_label' => __( 'About' ), /* translators: Header for the About section in a personal data export. */
'group_label' => _x( 'About', 'personal data group label' ),
'items' => array( 'items' => array(
'about-1' => array( 'about-1' => array(
array( array(