Update trust level strings in -Qi display

It makes more sense to use the same tense and construction on all of
these.

Signed-off-by: Dan McGee <dan@archlinux.org>
This commit is contained in:
Dan McGee 2011-08-11 10:28:59 -05:00
parent 857357f940
commit 725edde73f
1 changed files with 3 additions and 3 deletions

View File

@ -708,13 +708,13 @@ void signature_display(const char *title, alpm_sigresult_t *result)
}
switch(result->validity[i]) {
case ALPM_SIGVALIDITY_FULL:
validity = _("fully trusted");
validity = _("full trust");
break;
case ALPM_SIGVALIDITY_MARGINAL:
validity = _("marginal trusted");
validity = _("marginal trust");
break;
case ALPM_SIGVALIDITY_NEVER:
validity = _("never trusted");
validity = _("never trust");
break;
case ALPM_SIGVALIDITY_UNKNOWN:
default: