summaryrefslogtreecommitdiffstats
path: root/gurpmi2
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 /gurpmi2
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 'gurpmi2')
-rwxr-xr-xgurpmi24
1 files changed, 2 insertions, 2 deletions
diff --git a/gurpmi2 b/gurpmi2
index 045c6705..b10fdfab 100755
--- a/gurpmi2
+++ b/gurpmi2
@@ -72,7 +72,7 @@ $urpm->resolve_dependencies(
my @ask_unselect = $urpm->unselected_packages($state);
@ask_unselect
? ask_continue(N(
- "Some package requested cannot be installed:\n%s\nContinue?",
+ "Some requested packages cannot be installed:\n%s\nContinue installation anyway?",
join "\n", $urpm->translate_why_unselected($state, sort @ask_unselect)
), \&do_install)
: do_install();
@@ -160,7 +160,7 @@ sub do_install {
my @ask_remove = $urpm->removed_packages($state);
@ask_remove
? ask_continue(N(
- "The following packages have to be removed for others to be upgraded:\n%s\nContinue?",
+ "The following packages have to be removed for others to be upgraded:\n%s\nContinue installation anyway?",
join "\n", $urpm->translate_why_removed($state, sort @ask_remove)
), \&do_install_2)
: goto &do_install_2;