1 | <?php |
||
5 | trait HasCelticVerboseMethods |
||
6 | { |
||
7 | /** |
||
8 | * Retrieve the translation in another locale. |
||
9 | * |
||
10 | * @param string $locale |
||
11 | * @return mixed |
||
12 | */ |
||
13 | abstract public function getTranslationIn(string $locale); |
||
14 | |||
15 | /** |
||
16 | * Function to retrieve the translation in Irish. |
||
17 | * |
||
18 | * @return mixed |
||
19 | */ |
||
20 | public function inIrish() |
||
24 | |||
25 | /** |
||
26 | * Function to retrieve the translation in Welsh. |
||
27 | * |
||
28 | * @return mixed |
||
29 | */ |
||
30 | public function inWelsh() : string |
||
34 | |||
35 | /** |
||
36 | * Function to retrieve the translation in Scots Gaelic. |
||
37 | * |
||
38 | * @return mixed |
||
39 | */ |
||
40 | public function inScotsGaelic() : string |
||
44 | } |
||
45 |