diff options
author | momo-i <momo-i@ampache> | 2008-08-25 00:30:35 +0000 |
---|---|---|
committer | momo-i <momo-i@ampache> | 2008-08-25 00:30:35 +0000 |
commit | f9270baba89803586e3d4eaf0b246961b5df75ca (patch) | |
tree | c06212a071f9571786d379ffd807d45b0fc53eb5 /templates/header.inc.php | |
parent | c16f287900ca5ec869b151af00759ea852f39287 (diff) | |
download | ampache-f9270baba89803586e3d4eaf0b246961b5df75ca.tar.gz ampache-f9270baba89803586e3d4eaf0b246961b5df75ca.tar.bz2 ampache-f9270baba89803586e3d4eaf0b246961b5df75ca.zip |
Modified: More translatable templates.
Diffstat (limited to 'templates/header.inc.php')
-rw-r--r-- | templates/header.inc.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/templates/header.inc.php b/templates/header.inc.php index 7442b132..2bc6d190 100644 --- a/templates/header.inc.php +++ b/templates/header.inc.php @@ -33,12 +33,12 @@ $location = get_location(); <?php if (Config::get('use_rss')) { ?> <link rel="alternate" type="application/rss+xml" title="<?php echo Config::get('rss_main_title'); ?>" href="<?php echo $web_path; ?>/rss.php" /> -<link rel="alternate" type="application/rss+xml" title="Ampache Latest Artists Additions" href="<?php echo $web_path; ?>/rss.php?type=latestartist" /> -<link rel="alternate" type="application/rss+xml" title="Ampache Latest Albums Additions" href="<?php echo $web_path; ?>/rss.php?type=latestalbum" /> -<link rel="alternate" type="application/rss+xml" title="Ampache Most Popular Albums" href="<?php echo $web_path; ?>/rss.php?type=popularalbum" /> -<link rel="alternate" type="application/rss+xml" title="Ampache Most Popular Artists" href="<?php echo $web_path; ?>/rss.php?type=popularalbum" /> -<link rel="alternate" type="application/rss+xml" title="Ampache Most Popular Songs" href="<?php echo $web_path; ?>/rss.php?type=popularsong" /> -<link rel="alternate" type="application/rss+xml" title="Ampache Recently Played" href="<?php echo $web_path; ?>/rss.php?type=recentlyplayed" /> +<link rel="alternate" type="application/rss+xml" title="<?php echo _('Ampache Latest Artists Additions'); ?>" href="<?php echo $web_path; ?>/rss.php?type=latestartist" /> +<link rel="alternate" type="application/rss+xml" title="<?php echo _('Ampache Latest Albums Additions'); ?>" href="<?php echo $web_path; ?>/rss.php?type=latestalbum" /> +<link rel="alternate" type="application/rss+xml" title="<?php echo _('Ampache Most Popular Albums'); ?>" href="<?php echo $web_path; ?>/rss.php?type=popularalbum" /> +<link rel="alternate" type="application/rss+xml" title="<?php echo _('Ampache Most Popular Artists'); ?>" href="<?php echo $web_path; ?>/rss.php?type=popularalbum" /> +<link rel="alternate" type="application/rss+xml" title="<?php echo _('Ampache Most Popular Songs'); ?>" href="<?php echo $web_path; ?>/rss.php?type=popularsong" /> +<link rel="alternate" type="application/rss+xml" title="<?php echo _('Ampache Recently Played'); ?>" href="<?php echo $web_path; ?>/rss.php?type=recentlyplayed" /> <?php } ?> <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=<?php echo Config::get('site_charset'); ?>" /> <title><?php echo scrub_out(Config::get('site_title')); ?> - <?php echo $location['title']; ?></title> |