jit-tr-wp/includes/class-jit-tr-i18n.php

48 lines
863 B
PHP

<?php
/**
* Define the internationalization functionality
*
* Loads and defines the internationalization files for this plugin
* so that it is ready for translation.
*
* @link https://jit-tr.com
* @since 1.0.0
*
* @package Jit_Tr
* @subpackage Jit_Tr/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 Jit_Tr
* @subpackage Jit_Tr/includes
* @author Bill Ross <wnross@jit-tr.com>
*/
class Jit_Tr_i18n {
/**
* Load the plugin text domain for translation.
*
* @since 1.0.0
*/
public function load_plugin_textdomain() {
load_plugin_textdomain(
'jit-tr',
false,
dirname( dirname( plugin_basename( __FILE__ ) ) ) . '/languages/'
);
}
}