1 | <?php |
||
29 | class I18n { |
||
30 | |||
31 | /** |
||
32 | * The domain specified for this plugin. |
||
33 | * |
||
34 | * @since 1.0.0 |
||
35 | * @access private |
||
36 | * @var string $domain The domain identifier for this plugin. |
||
37 | */ |
||
38 | private $domain; |
||
39 | |||
40 | /** |
||
41 | * Load the plugin text domain for translation. |
||
42 | * |
||
43 | * @since 1.0.0 |
||
44 | */ |
||
45 | public function load_plugin_textdomain() { |
||
54 | |||
55 | /** |
||
56 | * Set the domain equal to that of the specified domain. |
||
57 | * |
||
58 | * @since 1.0.0 |
||
59 | * @param string $domain The domain that represents the locale of this plugin. |
||
60 | */ |
||
61 | public function set_domain( $domain ) { |
||
64 | |||
65 | } |
||
66 |