View | Details | Raw Unified | Return to bug 36836
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/AgreementsShow.vue (-1 / +1 lines)
Lines 278-284 Link Here
278
                                            agreement_package.package.name
278
                                            agreement_package.package.name
279
                                        }}</router-link
279
                                        }}</router-link
280
                                    >
280
                                    >
281
                                    {{ $__("(local)") }}</span
281
                                    ({{ $__("local") }})</span
282
                                >
282
                                >
283
                            </div>
283
                            </div>
284
                        </div>
284
                        </div>
(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/UsageStatisticsDataProvidersFormAdd.vue (-2 / +2 lines)
Lines 421-428 export default { Link Here
421
            initialized: false,
421
            initialized: false,
422
            previous_route: "",
422
            previous_route: "",
423
            statuses: [
423
            statuses: [
424
                { description: __("Active"), value: 1 },
424
                { description: this.$__("Active"), value: 1 },
425
                { description: __("Inactive"), value: 0 },
425
                { description: this.$__("Inactive"), value: 0 },
426
            ],
426
            ],
427
            registry_data: [],
427
            registry_data: [],
428
            valid_report_types: [...this.av_report_types],
428
            valid_report_types: [...this.av_report_types],
(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/UsageStatisticsDataProvidersShow.vue (-1 / +1 lines)
Lines 58-64 Link Here
58
                        v-bind:class="
58
                        v-bind:class="
59
                            tab_content === item.data_type ? 'active' : ''
59
                            tab_content === item.data_type ? 'active' : ''
60
                        "
60
                        "
61
                        >{{ $item.tab_name }}</a
61
                        >{{ item.tab_name }}</a
62
                    >
62
                    >
63
                </li>
63
                </li>
64
                <li class="nav-item">
64
                <li class="nav-item">
(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/UsageStatisticsReportBuilder.vue (-8 / +7 lines)
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
- 

Return to bug 36836