# sequra/3.1.1/src/Controllers/Hooks/I18n/interface-i18n-controller.php

seQura, version 3.1.1. 25 lines.

- Page: https://pluginprobe.com/plugins/sequra/3.1.1/code/src/Controllers/Hooks/I18n/interface-i18n-controller.php
- Raw: https://pluginprobe.com/plugins/sequra/3.1.1/raw/src/Controllers/Hooks/I18n/interface-i18n-controller.php
- Modified: 2024-12-04T15:55:12+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/sequra/3.1.1/code/src/Controllers/Hooks/I18n/interface-i18n-controller.php#L10-L20`.

```php
<?php
/**
 * I18n interface
 *
 * @package    SeQura/WC
 * @subpackage SeQura/WC/Controllers
 */

namespace SeQura\WC\Controllers\Hooks\I18n;

/**
 * Define the internationalization functionality
 * Loads and defines the internationalization files for this plugin
 * so that it is ready for translation.
 */
interface Interface_I18n_Controller {

	/**
	 * Load the plugin text domain for translation.
	 * 
	 * @return void
	 */
	public function load_text_domain();
}

```
