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:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user