- Timestamp:
- 07/24/2018 03:03:19 PM (6 years ago)
- Location:
- trunk/src/wp-admin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/about.php
r42814 r43527 12 12 wp_enqueue_script( 'underscore' ); 13 13 14 $title = __( 'About' ); 14 /* translators: Page title of the About WordPress page in the admin. */ 15 $title = _x( 'About', 'page title' ); 15 16 16 17 list( $display_version ) = explode( '-', get_bloginfo( 'version' ) ); -
trunk/src/wp-admin/includes/file.php
r43446 r43527 2089 2089 // First, build an "About" group on the fly for this report. 2090 2090 $about_group = array( 2091 'group_label' => __( 'About' ), 2091 /* translators: Header for the About section in a personal data export. */ 2092 'group_label' => _x( 'About', 'personal data group label' ), 2092 2093 'items' => array( 2093 2094 'about-1' => array(
Note: See TracChangeset
for help on using the changeset viewer.