| 12345678910111213141516171819202122232425 |
- <?php
- /**
- * Define the internationalization functionality.
- *
- * Loads and defines the internationalization files for this plugin
- * so that it is ready for translation.
- *
- * @package QDR_Temporary_Shared_Storage
- * @since 1.0.0
- */
- class QDR_TSS_i18n {
- /**
- * Load the plugin text domain for translation.
- *
- * @since 1.0.0
- */
- public function load_plugin_textdomain() {
- load_plugin_textdomain(
- 'qdr-temporary-shared-storage',
- false,
- dirname(dirname(plugin_basename(__FILE__))) . '/languages/'
- );
- }
- }
|