| 1 |
<?php if (! defined('ABSPATH')) exit; // Exit if accessed directly |
| 2 |
interface HC3_ITranslate |
| 3 |
{ |
| 4 |
public function translate( $str ); |
| 5 |
public function __( $str ); |
| 6 |
public function _x( $str, $context ); |
| 7 |
public function _n( $singular, $plural, $count ); |
| 8 |
public function getLocale(); |
| 9 |
public function getOptions(); |
| 10 |
} |