Remove unnecessary gettext call

Signed-off-by: Dan McGee <dan@archlinux.org>
This commit is contained in:
Dan McGee 2010-06-05 11:42:46 -05:00
parent d58f398312
commit a338778028
1 changed files with 1 additions and 1 deletions

View File

@ -289,7 +289,7 @@ static void print_installed(pmpkg_t *pkg)
if(strcmp(lpkgver,pkgver) == 0) {
printf(" [%s]", _("installed"));
} else {
printf(_(" [%s: %s]"), _("installed"), lpkgver);
printf(" [%s: %s]", _("installed"), lpkgver);
}
}
}