Add missing periods to strings introduced in [30333].

props DrewAPicture.
see #30264.
Built from https://develop.svn.wordpress.org/trunk@30596


git-svn-id: http://core.svn.wordpress.org/trunk@30586 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2014-11-28 06:26:22 +00:00
parent a899bbaee7
commit 0a8b72866e
2 changed files with 3 additions and 3 deletions

View File

@ -2807,11 +2807,11 @@ function wp_ajax_destroy_sessions() {
*/
if ( is_string( $keep ) ) {
$sessions->destroy_others( $keep );
$message = __( 'You are now logged out everywhere else' );
$message = __( 'You are now logged out everywhere else.' );
} else {
$sessions->destroy_all();
/* translators: 1: User's display name. */
$message = sprintf( __( '%s has been logged out' ), $user->display_name );
$message = sprintf( __( '%s has been logged out.' ), $user->display_name );
}
wp_send_json_success( array(

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.1-beta2-30595';
$wp_version = '4.1-beta2-30596';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.