PluginProbe
WPVR – 360 Panorama viewer and Virtual Tour Builder for WordPress / 8.5.68
WPVR – 360 Panorama viewer and Virtual Tour Builder for WordPress v8.5.68
9.1.2 9.1.1 9.1.0 9.0.3 9.0.2 9.0.1 9.0.0 8.5.79 8.5.78 8.5.77 8.5.76 8.5.75 8.5.74 8.5.73 8.5.72 8.5.71 8.5.70 8.5.69 8.5.68 8.5.35 8.5.36 8.5.37 8.5.38 8.5.39 8.5.4 All 221 releases
wpvr / includes / class-wpvr-i18n.php

class-wpvr-i18n.php in WPVR – 360 Panorama viewer and Virtual Tour Builder for WordPress 8.5.68, at includes/class-wpvr-i18n.php

43 lines 865 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Define the internationalization functionality
4 *
5 * Loads and defines the internationalization files for this plugin
6 * so that it is ready for translation.
7 *
8 * @link http://rextheme.com/
9 * @since 1.0.0
10 *
11 * @package Wpvr
12 * @subpackage Wpvr/includes
13 */
14
15 /**
16 * Define the internationalization functionality.
17 *
18 * Loads and defines the internationalization files for this plugin
19 * so that it is ready for translation.
20 *
21 * @since 1.0.0
22 * @package Wpvr
23 * @subpackage Wpvr/includes
24 * @author Rextheme <support@rextheme.com>
25 */
26 class Wpvr_i18n { //phpcs:ignore
27
28
29 /**
30 * Load the plugin text domain for translation.
31 *
32 * @since 1.0.0
33 */
34 public function load_plugin_textdomain() {
35
36 load_plugin_textdomain(
37 'wpvr',
38 false,
39 dirname( dirname( plugin_basename( __FILE__ ) ) ) . '/languages/'
40 );
41 }
42 }
43