PluginProbe
Gridable / trunk
Gridable vtrunk
1.2.12 1.2.11 trunk 0.1.0 0.5.0 1.0.0 1.1.0 1.2.0 1.2.1 1.2.10 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9
gridable / includes / class-gridable-i18n.php

class-gridable-i18n.php in Gridable trunk, at includes/class-gridable-i18n.php

46 lines 876 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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