1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
<?php
/**
* Define the internationalization functionality
*
* Loads and defines the internationalization files for this plugin
* so that it is ready for translation.
*
* @link https://www.onlineforce.net
* @since 1.0.0
*
* @package Woocommerce_Izettle
* @subpackage Woocommerce_Izettle/includes
*/
namespace Onlineforce\Woocommerce_Izettle;
/**
* 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 Woocommerce_Izettle
* @subpackage Woocommerce_Izettle/includes
* @author Onlineforce Sweden AB <support@onlineforce.net>
*/
class Woocommerce_Izettle_I18n {
/**
* Load the plugin text domain for translation.
*
* @since 1.0.0
*/
public function load_plugin_textdomain() {
load_plugin_textdomain(
'woocommerce-izettle',
false,
dirname( dirname( plugin_basename( __FILE__ ) ) ) . '/languages/'
);
}
}