diff --git a/templates/inbox.html b/templates/inbox.html index 78bf178..4e7972b 100644 --- a/templates/inbox.html +++ b/templates/inbox.html @@ -165,7 +165,7 @@ const questions = document.querySelectorAll('.question'); const count = questions.length; document.getElementById('question-count-inbox').textContent = count; - document.title = `Inbox (${count}) | {{ const.appName }}` ? count > 0 : "Inbox | {{ const.appName }}"; + document.title = count > 0 ? `{{ _("Inbox") }} (${count}) | {{ const.appName }}` : "{{ _('Inbox') }} | {{ const.appName }}"; } } })