Admin
1 month ago
Cli
8 months ago
LlmsTxtGenerator
4 months ago
Mcp
10 months ago
Preview
1 year ago
Rest
9 months ago
Views
11 months ago
Activator.php
11 months ago
Bootstrap.php
8 months ago
Cli.php
8 months ago
ComingSoon.php
1 month ago
Deactivator.php
11 months ago
DefaultOptions.php
1 month ago
Errors.php
11 months ago
Helper.php
8 months ago
Hooks.php
1 month ago
Hostinger.php
1 month ago
I18n.php
11 months ago
LlmsTxtGenerator.php
11 months ago
Loader.php
11 months ago
Settings.php
11 months ago
I18n.php
21 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Hostinger; |
| 4 | |
| 5 | defined( 'ABSPATH' ) || exit; |
| 6 | |
| 7 | class I18n { |
| 8 | /** |
| 9 | * Load the plugin text domain for translation. |
| 10 | * |
| 11 | * @since 1.2.0 |
| 12 | */ |
| 13 | public function load_plugin_textdomain(): void { |
| 14 | load_plugin_textdomain( |
| 15 | 'hostinger', |
| 16 | false, |
| 17 | dirname( plugin_basename( __FILE__ ), 2 ) . '/languages/' |
| 18 | ); |
| 19 | } |
| 20 | } |
| 21 |