diff options
author | Aaron Griffin <aaron@archlinux.org> | 2006-12-05 09:39:32 +0100 |
---|---|---|
committer | Aaron Griffin <aaron@archlinux.org> | 2006-12-05 09:39:32 +0100 |
commit | 6ca24d592455f0ea7558dc70b78e59b3877a476a (patch) | |
tree | 2e1d530f908bfa46674d55ee6befc4bb5248bb55 | |
parent | 5a48e4f1b6f46679104427db6daa76d4681d0640 (diff) | |
download | pacman-6ca24d592455f0ea7558dc70b78e59b3877a476a.tar.gz pacman-6ca24d592455f0ea7558dc70b78e59b3877a476a.tar.xz |
Changed upgrade message to use the term "installation" to make the meaning more
clear
-rw-r--r-- | src/pacman/sync.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/pacman/sync.c b/src/pacman/sync.c index 6ccf4112..604cf4c2 100644 --- a/src/pacman/sync.c +++ b/src/pacman/sync.c @@ -116,6 +116,7 @@ static int sync_cleancache(int level) if(split_pkgname(s, n, v) != 0) { continue; } + /* TODO Do not remove the currently installed version EITHER */ if(!strcmp(name, n)) { char *ptr = (alpm_pkg_vercmp(version, v) < 0) ? str : s; if(!list_is_strin(ptr, clean)) { @@ -656,7 +657,7 @@ int pacman_sync(list_t *targets) confirm = 1; } else { MSG(NL, "\n"); - confirm = yesno(_("Proceed with upgrade? [Y/n] ")); + confirm = yesno(_("Proceed with installation? [Y/n] ")); } } } |