fixed typos
authorStefan Schubert <schubi@suse.de>
Tue, 17 Jul 2007 11:19:37 +0000 (11:19 +0000)
committerStefan Schubert <schubi@suse.de>
Tue, 17 Jul 2007 11:19:37 +0000 (11:19 +0000)
zypp/solver/detail/ResolverInfoDependsOn.cc
zypp/solver/detail/Resolver_problems.cc

index 9c9fc49..da53e1b 100644 (file)
@@ -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());
 }
index 9e3139e..4a2e149 100644 (file)
@@ -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<const ResolverInfoMisc>(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();