| 1 |
<?php |
| 2 |
|
| 3 |
if ( ! defined( 'ABSPATH' ) ) { |
| 4 |
exit; |
| 5 |
} |
| 6 |
|
| 7 |
/** |
| 8 |
* Define the internationalization functionality |
| 9 |
* |
| 10 |
* Loads and defines the internationalization files for this plugin |
| 11 |
* so that it is ready for translation. |
| 12 |
* |
| 13 |
* @link https://pixelgrade.com |
| 14 |
* @since 1.0.0 |
| 15 |
* |
| 16 |
* @package Gridable |
| 17 |
* @subpackage Gridable/includes |
| 18 |
*/ |
| 19 |
|
| 20 |
/** |
| 21 |
* Define the internationalization functionality. |
| 22 |
* |
| 23 |
* Loads and defines the internationalization files for this plugin |
| 24 |
* so that it is ready for translation. |
| 25 |
* |
| 26 |
* @since 1.0.0 |
| 27 |
* @package Gridable |
| 28 |
* @subpackage Gridable/includes |
| 29 |
* @author Pixelgrade <contact@pixelgrade.com> |
| 30 |
*/ |
| 31 |
class Gridable_i18n { |
| 32 |
|
| 33 |
|
| 34 |
/** |
| 35 |
* Load the plugin text domain for translation. |
| 36 |
* |
| 37 |
* @since 1.0.0 |
| 38 |
*/ |
| 39 |
public function load_plugin_textdomain() { |
| 40 |
// WordPress.org loads plugin language packs for this slug automatically. |
| 41 |
} |
| 42 |
|
| 43 |
|
| 44 |
|
| 45 |
} |
| 46 |
|