aboutsummaryrefslogtreecommitdiff
path: root/web/app/ErrorManager.js
diff options
context:
space:
mode:
Diffstat (limited to 'web/app/ErrorManager.js')
-rw-r--r--web/app/ErrorManager.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/web/app/ErrorManager.js b/web/app/ErrorManager.js
index 341432e7b..e55719571 100644
--- a/web/app/ErrorManager.js
+++ b/web/app/ErrorManager.js
@@ -23,17 +23,17 @@ Ext.define('Traccar.ErrorManager', {
if (result.success || result.error === undefined) {
return true;
} else {
- Ext.Msg.alert(strings.error_title, result.error);
+ Ext.Msg.alert(strings.errorTitle, result.error);
return false;
}
} else {
- Ext.Msg.alert(strings.error_title, response.statusText);
+ Ext.Msg.alert(strings.errorTitle, response.statusText);
return false;
}
},
error: function(message) {
- Ext.Msg.alert(strings.error_title, message);
+ Ext.Msg.alert(strings.errorTitle, message);
}
});