From: Stefan Schubert Date: Mon, 13 Mar 2006 14:23:14 +0000 (+0000) Subject: Bug 156587 X-Git-Tag: BASE-SuSE-SLE-10-SP2-Branch~1571 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=98ff8f5eb73a9f2773bd4958952439024934f937;p=platform%2Fupstream%2Flibzypp.git Bug 156587 --- diff --git a/zypp/solver/detail/Resolver_problems.cc b/zypp/solver/detail/Resolver_problems.cc index 0ade9ab..82c11cf 100644 --- a/zypp/solver/detail/Resolver_problems.cc +++ b/zypp/solver/detail/Resolver_problems.cc @@ -292,7 +292,7 @@ Resolver::problems (void) const case RESOLVER_INFO_TYPE_REJECT_INSTALL: { // p is scheduled to be installed, but this is not possible because of dependency problems. ResolverInfoMisc_constPtr misc_info = dynamic_pointer_cast(info); // TranslatorExplanation %s = name of package,patch,... - what = str::form (_("Cannot install %s due dependency problems"), who.c_str()); + what = str::form (_("Cannot install %s due to dependency problems"), who.c_str()); details = misc_info->message(); ResolverProblem_Ptr problem = new ResolverProblem (what, details); // Uninstall it; @@ -432,7 +432,7 @@ Resolver::problems (void) const case RESOLVER_INFO_TYPE_NO_PROVIDER: { // There are no installable providers of c [for p] ResolverInfoMisc_constPtr misc_info = dynamic_pointer_cast(info); // TranslatorExplanation %s = name of package, patch, selection ... - what = str::form (_("%s cannot be installed due missing dependencies"), who.c_str()); + what = str::form (_("%s cannot be installed due to missing dependencies"), who.c_str()); details = misc_info->message(); ResolverProblem_Ptr problem = new ResolverProblem (what, details); @@ -590,7 +590,7 @@ Resolver::problems (void) const case RESOLVER_INFO_TYPE_CONFLICT_UNINSTALLABLE: { // uninstalled p is marked uninstallable it conflicts [with q] due to c ResolverInfoMisc_constPtr misc_info = dynamic_pointer_cast(info); // TranslatorExplanation %s = name of package, patch, selection ... - what = str::form (_("%s is uninstallable due conflicts with %s"), + what = str::form (_("%s is uninstallable due to conflicts with %s"), who.c_str(), misc_info->other()->name().c_str()); details = misc_info->message();