Remove sprintf with translations

don't use sprintf with translation functions
This commit is contained in:
Adam Magness 2018-01-23 22:59:20 -05:00
parent a43901ba07
commit b191d5716c
15 changed files with 36 additions and 35 deletions

View file

@ -96,5 +96,5 @@ function gnot_enotify_mail(&$a,&$b) {
if((! $b['uid']) || (! intval(PConfig::get($b['uid'], 'gnot','enable'))))
return;
if($b['type'] == NOTIFY_COMMENT)
$b['subject'] = sprintf(L10n::t('[Friendica:Notify] Comment to conversation #%d'), $b['parent']);
$b['subject'] = L10n::t('[Friendica:Notify] Comment to conversation #%d', $b['parent']);
}