Fixed issue#408 - "Ticket will escalate soon" in online notifications is not translated.

This commit is contained in:
Martin Edenhofer 2016-11-14 12:03:26 +01:00
parent 5d5b1766d5
commit d7565e0f55

View file

@ -89,4 +89,6 @@ class App.Ticket extends App.Model
return App.i18n.translateContent('Pending reminder reached for Ticket |%s|', item.title)
else if item.type is 'escalation'
return App.i18n.translateContent('Ticket |%s| is escalated!', item.title)
else if item.type is 'escalation_warning'
return App.i18n.translateContent('Ticket |%s| will escalate soon!', item.title)
return "Unknow action for (#{@objectDisplayName()}/#{item.type}), extend activityMessage() of model."