Current File : /home/kelaby89/kayautoparts.com/wp-content/plugins/leadconnector/includes/class-lc-i18n.php
<?php

/**
 * Define the internationalization functionality
 *
 * Loads and defines the internationalization files for this plugin
 * so that it is ready for translation.
 *
 * @link       http://example.com
 * @since      1.0.0
 *
 * @package    LeadConnector
 * @subpackage LeadConnector/includes
 */

/**
 * Define the internationalization functionality.
 *
 * Loads and defines the internationalization files for this plugin
 * so that it is ready for translation.
 *
 * @since      1.0.0
 * @package    LeadConnector
 * @subpackage LeadConnector/includes
 * @author     Harsh Kurra
 */
class LeadConnector_i18n
{

    /**
     * Load the plugin text domain for translation.
     *
     * @since    1.0.0
     */
    public function load_plugin_textdomain()
    {
        add_action('init', array($this, 'load_textdomain'));
    }

    /**
     * Actually load the text domain at init hook.
     *
     * @since    3.0.7
     */
    public function load_textdomain()
    {
        load_plugin_textdomain(
            'leadconnector',
            false,
            dirname(dirname(plugin_basename(__FILE__))) . '/languages/'
        );
    }
}
Page not found – Hello World !