Making WordPress.org


Ignore:
Timestamp:
01/31/2018 11:21:10 PM (7 years ago)
Author:
obenland
Message:

Login: Use wporg textdomain for translations.

H/t ocean90.
See [6490], https://i18n.trac.wordpress.org/changeset/135039/.

File:
1 edited

Legend:

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

    r5143 r6493  
    4040?>
    4141
    42 <p class="intro"><?php _e( 'Create a WordPress.org account to start contributing to WordPress, get help in the support forums, or rate and review themes and plugins.', 'wporg-login' ); ?></p>
     42<p class="intro"><?php _e( 'Create a WordPress.org account to start contributing to WordPress, get help in the support forums, or rate and review themes and plugins.', 'wporg' ); ?></p>
    4343
    4444<form name="registerform" id="registerform" action="/register" method="post">
    4545
    4646    <p class="login-username">
    47         <label for="user_login"><?php _e( 'Username', 'wporg-login' ); ?></label>
     47        <label for="user_login"><?php _e( 'Username', 'wporg' ); ?></label>
    4848        <input type="text" name="user_login" id="user_login" class="input <?php if ( $error_user_login ) echo 'error'; ?>" value="<?php echo esc_attr( $user_login ) ?>" size="20" maxlength="60" />
    49         <span class="small"><?php _e( 'Required. Only lower case letters (a-z) and numbers (0-9) are allowed.', 'wporg-login' ); ?></span>
     49        <span class="small"><?php _e( 'Required. Only lower case letters (a-z) and numbers (0-9) are allowed.', 'wporg' ); ?></span>
    5050    </p>
    5151    <?php
     
    6161
    6262    <p class="login-email">
    63         <label for="user_email"><?php _e( 'Email', 'wporg-login' ); ?></label>
     63        <label for="user_email"><?php _e( 'Email', 'wporg' ); ?></label>
    6464        <input type="email" name="user_email" id="user_email" class="input <?php if ( $error_user_email ) echo 'error'; ?>" value="<?php echo esc_attr( $user_email ) ?>" size="20" maxlength="100" />
    65         <span class="small"><?php _e( 'Required. Your password will be emailed here.', 'wporg-login' ); ?></span>
     65        <span class="small"><?php _e( 'Required. Your password will be emailed here.', 'wporg' ); ?></span>
    6666    </p>
    6767    <?php
     
    7979        <label>
    8080            <input name="user_mailinglist" type="checkbox" id="user_mailinglist" value="true" <?php checked( $user_mailinglist, true ); ?>>
    81             <?php _e( 'Subscribe to WordPress Announcements mailing list (a few messages a year)', 'wporg-login' ); ?>
     81            <?php _e( 'Subscribe to WordPress Announcements mailing list (a few messages a year)', 'wporg' ); ?>
    8282        </label>
    8383    </p>
    8484    <?php
    8585        if ( $error_recapcha_status ) {
    86             echo '<div class="message error"><p>' . __( 'Please try again.', 'wporg-login' ) . '</p></div>';
     86            echo '<div class="message error"><p>' . __( 'Please try again.', 'wporg' ) . '</p></div>';
    8787        }
    8888    ?>
    8989
    9090    <p class="login-submit">
    91         <input data-sitekey="<?php echo esc_attr( RECAPTCHA_INVIS_PUBKEY  ); ?>" data-callback='onSubmit' type="submit" name="wp-submit" id="wp-submit" class="g-recaptcha button button-primary" value="<?php esc_attr_e( 'Create Account', 'wporg-login' ); ?>" />
     91        <input data-sitekey="<?php echo esc_attr( RECAPTCHA_INVIS_PUBKEY  ); ?>" data-callback='onSubmit' type="submit" name="wp-submit" id="wp-submit" class="g-recaptcha button button-primary" value="<?php esc_attr_e( 'Create Account', 'wporg' ); ?>" />
    9292    </p>
    9393
     
    9595
    9696<p id="nav">
    97     <a href="/" title="<?php esc_attr_e( 'Already have an account?', 'wporg-login' ); ?>"><?php _e( 'Already have an account?', 'wporg-login' ); ?></a> &nbsp; • &nbsp;
    98     <a href="https://wordpress.org/"><?php _e( 'WordPress.org', 'wporg-login' ); ?></a>
     97    <a href="/" title="<?php esc_attr_e( 'Already have an account?', 'wporg' ); ?>"><?php _e( 'Already have an account?', 'wporg' ); ?></a> &nbsp; • &nbsp;
     98    <a href="https://wordpress.org/"><?php _e( 'WordPress.org', 'wporg' ); ?></a>
    9999
    100100</p>
Note: See TracChangeset for help on using the changeset viewer.