From e51959b3ea5bedb684b394e37d68d2b916742836 Mon Sep 17 00:00:00 2001 From: xhe Date: Sun, 7 May 2017 14:20:40 +0800 Subject: fix for nplurals: it's pure number now instead of one in ascii, 50 -> 2. i forgot to change this when i decided to translate nplurals in ascii to pure number. --- src/poparser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/poparser.c b/src/poparser.c index 2d4bcef..bb81d8c 100644 --- a/src/poparser.c +++ b/src/poparser.c @@ -100,7 +100,7 @@ void poparser_init(struct po_parser *p, char* workbuf, size_t bufsize, poparser_ p->cbdata = cbdata; *(p->info.charset) = 0; // nplurals = 2 by default - p->info.nplurals = 50; + p->info.nplurals = 2; fuzzymark = 0; } -- cgit v1.2.1