<?php
/**
* SquirrelMail Test Plugin
*
* This page tests the ngettext() function.
*
* @copyright 2006-2020 The SquirrelMail Project Team
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
* @version $Id: ngettext.php 14840 2020年01月07日 07:42:38Z pdontthink $
* @package plugins
* @subpackage test
*/
include_once(SM_PATH . 'include/validate.php');
global $color;
?>
<strong>ngettext Test Strings:</strong>
<p>The results of this test depend on your current language (translation) selection (see Options==>Display Preferences) and the corresponding translation strings in locale/xx/LC_MESSAGES/test.mo</p>
<pre>
<?php
for ($i = -10 ; $i <= 250 ; $i++) {
echo
sprintf (ngettext ("%s squirrel is on the tree.", "%s squirrels are on the tree.", $i), $i);
echo "\n";
}
echo "</pre></body></html>";