# hostinger/3.0.78/includes/I18n.php

Hostinger Tools, version 3.0.78. 21 lines.

- Page: https://pluginprobe.com/plugins/hostinger/3.0.78/code/includes/I18n.php
- Raw: https://pluginprobe.com/plugins/hostinger/3.0.78/raw/includes/I18n.php
- Modified: 2025-06-17T13:25:02+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.78/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( plugin_basename( __FILE__ ), 2 ) . '/languages/'
        );
    }
}

```
