<?php /** * Define the internationalization functionality * * Loads and defines the internationalization files for this plugin * so that it is ready for translation. * * @link http://themeforest.net/user/PixFlow/portfolio * @since 1.0.0 * * @package MD_Shortcodes * @subpackage MD_Shortcodes/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 MD_Shortcodes * @subpackage MD_Shortcodes/includes * @author Pixflow <pxflow@gmail.com> */ class MD_Shortcodes_i18n { /** * Load the plugin text domain for translation. * * @since 1.0.0 */ public function load_plugin_textdomain() { load_plugin_textdomain( 'md-shortcodes', false, dirname( dirname( plugin_basename( __FILE__ ) ) ) . '/languages/' ); } }