| 1 |
<?php |
| 2 |
|
| 3 |
namespace Barn2\Plugin\Posts_Table_Search_Sort\Dependencies\Lib; |
| 4 |
|
| 5 |
/** |
| 6 |
* Something that can be translated by WordPress. |
| 7 |
* |
| 8 |
* @package Barn2\barn2-lib |
| 9 |
* @author Barn2 Plugins <support@barn2.com> |
| 10 |
* @license GPL-3.0 |
| 11 |
* @copyright Barn2 Media Ltd |
| 12 |
* @version 1.0 |
| 13 |
* @internal |
| 14 |
*/ |
| 15 |
interface Translatable |
| 16 |
{ |
| 17 |
/** |
| 18 |
* Load the text domain for a theme or plugin. |
| 19 |
* |
| 20 |
* @return void |
| 21 |
*/ |
| 22 |
public function load_textdomain(); |
| 23 |
} |
| 24 |
|