From: MarekBenjamin <117765478+MarekBenjamin@users.noreply.github.com> Date: Fri, 25 Nov 2022 20:53:32 +0000 (+0100) Subject: Update mod/photos.php X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=9dd1cf831630b805187ca1a3341153ff2dcfda59;p=friendica.git Update mod/photos.php Co-authored-by: Hypolite Petovan --- diff --git a/mod/photos.php b/mod/photos.php index eff5daceb4..a78f8d1012 100644 --- a/mod/photos.php +++ b/mod/photos.php @@ -916,7 +916,7 @@ function photos_content(App $a) $maximagesize_bytes = DI::config()->get('system', 'maximagesize'); $maximagesize_Mbytes = ($maximagesize_bytes / (10**6)); - $usage_message = DI::l10n()->t('The maximum accepted image size is: ') . $maximagesize_Mbytes . ' MB'; + $usage_message = DI::l10n()->t('The maximum accepted image size is %.3g MB', $maximagesize_Mbytes); $tpl = Renderer::getMarkupTemplate('photos_upload.tpl');