diff options
author | Christophe Fergeau <cfergeau@mandriva.com> | 2009-09-21 08:37:03 +0000 |
---|---|---|
committer | Christophe Fergeau <cfergeau@mandriva.com> | 2009-09-21 08:37:03 +0000 |
commit | c1e71a23f1ac88840ffc8cd8f7e1c158a586069e (patch) | |
tree | 1f840ad8c1352d52e37e1d305b09d1771075c07e /urpm | |
parent | abe86bf01052ccbf5122810ed2f36ed424de9a9f (diff) | |
download | urpmi-c1e71a23f1ac88840ffc8cd8f7e1c158a586069e.tar urpmi-c1e71a23f1ac88840ffc8cd8f7e1c158a586069e.tar.gz urpmi-c1e71a23f1ac88840ffc8cd8f7e1c158a586069e.tar.bz2 urpmi-c1e71a23f1ac88840ffc8cd8f7e1c158a586069e.tar.xz urpmi-c1e71a23f1ac88840ffc8cd8f7e1c158a586069e.zip |
string fixes in dudf module
Diffstat (limited to 'urpm')
-rw-r--r-- | urpm/dudf.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/urpm/dudf.pm b/urpm/dudf.pm index e9988281..3165dc6a 100644 --- a/urpm/dudf.pm +++ b/urpm/dudf.pm @@ -276,7 +276,7 @@ sub upload_dudf { print N("\nYou can see your DUDF report at the following URL :\n\t"); print $self->{access_url} . "?uid=" . $self->{dudf_uid} . "\n"; append_to_file($self->{log_file}, $self->{dudf_time} . "\t" . $self->{dudf_uid} . "\n"); - print N("You can access to a log of your uploads in\n\t") . $self->{log_file} . "\n"; + print N("You can access a log of your uploads in\n\t") . $self->{log_file} . "\n"; } sub xml_pkgs { @@ -359,7 +359,7 @@ sub write_dudf { (!$self->{exit_code} && $self->{force_dudf}) ) ) { my $noexpr = N("Nn"); my $msg = N("A problem has been encountered. You can help Mandriva to improve package\ninstallation by uploading a DUDF report file.\nThis is a part of the Mancoosi european research project.\nMore at http://www.mancoosi.org\n"); - $msg .= N("Do you want to upload to Mandriva a DUDF report?"); + $msg .= N("Do you want to upload a DUDF report to Mandriva?"); if ($self->{force_dudf} || message_input_($msg . N(" (Y/n) "), boolean => 1) !~ /[$noexpr]/) { print N("\nGenerating DUDF... "); |