diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/pacman/util.c | 6 |
1 files changed, 3 insertions, 3 deletions
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: |