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

(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/AgreementsList.vue (-2 / +2 lines)
Lines 88-95 export default { Link Here
88
            toolbar_options: [
88
            toolbar_options: [
89
                {
89
                {
90
                    to: "AgreementsFormAdd",
90
                    to: "AgreementsFormAdd",
91
                    button_title: "New agreement",
91
                    button_title: this.$__("New agreement"),
92
                },
92
                }
93
            ],
93
            ],
94
        }
94
        }
95
    },
95
    },
(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/EHoldingsLocalPackagesList.vue (-1 / +1 lines)
Lines 57-63 export default { Link Here
57
            toolbar_options: [
57
            toolbar_options: [
58
                {
58
                {
59
                    to: "EHoldingsLocalPackagesFormAdd",
59
                    to: "EHoldingsLocalPackagesFormAdd",
60
                    button_title: "New package",
60
                    button_title: this.$__("New package"),
61
                },
61
                },
62
            ],
62
            ],
63
        }
63
        }
(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/EHoldingsLocalTitlesList.vue (-2 / +2 lines)
Lines 56-66 export default { Link Here
56
            toolbar_options: [
56
            toolbar_options: [
57
                {
57
                {
58
                    to: "EHoldingsLocalTitlesFormAdd",
58
                    to: "EHoldingsLocalTitlesFormAdd",
59
                    button_title: "New title",
59
                    button_title: this.$__("New title"),
60
                },
60
                },
61
                {
61
                {
62
                    to: "EHoldingsLocalTitlesFormImport",
62
                    to: "EHoldingsLocalTitlesFormImport",
63
                    button_title: "Import from list",
63
                    button_title: this.$__("Import from list"),
64
                },
64
                },
65
            ],
65
            ],
66
        }
66
        }
(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/LicensesList.vue (-1 / +1 lines)
Lines 47-53 export default { Link Here
47
            toolbar_options: [
47
            toolbar_options: [
48
                {
48
                {
49
                    to: "LicensesFormAdd",
49
                    to: "LicensesFormAdd",
50
                    button_title: "New license",
50
                    button_title: this.$__("New license"),
51
                },
51
                },
52
            ],
52
            ],
53
        }
53
        }
(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/Toolbar.vue (-2 / +1 lines)
Lines 6-12 Link Here
6
            :to="{ name: option.to }"
6
            :to="{ name: option.to }"
7
            class="btn btn-default"
7
            class="btn btn-default"
8
            ><font-awesome-icon icon="plus" />
8
            ><font-awesome-icon icon="plus" />
9
            {{ $__(`${option.button_title}`) }}</router-link
9
            {{ option.button_title }}</router-link
10
        >
10
        >
11
    </div>
11
    </div>
12
</template>
12
</template>
13
- 

Return to bug 33417