summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/Translate/insertables/InsertablesSuggester.php
blob: 70cc9702f996637fd9c05cca161fd98eb2d6957e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php
/**
 * Interface for InsertableSuggesters.
 *
 * @file
 * @author Niklas Laxström
 * @license GPL-2.0-or-later
 */

/**
 * Insertable is a string that usually does not need translation and is
 * difficult to type manually.
 * @since 2013.09
 */
interface InsertablesSuggester {
	public function getInsertables( $text );
}