Scripts englisch statt französisch

This commit is contained in:
alzer
2025-05-15 23:03:43 +02:00
parent 0bcbc29f0f
commit d80779f206
503 changed files with 10469 additions and 1616 deletions
+4 -4
View File
@@ -2,16 +2,16 @@ if (args.opposedTest?.attackerTest?.item?.system?.isRanged)
{
let choice = await Dialog.wait({
title: this.effect.name,
content: `<p>Eviter les dégâts avec <strong>${this.effect.name}</strong>?`,
content: `<p>Abort damage with <strong>${this.effect.name}</strong>?`,
buttons: {
yes: {
label: "Oui",
label: "Yes",
callback: () => {
return true;
}
},
no: {
label: "Non",
label: "No",
callback: () => {
return false;
}
@@ -21,6 +21,6 @@ if (args.opposedTest?.attackerTest?.item?.system?.isRanged)
if (choice)
{
args.abort = `<strong>${this.effect.name}</strong>: Dégâts annulés`
args.abort = `<strong>${this.effect.name}</strong>: Damage cancelled`
}
}