summaryrefslogtreecommitdiffstats
path: root/song.php
diff options
context:
space:
mode:
authormomo-i <momo-i@ampache>2009-05-19 00:45:51 +0000
committermomo-i <momo-i@ampache>2009-05-19 00:45:51 +0000
commit27898465844ac33da0bd5ac6c8fbbb4d05fbf5ea (patch)
treea342c9d203397019a706b25c0369655c36e9a055 /song.php
parent3f2f2a124d04640937fcc9c01ebd1cfa6862603f (diff)
downloadampache-27898465844ac33da0bd5ac6c8fbbb4d05fbf5ea.tar.gz
ampache-27898465844ac33da0bd5ac6c8fbbb4d05fbf5ea.tar.bz2
ampache-27898465844ac33da0bd5ac6c8fbbb4d05fbf5ea.zip
Add Hint for translators
Diffstat (limited to 'song.php')
-rw-r--r--song.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/song.php b/song.php
index 7c1953c4..96182eba 100644
--- a/song.php
+++ b/song.php
@@ -37,6 +37,7 @@ switch ($_REQUEST['action']) {
$lyric = new Artist();
$return = $lyric->get_song_lyrics($song->id, ucwords($song->f_artist), ucwords($song->title));
$link = '<a href="http://lyricwiki.org/' . rawurlencode(ucwords($song->f_artist)) . ':' . rawurlencode(ucwords($song->title)) . '" target="_blank">';
+ /* HINT: Artist, Song Title */
$link .= sprintf(_('%1$s - %2$s Lyrics Detail'), ucwords($song->f_artist), ucwords($song->title));
$link .= "</a><br /><br />";
require_once Config::get('prefix') . '/templates/show_lyrics.inc.php';