Changeset 6493 for sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-login/register.php
- Timestamp:
- 01/31/2018 11:21:10 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-login/register.php
r5143 r6493 40 40 ?> 41 41 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> 43 43 44 44 <form name="registerform" id="registerform" action="/register" method="post"> 45 45 46 46 <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> 48 48 <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> 50 50 </p> 51 51 <?php … … 61 61 62 62 <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> 64 64 <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> 66 66 </p> 67 67 <?php … … 79 79 <label> 80 80 <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' ); ?> 82 82 </label> 83 83 </p> 84 84 <?php 85 85 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>'; 87 87 } 88 88 ?> 89 89 90 90 <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' ); ?>" /> 92 92 </p> 93 93 … … 95 95 96 96 <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> • 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> • 98 <a href="https://wordpress.org/"><?php _e( 'WordPress.org', 'wporg' ); ?></a> 99 99 100 100 </p>
Note: See TracChangeset
for help on using the changeset viewer.