# post-carousel/2.4.15/includes/class-smart-post-show-i18n.php

Smart Post – Post Grid, Post Carousel, Post Slider Gutenberg Blocks for Blog &amp; News, version 2.4.15. 40 lines.

- Page: https://pluginprobe.com/plugins/post-carousel/2.4.15/code/includes/class-smart-post-show-i18n.php
- Raw: https://pluginprobe.com/plugins/post-carousel/2.4.15/raw/includes/class-smart-post-show-i18n.php
- Modified: 2022-08-26T05:44:34+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/post-carousel/2.4.15/code/includes/class-smart-post-show-i18n.php#L10-L20`.

```php
<?php
/**
 * Define the internationalization functionality
 *
 * Loads and defines the internationalization files for this plugin
 * so that it is ready for translation.
 *
 * @link        https://smartpostshow.com/
 * @since      2.2.0
 *
 * @package    Smart_Post_Show
 * @subpackage Smart_Post_Show/includes
 */

/**
 * Define the internationalization functionality.
 *
 * Loads and defines the internationalization files for this plugin
 * so that it is ready for translation.
 */
class Smart_Post_Show_i18n {


	/**
	 * Load the plugin text domain for translation.
	 *
	 * @since    2.2.0
	 */
	public function load_plugin_textdomain() {

		load_plugin_textdomain(
			'post-carousel',
			false,
			dirname( dirname( plugin_basename( __FILE__ ) ) ) . '/languages/'
		);

	}

}

```
