From e42e9ab8733b4bfa4e5a201202a92332f36ba564 Mon Sep 17 00:00:00 2001 From: Allan McRae Date: Tue, 12 Mar 2013 14:48:02 +1000 Subject: Make "[removal]" translatable Fixes FS#34241 Signed-off-by: Allan McRae --- src/pacman/util.c | 4 ++-- 1 file 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); } -- cgit v1.2.3-24-g4f1b