summaryrefslogtreecommitdiffstats
path: root/src/pacman/query.c
diff options
context:
space:
mode:
authorXavier Chantry <shiningxc@gmail.com>2009-09-17 02:03:23 +0200
committerDan McGee <dan@archlinux.org>2009-09-17 02:36:49 +0200
commit1df3b91931ea28fa6b279a976339f099a111238d (patch)
tree54f6289f235ed164dc699c5174c8b95688d1c1d6 /src/pacman/query.c
parent08ee4059b5935ab0b378a40dcfb127f169e96f83 (diff)
downloadpacman-1df3b91931ea28fa6b279a976339f099a111238d.tar.gz
pacman-1df3b91931ea28fa6b279a976339f099a111238d.tar.xz
String improvements
Add more untranslated strings, improve consistency, etc. Signed-off-by: Xavier Chantry <shiningxc@gmail.com> Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'src/pacman/query.c')
-rw-r--r--src/pacman/query.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pacman/query.c b/src/pacman/query.c
index a9717074..6b6a25db 100644
--- a/src/pacman/query.c
+++ b/src/pacman/query.c
@@ -344,7 +344,7 @@ static int check(pmpkg_t *pkg)
if(config->quiet) {
printf("%s %s\n", pkgname, f);
} else {
- pm_printf(PM_LOG_WARNING, "%s: missing %s (%s)\n",
+ pm_printf(PM_LOG_WARNING, "%s: %s (%s)\n",
pkgname, f, strerror(errno));
}
errors++;
@@ -352,7 +352,7 @@ static int check(pmpkg_t *pkg)
}
if(!config->quiet) {
- printf("%s: %d total, %d missing file(s)\n",
+ printf(_("%s: %d total files, %d missing file(s)\n"),
pkgname, allfiles, errors);
}