summaryrefslogtreecommitdiffstats
path: root/urpmi
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@mandriva.org>2005-10-26 16:23:37 +0000
committerRafael Garcia-Suarez <rgarciasuarez@mandriva.org>2005-10-26 16:23:37 +0000
commit5a95dd19835e18285e4849fae21135d48f9c7839 (patch)
tree1578fc85d83391ea0b6ab4048fecb50b405293b4 /urpmi
parenta9b51d3cd5173c7c26796c3cac93aaaba7a60a34 (diff)
downloadurpmi-5a95dd19835e18285e4849fae21135d48f9c7839.tar
urpmi-5a95dd19835e18285e4849fae21135d48f9c7839.tar.gz
urpmi-5a95dd19835e18285e4849fae21135d48f9c7839.tar.bz2
urpmi-5a95dd19835e18285e4849fae21135d48f9c7839.tar.xz
urpmi-5a95dd19835e18285e4849fae21135d48f9c7839.zip
Improve some installation error messages (in English) (bug #19060)
Diffstat (limited to 'urpmi')
-rwxr-xr-xurpmi6
1 files changed, 3 insertions, 3 deletions
diff --git a/urpmi b/urpmi
index 5efc3a73..f557db56 100755
--- a/urpmi
+++ b/urpmi
@@ -402,7 +402,7 @@ that are older than the installed ones:\n%s", $list);
my $noexpr = N("Nn");
my $yesexpr = N("Yy");
message_input(
- $msg . N("\nContinue?") . N(" (Y/n) "),
+ $msg . N("\nContinue installation anyway?") . N(" (Y/n) "),
$force && $yesexpr,
boolean => 1,
) =~ /[$noexpr]/
@@ -413,14 +413,14 @@ that are older than the installed ones:\n%s", $list);
my @ask_unselect = $urpm->unselected_packages($state);
if (@ask_unselect) {
my $list = join "\n", $urpm->translate_why_unselected($state, sort @ask_unselect);
- my $msg = N("Some package requested cannot be installed:\n%s", $list);
+ my $msg = N("Some requested packages cannot be installed:\n%s", $list);
if ($urpm->{options}{auto}) {
message($msg);
} else {
my $noexpr = N("Nn");
my $yesexpr = N("Yy");
message_input(
- $msg . N("\nContinue?") . N(" (Y/n) "),
+ $msg . N("\nContinue installation anyway?") . N(" (Y/n) "),
$force && $yesexpr,
boolean => 1,
) =~ /[$noexpr]/