processing, fix first word in sentence

This commit is contained in:
j 2025-01-24 18:06:39 +05:30
parent a96097b8bf
commit 53502a27ab

View file

@ -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)