48 lines
958 B
PHP
Executable File
48 lines
958 B
PHP
Executable File
<?php
|
|
|
|
/**
|
|
* Define the internationalization functionality
|
|
*
|
|
* Loads and defines the internationalization files for this plugin
|
|
* so that it is ready for translation.
|
|
*
|
|
* @link https://mailchimp.com
|
|
* @since 1.0.1
|
|
*
|
|
* @package MailChimp_WooCommerce
|
|
* @subpackage MailChimp_WooCommerce/includes
|
|
*/
|
|
|
|
/**
|
|
* Define the internationalization functionality.
|
|
*
|
|
* Loads and defines the internationalization files for this plugin
|
|
* so that it is ready for translation.
|
|
*
|
|
* @since 1.0.1
|
|
* @package MailChimp_WooCommerce
|
|
* @subpackage MailChimp_WooCommerce/includes
|
|
* @author Ryan Hungate <ryan@vextras.com>
|
|
*/
|
|
class MailChimp_WooCommerce_i18n {
|
|
|
|
|
|
/**
|
|
* Load the plugin text domain for translation.
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
public function load_plugin_textdomain() {
|
|
|
|
load_plugin_textdomain(
|
|
'mailchimp-woocommerce',
|
|
false,
|
|
dirname( dirname( plugin_basename( __FILE__ ) ) ) . '/languages/'
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|