# hostinger/3.0.34/includes/I18n.php

Hostinger Tools, version 3.0.34. 21 lines.

- Page: https://pluginprobe.com/plugins/hostinger/3.0.34/code/includes/I18n.php
- Raw: https://pluginprobe.com/plugins/hostinger/3.0.34/raw/includes/I18n.php
- Modified: 2025-03-03T08:32:52+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/3.0.34/code/includes/I18n.php#L10-L20`.

```php
<?php

namespace Hostinger;

defined( 'ABSPATH' ) || exit;

class 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/'
		);
	}
}

```
