X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FBaseModule.php;h=b43e984772f6cfd7b6ecfa220f8dc6ea52c999a6;hb=302619a5de7e694acc2d6883af77fa9b051bb974;hp=d9c7da97a7b8d3c6b30a97f682d51f1598aaf34e;hpb=6aa1dcfad371f34fea1f8e39b73de2cc3dd05784;p=friendica.git diff --git a/src/BaseModule.php b/src/BaseModule.php index d9c7da97a7..b43e984772 100644 --- a/src/BaseModule.php +++ b/src/BaseModule.php @@ -90,9 +90,9 @@ abstract class BaseModule implements ICanHandleRequests * * @see L10n::tt() */ - protected function tt(string $singular, string $plurarl, int $count): string + protected function tt(string $singular, string $plural, int $count): string { - return $this->l10n->tt($singular, $plurarl, $count); + return $this->l10n->tt($singular, $plural, $count); } /**