summaryrefslogtreecommitdiffstats
path: root/src/pacman/list.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/pacman/list.c')
-rw-r--r--src/pacman/list.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/pacman/list.c b/src/pacman/list.c
index a7e9ce13..0a080373 100644
--- a/src/pacman/list.c
+++ b/src/pacman/list.c
@@ -23,7 +23,9 @@
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
+#include <libintl.h>
/* pacman */
+#include "util.h"
#include "list.h"
extern int maxcols;
@@ -138,7 +140,7 @@ void list_display(const char *title, list_t *list)
}
printf("\n");
} else {
- printf("None\n");
+ printf(_("None\n"));
}
}
@@ -166,7 +168,7 @@ void PM_LIST_display(const char *title, PM_LIST *list)
}
printf("\n");
} else {
- printf("None\n");
+ printf(_("None\n"));
}
}