X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Fimagefile.php;h=6bc8e599b3022f7aa29d9c80045157989f627293;hb=bd6571c2e17939b21e01afd3772acb5cebbbadfe;hp=cf1668f20373a092c791e71a706608493d0848a8;hpb=db64b612961c37477d0729e9ff4f882fb5df7b8d;p=quix0rs-gnu-social.git diff --git a/lib/imagefile.php b/lib/imagefile.php index cf1668f203..6bc8e599b3 100644 --- a/lib/imagefile.php +++ b/lib/imagefile.php @@ -214,9 +214,9 @@ class ImageFile $value = ImageFile::maxFileSizeInt(); if ($value > 1024 * 1024) { - return ($value/(1024*1024)).'Mb'; + return ($value/(1024*1024)) . _('MB'); } else if ($value > 1024) { - return ($value/(1024)).'kB'; + return ($value/(1024)) . _('kB'); } else { return $value; }