X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FBaseModule.php;h=b43e984772f6cfd7b6ecfa220f8dc6ea52c999a6;hb=ae2e8beaaca342a0d5ced45beb0fc6c1b4f8a4a4;hp=d9c7da97a7b8d3c6b30a97f682d51f1598aaf34e;hpb=360614d2cf3aceeb763ef1281ad5236878f5d735;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); } /**