diff options
author | Christophe Fergeau <cfergeau@mandriva.com> | 2009-07-31 09:47:21 +0000 |
---|---|---|
committer | Christophe Fergeau <cfergeau@mandriva.com> | 2009-07-31 09:47:21 +0000 |
commit | e639fa713b9561fd14df219f724e0511389dc372 (patch) | |
tree | d83c817ec7480a2127ce4f6a7073c9834b28479d | |
parent | 0a3013293fb7449593f65afb954fa8ed326cf049 (diff) | |
download | urpmi-e639fa713b9561fd14df219f724e0511389dc372.tar urpmi-e639fa713b9561fd14df219f724e0511389dc372.tar.gz urpmi-e639fa713b9561fd14df219f724e0511389dc372.tar.bz2 urpmi-e639fa713b9561fd14df219f724e0511389dc372.tar.xz urpmi-e639fa713b9561fd14df219f724e0511389dc372.zip |
unwrap long string for translation
-rw-r--r-- | urpm/dudf.pm | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/urpm/dudf.pm b/urpm/dudf.pm index 7e916b0b..2c5ece16 100644 --- a/urpm/dudf.pm +++ b/urpm/dudf.pm @@ -313,9 +313,7 @@ sub write_dudf { if ($self->{force_dudf} != 0 || $self->{exit_code} != 0) { my $noexpr = N("Nn"); - my $msg = N("A problem has been encountered. You can help Mandriva to improve packages installation \n"); - $msg .= N("by uploading us a DUDF report file. This is a part of the Mancoosi european research project.\n"); - $msg .= N("More at http://www.mancoosi.org\n"); + 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?"); if ($self->{force_dudf} || message_input_($msg . N(" (Y/n) "), boolean => 1) !~ /[$noexpr]/) { print N("\nGenerating DUDF... "); |