From: Adam Magness Date: Wed, 24 Jan 2018 03:43:22 +0000 (-0500) Subject: String correction X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=8eecad4c7f1c57e2f7a608cc40fa7cf9e7c85137;p=friendica.git String correction monthly is monthly --- diff --git a/include/api.php b/include/api.php index 722c93c87c..fa4e7f7758 100644 --- a/include/api.php +++ b/include/api.php @@ -1226,7 +1226,7 @@ function api_statuses_update($type) if ($posts_month > $throttle_month) { logger('Monthly posting limit reached for user '.api_user(), LOGGER_DEBUG); // die(api_error($type, L10n::t("Monthly posting limit of %d posts reached. The post was rejected.", $throttle_month)); - throw new TooManyRequestsException(L10n::t("Weekly posting limit of %d post reached. The post was rejected.", "Monthly posting limit of %d posts reached. The post was rejected.", $throttle_month)); + throw new TooManyRequestsException(L10n::t("Monthly posting limit of %d post reached. The post was rejected.", "Monthly posting limit of %d posts reached. The post was rejected.", $throttle_month)); } }