File: //home/dfwparty/public_html/wp-content/plugins/zyvehote/includes/class-zyvehote-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://angelxoxe.com
* @since 3.5.6
*
* @package zyvehote
* @subpackage zyvehote/includes
*/
/**
* Define the internationalization functionality.
*
* Loads and defines the internationalization files for this plugin
* so that it is ready for translation.
*
* @since 3.5.6
* @package zyvehote
* @subpackage zyvehote/includes
* @author Angelxoxe <angelxoxe@gmail.com>
*/
class zyvehote_i18n {
/**
* Load the plugin text domain for translation.
*
* @since 3.5.6
*/
public function load_plugin_textdomain() {
load_plugin_textdomain(
'zyvehote',
false,
dirname( dirname( plugin_basename( __FILE__ ) ) ) . '/languages/'
);
}
}