X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Fnewmessage.php;h=447a00580cfe8cb17fab4f3a0173e5b8c3cab6b9;hb=6e894c010fc0e7ddaaafa8795634d6343019aafb;hp=25e58feab30c294ec6ef7bec4857a29de5316760;hpb=15b88697a7c182faead1bbddfe38b59fdc54a0a2;p=quix0rs-gnu-social.git diff --git a/actions/newmessage.php b/actions/newmessage.php index 25e58feab3..447a00580c 100644 --- a/actions/newmessage.php +++ b/actions/newmessage.php @@ -144,11 +144,14 @@ class NewmessageAction extends Action $this->showForm(_('No content!')); return; } else { - $content_shortened = common_shorten_links($this->content); + $content_shortened = $user->shortenLinks($this->content); if (Message::contentTooLong($content_shortened)) { - $this->showForm(sprintf(_('That\'s too long. ' . - 'Max message size is %d chars.'), + // TRANS: Form validation error displayed when message content is too long. + // TRANS: %d is the maximum number of characters for a message. + $this->showForm(sprintf(_m('That\'s too long. Maximum message size is %d character.', + 'That\'s too long. Maximum message size is %d characters.', + Message::maxContent()), Message::maxContent())); return; }