From 7755927e7d2e8ab75ea1872b4cd82bbee3dbb402 Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Wed, 2 Oct 2013 17:48:55 +0000 Subject: [PATCH] End sentences in periods. see #24982. git-svn-id: https://develop.svn.wordpress.org/trunk@25657 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/install.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wp-admin/install.php b/src/wp-admin/install.php index 15216e4600..0b6ac2edb3 100644 --- a/src/wp-admin/install.php +++ b/src/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; }