]> git.mxchange.org Git - friendica.git/blobdiff - src/BaseModule.php
Merge remote-tracking branch 'upstream/develop' into api-rework
[friendica.git] / src / BaseModule.php
index 5d752bb4f7450065bec2642c8f997fa8f067c91c..be4788045c2d283d73c5c30080c1ebf661ee7710 100644 (file)
@@ -49,6 +49,26 @@ abstract class BaseModule implements ICanHandleRequests
                $this->l10n       = $l10n;
        }
 
+       /**
+        * Wraps the L10n::t() function for Modules
+        *
+        * @see L10n::t()
+        */
+       protected function t(string $s, ...$args): string
+       {
+               return $this->l10n->t($s, $args);
+       }
+
+       /**
+        * Wraps the L10n::tt() function for Modules
+        *
+        * @see L10n::tt()
+        */
+       protected function tt(string $singular, string $plurarl, int $count): string
+       {
+               return $this->l10n->tt($singular, $plurarl, $count);
+       }
+
        /**
         * {@inheritDoc}
         */