summaryrefslogtreecommitdiffstats
path: root/perl-install/diskdrake
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2007-04-29 20:23:44 +0000
committerPascal Rigaux <pixel@mandriva.com>2007-04-29 20:23:44 +0000
commitcc44dcf6ac25fc7dd4279cd473b746bd793081d7 (patch)
tree1db8cf1ac5aafde65178f68af68a310e12c5936a /perl-install/diskdrake
parent3f0bc7b1d5ea11fadd21380a4aa42eded7b1499f (diff)
downloaddrakx-cc44dcf6ac25fc7dd4279cd473b746bd793081d7.tar
drakx-cc44dcf6ac25fc7dd4279cd473b746bd793081d7.tar.gz
drakx-cc44dcf6ac25fc7dd4279cd473b746bd793081d7.tar.bz2
drakx-cc44dcf6ac25fc7dd4279cd473b746bd793081d7.tar.xz
drakx-cc44dcf6ac25fc7dd4279cd473b746bd793081d7.zip
"Free space" is better than "Empty space"
(and we already use "free space" at other places) (thanks to Funda Wang)
Diffstat (limited to 'perl-install/diskdrake')
-rw-r--r--perl-install/diskdrake/interactive.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/diskdrake/interactive.pm b/perl-install/diskdrake/interactive.pm
index 728cb4543..3764f6a60 100644
--- a/perl-install/diskdrake/interactive.pm
+++ b/perl-install/diskdrake/interactive.pm
@@ -1292,7 +1292,7 @@ sub format_part_info {
sub format_part_info_short {
my ($hd, $part) = @_;
- isEmpty($part) ? N("Empty space on %s (%s)", $hd->{device}, formatXiB($part->{size}, 512))
+ isEmpty($part) ? N("Free space on %s (%s)", $hd->{device}, formatXiB($part->{size}, 512))
: partition_table::description($part);
}