1 | <?php |
||
5 | trait HasIndoEuropeanVerboseMethods |
||
6 | { |
||
7 | use HasBaltoSlavicVerboseMethods, |
||
8 | HasCelticVerboseMethods, |
||
9 | HasGermanicVerboseMethods, |
||
10 | HasIndoIranianVerboseMethods, |
||
11 | HasItalicVerboseMethods; |
||
12 | |||
13 | /** |
||
14 | * Retrieve the translation in another locale. |
||
15 | * |
||
16 | * @param string $locale |
||
17 | * @return mixed |
||
18 | */ |
||
19 | abstract public function getTranslationIn(string $locale); |
||
20 | |||
21 | /** |
||
22 | * Function to retrieve the translation in Albanian. |
||
23 | * |
||
24 | * @return mixed |
||
25 | */ |
||
26 | public function inAlbanian() |
||
30 | |||
31 | /** |
||
32 | * Function to retrieve the translation in Armenian. |
||
33 | * |
||
34 | * @return mixed |
||
35 | */ |
||
36 | public function inArmenian() |
||
40 | |||
41 | /** |
||
42 | * Function to retrieve the translation in Greek. |
||
43 | * |
||
44 | * @returnsmixed |
||
45 | */ |
||
46 | public function inGreek() |
||
50 | } |
||
51 |