File: /home/monspa/public_html/wp-content/plugins/remove-schema/includes/class-remove-schema-i18n.php
<?php
/**
* Define the internationalization functionality
*
* Loads and defines the internationalization files for this plugin
* so that it is ready for translation.
*
* @link https://plugin.nl/
* @since 1.0.0
*
* @package Remove_Schema
* @subpackage Remove_Schema/includes
*/
/**
* Define the internationalization functionality.
*
* Loads and defines the internationalization files for this plugin
* so that it is ready for translation.
*
* @since 1.0.0
* @package Remove_Schema
* @subpackage Remove_Schema/includes
* @author Tim van Iersel <tim@plugin.nl>
*/
class Remove_Schema_i18n {
/**
* Load the plugin text domain for translation.
*
* @since 1.0.0
*/
public function load_plugin_textdomain() {
load_plugin_textdomain(
'remove-schema',
false,
dirname( dirname( plugin_basename( __FILE__ ) ) ) . '/languages/'
);
}
}