Fix grammar in some user facing request strings
authorDavid Disseldorp <ddiss@suse.de>
Fri, 19 Jul 2013 15:14:51 +0000 (17:14 +0200)
committerDavid Disseldorp <ddiss@suse.de>
Fri, 19 Jul 2013 15:15:51 +0000 (17:15 +0200)
These strings really hurt my eyes. po-file updates to follow.

src/RequestFeedback.cc

index 8f95e17..8fe23a2 100644 (file)
@@ -112,7 +112,7 @@ string SolverRequester::Feedback::asUserString(
     PoolItem highest = asSelectable()(_objsel)->highestAvailableVersionObj();
     return str::form(
         _("There is an update candidate '%s' for '%s', but it does not match"
-          " specified version, architecture, or repository."),
+          " the specified version, architecture, or repository."),
         poolitem_user_string(highest).c_str(),
         poolitem_user_string(_objinst).c_str());
   }
@@ -124,7 +124,7 @@ string SolverRequester::Feedback::asUserString(
     cmdhint << "zypper install " << poolitem_user_string(highest);
 
     return str::form(
-      _("There is an update candidate for '%s', but it is from different"
+      _("There is an update candidate for '%s', but it is from different"
         " vendor. Use '%s' to install this candidate."),
         _objinst->name().c_str(), cmdhint.str().c_str());
   }
@@ -137,8 +137,8 @@ string SolverRequester::Feedback::asUserString(
         << "-" << highest->edition() << "." << highest->arch();
 
     return str::form(
-      _("There is an update candidate for '%s', but it comes from repository"
-         " with lower priority. Use '%s' to install this candidate."),
+      _("There is an update candidate for '%s', but it comes from repository"
+         " with lower priority. Use '%s' to install this candidate."),
         _objinst->name().c_str(), cmdhint.str().c_str());
   }