diff options
| -rw-r--r-- | src/pacman/util.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pacman/util.c b/src/pacman/util.c index cce1a185..238e3281 100644 --- a/src/pacman/util.c +++ b/src/pacman/util.c @@ -903,8 +903,8 @@ static void _display_targets(alpm_list_t *targets, int verbose)  			pm_asprintf(&str, "%s-%s", alpm_pkg_get_name(target->remove),  					alpm_pkg_get_version(target->remove));  		} else { -			pm_asprintf(&str, "%s-%s [removal]", alpm_pkg_get_name(target->remove), -					alpm_pkg_get_version(target->remove)); +			pm_asprintf(&str, "%s-%s [%s]", alpm_pkg_get_name(target->remove), +					alpm_pkg_get_version(target->remove), _("removal"));  		}  		names = alpm_list_add(names, str);  	}  | 
