From afcab7eb9cf7f2d8575efbbe36c48d981dd6bc64 Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Wed, 2 Oct 2013 17:49:09 +0000 Subject: [PATCH] End sentences in periods. see #24982. Built from https://develop.svn.wordpress.org/trunk@25657 git-svn-id: http://core.svn.wordpress.org/trunk@25574 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/install.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/install.php b/wp-admin/install.php index 15216e4600..0b6ac2edb3 100644 --- a/wp-admin/install.php +++ b/wp-admin/install.php @@ -206,7 +206,7 @@ switch($step) { $error = true; } elseif ( $admin_password != $admin_password_check ) { // TODO: poka-yoke - display_setup_form( __( 'Your passwords do not match. Please try again' ) ); + display_setup_form( __( 'Your passwords do not match. Please try again.' ) ); $error = true; } else if ( empty( $admin_email ) ) { // TODO: poka-yoke @@ -214,7 +214,7 @@ switch($step) { $error = true; } elseif ( ! is_email( $admin_email ) ) { // TODO: poka-yoke - display_setup_form( __( 'Sorry, that isn’t a valid email address. Email addresses look like: username@example.com' ) ); + display_setup_form( __( 'Sorry, that isn’t a valid email address. Email addresses look like username@example.com.' ) ); $error = true; }