# hostinger/2.1.1/includes/class-hostinger-i18n.php

Hostinger Tools, version 2.1.1. 19 lines.

- Page: https://pluginprobe.com/plugins/hostinger/2.1.1/code/includes/class-hostinger-i18n.php
- Raw: https://pluginprobe.com/plugins/hostinger/2.1.1/raw/includes/class-hostinger-i18n.php
- Modified: 2024-03-06T14:16:54+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/hostinger/2.1.1/code/includes/class-hostinger-i18n.php#L10-L20`.

```php
<?php

defined( 'ABSPATH' ) || exit;

class Hostinger_i18n {
	/**
	 * Load the plugin text domain for translation.
	 *
	 * @since    1.2.0
	 */
	public function load_plugin_textdomain(): void {
		load_plugin_textdomain(
			'hostinger',
			false,
			dirname( dirname( plugin_basename( __FILE__ ) ) ) . '/languages/'
		);
	}
}

```
