summaryrefslogtreecommitdiffstats
path: root/templates/show_verify_catalog.inc.php
diff options
context:
space:
mode:
authormomo-i <momo-i@ampache>2009-03-08 23:53:29 +0000
committermomo-i <momo-i@ampache>2009-03-08 23:53:29 +0000
commitd9ae965fc19857c4bb401ae6e09c38b2395005ac (patch)
tree85ce65ef6e3cc6dc0dc0724648fd7ede3627d2bf /templates/show_verify_catalog.inc.php
parent35d6670bd523f0118c4075039298d43f9966bb3c (diff)
downloadampache-d9ae965fc19857c4bb401ae6e09c38b2395005ac.tar.gz
ampache-d9ae965fc19857c4bb401ae6e09c38b2395005ac.tar.bz2
ampache-d9ae965fc19857c4bb401ae6e09c38b2395005ac.zip
Fixed: plural message
Diffstat (limited to 'templates/show_verify_catalog.inc.php')
-rw-r--r--templates/show_verify_catalog.inc.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/templates/show_verify_catalog.inc.php b/templates/show_verify_catalog.inc.php
index 71dc4c0b..2f45a960 100644
--- a/templates/show_verify_catalog.inc.php
+++ b/templates/show_verify_catalog.inc.php
@@ -21,7 +21,9 @@
show_box_top();
printf(_('Updating the %s catalog'), "<strong>[ $catalog->name ]</strong>");
-echo "<br />\n" . $number . " " . _('items found checking tag information.') . "<br />\n\n";
+echo "<br />\n";
+printf(ngettext('%s item found checking tag information', '%s items found checking tag information', $number), $number);
+echo "<br />\n\n";
echo _('Verifed') . ":<span id=\"verify_count_$catalog_id\">$catalog_verify_found</span><br />";
echo _('Reading') . ":<span id=\"verify_dir_$catalog_id\">$catalog_verify_directory</span><br />";
show_box_bottom();