diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-12-09 18:08:24 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-12-09 18:08:24 +0000 |
commit | d4c239b9df5cf26e5e3c2f14a92564b1237bae20 (patch) | |
tree | 1c67e519d72f4e7d932ad9f972a962b620c1487d /templates/show_random_play.inc | |
parent | c4018a940772609a2703c04caaee34197b2efed6 (diff) | |
download | ampache-d4c239b9df5cf26e5e3c2f14a92564b1237bae20.tar.gz ampache-d4c239b9df5cf26e5e3c2f14a92564b1237bae20.tar.bz2 ampache-d4c239b9df5cf26e5e3c2f14a92564b1237bae20.zip |
added Min option to the normal random play and cleaned up sidebar a bit
Diffstat (limited to 'templates/show_random_play.inc')
-rw-r--r-- | templates/show_random_play.inc | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/templates/show_random_play.inc b/templates/show_random_play.inc index 6ead2244..7216f41b 100644 --- a/templates/show_random_play.inc +++ b/templates/show_random_play.inc @@ -5,9 +5,8 @@ All rights reserved. This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License - as published by the Free Software Foundation; either version 2 - of the License, or (at your option) any later version. + modify it under the terms of the GNU General Public License v2 + as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -26,7 +25,7 @@ <?php show_box_top(_('Play Random Selection')); ?> <table> <tr> - <td><?php echo _("Item count"); ?></td> + <td><?php echo _('Item count'); ?></td> <td> <select name="random"> <option value="1">1</option> @@ -50,10 +49,11 @@ <td colspan="2"> <?php echo _('Type'); ?>: <select name="random_type"> - <option value="normal"><?php echo _("Standard"); ?></option> - <option value="unplayed"><?php echo _("Favor Unplayed"); ?></option> - <option value="full_album"><?php echo _("Full Albums"); ?></option> - <option value="full_artist"><?php echo _("Full Artist"); ?></option> + <option value="normal"><?php echo _('Standard'); ?></option> + <option value="unplayed"><?php echo _('Less Played'); ?></option> + <option value="full_album"><?php echo _('Full Albums'); ?></option> + <option value="full_artist"><?php echo _('Full Artist'); ?></option> + <option value="length"><?php echo _('Minutes'); ?></option> </select> </td> </tr> |