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

(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/UsageStatisticsDataProviderDetails.vue (-2 / +2 lines)
Lines 19-26 Link Here
19
                <span id="harvester_status">
19
                <span id="harvester_status">
20
                    {{
20
                    {{
21
                        usage_data_provider.active
21
                        usage_data_provider.active
22
                            ? $__("Active")
22
                            ? $__p("ERM data provider status", "Active")
23
                            : $__("Inactive")
23
                            : $__p("ERM data provider status", "Inactive")
24
                    }}
24
                    }}
25
                </span>
25
                </span>
26
            </li>
26
            </li>
(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/UsageStatisticsDataProvidersFormAdd.vue (-2 / +14 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: this.$__("Active"), value: 1 },
424
                {
425
                { description: this.$__("Inactive"), value: 0 },
425
                    description: this.$__p(
426
                        "ERM data provider status",
427
                        "Active"
428
                    ),
429
                    value: 1,
430
                },
431
                {
432
                    description: this.$__p(
433
                        "ERM data provider status",
434
                        "Inactive"
435
                    ),
436
                    value: 0,
437
                },
426
            ],
438
            ],
427
            registry_data: [],
439
            registry_data: [],
428
            valid_report_types: [...this.av_report_types],
440
            valid_report_types: [...this.av_report_types],
(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/UsageStatisticsDataProvidersList.vue (-2 / +3 lines)
Lines 326-332 export default { Link Here
326
                {
326
                {
327
                    title: __("Status"),
327
                    title: __("Status"),
328
                    render: function (data, type, row, meta) {
328
                    render: function (data, type, row, meta) {
329
                        const status = row.active ? "Active" : "Inactive"
329
                        const status = row.active
330
                            ? __p("ERM data provider status", "Active")
331
                            : __p("ERM data provider status", "Inactive")
330
                        return status
332
                        return status
331
                    },
333
                    },
332
                    searchable: true,
334
                    searchable: true,
333
- 

Return to bug 39045