Lines 18-42
Link Here
|
18 |
:options="[ |
18 |
:options="[ |
19 |
{ |
19 |
{ |
20 |
value: 'monthly', |
20 |
value: 'monthly', |
21 |
description: __('By month'), |
21 |
description: $__('By month'), |
22 |
}, |
22 |
}, |
23 |
{ |
23 |
{ |
24 |
value: 'monthly_with_totals', |
24 |
value: 'monthly_with_totals', |
25 |
description: __( |
25 |
description: $__( |
26 |
'By month with period total' |
26 |
'By month with period total' |
27 |
), |
27 |
), |
28 |
}, |
28 |
}, |
29 |
{ |
29 |
{ |
30 |
value: 'yearly', |
30 |
value: 'yearly', |
31 |
description: __('By year'), |
31 |
description: $__('By year'), |
32 |
}, |
32 |
}, |
33 |
{ |
33 |
{ |
34 |
value: 'metric_type', |
34 |
value: 'metric_type', |
35 |
description: __('By metric type'), |
35 |
description: $__('By metric type'), |
36 |
}, |
36 |
}, |
37 |
{ |
37 |
{ |
38 |
value: 'usage_data_provider', |
38 |
value: 'usage_data_provider', |
39 |
description: __( |
39 |
description: $__( |
40 |
'By data provider totals' |
40 |
'By data provider totals' |
41 |
), |
41 |
), |
42 |
}, |
42 |
}, |
Lines 225-231
Link Here
|
225 |
class="checkbox_options" |
225 |
class="checkbox_options" |
226 |
> |
226 |
> |
227 |
<label :for="prop.name" class="checkbox" |
227 |
<label :for="prop.name" class="checkbox" |
228 |
>{{ $prop.name }}:</label |
228 |
>{{ prop.name }}:</label |
229 |
> |
229 |
> |
230 |
<input |
230 |
<input |
231 |
type="checkbox" |
231 |
type="checkbox" |
Lines 310-316
Link Here
|
310 |
class="month_selectors" |
310 |
class="month_selectors" |
311 |
> |
311 |
> |
312 |
<label for="month" class="month_labels"> |
312 |
<label for="month" class="month_labels"> |
313 |
{{ $month.short }} |
313 |
{{ month.short }} |
314 |
</label> |
314 |
</label> |
315 |
<input |
315 |
<input |
316 |
type="checkbox" |
316 |
type="checkbox" |
317 |
- |
|
|