34 lines
716 B
PHP
34 lines
716 B
PHP
![]() |
<?php
|
||
|
|
||
|
/**
|
||
|
* 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 ssbhesabix
|
||
|
* @subpackage ssbhesabix/includes
|
||
|
* @author Saeed Sattar Beglou <saeed.sb@gmail.com>
|
||
|
* @author HamidReza Gharahzadeh <hamidprime@gmail.com>
|
||
|
* @author Sepehr Najafi <sepehrn249@gmail.com>
|
||
|
*/
|
||
|
class Ssbhesabix_i18n {
|
||
|
|
||
|
|
||
|
/**
|
||
|
* Load the plugin text domain for translation.
|
||
|
*
|
||
|
* @since 1.0.0
|
||
|
*/
|
||
|
public function load_plugin_textdomain() {
|
||
|
|
||
|
load_plugin_textdomain(
|
||
|
'ssbhesabix',
|
||
|
false,
|
||
|
dirname( dirname( plugin_basename( __FILE__ ) ) ) . '/languages/'
|
||
|
);
|
||
|
|
||
|
}
|
||
|
}
|