PluginProbe
WpStream – Live Streaming, Video on Demand, Pay Per View / 3.5.3
WpStream – Live Streaming, Video on Demand, Pay Per View v3.5.3
4.14.1 4.14.0 4.13.2 4.13.1 4.13 4.12.5 4.12.4 4.12.3 4.12.2 4.12.1 4.12 4.4.4 4.4.5 4.4.6 4.4.7 4.4.8 4.4.9 4.5 4.5.1 4.5.11 4.5.11.1 4.5.11.2 4.5.11.4 4.5.11.5 4.5.11.6 All 181 releases
wpstream / includes / class-wpstream-i18n.php

class-wpstream-i18n.php in WpStream – Live Streaming, Video on Demand, Pay Per View 3.5.3, at includes/class-wpstream-i18n.php

48 lines 877 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://wpstream.net
10 * @since 3.0.1
11 *
12 * @package Wpstream
13 * @subpackage Wpstream/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 3.0.1
23 * @package Wpstream
24 * @subpackage Wpstream/includes
25 * @author wpstream <office@wpstream.net>
26 */
27 class Wpstream_i18n {
28
29
30 /**
31 * Load the plugin text domain for translation.
32 *
33 * @since 3.0.1
34 */
35 public function load_plugin_textdomain() {
36
37 load_plugin_textdomain(
38 'wpstream',
39 false,
40 dirname( dirname( plugin_basename( __FILE__ ) ) ) . '/languages/'
41 );
42
43 }
44
45
46
47 }
48