File: /home/adventp/www/wp-content/plugins/ut-core/src/utils/Internationalization.php
<?php
/**
* Define the internationalization functionality
*
* Loads and defines the internationalization files for this plugin
* so that it is ready for translation.
*
* @see https://codecanyon.net/user/besquares/portfolio/
* @since 1.0.0
*
* @package BsShortener
* @subpackage BsShortener/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
*/
namespace UTCore\utils;
class Internationalization
{
/**
* Load the plugin text domain for translation.
*
* @since 1.0.0
*/
public function loadPluginTextdomain()
{
load_plugin_textdomain(
'ut-core',
false,
dirname( dirname( plugin_basename( __FILE__ ) ) ) . '/languages/'
);
}
}