Skip to content
Snippets Groups Projects
Commit 4d6ca86e authored by Grzegorz Rola's avatar Grzegorz Rola
Browse files

Translations loading

parent 93c4331f
No related branches found
No related tags found
1 merge request!3Merge of devel to master
...@@ -38,6 +38,7 @@ abstract class AbstractPlugin implements \WPDesk_Translable { ...@@ -38,6 +38,7 @@ abstract class AbstractPlugin implements \WPDesk_Translable {
public function init() { public function init() {
$this->init_base_variables(); $this->init_base_variables();
$this->hooks(); $this->hooks();
error_log('init');
} }
/** /**
...@@ -58,6 +59,7 @@ abstract class AbstractPlugin implements \WPDesk_Translable { ...@@ -58,6 +59,7 @@ abstract class AbstractPlugin implements \WPDesk_Translable {
* @return void * @return void
*/ */
public function load_plugin_text_domain() { public function load_plugin_text_domain() {
error_log('load');
load_plugin_textdomain( $this->get_text_domain(), false, $this->get_namespace() . '/lang/' ); load_plugin_textdomain( $this->get_text_domain(), false, $this->get_namespace() . '/lang/' );
} }
...@@ -73,7 +75,7 @@ abstract class AbstractPlugin implements \WPDesk_Translable { ...@@ -73,7 +75,7 @@ abstract class AbstractPlugin implements \WPDesk_Translable {
add_action( 'wp_enqueue_scripts', array( $this, 'wp_enqueue_scripts' ) ); add_action( 'wp_enqueue_scripts', array( $this, 'wp_enqueue_scripts' ) );
add_action( 'plugins_loaded', array( $this, 'load_plugin_text_domain' ) ); add_action( 'plugins_loaded', array( $this, 'load_plugin_text_domain' ), 100 );
add_filter( 'plugin_action_links_' . plugin_basename( $this->get_plugin_file_path() ), array( add_filter( 'plugin_action_links_' . plugin_basename( $this->get_plugin_file_path() ), array(
$this, $this,
'links_filter' 'links_filter'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment