You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
cosmopet.ae/wp-content/plugins copy/cf7-polylang/includes/class-cf7-polylang-i18n.php

43 lines
907 B

<?php
/**
* Define the internationalization functionality
*
* Loads and defines the internationalization files for this plugin
* so that it is ready for translation.
*
* @link http://syllogic.in
* @since 1.0.0
*
* @package Cf7_Polylang
* @subpackage Cf7_Polylang/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 Cf7_Polylang
* @subpackage Cf7_Polylang/includes
* @author Aurovrata V. <vrata@syllogic.in>
*/
class Cf7_Polylang_i18n {
/**
* Load the plugin text domain for translation.
*
* @since 1.0.0
*/
public function load_plugin_textdomain() {
load_plugin_textdomain(
'cf7-polylang',
false,
dirname( dirname( plugin_basename( __FILE__ ) ) ) . '/languages/'
);
}
}