PluginProbe
MLSImport: IDX Plugin & MLS Plugin for Real Estate Listings / 6.3.5
MLSImport: IDX Plugin & MLS Plugin for Real Estate Listings v6.3.5
7.2.1 7.2 7.1.2 7.1.1 7.1 7.0.4 7.0.6 7.0.7 6.3.8 6.3.7 6.3.6 6.3.5 6.3.4 6.3.3 6.3.1 trunk 5.7.3 5.7.5 5.8.1 5.8.2 5.8.3 5.8.4 5.8.6 6.0.4 6.0.5 All 36 releases
mlsimport / includes / class-mlsimport-i18n.php

class-mlsimport-i18n.php in MLSImport: IDX Plugin & MLS Plugin for Real Estate Listings 6.3.5, at includes/class-mlsimport-i18n.php

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