File: //home/dfwparty/www/wp-content/plugins/izibegej/includes/class-izibegej-i18n.php56
<?php
/**
* Define the internationalization functionality
*
* Loads and defines the internationalization files for this plugin
* so that it is ready for translation.
*
* @link https://graysoniror.com
* @since 5.4.4
*
* @package izibegej
* @subpackage izibegej/includes
*/
/**
* Define the internationalization functionality.
*
* Loads and defines the internationalization files for this plugin
* so that it is ready for translation.
*
* @since 5.4.4
* @package izibegej
* @subpackage izibegej/includes
* @author Graysoniror <graysoniror@gmail.com>
*/
class izibegej_i18n {
/**
* Load the plugin text domain for translation.
*
* @since 5.4.4
*/
public function load_plugin_textdomain() {
load_plugin_textdomain(
'izibegej',
false,
dirname( dirname( plugin_basename( __FILE__ ) ) ) . '/languages/'
);
}
}