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 152-159 export default { Link Here
152
            toolbar_options: [
152
            toolbar_options: [
153
                {
153
                {
154
                    to: "AgreementsFormAdd",
154
                    to: "AgreementsFormAdd",
155
                    button_title: "New agreement",
155
                    button_title: this.$__("New agreement"),
156
                },
156
                }
157
            ],
157
            ],
158
        }
158
        }
159
    },
159
    },
(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/EHoldingsLocalPackagesList.vue (-1 / +1 lines)
Lines 101-107 export default { Link Here
101
            toolbar_options: [
101
            toolbar_options: [
102
                {
102
                {
103
                    to: "EHoldingsLocalPackagesFormAdd",
103
                    to: "EHoldingsLocalPackagesFormAdd",
104
                    button_title: "New package",
104
                    button_title: this.$__("New package"),
105
                },
105
                },
106
            ],
106
            ],
107
        }
107
        }
(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/EHoldingsLocalTitlesList.vue (-2 / +2 lines)
Lines 93-103 export default { Link Here
93
            toolbar_options: [
93
            toolbar_options: [
94
                {
94
                {
95
                    to: "EHoldingsLocalTitlesFormAdd",
95
                    to: "EHoldingsLocalTitlesFormAdd",
96
                    button_title: "New title",
96
                    button_title: this.$__("New title"),
97
                },
97
                },
98
                {
98
                {
99
                    to: "EHoldingsLocalTitlesFormImport",
99
                    to: "EHoldingsLocalTitlesFormImport",
100
                    button_title: "Import from list",
100
                    button_title: this.$__("Import from list"),
101
                },
101
                },
102
            ],
102
            ],
103
        }
103
        }
(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/LicensesList.vue (-1 / +1 lines)
Lines 53-59 export default { Link Here
53
            toolbar_options: [
53
            toolbar_options: [
54
                {
54
                {
55
                    to: "LicensesFormAdd",
55
                    to: "LicensesFormAdd",
56
                    button_title: "New license",
56
                    button_title: this.$__("New license"),
57
                },
57
                },
58
            ],
58
            ],
59
            tableOptions: {
59
            tableOptions: {
(-)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