File: /home/teamadsc/www/wp-content/plugins/better-search/includes/l10n.php
<?php
/**
* Translation functions
*
* @package Better_Search
*/
// If this file is called directly, then abort execution.
if ( ! defined( 'WPINC' ) ) {
die( "Aren't you supposed to come here via WP-Admin?" );
}
/**
* Function to load translation files.
*
* @since 1.3.3
*/
function bsearch_lang_init() {
load_plugin_textdomain( 'better-search', false, dirname( plugin_basename( __FILE__ ) ) . '/languages' );
}
add_action( 'plugins_loaded', 'bsearch_lang_init' );