translate confirmation boxes

This commit is contained in:
Frank Elsinga 2026-01-05 21:04:01 +01:00
parent 8f1d54247b
commit f4f8019202

View File

@ -37,12 +37,16 @@ export default {
/** Text to use as yes */ /** Text to use as yes */
yesText: { yesText: {
type: String, type: String,
default: "Yes", // TODO: No idea what to translate this default() {
return this.$t("Yes");
}
}, },
/** Text to use as no */ /** Text to use as no */
noText: { noText: {
type: String, type: String,
default: "No", default() {
return this.$t("No");
}
}, },
/** Title to show on modal. Defaults to translated version of "Config" */ /** Title to show on modal. Defaults to translated version of "Config" */
title: { title: {