1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-16 01:55:55 +00:00

fix xgettext extraction of plural forms, replace wrong ngettext() calls with _ngettext(), rebase translations

This commit is contained in:
Andrew Dolgov
2013-09-02 13:09:32 +04:00
parent ff04fe0625
commit d3b0e3487e
40 changed files with 5084 additions and 4357 deletions

View File

@@ -80,7 +80,7 @@
$class = ($feedctr % 2) ? "even" : "odd";
if ($line['articles_archived'] > 0) {
$archived = sprintf(ngettext("%d archived article", "%d archived articles", $line['articles_archived']), $line['articles_archived']);
$archived = sprintf(_ngettext("%d archived article", "%d archived articles", $line['articles_archived']), $line['articles_archived']);
$archived = "&nbsp;<span class='subscribers'>($archived)</span>";
} else {
$archived = '';