forked from 0x2620/pandora
'no Clips' -> 'No Clips'
This commit is contained in:
parent
eb753057b2
commit
61a37645fd
2 changed files with 2 additions and 3 deletions
|
@ -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'))
|
||||
);
|
||||
}
|
||||
});
|
||||
|
|
|
@ -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') {
|
||||
|
|
Loading…
Reference in a new issue