diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2015-10-03 21:39:38 +1300 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2015-10-03 21:39:38 +1300 |
commit | 8416025e932669550c166cfc4263d55c149eed89 (patch) | |
tree | 904f1c29af8b76784583da62fe85a270d5c01e9a /web/app/view/UserController.js | |
parent | 04e63f9b42991008843f3f9d1788fa6933bd57b3 (diff) | |
download | trackermap-server-8416025e932669550c166cfc4263d55c149eed89.tar.gz trackermap-server-8416025e932669550c166cfc4263d55c149eed89.tar.bz2 trackermap-server-8416025e932669550c166cfc4263d55c149eed89.zip |
Rename strings global variable
Diffstat (limited to 'web/app/view/UserController.js')
-rw-r--r-- | web/app/view/UserController.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/web/app/view/UserController.js b/web/app/view/UserController.js index cd0a4bd0b..d5535bce3 100644 --- a/web/app/view/UserController.js +++ b/web/app/view/UserController.js @@ -45,12 +45,12 @@ onRemoveClick: function () { var user = this.getView().getSelectionModel().getSelection()[0]; Ext.Msg.show({ - title: strings.settingsUser, - message: strings.sharedRemoveConfirm, + title: Strings.settingsUser, + message: Strings.sharedRemoveConfirm, buttons: Ext.Msg.YESNO, buttonText: { - yes: strings.sharedRemove, - no: strings.sharedCancel + yes: Strings.sharedRemove, + no: Strings.sharedCancel }, fn: function (btn) { if (btn === 'yes') { @@ -65,7 +65,7 @@ onDevicesClick: function () { // TODO show devices /*Ext.create('Ext.window.Window', { - title: strings.settingsUsers, + title: Strings.settingsUsers, width: Traccar.Style.windowWidth, height: Traccar.Style.windowHeight, layout: 'fit', |