2024-01-11 10:08:49 +03:30
|
|
|
<?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,
|
2024-01-11 14:42:59 +03:30
|
|
|
dirname( dirname( plugin_basename( __FILE__ ) ) ) . '/languages1/'
|
2024-01-11 10:08:49 +03:30
|
|
|
);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|