images
5 years ago
class-firebase-authentication-activator.php
5 years ago
class-firebase-authentication-deactivator.php
5 years ago
class-firebase-authentication-i18n.php
5 years ago
class-firebase-authentication-loader.php
5 years ago
class-firebase-authentication.php
5 years ago
index.php
5 years ago
class-firebase-authentication-i18n.php
48 lines
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * Define the internationalization functionality |
| 5 | * |
| 6 | * Loads and defines the internationalization files for this plugin |
| 7 | * so that it is ready for translation. |
| 8 | * |
| 9 | * @link https://miniorange.com |
| 10 | * @since 1.0.0 |
| 11 | * |
| 12 | * @package Firebase_Authentication |
| 13 | * @subpackage Firebase_Authentication/includes |
| 14 | */ |
| 15 | |
| 16 | /** |
| 17 | * Define the internationalization functionality. |
| 18 | * |
| 19 | * Loads and defines the internationalization files for this plugin |
| 20 | * so that it is ready for translation. |
| 21 | * |
| 22 | * @since 1.0.0 |
| 23 | * @package Firebase_Authentication |
| 24 | * @subpackage Firebase_Authentication/includes |
| 25 | * @author miniOrange <info@miniorange.com> |
| 26 | */ |
| 27 | class MO_Firebase_Authentication_i18n { |
| 28 | |
| 29 | |
| 30 | /** |
| 31 | * Load the plugin text domain for translation. |
| 32 | * |
| 33 | * @since 1.0.0 |
| 34 | */ |
| 35 | public function load_plugin_textdomain() { |
| 36 | |
| 37 | load_plugin_textdomain( |
| 38 | 'firebase-authentication', |
| 39 | false, |
| 40 | dirname( dirname( plugin_basename( __FILE__ ) ) ) . '/languages/' |
| 41 | ); |
| 42 | |
| 43 | } |
| 44 | |
| 45 | |
| 46 | |
| 47 | } |
| 48 |