Add missing getPokeVerbs() method
authorPhilipp Holzer <admin+github@philipp.info>
Tue, 3 Sep 2019 14:07:05 +0000 (16:07 +0200)
committerPhilipp Holzer <admin+github@philipp.info>
Tue, 3 Sep 2019 14:07:05 +0000 (16:07 +0200)
src/Core/L10n.php

index db008d6..0b76fc6 100644 (file)
@@ -31,10 +31,11 @@ class L10n extends BaseObject
         *
         * If called repeatedly, it won't save the translation strings again, just load the new ones.
         *
-        * @see   popLang()
-        * @brief Stores the current language strings and load a different language.
         * @param string $lang Language code
+        *
         * @throws \Exception
+        * @see   popLang()
+        * @brief Stores the current language strings and load a different language.
         */
        public static function pushLang($lang)
        {
@@ -63,6 +64,7 @@ class L10n extends BaseObject
         *
         * @param string $s
         * @param array  $vars Variables to interpolate in the translation string
+        *
         * @return string
         */
        public static function t($s, ...$vars)
@@ -86,6 +88,7 @@ class L10n extends BaseObject
         * @param string $singular
         * @param string $plural
         * @param int    $count
+        *
         * @return string
         * @throws \Exception
         */
@@ -114,6 +117,7 @@ class L10n extends BaseObject
         * @brief Translate days and months names.
         *
         * @param string $s String with day or month name.
+        *
         * @return string Translated string.
         */
        public static function getDay($s)
@@ -125,10 +129,23 @@ class L10n extends BaseObject
         * @brief Translate short days and months names.
         *
         * @param string $s String with short day or month name.
+        *
         * @return string Translated string.
         */
        public static function getDayShort($s)
        {
                return self::getClass(L10nClass::class)->getDayShort($s);
        }
+
+       /**
+        * Load poke verbs
+        *
+        * @return array index is present tense verb
+        *                 value is array containing past tense verb, translation of present, translation of past
+        * @hook poke_verbs pokes array
+        */
+       public static function getPokeVerbs()
+       {
+               return self::getClass(L10nClass::class)->getPokeVerbs();
+       }
 }