summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/pacman/package.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/pacman/package.c b/src/pacman/package.c
index 0b7bd0f4..2e037a55 100644
--- a/src/pacman/package.c
+++ b/src/pacman/package.c
@@ -97,9 +97,10 @@ void dump_pkg_full(pmpkg_t *pkg, int level)
/* Print additional package info if info flag passed more than once */
if(level > 1) {
/* call new backup function */
- dump_pkg_backups(pkg);
printf("\n");
+ dump_pkg_backups(pkg);
}
+ printf("\n");
}
/* Display the content of a sync package
@@ -145,7 +146,7 @@ void dump_pkg_backups(pmpkg_t *pkg)
{
alpm_list_t *i;
const char *root = alpm_option_get_root();
- printf("\nBackup Files :\n");
+ printf(_("Backup Files :\n"));
for(i = alpm_pkg_get_backup(pkg); i; i = alpm_list_next(i)) {
struct stat buf;
char path[PATH_MAX];