From 7e26ee2e3c8e61545a0df71d3bb6f1fc24a5ffd1 Mon Sep 17 00:00:00 2001
From: Drew Jaynes
Date: Fri, 9 Oct 2015 15:43:27 +0000
Subject: [PATCH] Install: Match existing tonal style in setup-config.php by
converting strings containing 'do not' and 'does not' to instead use
contractions.
The 'do not' is converted to "don't" because "you" is third-person plural, and 'does not' is converted to "doesn't" because `localhost` is third-person singular. While both are "negative" contractions, we often write this way in WordPress to provide a friendlier tone. That's your English grammar lesson for the day.
Props ankit-k-gupta, iamfriendly.
Fixes #30317.
Built from https://develop.svn.wordpress.org/trunk@34987
git-svn-id: http://core.svn.wordpress.org/trunk@34952 1a063a9b-81f0-0310-95a4-ce76da25c4cd
---
wp-admin/setup-config.php | 4 ++--
wp-includes/version.php | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/wp-admin/setup-config.php b/wp-admin/setup-config.php
index c24dfbee89..01498af28c 100644
--- a/wp-admin/setup-config.php
+++ b/wp-admin/setup-config.php
@@ -143,7 +143,7 @@ switch($step) {
wp-config-sample.php in a text editor, fill in your information, and save it as wp-config.php." ); ?>
We got it." ); ?>
-
+
-
localhost does not work.' ); ?>
+
localhost doesn’t work.' ); ?>
diff --git a/wp-includes/version.php b/wp-includes/version.php
index 9148ea256e..64bea40ab9 100644
--- a/wp-includes/version.php
+++ b/wp-includes/version.php
@@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
-$wp_version = '4.4-alpha-34986';
+$wp_version = '4.4-alpha-34987';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.