PluginProbe ʕ •ᴥ•ʔ
Firebase Authentication / 1.6.1
Firebase Authentication v1.6.1
1.7.0 trunk 1.0.0 1.1.1 1.1.2 1.1.3 1.1.4 1.2.0 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7 1.4.0 1.4.1 1.4.2 1.4.3 1.4.4 1.4.5 1.4.6 1.4.8 1.5.0 1.5.1 1.5.2 1.5.3 1.5.4 1.5.5 1.5.6 1.5.7 1.5.8 1.5.9 1.6.0 1.6.1 1.6.2 1.6.3 1.6.4 1.6.5 1.6.6 1.6.7 1.6.8 1.6.9
firebase-authentication / includes / class-mo-firebase-authentication-i18n.php
firebase-authentication / includes Last commit date
images 3 years ago class-mo-firebase-authentication-deactivator.php 3 years ago class-mo-firebase-authentication-i18n.php 3 years ago class-mo-firebase-authentication-loader.php 3 years ago class-mo-firebase-authentication.php 3 years ago
class-mo-firebase-authentication-i18n.php
47 lines
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://miniorange.com
9 * @since 1.0.0
10 *
11 * @package Firebase_Authentication
12 * @subpackage Firebase_Authentication/includes
13 */
14
15 /**
16 * Define the internationalization functionality.
17 *
18 * Loads and defines the internationalization files for this plugin
19 * so that it is ready for translation.
20 *
21 * @since 1.0.0
22 * @package Firebase_Authentication
23 * @subpackage Firebase_Authentication/includes
24 * @author miniOrange <info@miniorange.com>
25 */
26 class MO_Firebase_Authentication_I18n {
27
28
29 /**
30 * Load the plugin text domain for translation.
31 *
32 * @since 1.0.0
33 */
34 public function load_plugin_textdomain() {
35
36 load_plugin_textdomain(
37 'firebase-authentication',
38 false,
39 dirname( dirname( plugin_basename( __FILE__ ) ) ) . '/languages/'
40 );
41
42 }
43
44
45
46 }
47