Commit 76447670b95305009afdddab2db40fc4d8ff1ed4
1 parent
60ba60ea
Exists in
master
and in
62 other branches
Minor fixes
Showing
2 changed files
with
4 additions
and
4 deletions
Show diff stats
js/app/views/DownloadUI.js
... | ... | @@ -700,7 +700,7 @@ Ext.define('amdaUI.DownloadUI', { |
700 | 700 | |
701 | 701 | }, |
702 | 702 | { |
703 | - xtype: 'checkbox', boxLabel: 'Use first param. as reference for sampling', | |
703 | + xtype: 'checkbox', boxLabel: 'Sampling: use first parameter as reference', | |
704 | 704 | boxLabelAlign: 'before', |
705 | 705 | name: 'refparamSampling', checked: false, disabled: true, |
706 | 706 | listeners: { |
... | ... | @@ -710,7 +710,7 @@ Ext.define('amdaUI.DownloadUI', { |
710 | 710 | }, |
711 | 711 | { |
712 | 712 | xtype: 'numberfield', name: 'sampling', |
713 | - fieldLabel: 'Sampling Time', value: 600, | |
713 | + fieldLabel: 'Sampling (s.)', value: 600, | |
714 | 714 | hideTrigger: true, editable: true, |
715 | 715 | disabled: true |
716 | 716 | }, | ... | ... |
js/app/views/PlotComponents/PlotZoomPlug.js
... | ... | @@ -233,7 +233,7 @@ Ext.define('amdaPlotComp.PlotZoomPlug', { |
233 | 233 | { |
234 | 234 | xtype: 'button', |
235 | 235 | width: 100, |
236 | - text: 'Reset interval', | |
236 | + text: 'Reset', | |
237 | 237 | scope: this, |
238 | 238 | handler: function () { |
239 | 239 | this.resetMinMaxValue(); |
... | ... | @@ -242,7 +242,7 @@ Ext.define('amdaPlotComp.PlotZoomPlug', { |
242 | 242 | { |
243 | 243 | xtype: 'button', |
244 | 244 | width: 100, |
245 | - text: 'Use interval in plot', | |
245 | + text: 'Use in Time Selection', | |
246 | 246 | scope: this, |
247 | 247 | handler: function () { |
248 | 248 | this.setTimePlot(); | ... | ... |