Rename "instantaneous value" to "current value", in an attempt to talk like a human being.

This commit is contained in:
Simon MacMullen 2013-02-05 16:04:26 +00:00
parent 33eb53d29c
commit db1706ea00
2 changed files with 3 additions and 3 deletions

View File

@ -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();

View File

@ -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>