24 lines
368 B
PHP
24 lines
368 B
PHP
|
<?php
|
||
|
/**
|
||
|
* Hesabix i18n Class
|
||
|
*
|
||
|
* @package Hesabix
|
||
|
* @author Mohammad Rezai
|
||
|
* @author URI https://pirouz.xyz
|
||
|
* @since 1.0.0
|
||
|
*/
|
||
|
|
||
|
class Hesabix_i18n
|
||
|
{
|
||
|
public function load_plugin_textdomain()
|
||
|
{
|
||
|
|
||
|
load_plugin_textdomain(
|
||
|
'hesabix',
|
||
|
false,
|
||
|
dirname(dirname(plugin_basename(__FILE__))) . '/languages/'
|
||
|
);
|
||
|
|
||
|
}
|
||
|
}
|