Plugin para adicionar o status "Aguardando retirada" aos pedidos do WooCommerce
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

47 lines
965 B

<?php
/**
* Define the internationalization functionality
*
* Loads and defines the internationalization files for this plugin
* so that it is ready for translation.
*
* @link https://horizontes.info
* @since 1.0.0
*
* @package Wc_Retirada_Produtos
* @subpackage Wc_Retirada_Produtos/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 Wc_Retirada_Produtos
* @subpackage Wc_Retirada_Produtos/includes
* @author Horizontes Coop. <contato@horizontes.info>
*/
class Wc_Retirada_Produtos_i18n {
/**
* Load the plugin text domain for translation.
*
* @since 1.0.0
*/
public function load_plugin_textdomain() {
load_plugin_textdomain(
'wc-retirada-produtos',
false,
dirname( dirname( plugin_basename( __FILE__ ) ) ) . '/languages/'
);
}
}