Making WordPress.org


Ignore:
Timestamp:
03/15/2018 04:42:32 AM (7 years ago)
Author:
dd32
Message:

Main: About: Mark the strings as translatable.
Some strings are deliberately not translated right now.

See #3046.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-main/functions.php

    r6869 r6878  
    99
    1010namespace WordPressdotorg\MainTheme;
    11 
    12 function ___( $arg ) { return $arg; }
    13 function _esc_html__( $arg ) { return $arg; }
    14 function _esc_html_e( $arg ) { echo $arg; }
    1511
    1612/**
     
    7975            'trunk'         => number_format( WP_CORE_STABLE_BRANCH + 0.1, 1 ), /* trunk */
    8076            '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' ),
    8581        ] );
    8682    }
Note: See TracChangeset for help on using the changeset viewer.