'no Clips' -> 'No Clips'

This commit is contained in:
rolux 2013-07-07 18:00:37 +02:00
parent eb753057b2
commit 61a37645fd
2 changed files with 2 additions and 3 deletions

View file

@ -59,7 +59,7 @@ pandora.ui.clipsView = function(videoRatio) {
init: function(data) { init: function(data) {
var items = data.items; var items = data.items;
$status.html( $status.html(
Ox.formatCount(items, 'Clip') Ox.toTitleCase(Ox.formatCount(items, 'Clip'))
); );
} }
}); });

View file

@ -239,8 +239,7 @@ pandora.ui.navigationView = function(type, videoRatio) {
} }
function updateStatusbar(items) { function updateStatusbar(items) {
//fixme how to capitalize Ox.formatCount? $status.html(Ox.toTitleCase(Ox.formatCount(items, 'Clip')));
$status.html(Ox.formatCount(items, 'Clip'));
} }
if (type == 'map') { if (type == 'map') {