From f60c6ec2fffe0501c2c4da6e01eb33b8b9544a26 Mon Sep 17 00:00:00 2001 From: Stefan Kalscheuer Date: Tue, 30 Oct 2018 19:32:52 +0100 Subject: [PATCH] Fixed textdomain for compatibility notice --- statify-blacklist.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/statify-blacklist.php b/statify-blacklist.php index 429754a..02a5c39 100644 --- a/statify-blacklist.php +++ b/statify-blacklist.php @@ -122,14 +122,14 @@ function statify_blacklist_disabled_notice() { echo '

'; printf( /* translators: minimum version numbers for WordPress and PHP inserted at placeholders */ - esc_html__( 'Statify Blacklist requires at least WordPress %1$s and PHP %2$s.', 'my-plugin' ), + esc_html__( 'Statify Blacklist requires at least WordPress %1$s and PHP %2$s.', 'statify-blacklist' ), '4.7', '5.5' ); echo '
'; printf( /* translators: current version numbers for WordPress and PHP inserted at placeholders */ - esc_html__( 'Your site is running WordPress %1$s on PHP %2$s, thus the plugin has been disabled.', 'my-plugin' ), + esc_html__( 'Your site is running WordPress %1$s on PHP %2$s, thus the plugin has been disabled.', 'statify-blacklist' ), esc_html( $GLOBALS['wp_version'] ), esc_html( phpversion() ) );