summaryrefslogtreecommitdiffstats
path: root/src/pacman/util.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/pacman/util.c')
-rw-r--r--src/pacman/util.c6
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: