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/CommandDialog.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/CommandDialog.js')
-rw-r--r-- | web/app/view/CommandDialog.js | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/web/app/view/CommandDialog.js b/web/app/view/CommandDialog.js index 388c0afce..36024a172 100644 --- a/web/app/view/CommandDialog.js +++ b/web/app/view/CommandDialog.js @@ -24,14 +24,14 @@ ], controller: 'commandDialog', - title: strings.commandTitle, + title: Strings.commandTitle, items: { xtype: 'form', items: [{ xtype: 'combobox', name: 'type', - fieldLabel: strings.commandType, + fieldLabel: Strings.commandType, store: 'CommandTypes', displayField: 'name', valueField: 'key', @@ -46,11 +46,11 @@ items: [{ xtype: 'numberfield', - fieldLabel: strings.commandFrequency, + fieldLabel: Strings.commandFrequency, name: 'frequency' }, { xtype: 'combobox', - fieldLabel: strings.commandUnit, + fieldLabel: Strings.commandUnit, name: 'unit', store: 'TimeUnits', displayField: 'name', @@ -60,10 +60,10 @@ }, buttons: [{ - text: strings.commandSend, + text: Strings.commandSend, handler: 'onSendClick' }, { - text: strings.sharedCancel, + text: Strings.sharedCancel, handler: 'closeView' }] }); |