fixed error message
authorStefan Schubert <schubi@suse.de>
Fri, 25 Jan 2008 09:11:42 +0000 (09:11 +0000)
committerStefan Schubert <schubi@suse.de>
Fri, 25 Jan 2008 09:11:42 +0000 (09:11 +0000)
zypp/sat/SATResolver.cc

index 4a56510..6cf5b65 100644 (file)
@@ -695,7 +695,7 @@ SATResolver::problems ()
                                        || poolItem.status().staysUninstalled())
                                        problemSolution->addSingleAction (poolItem, KEEP);
                                }
-                               string description = str::form (_("do not install a solvable providing %s"), dep2str(pool, what));
+                               string description = str::form (_("do not ask to install a solvable providing %s"), dep2str(pool, what));
                                MIL << description << endl;
                                problemSolution->addDescription (description);
                                }
@@ -710,7 +710,7 @@ SATResolver::problems ()
                                        || poolItem.status().staysInstalled())
                                        problemSolution->addSingleAction (poolItem, KEEP);
                                }
-                               string description = str::form (_("keep all solvables providing %s"), dep2str(pool, what));
+                               string description = str::form (_("do not ask to delete all solvables providing %s"), dep2str(pool, what));
                                MIL << description << endl;
                                problemSolution->addDescription (description);
                                }