| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?php
- /**
- * Define the internationalization functionality
- *
- * Loads and defines the internationalization files for this plugin
- * so that it is ready for translation.
- *
- * @link https://kiranpotphode.com/
- * @since 1.0.0
- *
- * @package Easy_Charts
- * @subpackage Easy_Charts/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 Easy_Charts
- * @subpackage Easy_Charts/includes
- * @author Kiran Potphode <kiranpotphode15@gmail.com>
- */
- class Easy_Charts_i18n {
- /**
- * Load the plugin text domain for translation.
- *
- * @since 1.0.0
- */
- public function load_plugin_textdomain() {
- load_plugin_textdomain(
- 'easy-charts',
- false,
- dirname( dirname( plugin_basename( __FILE__ ) ) ) . '/languages/'
- );
- }
- }
|