Fix 'None' text so we don't have to translate it twice

We had one "None" and one "None\n" string; we can let the program do the
addition of the newline so we don't have to.

Signed-off-by: Dan McGee <dan@archlinux.org>
This commit is contained in:
Dan McGee 2008-08-23 11:20:07 -05:00
parent 5b51dbb11e
commit 31c7e82a51
1 changed files with 2 additions and 2 deletions

View File

@ -469,7 +469,7 @@ void list_display(const char *title, const alpm_list_t *list)
}
if(!list) {
printf(_("None\n"));
printf("%s\n", _("None"));
} else {
for(i = list, cols = len; i; i = alpm_list_next(i)) {
char *str = alpm_list_getdata(i);
@ -503,7 +503,7 @@ void list_display_linebreak(const char *title, const alpm_list_t *list)
}
if(!list) {
printf(_("None\n"));
printf("%s\n", _("None"));
} else {
/* Print the first element */
indentprint((const char *) alpm_list_getdata(list), len);