aboutsummaryrefslogtreecommitdiff
path: root/web/app/controller/Root.js
diff options
context:
space:
mode:
authorAbyss777 <abyss@fox5.ru>2017-03-20 16:35:56 +0500
committerAbyss777 <abyss@fox5.ru>2017-03-20 16:35:56 +0500
commit90502b95e6904a05f00f3f3f14fca2d14789dbf2 (patch)
tree6b5c26041445dceb7b30df8ed214cdd3bbf3fd5f /web/app/controller/Root.js
parent12fce5557a054dcbd2b63c3952d0e111e1c7fe02 (diff)
downloadetbsa-traccar-web-90502b95e6904a05f00f3f3f14fca2d14789dbf2.tar.gz
etbsa-traccar-web-90502b95e6904a05f00f3f3f14fca2d14789dbf2.tar.bz2
etbsa-traccar-web-90502b95e6904a05f00f3f3f14fca2d14789dbf2.zip
Add strings for text message event and some alarms
Diffstat (limited to 'web/app/controller/Root.js')
-rw-r--r--web/app/controller/Root.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/web/app/controller/Root.js b/web/app/controller/Root.js
index 950b334..b858b20 100644
--- a/web/app/controller/Root.js
+++ b/web/app/controller/Root.js
@@ -214,6 +214,8 @@ Ext.define('Traccar.controller.Root', {
} else if (array[i].type === 'alarm') {
alarmKey = 'alarm' + array[i].attributes.alarm.charAt(0).toUpperCase() + array[i].attributes.alarm.slice(1);
text = Strings[alarmKey] || alarmKey;
+ } else if (array[i].type === 'textMessage') {
+ text = Strings.eventTextMessage + ': ' + array[i].attributes.message;
} else {
text = Traccar.app.getEventString(array[i].type);
}