# wpvr/9.0.3/legacy/includes/class-wpvr-i18n.php

WPVR – 360 Panorama viewer and Virtual Tour Builder for WordPress, version 9.0.3. 45 lines.

- Page: https://pluginprobe.com/plugins/wpvr/9.0.3/code/legacy/includes/class-wpvr-i18n.php
- Raw: https://pluginprobe.com/plugins/wpvr/9.0.3/raw/legacy/includes/class-wpvr-i18n.php
- Modified: 2026-08-20T11:07:58+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/wpvr/9.0.3/code/legacy/includes/class-wpvr-i18n.php#L10-L20`.

```php
<?php
/**
 * Define the internationalization functionality
 *
 * Loads and defines the internationalization files for this plugin
 * so that it is ready for translation.
 *
 * @link       http://rextheme.com/
 * @since      1.0.0
 *
 * @package    Wpvr
 * @subpackage Wpvr/includes
 */

/**
 * Define the internationalization functionality.
 *
 * Loads and defines the internationalization files for this plugin
 * so that it is ready for translation.
 *
 * @since      1.0.0
 * @package    Wpvr
 * @subpackage Wpvr/includes
 * @author     Rextheme <support@rextheme.com>
 */
class Wpvr_i18n { //phpcs:ignore


	/**
	 * Load the plugin text domain for translation.
	 *
	 * @since    1.0.0
	 */
	public function load_plugin_textdomain() {

		load_plugin_textdomain(
			'wpvr',
			false,
			defined( 'WPVR_FILE' )
				? dirname( plugin_basename( WPVR_FILE ) ) . '/languages/'
				: dirname( dirname( dirname( plugin_basename( __FILE__ ) ) ) ) . '/languages/'
		);
	}
}

```
