From 725edde73fb16564b0ce33257d7a069b10eb8cea Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Thu, 11 Aug 2011 10:28:59 -0500 Subject: 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 --- src/pacman/util.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/pacman/util.c b/src/pacman/util.c index e8c0a299..91625a12 100644 --- a/src/pacman/util.c +++ b/src/pacman/util.c @@ -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: -- cgit v1.2.3-24-g4f1b