You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
889 B
37 lines
889 B
<?php |
|
/** |
|
* 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 Mobilizon_Mirror |
|
* @subpackage Mobilizon_Mirror/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 Mobilizon_Mirror |
|
* @subpackage Mobilizon_Mirror/includes |
|
* @author André Menrath <andre.menrath@posteo.de> |
|
*/ |
|
class Mobilizon_Mirror_I18n { |
|
/** |
|
* Load the plugin text domain for translation. |
|
* |
|
* @since 1.0.0 |
|
*/ |
|
public function load_plugin_textdomain() { |
|
load_plugin_textdomain( |
|
'mobilizon-mirror', |
|
false, |
|
dirname( dirname( plugin_basename( __FILE__ ) ) ) . '/languages/' |
|
); |
|
} |
|
}
|
|
|