diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2015-07-10 19:16:38 +1200 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2015-07-10 19:16:38 +1200 |
commit | b36a8688af39b0d43126d46275f83fa9c940ed62 (patch) | |
tree | 2b5ac4606c9850d010067db129388c0cbc521e03 /web/app/view/device/DeviceController.js | |
parent | c5bfe9746e7c0382ca5ab767486f425e96fd0ace (diff) | |
download | trackermap-server-b36a8688af39b0d43126d46275f83fa9c940ed62.tar.gz trackermap-server-b36a8688af39b0d43126d46275f83fa9c940ed62.tar.bz2 trackermap-server-b36a8688af39b0d43126d46275f83fa9c940ed62.zip |
Re-organize strings for localization
Diffstat (limited to 'web/app/view/device/DeviceController.js')
-rw-r--r-- | web/app/view/device/DeviceController.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/web/app/view/device/DeviceController.js b/web/app/view/device/DeviceController.js index ba9eabb5a..c85ac731a 100644 --- a/web/app/view/device/DeviceController.js +++ b/web/app/view/device/DeviceController.js @@ -64,11 +64,11 @@ Ext.define('Traccar.view.device.DeviceController', { var device = this.getView().getSelectionModel().getSelection()[0]; Ext.Msg.show({ title: strings.device_dialog, - message: strings.device_remove_confirm, + message: strings.shared_remove_confirm, buttons: Ext.Msg.YESNO, buttonText: { - yes: strings.dialog_delete, - no: strings.dialog_cancel + yes: strings.shared_remove, + no: strings.shared_cancel }, fn: function(btn) { if (btn === 'yes') { @@ -105,7 +105,7 @@ Ext.define('Traccar.view.device.DeviceController', { onUsersClick: function() { Ext.create('Ext.window.Window', { - title: strings.login_users_title, + title: strings.settings_users, width: styles.window_width, height: styles.window_height, layout: 'fit', |