File: /home/salamatk/public_html/wp-content/plugins/wp-story/includes/class-wp-story-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://wpuzman.com
* @since 1.0.0
*
* @package Wp_Story
* @subpackage Wp_Story/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 Wp_Story
* @subpackage Wp_Story/includes
* @author wpuzman <iletisim@wpuzman.com>
*/
class Wp_Story_i18n {
/**
* Load the plugin text domain for translation.
*
* @since 1.0.0
*/
public function load_plugin_textdomain() {
load_plugin_textdomain(
'wp-story',
false,
dirname( dirname( plugin_basename( __FILE__ ) ) ) . '/languages/'
);
}
}