Give groups display text singular and plural forms
Reported on transifex Signed-off-by: Allan McRae <allan@archlinux.org>
This commit is contained in:
parent
8014dc648f
commit
1601532a53
1 changed files with 3 additions and 2 deletions
|
@ -601,8 +601,9 @@ static int process_group(alpm_list_t *dbs, const char *group, int error)
|
||||||
}
|
}
|
||||||
|
|
||||||
if(config->print == 0) {
|
if(config->print == 0) {
|
||||||
colon_printf(_("There are %d members in group %s:\n"), count,
|
colon_printf(_n("There is %d member in group %s:\n",
|
||||||
group);
|
"There are %d members in group %s:\n", count),
|
||||||
|
count, group);
|
||||||
select_display(pkgs);
|
select_display(pkgs);
|
||||||
char *array = malloc(count);
|
char *array = malloc(count);
|
||||||
if(!array) {
|
if(!array) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue