summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2006-11-08 19:55:59 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2006-11-08 19:55:59 +0000
commit70853913cf0d21bd44643c7333dd5810fe5a81d3 (patch)
treea8a6bd35358bd45d964d73da4a6f63f5a333ddca /templates
parent627efa4dd844c89bb752f4484d1395409c2dbf76 (diff)
downloadampache-70853913cf0d21bd44643c7333dd5810fe5a81d3.tar.gz
ampache-70853913cf0d21bd44643c7333dd5810fe5a81d3.tar.bz2
ampache-70853913cf0d21bd44643c7333dd5810fe5a81d3.zip
updates to french translation and some other minor tweaks
Diffstat (limited to 'templates')
-rw-r--r--templates/show_playlist_box.inc.php7
-rw-r--r--templates/show_songs.inc2
-rw-r--r--templates/sidebar.inc.php22
3 files changed, 16 insertions, 15 deletions
diff --git a/templates/show_playlist_box.inc.php b/templates/show_playlist_box.inc.php
index 5f1ff2cc..ffc2055a 100644
--- a/templates/show_playlist_box.inc.php
+++ b/templates/show_playlist_box.inc.php
@@ -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
@@ -27,7 +26,7 @@
$web_path = conf('web_path');
$playlist_id = scrub_out($_REQUEST['playlist_id']);
-$title = _('Playist Actions');
+$title = _('Playlist Actions');
?>
<?php require (conf('prefix') . '/templates/show_box_top.inc.php'); ?>
<ul class="text-action">
diff --git a/templates/show_songs.inc b/templates/show_songs.inc
index a03d9fa1..396f9848 100644
--- a/templates/show_songs.inc
+++ b/templates/show_songs.inc
@@ -125,7 +125,9 @@ foreach ($song_ids as $song_id) {
<?php echo $song->f_bitrate; ?>
</td>
<td>
+ <a href="<?php echo $web_path; ?>/genre.php?action=show_genre&amp;genre_id=<?php echo $song->genre; ?>">
<?php echo $song->f_genre; ?>
+ </a>
</td>
<td>
<a href="<?php echo $web_path; ?>/flag.php?action=show_flag&amp;type=song&amp;id=<?php echo $song->id; ?>"><?php echo _('Flag'); ?></a>
diff --git a/templates/sidebar.inc.php b/templates/sidebar.inc.php
index ff61c4f8..0595dc7e 100644
--- a/templates/sidebar.inc.php
+++ b/templates/sidebar.inc.php
@@ -81,7 +81,7 @@ $web_path = conf('web_path');
if ($location['page'] == "preferences.php" ){
echo " id=\"activetopmenu\" ";
}?>>
- <a href="<?php echo $web_path; ?>/preferences.php"><?php echo _("Preferences"); ?></a>
+ <a href="<?php echo $web_path; ?>/preferences.php"><?php echo _('Preferences'); ?></a>
</li>
<li<?php
if ($location['page'] == "browse.php" ||
@@ -89,7 +89,7 @@ $web_path = conf('web_path');
$location['page'] == "albums.php" ){
echo " id=\"activetopmenu\" ";
}?>>
- <a href="<?php echo $web_path; ?>/browse.php"><?php echo _("Browse"); ?></a>
+ <a href="<?php echo $web_path; ?>/browse.php"><?php echo _('Browse'); ?></a>
<?php
if ($GLOBALS['theme']['submenu'] != 'simple' AND $GLOBALS['theme']['submenu'] != 'full') {
show_submenu($browse_items);
@@ -108,14 +108,14 @@ $web_path = conf('web_path');
if ($location['page'] == "upload.php"){
echo " id=\"activetopmenu\" ";
}?>>
- <a href="<?php echo $web_path; ?>/upload.php"><?php echo _("Upload"); ?></a>
+ <a href="<?php echo $web_path; ?>/upload.php"><?php echo _('Upload'); ?></a>
</li>
<?php } // end if ($GLOBALS['user']->prefs['upload']) ?>
<li<?php
if ($location['page'] == "playlist.php"){
echo " id=\"activetopmenu\" ";
}?>>
- <a href="<?php echo $web_path; ?>/playlist.php"><?php echo _("Playlists"); ?></a>
+ <a href="<?php echo $web_path; ?>/playlist.php"><?php echo _('Playlists'); ?></a>
</li>
<li<?php
if ($location['page'] == "stats.php"){
@@ -127,7 +127,7 @@ $web_path = conf('web_path');
if ($location['page'] == "search.php"){
echo " id=\"activetopmenu\" ";
}?>>
- <a href="<?php echo $web_path; ?>/search.php"><?php echo _("Search"); ?></a>
+ <a href="<?php echo $web_path; ?>/search.php"><?php echo _('Search'); ?></a>
</li>
<?php if ($GLOBALS['theme']['orientation'] != 'horizontal') { ?>
<li>
@@ -159,16 +159,16 @@ $web_path = conf('web_path');
<option value="100">100</option>
<option value="500">500</option>
<option value="1000">1000</option>
- <option value="-1"><?php echo _("All"); ?></option>
+ <option value="-1"><?php echo _('All'); ?></option>
</select>
<?php show_genre_pulldown('genre','','','13','width:8.7em;'); ?>
<br />
<select name="random_type" style="width:8.7em;">
- <option value="Songs"><?php echo _("Songs"); ?></option>
- <option value="Minutes"><?php echo _("Minutes"); ?></option>
- <option value="Artists"><?php echo _("Artists"); ?></option>
- <option value="Albums"><?php echo _("Albums"); ?></option>
- <option value="Less Played"><?php echo _("Less Played"); ?></option>
+ <option value="Songs"><?php echo _('Songs'); ?></option>
+ <option value="Minutes"><?php echo _('Minutes'); ?></option>
+ <option value="Artists"><?php echo _('Artists'); ?></option>
+ <option value="Albums"><?php echo _('Albums'); ?></option>
+ <option value="Less Played"><?php echo _('Less Played'); ?></option>
</select>
<br />
<?php show_catalog_pulldown('catalog','width:8.7em;'); ?>