Changeset 6878 for sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-main/functions.php
- Timestamp:
- 03/15/2018 04:42:32 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-main/functions.php
r6869 r6878 9 9 10 10 namespace WordPressdotorg\MainTheme; 11 12 function ___( $arg ) { return $arg; }13 function _esc_html__( $arg ) { return $arg; }14 function _esc_html_e( $arg ) { echo $arg; }15 11 16 12 /** … … 79 75 'trunk' => number_format( WP_CORE_STABLE_BRANCH + 0.1, 1 ), /* trunk */ 80 76 'beta' => number_format( WP_CORE_STABLE_BRANCH + 0.2, 1 ), /* trunk w/ beta-tester plugin */ 81 'wpVersions' => __ _( 'WordPress Version', 'wporg' ),82 'phpVersions' => __ _( 'PHP Versions', 'wporg' ),83 'mysqlVersions' => __ _( 'MySQL Version', 'wporg' ),84 'locales' => __ _( 'Locales', 'wporg' ),77 'wpVersions' => __( 'WordPress Version', 'wporg' ), 78 'phpVersions' => __( 'PHP Versions', 'wporg' ), 79 'mysqlVersions' => __( 'MySQL Version', 'wporg' ), 80 'locales' => __( 'Locales', 'wporg' ), 85 81 ] ); 86 82 }
Note: See TracChangeset
for help on using the changeset viewer.