X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=widgets%2Fwidget_like.php;h=5f03c12eb6abf96954216642578af1daa3cda146;hb=b191d5716c850b5b5b44d46a265a1108b838a320;hp=279311874defd64e8b70cb1fb05e6fb78f024ce8;hpb=a43901ba073f64b8b2fa5b320d94d7426ef84a7e;p=friendica-addons.git diff --git a/widgets/widget_like.php b/widgets/widget_like.php index 27931187..5f03c12e 100644 --- a/widgets/widget_like.php +++ b/widgets/widget_like.php @@ -58,10 +58,10 @@ function like_widget_content(&$a, $conf){ $t = get_markup_template("widget_like.tpl", "addon/widgets/"); $o .= replace_macros($t, [ '$like' => $likes, - '$strlike' => sprintf(L10n::tt("%d person likes this", "%d people like this", $likes), $likes), + '$strlike' => L10n::tt("%d person likes this", "%d people like this", $likes), '$dislike' => $dislikes, - '$strdislike'=> sprintf(L10n::tt("%d person doesn't like this", "%d people don't like this", $dislikes), $dislikes), + '$strdislike'=> L10n::tt("%d person doesn't like this", "%d people don't like this", $dislikes), '$baseurl' => $a->get_baseurl(), ]);