diff options
author | Paul Arthur <flowerysong00@yahoo.com> | 2012-03-31 18:08:56 -0400 |
---|---|---|
committer | Paul Arthur <paul.arthur@flowerysong.com> | 2012-04-12 21:13:29 -0400 |
commit | 774e53db7d9abdba72a0b7c49829dcdbdb2e0e1a (patch) | |
tree | 2d938b4c7d3dd2252e43cbc68b4739d9e15c854d /templates/show_random.inc.php | |
parent | f65076b93d91fe9718cf9bef37638d64290b9f28 (diff) | |
download | ampache-774e53db7d9abdba72a0b7c49829dcdbdb2e0e1a.tar.gz ampache-774e53db7d9abdba72a0b7c49829dcdbdb2e0e1a.tar.bz2 ampache-774e53db7d9abdba72a0b7c49829dcdbdb2e0e1a.zip |
Switch from ngettext() to T_ngettext()
Diffstat (limited to 'templates/show_random.inc.php')
-rw-r--r-- | templates/show_random.inc.php | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/templates/show_random.inc.php b/templates/show_random.inc.php index dcd0bd76..f3512e79 100644 --- a/templates/show_random.inc.php +++ b/templates/show_random.inc.php @@ -69,13 +69,13 @@ <?php $name = 'length_' . intval($_POST['length']); ${$name} = ' selected="selected"'; ?> <select name="length"> <option value="0"<?php echo $length_0; ?>><?php echo T_('Unlimited'); ?></option> - <option value="15"<?php echo $length_15; ?>><?php printf(ngettext('%d minute','%d minutes',15), "15"); ?></option> - <option value="30"<?php echo $length_30; ?>><?php printf(ngettext('%d minute','%d minutes',30), "30"); ?></option> - <option value="60"<?php echo $length_60; ?>><?php printf(ngettext('%d hour','%d hours',1), "1"); ?></option> - <option value="120"<?php echo $length_120; ?>><?php printf(ngettext('%d hour','%d hours',2), "2"); ?></option> - <option value="240"<?php echo $length_240; ?>><?php printf(ngettext('%d hour','%d hours',4), "4"); ?></option> - <option value="480"<?php echo $length_480; ?>><?php printf(ngettext('%d hour','%d hours',8), "8"); ?></option> - <option value="960"<?php echo $length_960; ?>><?php printf(ngettext('%d hour','%d hours',16), "16"); ?></option> + <option value="15"<?php echo $length_15; ?>><?php printf(T_ngettext('%d minute','%d minutes',15), "15"); ?></option> + <option value="30"<?php echo $length_30; ?>><?php printf(T_ngettext('%d minute','%d minutes',30), "30"); ?></option> + <option value="60"<?php echo $length_60; ?>><?php printf(T_ngettext('%d hour','%d hours',1), "1"); ?></option> + <option value="120"<?php echo $length_120; ?>><?php printf(T_ngettext('%d hour','%d hours',2), "2"); ?></option> + <option value="240"<?php echo $length_240; ?>><?php printf(T_ngettext('%d hour','%d hours',4), "4"); ?></option> + <option value="480"<?php echo $length_480; ?>><?php printf(T_ngettext('%d hour','%d hours',8), "8"); ?></option> + <option value="960"<?php echo $length_960; ?>><?php printf(T_ngettext('%d hour','%d hours',16), "16"); ?></option> </select> </td> </tr> |