From ddff6fe471934da13a5d1c9a3968f692d61e76d5 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sat, 4 Jul 2015 00:50:25 +0000 Subject: [PATCH] Don't capitalize words in a sentence after comma. props bjornjohansen, netweb. fixes #31927. Built from https://develop.svn.wordpress.org/trunk@33079 git-svn-id: http://core.svn.wordpress.org/trunk@33050 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/network/themes.php | 6 +++--- wp-admin/plugins.php | 4 ++-- wp-includes/theme-compat/comments.php | 4 ++-- wp-includes/version.php | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/wp-admin/network/themes.php b/wp-admin/network/themes.php index d0d4c98368..2b9132f1c7 100644 --- a/wp-admin/network/themes.php +++ b/wp-admin/network/themes.php @@ -182,9 +182,9 @@ if ( $action ) { wp_nonce_field( 'bulk-themes' ); if ( 1 == $themes_to_delete ) { - submit_button( __( 'Yes, Delete this theme' ), 'button', 'submit', false ); + submit_button( __( 'Yes, delete this theme' ), 'button', 'submit', false ); } else { - submit_button( __( 'Yes, Delete these themes' ), 'button', 'submit', false ); + submit_button( __( 'Yes, delete these themes' ), 'button', 'submit', false ); } ?> @@ -192,7 +192,7 @@ if ( $action ) { $referer = wp_get_referer(); ?>
- +

diff --git a/wp-admin/plugins.php b/wp-admin/plugins.php index 0aea9995b0..75f2491705 100644 --- a/wp-admin/plugins.php +++ b/wp-admin/plugins.php @@ -330,13 +330,13 @@ if ( $action ) { } ?> - +
- +

diff --git a/wp-includes/theme-compat/comments.php b/wp-includes/theme-compat/comments.php index d46c0419cd..6314d69f24 100644 --- a/wp-includes/theme-compat/comments.php +++ b/wp-includes/theme-compat/comments.php @@ -27,10 +27,10 @@ _deprecated_file( sprintf( __( 'Theme without %1$s' ), basename(__FILE__) ), '3. diff --git a/wp-includes/version.php b/wp-includes/version.php index b111ea1c21..bd36db9470 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.3-beta1-33078'; +$wp_version = '4.3-beta1-33079'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.