Improve the "sessions" section strings.
fixes #33082 props johnjamesjacoby git-svn-id: https://develop.svn.wordpress.org/trunk@33368 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
1a8b292ab6
commit
bc7ad4b965
@ -466,7 +466,7 @@ if ( $show_password_fields ) :
|
|||||||
<th><label for="pass1"><?php _e( 'New Password' ); ?></label></th>
|
<th><label for="pass1"><?php _e( 'New Password' ); ?></label></th>
|
||||||
<td>
|
<td>
|
||||||
<input class="hidden" value=" " /><!-- #24364 workaround -->
|
<input class="hidden" value=" " /><!-- #24364 workaround -->
|
||||||
<button type="button" class="button button-secondary wp-generate-pw hide-if-no-js"><?php _e( 'Generate new password' ); ?></button>
|
<button type="button" class="button button-secondary wp-generate-pw hide-if-no-js"><?php _e( 'Generate Password' ); ?></button>
|
||||||
<div class="wp-pwd hide-if-js">
|
<div class="wp-pwd hide-if-js">
|
||||||
<input type="password" name="pass1" id="pass1" class="regular-text" value="" autocomplete="off" data-pw="<?php echo esc_attr( wp_generate_password( 24 ) ); ?>" aria-describedby="pass-strength-result" />
|
<input type="password" name="pass1" id="pass1" class="regular-text" value="" autocomplete="off" data-pw="<?php echo esc_attr( wp_generate_password( 24 ) ); ?>" aria-describedby="pass-strength-result" />
|
||||||
<button type="button" class="button button-secondary wp-hide-pw hide-if-no-js" data-toggle="0" aria-label="<?php esc_attr_e( 'Hide password' ); ?>">
|
<button type="button" class="button button-secondary wp-hide-pw hide-if-no-js" data-toggle="0" aria-label="<?php esc_attr_e( 'Hide password' ); ?>">
|
||||||
@ -501,9 +501,9 @@ if ( $show_password_fields ) :
|
|||||||
<?php
|
<?php
|
||||||
if ( IS_PROFILE_PAGE && count( $sessions->get_all() ) === 1 ) : ?>
|
if ( IS_PROFILE_PAGE && count( $sessions->get_all() ) === 1 ) : ?>
|
||||||
<tr class="user-sessions-wrap hide-if-no-js">
|
<tr class="user-sessions-wrap hide-if-no-js">
|
||||||
<th> </th>
|
<th><?php _e( 'Sessions' ); ?></th>
|
||||||
<td aria-live="assertive">
|
<td aria-live="assertive">
|
||||||
<div class="destroy-sessions"><button type="button" disabled class="button button-secondary"><?php _e( 'Log Out of All Other Sessions' ); ?></button></div>
|
<div class="destroy-sessions"><button type="button" disabled class="button button-secondary"><?php _e( 'Log Out Everywhere Else' ); ?></button></div>
|
||||||
<p class="description">
|
<p class="description">
|
||||||
<?php _e( 'You are only logged in at this location.' ); ?>
|
<?php _e( 'You are only logged in at this location.' ); ?>
|
||||||
</p>
|
</p>
|
||||||
@ -511,23 +511,23 @@ if ( IS_PROFILE_PAGE && count( $sessions->get_all() ) === 1 ) : ?>
|
|||||||
</tr>
|
</tr>
|
||||||
<?php elseif ( IS_PROFILE_PAGE && count( $sessions->get_all() ) > 1 ) : ?>
|
<?php elseif ( IS_PROFILE_PAGE && count( $sessions->get_all() ) > 1 ) : ?>
|
||||||
<tr class="user-sessions-wrap hide-if-no-js">
|
<tr class="user-sessions-wrap hide-if-no-js">
|
||||||
<th> </th>
|
<th><?php _e( 'Sessions' ); ?></th>
|
||||||
<td aria-live="assertive">
|
<td aria-live="assertive">
|
||||||
<div class="destroy-sessions"><button type="button" class="button button-secondary" id="destroy-sessions"><?php _e( 'Log Out of All Other Sessions' ); ?></button></div>
|
<div class="destroy-sessions"><button type="button" class="button button-secondary" id="destroy-sessions"><?php _e( 'Log Out Everywhere Else' ); ?></button></div>
|
||||||
<p class="description">
|
<p class="description">
|
||||||
<?php _e( 'Left your account logged in at a public computer? Lost your phone? This will log you out everywhere except your current browser.' ); ?>
|
<?php _e( 'Did you lose your phone or leave your account logged in at a public computer? You can log out everywhere else, and stay logged in here.' ); ?>
|
||||||
</p>
|
</p>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<?php elseif ( ! IS_PROFILE_PAGE && $sessions->get_all() ) : ?>
|
<?php elseif ( ! IS_PROFILE_PAGE && $sessions->get_all() ) : ?>
|
||||||
<tr class="user-sessions-wrap hide-if-no-js">
|
<tr class="user-sessions-wrap hide-if-no-js">
|
||||||
<th> </th>
|
<th><?php _e( 'Sessions' ); ?></th>
|
||||||
<td>
|
<td>
|
||||||
<p><button type="button" class="button button-secondary" id="destroy-sessions"><?php _e( 'Log Out of All Sessions' ); ?></button></p>
|
<p><button type="button" class="button button-secondary" id="destroy-sessions"><?php _e( 'Log Out Everywhere' ); ?></button></p>
|
||||||
<p class="description">
|
<p class="description">
|
||||||
<?php
|
<?php
|
||||||
/* translators: 1: User's display name. */
|
/* translators: 1: User's display name. */
|
||||||
printf( __( 'Log %s out of all sessions' ), $profileuser->display_name );
|
printf( __( 'Log %s out of all locations.' ), $profileuser->display_name );
|
||||||
?>
|
?>
|
||||||
</p>
|
</p>
|
||||||
</td>
|
</td>
|
||||||
|
Loading…
Reference in New Issue
Block a user