From 9ffab31d8fa8a5c07621e7e1b4ec44983d4b0956 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Thu, 3 Sep 2015 18:37:23 +0000 Subject: [PATCH] Add missing translation functions to the error messages added in [33889]. props kraftbj, GaryJ. fixes #33684. Built from https://develop.svn.wordpress.org/trunk@33892 git-svn-id: http://core.svn.wordpress.org/trunk@33861 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-wp-customize-manager.php | 8 ++++---- wp-includes/version.php | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/wp-includes/class-wp-customize-manager.php b/wp-includes/class-wp-customize-manager.php index aed6324d0f..0426be83e2 100644 --- a/wp-includes/class-wp-customize-manager.php +++ b/wp-includes/class-wp-customize-manager.php @@ -218,13 +218,13 @@ final class WP_Customize_Manager { if ( is_admin() && ! $doing_ajax_or_is_customized ) { auth_redirect(); } elseif ( $doing_ajax_or_is_customized && ! is_user_logged_in() ) { - $this->wp_die( 0, 'You must be logged in to complete this action.' ); + $this->wp_die( 0, __( 'You must be logged in to complete this action.' ) ); } show_admin_bar( false ); if ( ! current_user_can( 'customize' ) ) { - $this->wp_die( -1, 'You are not allowed to customize the appearance of this site.' ); + $this->wp_die( -1, __( 'You are not allowed to customize the appearance of this site.' ) ); } $this->original_stylesheet = get_stylesheet(); @@ -238,7 +238,7 @@ final class WP_Customize_Manager { // If the requested theme is not the active theme and the user doesn't have the // switch_themes cap, bail. if ( ! current_user_can( 'switch_themes' ) ) { - $this->wp_die( -1, 'You are not allowed to edit theme options on this site.' ); + $this->wp_die( -1, __( 'You are not allowed to edit theme options on this site.' ) ); } // If the theme has errors while loading, bail. @@ -248,7 +248,7 @@ final class WP_Customize_Manager { // If the theme isn't allowed per multisite settings, bail. if ( ! $this->theme()->is_allowed() ) { - $this->wp_die( -1, 'The requested theme does not exist.' ); + $this->wp_die( -1, __( 'The requested theme does not exist.' ) ); } } diff --git a/wp-includes/version.php b/wp-includes/version.php index 6e2a4d7484..a89447abf1 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-33891'; +$wp_version = '4.4-alpha-33892'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.