I18N: Separate two "About" strings with different context.
Props desrosj, XpertOne, Nao. Fixes #44139. Built from https://develop.svn.wordpress.org/trunk@43527 git-svn-id: http://core.svn.wordpress.org/trunk@43356 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
d68b2b5a2b
commit
76e821e647
|
@ -11,7 +11,8 @@ require_once( dirname( __FILE__ ) . '/admin.php' );
|
|||
|
||||
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' ) );
|
||||
|
||||
|
|
|
@ -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.
|
||||
$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(
|
||||
'about-1' => array(
|
||||
array(
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.0-alpha-43525';
|
||||
$wp_version = '5.0-alpha-43527';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue