From d3b0e3487ed13ebd58a1340d19875b5a24537e01 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Mon, 2 Sep 2013 13:09:32 +0400 Subject: fix xgettext extraction of plural forms, replace wrong ngettext() calls with _ngettext(), rebase translations --- plugins/import_export/init.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'plugins') diff --git a/plugins/import_export/init.php b/plugins/import_export/init.php index d4bdec826..d185210ee 100644 --- a/plugins/import_export/init.php +++ b/plugins/import_export/init.php @@ -381,9 +381,9 @@ class Import_Export extends Plugin implements IHandler { print "

" . __("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). "

"; } else { -- cgit v1.2.3