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

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

- Page: https://pluginprobe.com/plugins/post-carousel/4.0.2/code/includes/class-smart-post-show-i18n.php
- Raw: https://pluginprobe.com/plugins/post-carousel/4.0.2/raw/includes/class-smart-post-show-i18n.php
- Modified: 2025-11-25T06:24:24+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/4.0.2/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://wpsmartpost.com/
 * @since      2.2.0
 *
 * @package    Smart_Post_Show
 * @subpackage Smart_Post_Show/includes
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

/**
 * 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 {

	/**
	 * No longer needed for WordPress.org hosted plugins.
	 *
	 * @since    2.2.0
	 */
	public function load_plugin_textdomain() {
		// Deprecated: WordPress automatically loads plugin translations.
		// load_plugin_textdomain(
		// 'post-carousel',
		// false,
		// dirname( dirname( plugin_basename( __FILE__ ) ) ) . '/languages/'
		// );
	}
}

```
