# poll-maker/5.6.0/includes/class-poll-maker-ays-i18n.php

Poll Maker by AYS – Versus Polls, Anonymous Polls, Image Polls, version 5.6.0. 48 lines.

- Page: https://pluginprobe.com/plugins/poll-maker/5.6.0/code/includes/class-poll-maker-ays-i18n.php
- Raw: https://pluginprobe.com/plugins/poll-maker/5.6.0/raw/includes/class-poll-maker-ays-i18n.php
- Modified: 2024-12-30T07:53:16+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/poll-maker/5.6.0/code/includes/class-poll-maker-ays-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       https://ays-pro.com/
 * @since      1.0.0
 *
 * @package    Poll_Maker_Ays
 * @subpackage Poll_Maker_Ays/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    Poll_Maker_Ays
 * @subpackage Poll_Maker_Ays/includes
 * @author     Poll Maker Team <info@ays-pro.com>
 */
class Poll_Maker_Ays_i18n {


	/**
	 * Load the plugin text domain for translation.
	 *
	 * @since    1.0.0
	 */
	public function load_plugin_textdomain() {

		load_plugin_textdomain(
			'poll-maker',
			false,
			dirname( dirname( plugin_basename( __FILE__ ) ) ) . '/languages/'
		);

	}



}

```
