# wpvr/8.5.79/includes/class-wpvr-i18n.php

WPVR – 360 Panorama viewer and Virtual Tour Builder for WordPress, version 8.5.79. 43 lines.

- Page: https://pluginprobe.com/plugins/wpvr/8.5.79/code/includes/class-wpvr-i18n.php
- Raw: https://pluginprobe.com/plugins/wpvr/8.5.79/raw/includes/class-wpvr-i18n.php
- Modified: 2024-06-13T10:08:26+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/8.5.79/code/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,
			dirname( dirname( plugin_basename( __FILE__ ) ) ) . '/languages/'
		);
	}
}

```
