summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNagy Gabor <ngaba@bibl.u-szeged.hu>2009-09-15 12:55:19 +0200
committerDan McGee <dan@archlinux.org>2009-09-15 14:09:16 +0200
commit08ee4059b5935ab0b378a40dcfb127f169e96f83 (patch)
treeeec3600e743681934d155582a93d162b5de17a93
parentd0d6c58c0579ec4d6ada9a9f91acc93215ca2773 (diff)
downloadpacman-08ee4059b5935ab0b378a40dcfb127f169e96f83.tar.gz
pacman-08ee4059b5935ab0b378a40dcfb127f169e96f83.tar.xz
Catch an untranslated warning in lib/remove.c
Signed-off-by: Nagy Gabor <ngaba@bibl.u-szeged.hu> Signed-off-by: Dan McGee <dan@archlinux.org>
-rw-r--r--lib/libalpm/remove.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libalpm/remove.c b/lib/libalpm/remove.c
index aa6a5cc7..0eaa8363 100644
--- a/lib/libalpm/remove.c
+++ b/lib/libalpm/remove.c
@@ -126,7 +126,7 @@ static void remove_prepare_keep_needed(pmtrans_t *trans, pmdb_t *db,
&vpkg);
pkg = vpkg;
if(pkg) {
- _alpm_log(PM_LOG_WARNING, "removing %s from the target-list\n",
+ _alpm_log(PM_LOG_WARNING, _("removing %s from the target-list\n"),
alpm_pkg_get_name(pkg));
_alpm_pkg_free(pkg);
}