PluginProbe
Plugin Notes Plus / 1.2.3
Plugin Notes Plus v1.2.3
trunk 1.0.0 1.1.0 1.1.1 1.1.2 1.2.0 1.2.1 1.2.10 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9
plugin-notes-plus / includes / class-plugin-notes-plus-i18n.php

class-plugin-notes-plus-i18n.php in Plugin Notes Plus 1.2.3, at includes/class-plugin-notes-plus-i18n.php

33 lines 671 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 https://jamiebergen.com/
9 * @since 1.0.0
10 *
11 * @package Plugin_Notes_Plus
12 * @subpackage Plugin_Notes_Plus/includes
13 * @author Jamie Bergen <jamie.bergen@gmail.com>
14 */
15 class Plugin_Notes_Plus_i18n {
16
17 /**
18 * Load the plugin text domain for translation.
19 *
20 * @since 1.0.0
21 */
22 public function load_plugin_textdomain() {
23
24 load_plugin_textdomain(
25 'plugin-notes-plus',
26 false,
27 dirname( dirname( plugin_basename( __FILE__ ) ) ) . '/languages/'
28 );
29
30 }
31
32 }
33