translate confirmation boxes
This commit is contained in:
parent
8f1d54247b
commit
f4f8019202
@ -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: {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user