index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
-rw-r--r-- | src/pacman/util.c | 6 |
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: |