class-qdr-tss-i18n.php 596 B

12345678910111213141516171819202122232425
  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. * @package QDR_Temporary_Shared_Storage
  9. * @since 1.0.0
  10. */
  11. class QDR_TSS_i18n {
  12. /**
  13. * Load the plugin text domain for translation.
  14. *
  15. * @since 1.0.0
  16. */
  17. public function load_plugin_textdomain() {
  18. load_plugin_textdomain(
  19. 'qdr-temporary-shared-storage',
  20. false,
  21. dirname(dirname(plugin_basename(__FILE__))) . '/languages/'
  22. );
  23. }
  24. }