From 6bf13b5cbbf2dcaf20a0654250c9d275690d1436 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Tue, 6 Sep 2005 08:21:01 +0000 Subject: display in MBytes the sizes instead of Bytes (not changing the string since the po is frozen) --- perl-install/install_steps_interactive.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'perl-install/install_steps_interactive.pm') diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index 976889eaf..907b07876 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -462,7 +462,7 @@ sub choosePackages { undef $w; if ($min_size >= $availableC) { $o->ask_warn('', N("Your system does not have enough space left for installation or upgrade (%d > %d)", - $min_size, $availableC)); + $min_size / sqr(1024), $availableC / sqr(1024))); install_steps::rebootNeeded($o); } -- cgit v1.2.1