summaryrefslogtreecommitdiff
path: root/plugins/import_export
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-09-02 13:09:32 +0400
committerAndrew Dolgov <[email protected]>2013-09-02 13:09:32 +0400
commitd3b0e3487ed13ebd58a1340d19875b5a24537e01 (patch)
tree2aa69ae81d416b8fcacbda433e7c2824336383ac /plugins/import_export
parentff04fe06250b7640b62379708b27ae31630150a0 (diff)
fix xgettext extraction of plural forms, replace wrong ngettext() calls with _ngettext(), rebase translations
Diffstat (limited to 'plugins/import_export')
-rw-r--r--plugins/import_export/init.php6
1 files changed, 3 insertions, 3 deletions
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 "<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 {