PluginProbe
Smart Grid-Layout Design for Contact Form 7 / 4.11
Smart Grid-Layout Design for Contact Form 7 v4.11
4.18.0 4.17.0 3.2.0 3.2.1 3.3.0 3.3.1 3.3.2 3.3.3 3.3.4 3.3.5 3.3.6 3.3.7 3.3.8 4.0.0 4.0.1 4.1.0 4.1.1 4.1.2 4.1.3 4.1.4 4.10 4.11 4.12 4.13 4.14 All 119 releases
cf7-grid-layout / includes / class-cf7-grid-layout-i18n.php

class-cf7-grid-layout-i18n.php in Smart Grid-Layout Design for Contact Form 7 4.11, at includes/class-cf7-grid-layout-i18n.php

48 lines 920 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * Define the internationalization functionality
5 *
6 * Loads and defines the internationalization files for this plugin
7 * so that it is ready for translation.
8 *
9 * @link http://syllogic.in
10 * @since 1.0.0
11 *
12 * @package Cf7_Grid_Layout
13 * @subpackage Cf7_Grid_Layout/includes
14 */
15
16 /**
17 * Define the internationalization functionality.
18 *
19 * Loads and defines the internationalization files for this plugin
20 * so that it is ready for translation.
21 *
22 * @since 1.0.0
23 * @package Cf7_Grid_Layout
24 * @subpackage Cf7_Grid_Layout/includes
25 * @author Aurovrata V. <vrata@syllogic.in>
26 */
27 class Cf7_Grid_Layout_i18n {
28
29
30 /**
31 * Load the plugin text domain for translation.
32 *
33 * @since 1.0.0
34 */
35 public function load_plugin_textdomain() {
36
37 load_plugin_textdomain(
38 'cf7-grid-layout',
39 false,
40 dirname( dirname( plugin_basename( __FILE__ ) ) ) . '/languages/'
41 );
42
43 }
44
45
46
47 }
48