oont-contents/plugins/wt-woocommerce-related-products/includes/class-custom-related-products-i18n.php
2025-02-08 15:10:23 +01:00

34 lines
633 B
PHP

<?php
/**
* 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 Custom_Related_Products
* @subpackage Custom_Related_Products/includes
* @author markhf
*/
class Custom_Related_Products_i18n {
/**
* Load the plugin text domain for translation.
*
* @since 1.0.0
*/
public function load_plugin_textdomain() {
load_plugin_textdomain(
'wt-woocommerce-related-products',
false,
dirname( dirname( plugin_basename( __FILE__ ) ) ) . '/languages/'
);
}
}