1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 20:35: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

@@ -381,9 +381,9 @@ class Import_Export extends Plugin implements IHandler {
print "<p>" .
__("Finished: ").
vsprintf(ngettext("%d article processed, ", "%d articles processed, ", $num_processed), $num_processed).
vsprintf(ngettext("%d imported, ", "%d imported, ", $num_imported), $num_imported).
vsprintf(ngettext("%d feed created.", "%d feeds created.", $num_feeds_created), $num_feeds_created).
vsprintf(_ngettext("%d article processed, ", "%d articles processed, ", $num_processed), $num_processed).
vsprintf(_ngettext("%d imported, ", "%d imported, ", $num_imported), $num_imported).
vsprintf(_ngettext("%d feed created.", "%d feeds created.", $num_feeds_created), $num_feeds_created).
"</p>";
} else {