first commit

This commit is contained in:
2026-03-05 13:07:40 +01:00
commit 64ba0721ee
25709 changed files with 4691006 additions and 0 deletions

View File

@@ -0,0 +1,49 @@
<?php
if (!defined('WPVIVID_PLUGIN_DIR')){
die;
}
/**
* Define the internationalization functionality
*
* Loads and defines the internationalization files for this plugin
* so that it is ready for translation.
*
* @link https://wpvivid.com
* @since 0.9.1
*
* @package wpvivid
* @subpackage wpvivid/includes
*/
/**
* Define the internationalization functionality.
*
* Loads and defines the internationalization files for this plugin
* so that it is ready for translation.
*
* @since 0.9.1
* @package wpvivid
* @subpackage wpvivid/includes
* @author wpvivid team
*/
class WPvivid_i18n {
/**
* Load the plugin text domain for translation.
*
*
*/
public function load_plugin_textdomain() {
load_plugin_textdomain(
'wpvivid-backuprestore',
false,
dirname( dirname( plugin_basename( __FILE__ ) ) ) . '/languages/'
);
}
}