| 1 | <?php |
||
| 5 | trait HasAfroAsiaticVerboseMethods |
||
| 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 Amharic. |
||
| 17 | * |
||
| 18 | * @return mixed |
||
| 19 | */ |
||
| 20 | public function inAmharic() |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Function to retrieve the translation in Arabic. |
||
| 27 | * |
||
| 28 | * @return mixed |
||
| 29 | */ |
||
| 30 | public function inArabic() |
||
| 34 | |||
| 35 | /** |
||
| 36 | * Function to retrieve the translation in Hausa. |
||
| 37 | * |
||
| 38 | * @return mixed |
||
| 39 | */ |
||
| 40 | public function inHausa() |
||
| 44 | |||
| 45 | /** |
||
| 46 | * Function to retrieve the translation in Hebrew. |
||
| 47 | * |
||
| 48 | * @return mixed |
||
| 49 | */ |
||
| 50 | public function inHebrew() |
||
| 54 | |||
| 55 | /** |
||
| 56 | * Function to retrieve the translation in Maltese. |
||
| 57 | * |
||
| 58 | * @return mixed |
||
| 59 | */ |
||
| 60 | public function inMaltese() |
||
| 64 | |||
| 65 | /** |
||
| 66 | * Function to retrieve the translation in Somali. |
||
| 67 | * |
||
| 68 | * @return mixed |
||
| 69 | */ |
||
| 70 | public function inSomali() |
||
| 74 | } |
||
| 75 |