Current Path : /var/www/spmeat/wp-content/plugins/tranzly/includes/ |
Current File : /var/www/spmeat/wp-content/plugins/tranzly/includes/class-tranzly-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://tranzly.io * @since 1.0.0 */ class Tranzly_i18n { /** * Load the plugin text domain for translation. */ public function load_plugin_textdomain() { load_plugin_textdomain( 'tranzly', false, dirname( dirname( plugin_basename( __FILE__ ) ) ) . '/languages/' ); } }