From: Stefan Schubert Date: Tue, 17 Jul 2007 11:19:37 +0000 (+0000) Subject: fixed typos X-Git-Tag: BASE-SuSE-Linux-10_3-Branch~555 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=dde3cdc7a599bbc63a6b39841879c9a63ac09b70;p=platform%2Fupstream%2Flibzypp.git fixed typos --- diff --git a/zypp/solver/detail/ResolverInfoDependsOn.cc b/zypp/solver/detail/ResolverInfoDependsOn.cc index 9c9fc49..da53e1b 100644 --- a/zypp/solver/detail/ResolverInfoDependsOn.cc +++ b/zypp/solver/detail/ResolverInfoDependsOn.cc @@ -66,7 +66,7 @@ ResolverInfoDependsOn::message( ) const // TranslatorExplanation: 1.%s name of package, 2.%s list of names // TranslatorExplanation: 1.%s is dependent on list of names - return str::form (_("%s dependend on %s"), + return str::form (_("%s depends on %s"), affected_str.c_str(), container_str.c_str()); } diff --git a/zypp/solver/detail/Resolver_problems.cc b/zypp/solver/detail/Resolver_problems.cc index 9e3139e..4a2e149 100644 --- a/zypp/solver/detail/Resolver_problems.cc +++ b/zypp/solver/detail/Resolver_problems.cc @@ -730,7 +730,7 @@ Resolver::problems (const bool ignoreValidSolution) const case RESOLVER_INFO_TYPE_LOCKED_PROVIDER: { // p provides c but is locked ResolverInfoMisc_constPtr misc_info = dynamic_pointer_cast(info); // TranslatorExplanation %s = name of package, patch, selection ... - what = str::form (_("Cannot be install %s to fulfil the dependencies of %s"), + what = str::form (_("Cannot install %s to fulfil the dependencies of %s"), misc_info->other()->name().c_str(), who.c_str()); what = misc_info->message();