Make WordPress Core

Changeset 43528 for branches/4.9


Ignore:
Timestamp:
07/24/2018 03:05:42 PM (6 years ago)
Author:
SergeyBiryukov
Message:

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

Props desrosj, XpertOne, Nao.
Merges [43527] to the 4.9 branch.
Fixes #44139.

Location:
branches/4.9
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/4.9

  • branches/4.9/src/wp-admin/about.php

    r43407 r43528  
    1212wp_enqueue_script( 'underscore' );
    1313
    14 $title = __( 'About' );
     14/* translators: Page title of the About WordPress page in the admin. */
     15$title = _x( 'About', 'page title' );
    1516
    1617list( $display_version ) = explode( '-', get_bloginfo( 'version' ) );
  • branches/4.9/src/wp-admin/includes/file.php

    r43459 r43528  
    19521952    // First, build an "About" group on the fly for this report.
    19531953    $about_group = array(
    1954         'group_label' => __( 'About' ),
     1954        /* translators: Header for the About section in a personal data export. */
     1955        'group_label' => _x( 'About', 'personal data group label' ),
    19551956        'items'       => array(
    19561957            'about-1' => array(
Note: See TracChangeset for help on using the changeset viewer.