From 90a7562ba8cc320168ffc7bc21508dc55c06dc75 Mon Sep 17 00:00:00 2001 From: Ned Zimmerman Date: Mon, 19 Dec 2016 15:13:50 -0400 Subject: [PATCH] Fix dummy textdomain. --- hypothesis.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hypothesis.php b/hypothesis.php index b31c642..5b39868 100644 --- a/hypothesis.php +++ b/hypothesis.php @@ -15,7 +15,7 @@ // Load textdomain function hypothesis_load_plugin_textdomain() { - load_plugin_textdomain( 'my-plugin', FALSE, basename( dirname( __FILE__ ) ) . '/languages/' ); + load_plugin_textdomain( 'hypothesis', FALSE, basename( dirname( __FILE__ ) ) . '/languages/' ); } add_action( 'plugins_loaded', 'hypothesis_load_plugin_textdomain' );