From f606d335f8a8be03c5b575317fa3c1488927789e Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Wed, 24 Feb 2016 01:09:25 +0000 Subject: [PATCH] I18N: Add missing periods to two strings in `wp-admin/network/sites.php` Props ramiy. Fixes #35720. Built from https://develop.svn.wordpress.org/trunk@36664 git-svn-id: http://core.svn.wordpress.org/trunk@36631 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/network/sites.php | 4 ++-- wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-admin/network/sites.php b/wp-admin/network/sites.php index a87dfd2b21..ba41b645aa 100644 --- a/wp-admin/network/sites.php +++ b/wp-admin/network/sites.php @@ -59,8 +59,8 @@ if ( isset( $_GET['action'] ) ) { // A list of valid actions and their associated messaging for confirmation output. $manage_actions = array( - 'activateblog' => __( 'You are about to activate the site %s' ), - 'deactivateblog' => __( 'You are about to deactivate the site %s' ), + 'activateblog' => __( 'You are about to activate the site %s.' ), + 'deactivateblog' => __( 'You are about to deactivate the site %s.' ), 'unarchiveblog' => __( 'You are about to unarchive the site %s.' ), 'archiveblog' => __( 'You are about to archive the site %s.' ), 'unspamblog' => __( 'You are about to unspam the site %s.' ), diff --git a/wp-includes/version.php b/wp-includes/version.php index 5c192f1f52..4e296521db 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.5-alpha-36663'; +$wp_version = '4.5-alpha-36664'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.