diff options
author | Christophe Fergeau <cfergeau@mandriva.com> | 2009-07-30 13:16:08 +0000 |
---|---|---|
committer | Christophe Fergeau <cfergeau@mandriva.com> | 2009-07-30 13:16:08 +0000 |
commit | e926cc9c9ac00627aa05b25440d6f7847766fbb7 (patch) | |
tree | 23ccbb493d6bd12b8865fe43892380a7e94587dd /urpm | |
parent | 9c692705a7df1d92e5e0f3c4aa2453bf0bdab170 (diff) | |
download | urpmi-e926cc9c9ac00627aa05b25440d6f7847766fbb7.tar urpmi-e926cc9c9ac00627aa05b25440d6f7847766fbb7.tar.gz urpmi-e926cc9c9ac00627aa05b25440d6f7847766fbb7.tar.bz2 urpmi-e926cc9c9ac00627aa05b25440d6f7847766fbb7.tar.xz urpmi-e926cc9c9ac00627aa05b25440d6f7847766fbb7.zip |
small clean-ups in text messages
Diffstat (limited to 'urpm')
-rw-r--r-- | urpm/dudf.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/urpm/dudf.pm b/urpm/dudf.pm index 8a8aec49..6b0470ad 100644 --- a/urpm/dudf.pm +++ b/urpm/dudf.pm @@ -229,7 +229,7 @@ sub store_userpkgs { @{$self->{pkgs_user}} = @pkgs; } -# Store a list of packages selected bu urpmi to install +# Store a list of packages selected by urpmi to install sub store_toinstall { my $self = shift; shift; @@ -244,7 +244,7 @@ sub upload_dudf { my ($self, $options) = @_; (my $cwd) = getcwd() =~ /(.*)/; - print N("Compressing file... "); + print N("Compressing DUDF data... "); # gzip the file to upload open(FILE, $self->{dudf_file}) or do { print N("NOT OK\n"); return }; my $gz = gzopen($self->{dudf_file} . ".gz", "wb") or do { print N("NOT OK\n"); return }; @@ -257,7 +257,7 @@ sub upload_dudf { close(FILE); print N("OK\n"); - print N("Uploading file:\n"); + print N("Uploading DUDF data:\n"); my (@ftp_files, @other_files); push @other_files, $self->{dudf_filename}; my @l = (@ftp_files, @other_files); |