summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2011-08-11 17:28:59 +0200
committerDan McGee <dan@archlinux.org>2011-08-11 18:29:49 +0200
commit725edde73fb16564b0ce33257d7a069b10eb8cea (patch)
tree07d994c90e2508dc10861793136972ab21327340
parent857357f9405b6c07236550b7ec1558ed1b116c6b (diff)
downloadpacman-725edde73fb16564b0ce33257d7a069b10eb8cea.tar.gz
pacman-725edde73fb16564b0ce33257d7a069b10eb8cea.tar.xz
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>
-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: