'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) {
var items = data.items;
$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) {
//fixme how to capitalize Ox.formatCount?
$status.html(Ox.formatCount(items, 'Clip'));
$status.html(Ox.toTitleCase(Ox.formatCount(items, 'Clip')));
}
if (type == 'map') {