Skip to content

Commit

Permalink
Merge pull request #4561 from bainternet/release/2.0.13
Browse files Browse the repository at this point in the history
Replaced "NOT ACTIVE" with "Not Running" fixes #4546
  • Loading branch information
KingYes authored May 27, 2018
2 parents bdb2da1 + 41c26dd commit 91c376d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions elementor.php
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ function elementor_load_plugin_textdomain() {
*/
function elementor_fail_php_version() {
/* translators: %s: PHP version */
$message = sprintf( esc_html__( 'Elementor requires PHP version %s+, plugin is currently NOT ACTIVE.', 'elementor' ), '5.4' );
$message = sprintf( esc_html__( 'Elementor requires PHP version %s+, plugin is currently Not Running.', 'elementor' ), '5.4' );
$html_message = sprintf( '<div class="error">%s</div>', wpautop( $message ) );
echo wp_kses_post( $html_message );
}
Expand All @@ -93,7 +93,7 @@ function elementor_fail_php_version() {
*/
function elementor_fail_wp_version() {
/* translators: %s: WordPress version */
$message = sprintf( esc_html__( 'Elementor requires WordPress version %s+. Because you are using an earlier version, the plugin is currently NOT ACTIVE.', 'elementor' ), '4.6' );
$message = sprintf( esc_html__( 'Elementor requires WordPress version %s+. Because you are using an earlier version, the plugin is currently Not Running.', 'elementor' ), '4.6' );
$html_message = sprintf( '<div class="error">%s</div>', wpautop( $message ) );
echo wp_kses_post( $html_message );
}

0 comments on commit 91c376d

Please sign in to comment.