Rename "instantaneous value" to "current value", in an attempt to talk like a human being.
This commit is contained in:
parent
33eb53d29c
commit
db1706ea00
|
|
@ -640,8 +640,8 @@ function prefix_title(mode, range) {
|
|||
if (mode == 'chart') {
|
||||
return 'chart: ' + desc.toLowerCase();
|
||||
}
|
||||
else if (mode == 'inst') {
|
||||
return 'instantaneous value';
|
||||
else if (mode == 'curr') {
|
||||
return 'current value';
|
||||
}
|
||||
else {
|
||||
return 'moving average: ' + desc.toLowerCase();
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@
|
|||
<th><label>Display:</label></th>
|
||||
<td>
|
||||
<%= fmt_radio('mode', 'Charts', 'chart', mode) %>
|
||||
<%= fmt_radio('mode', 'Instantaneous value', 'inst', mode) %>
|
||||
<%= fmt_radio('mode', 'Current value', 'curr', mode) %>
|
||||
<%= fmt_radio('mode', 'Moving average', 'avg', mode) %>
|
||||
</td>
|
||||
</tr>
|
||||
|
|
|
|||
Loading…
Reference in New Issue