processing, fix first word in sentence
This commit is contained in:
parent
a96097b8bf
commit
53502a27ab
1 changed files with 2 additions and 2 deletions
|
@ -63,9 +63,9 @@ pandora.ui.item = function() {
|
|||
var tasks = result_.data.items.filter(function(task) { return task.item == item})
|
||||
if (tasks.length > 0) {
|
||||
html = Ox._(
|
||||
'<i>{0}</i> is currently processed. '
|
||||
'<i>{0}</i> is currently being processed. '
|
||||
+ '{1} view will be available in a moment.',
|
||||
[result.data.title, Ox._(pandora.user.ui.itemView)]
|
||||
[result.data.title, Ox.toTitleCase(Ox._(pandora.user.ui.itemView))]
|
||||
)
|
||||
}
|
||||
note.html(html)
|
||||
|
|
Loading…
Reference in a new issue