summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChantry Xavier <shiningxc@gmail.com>2007-11-17 23:35:22 +0100
committerDan McGee <dan@archlinux.org>2007-11-18 19:37:52 +0100
commit829a7b904dcb56aa17cd9279f29385dad2814793 (patch)
treecdb705393d9e272a81e665bc5702306e317e3d75
parent5f0c241987f31b2cbf1c6ba2146dcca065973b0d (diff)
downloadpacman-829a7b904dcb56aa17cd9279f29385dad2814793.tar.gz
pacman-829a7b904dcb56aa17cd9279f29385dad2814793.tar.xz
Minor rephrasing of the question asked by -Sc.
Suggested by stonecrest on irc : 'I think "uninstalled" would be better, as it implies that the package was once installed and since removed. Otherwise a user might wonder why there are non-installed pkgs in cache' Signed-off-by: Chantry Xavier <shiningxc@gmail.com>
-rw-r--r--src/pacman/sync.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pacman/sync.c b/src/pacman/sync.c
index bd29fc9c..10a61613 100644
--- a/src/pacman/sync.c
+++ b/src/pacman/sync.c
@@ -128,7 +128,7 @@ static int sync_cleancache(int level)
* package and see if it has an entry in the local DB; if not, delete it.
*/
printf(_("Cache directory: %s\n"), cachedir);
- if(!yesno(_("Do you want to remove non-installed packages from cache? [Y/n] "))) {
+ if(!yesno(_("Do you want to remove uninstalled packages from cache? [Y/n] "))) {
return(0);
}
printf(_("removing old packages from cache... "));