From ffde32e0842fe6f1eae576398de1ae5682437d4f Mon Sep 17 00:00:00 2001 From: kink Date: Thu, 24 Jan 2008 15:22:43 +0000 Subject: [PATCH] make MiB/KiB translatable git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@12898 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- functions/strings.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/functions/strings.php b/functions/strings.php index c497ff90..9383d83d 100644 --- a/functions/strings.php +++ b/functions/strings.php @@ -743,11 +743,11 @@ function OneTimePadCreate ($length=100) { */ function show_readable_size($bytes) { $bytes /= 1024; - $type = 'KiB'; + $type = _("KiB"); if ($bytes / 1024 > 1) { $bytes /= 1024; - $type = 'MiB'; + $type = _("MiB"); } if ($bytes < 10) { -- 2.25.1