From bc2a58755f21789c5d289bd1be056891ef88648f Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sun, 17 Jul 2016 12:57:06 +0000 Subject: [PATCH] I18N: Combine two duplicate "Unable to locate WordPress Theme directory" strings. See #18218. git-svn-id: https://develop.svn.wordpress.org/trunk@38073 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/includes/theme.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-admin/includes/theme.php b/src/wp-admin/includes/theme.php index 6f25348280..cbfe13540b 100644 --- a/src/wp-admin/includes/theme.php +++ b/src/wp-admin/includes/theme.php @@ -60,7 +60,7 @@ function delete_theme($stylesheet, $redirect = '') { // Get the base plugin folder. $themes_dir = $wp_filesystem->wp_themes_dir(); if ( empty( $themes_dir ) ) { - return new WP_Error( 'fs_no_themes_dir', __( 'Unable to locate WordPress theme directory.' ) ); + return new WP_Error( 'fs_no_themes_dir', __( 'Unable to locate WordPress Theme directory.' ) ); } $themes_dir = trailingslashit( $themes_dir );