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

(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/AgreementsList.vue (-3 / +5 lines)
Lines 119-126 export default { Link Here
119
                    4: () =>
119
                    4: () =>
120
                        this.map_av_dt_filter("av_agreement_closure_reasons"),
120
                        this.map_av_dt_filter("av_agreement_closure_reasons"),
121
                    5: [
121
                    5: [
122
                        { _id: 0, _str: _("No") },
122
                        { _id: 0, _str: this.$__("No") },
123
                        { _id: 1, _str: _("Yes") },
123
                        { _id: 1, _str: this.$__("Yes") },
124
                    ],
124
                    ],
125
                    6: () =>
125
                    6: () =>
126
                        this.map_av_dt_filter(
126
                        this.map_av_dt_filter(
Lines 317-323 export default { Link Here
317
                    searchable: true,
317
                    searchable: true,
318
                    orderable: true,
318
                    orderable: true,
319
                    render: function (data, type, row, meta) {
319
                    render: function (data, type, row, meta) {
320
                        return escape_str(row.is_perpetual ? _("Yes") : _("No"))
320
                        return escape_str(
321
                            row.is_perpetual ? __("Yes") : __("No")
322
                        )
321
                    },
323
                    },
322
                },
324
                },
323
                {
325
                {
(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/EHoldingsEBSCOTitlesList.vue (-2 / +2 lines)
Lines 270-283 export default { Link Here
270
                        return (
270
                        return (
271
                            (print_identifier
271
                            (print_identifier
272
                                ? escape_str(
272
                                ? escape_str(
273
                                      _("ISBN (Print): %s").format(
273
                                      __("ISBN (Print): %s").format(
274
                                          print_identifier
274
                                          print_identifier
275
                                      )
275
                                      )
276
                                  )
276
                                  )
277
                                : "") +
277
                                : "") +
278
                            (online_identifier
278
                            (online_identifier
279
                                ? escape_str(
279
                                ? escape_str(
280
                                      _("ISBN (Online): %s").format(
280
                                      __("ISBN (Online): %s").format(
281
                                          online_identifier
281
                                          online_identifier
282
                                      )
282
                                      )
283
                                  )
283
                                  )
(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/EHoldingsLocalTitlesList.vue (-3 / +2 lines)
Lines 221-234 export default { Link Here
221
                        return (
221
                        return (
222
                            (print_identifier
222
                            (print_identifier
223
                                ? escape_str(
223
                                ? escape_str(
224
                                      _("ISBN (Print): %s").format(
224
                                      __("ISBN (Print): %s").format(
225
                                          print_identifier
225
                                          print_identifier
226
                                      )
226
                                      )
227
                                  )
227
                                  )
228
                                : "") +
228
                                : "") +
229
                            (online_identifier
229
                            (online_identifier
230
                                ? escape_str(
230
                                ? escape_str(
231
                                      _("ISBN (Online): %s").format(
231
                                      __("ISBN (Online): %s").format(
232
                                          online_identifier
232
                                          online_identifier
233
                                      )
233
                                      )
234
                                  )
234
                                  )
235
- 

Return to bug 34804