summaryrefslogtreecommitdiffstats
path: root/templates/show_lyrics.inc.php
diff options
context:
space:
mode:
authormomo-i <momo-i@ampache>2009-02-24 05:22:05 +0000
committermomo-i <momo-i@ampache>2009-02-24 05:22:05 +0000
commit0ad1f28c54cbdb92f5648e44cb0490c3efe0dae0 (patch)
tree2e1ce32cb00b0288b3fdfb568bd19b5632835df0 /templates/show_lyrics.inc.php
parent788e0afeaefec10685e2f331039986544df99896 (diff)
downloadampache-0ad1f28c54cbdb92f5648e44cb0490c3efe0dae0.tar.gz
ampache-0ad1f28c54cbdb92f5648e44cb0490c3efe0dae0.tar.bz2
ampache-0ad1f28c54cbdb92f5648e44cb0490c3efe0dae0.zip
Updated: message merged from r1899
Updated: translation words for show_lyrics.inc.php
Diffstat (limited to 'templates/show_lyrics.inc.php')
-rw-r--r--templates/show_lyrics.inc.php7
1 files changed, 4 insertions, 3 deletions
diff --git a/templates/show_lyrics.inc.php b/templates/show_lyrics.inc.php
index c2f45459..3e002106 100644
--- a/templates/show_lyrics.inc.php
+++ b/templates/show_lyrics.inc.php
@@ -25,18 +25,19 @@
*
* Al Ayres
* al.ayres@gmail.com
- * Modified: 01/01/2008
+ * Modified: 02/24/2009
*
+ * @todo get lyrics from id3tag, if possible.
*/
?>
-<?php show_box_top($song->title . ' ' . _('Lyrics')); ?>
+<?php show_box_top(sprintf(_('%s Lyrics'), $song->title)); ?>
<table class="tabledata" cellspacing="0" cellpadding="0">
<tr>
<td>
<?php
$return = scrub_out(Artist::get_song_lyrics($song->id, ucwords($song->f_artist), ucwords($song->title)));
if($return =="Sorry Lyrics, Not found") {
- echo _("Sorry Lyrics, not found\n\n");
+ echo _("Sorry Lyrics Not Found.");
}
else {
echo "<pre>" . $return . "</pre>";