PluginProbe
WowOptin: Next-Gen Popup Maker – Create Stunning Popups and Optins for Lead Generation / trunk
WowOptin: Next-Gen Popup Maker – Create Stunning Popups and Optins for Lead Generation vtrunk
1.4.48 1.4.47 1.4.46 1.4.45 1.4.44 1.4.43 1.4.42 1.4.41 1.4.40 1.4.39 1.4.38 1.4.37 1.4.36 1.1.2 1.2.0 1.2.1 1.2.2 1.3.0 1.3.1 1.4.0 1.4.1 1.4.10 1.4.11 1.4.12 1.4.13 All 64 releases
optin / includes / class-i18n.php

class-i18n.php in WowOptin: Next-Gen Popup Maker – Create Stunning Popups and Optins for Lead Generation trunk, at includes/class-i18n.php

44 lines 869 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace OPTN\Includes;
4
5 /**
6 * Define the internationalization functionality
7 *
8 * Loads and defines the internationalization files for this plugin
9 * so that it is ready for translation.
10 *
11 * @link https://wpxpo.com
12 * @since 1.0.0
13 *
14 * @package optin
15 * @subpackage optin/includes
16 */
17
18 /**
19 * Define the internationalization functionality.
20 *
21 * Loads and defines the internationalization files for this plugin
22 * so that it is ready for translation.
23 *
24 * @since 1.0.0
25 * @package optin
26 * @subpackage optin/includes
27 */
28 class I18n {
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 'optin',
39 false,
40 dirname( dirname( plugin_basename( __FILE__ ) ) ) . '/languages/'
41 );
42 }
43 }
44