Skip to content
Snippets Groups Projects
Commit 26a4785b authored by Bartek Jaskulski's avatar Bartek Jaskulski
Browse files

Merge branch 'fix/i18n' into 'master'

fix/i18n

See merge request !39
parents 5061b9ae d48dfe85
No related branches found
No related tags found
1 merge request!39fix/i18n
Pipeline #442475 failed with stages
in 21 seconds
## [Unreleased]
### Removed
- Do not load translations from plugin hook. Leave it to other libraries and processes.
## [2.1.1] - 2023-12-12
### Fixed
- fixed deprecated load_plugin_textdomain function required by the WordPress repository checker. False is no longer a valid option at position 2
......
......@@ -152,22 +152,13 @@ abstract class AbstractPlugin extends SlimPlugin {
protected function hooks() {
add_action( 'admin_enqueue_scripts', [ $this, 'admin_enqueue_scripts' ] );
add_action( 'wp_enqueue_scripts', [ $this, 'wp_enqueue_scripts' ] );
add_action( 'plugins_loaded', [ $this, 'load_plugin_text_domain' ] );
add_filter( 'plugin_action_links_' . plugin_basename( $this->get_plugin_file_path() ), [
$this,
'links_filter'
] );
}
/**
* Initialize plugin test domain. This is a hook function. Do not execute directly.
*
* @return void
*/
public function load_plugin_text_domain() {
load_plugin_textdomain( $this->get_text_domain(), '', $this->get_namespace() . '/lang/' );
}
/**
/**
* Append JS scripts in the WordPress admin panel. This is a hook function. Do not execute directly.
*
* @return void
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment