summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorPaul Arthur <paul.arthur@flowerysong.com>2011-08-12 12:11:59 -0400
committerPaul Arthur <paul.arthur@flowerysong.com>2011-08-12 12:11:59 -0400
commit46d4bb84b6ed0da76a96066e421b14cc7eb86f7a (patch)
tree5cf7026b5bdb3663ce68955843fc8718a448380a /templates
parentc5fa9a6d4bd096c1929dfa23457b09b5259770be (diff)
downloadampache-46d4bb84b6ed0da76a96066e421b14cc7eb86f7a.tar.gz
ampache-46d4bb84b6ed0da76a96066e421b14cc7eb86f7a.tar.bz2
ampache-46d4bb84b6ed0da76a96066e421b14cc7eb86f7a.zip
Some Catalog cleanup and enhancement.
Diffstat (limited to 'templates')
-rw-r--r--templates/show_stats.inc.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/templates/show_stats.inc.php b/templates/show_stats.inc.php
index 75544a7d..2d56981e 100644
--- a/templates/show_stats.inc.php
+++ b/templates/show_stats.inc.php
@@ -38,7 +38,7 @@ $catalogs = Catalog::get_catalogs();
<th><?php echo _('Albums'); ?></th>
<th><?php echo _('Artists'); ?></th>
<th><?php echo _('Songs'); ?></th>
- <th><?php echo _('Video'); ?></th>
+ <th><?php echo _('Videos'); ?></th>
<th><?php echo _('Tags'); ?></th>
<th><?php echo _('Catalog Size'); ?></th>
<th><?php echo _('Catalog Time'); ?></th>
@@ -49,7 +49,7 @@ $catalogs = Catalog::get_catalogs();
<td><?php echo $stats['albums']; ?></td>
<td><?php echo $stats['artists']; ?></td>
<td><?php echo $stats['songs']; ?></td>
- <td><?php echo $stats['video']; ?></td>
+ <td><?php echo $stats['videos']; ?></td>
<td><?php echo $stats['tags']; ?></td>
<td><?php echo $stats['formatted_size']; ?></td>
<td><?php echo $stats['time_text']; ?></td>
@@ -74,7 +74,7 @@ $catalogs = Catalog::get_catalogs();
<th class="cel_lastadd"><?php echo _('Last Add'); ?></th>
<th class="cel_lastclean"><?php echo _('Last Clean'); ?></th>
<th class="cel_songs"><?php echo _('Songs'); ?></th>
- <th class="cel_video"><?php echo _('Video'); ?></th>
+ <th class="cel_video"><?php echo _('Videos'); ?></th>
<th class="cel_total"><?php echo _('Catalog Size'); ?></th>
</tr>
<?php foreach ($catalogs as $catalog_id) {
@@ -89,7 +89,7 @@ $catalogs = Catalog::get_catalogs();
<td class="cel_lastadd"><?php echo scrub_out($catalog->f_add); ?></td>
<td class="cel_lastclean"><?php echo scrub_out($catalog->f_clean); ?></td>
<td class="cel_songs"><?php echo scrub_out($stats['songs']); ?></td>
- <td class="cel_video"><?php echo scrub_out($stats['video']); ?></td>
+ <td class="cel_video"><?php echo scrub_out($stats['videos']); ?></td>
<td class="cel_total"><?php echo scrub_out($stats['formatted_size']); ?></td>
</tr>
<?php } ?>