Exile message (#115)

This commit is contained in:
MRegnard 2023-11-10 22:10:37 +01:00 committed by GitHub
parent e812051fe1
commit 34bcbff811
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 14 additions and 4 deletions

View file

@ -1,6 +1,7 @@
# Release Notes # Release Notes
## Upcomming Version ## Upcomming Version
- Correcting the message when someone wants to exile a Traveller
- Correcting Leviathan's english description - Correcting Leviathan's english description
- Correcting "Late Night Drive By"'s name - Correcting "Late Night Drive By"'s name
- Adding a token "Used" to the Doomsayer - Adding a token "Used" to the Doomsayer

View file

@ -6,9 +6,14 @@
</div> </div>
<div class="overlay"> <div class="overlay">
<audio src="../assets/sounds/countdown.mp3" preload="auto"></audio> <audio src="../assets/sounds/countdown.mp3" preload="auto"></audio>
<em class="blue">{{ nominator.name }}</em> {{ locale.vote.nominated }} <em class="blue">{{ nominator.name }}</em>
{{
nominee.role.team == "traveler"
? locale.vote.callexile
: locale.vote.nominates
}}
<em>{{ nominee.name }}</em <em>{{ nominee.name }}</em
>! >{{ locale.vote.exclam }}
<br /> <br />
<em <em
class="blue" class="blue"

View file

@ -70,7 +70,9 @@
"customNote": "Add a custom reminder node" "customNote": "Add a custom reminder node"
}, },
"vote":{ "vote":{
"nominated": "nominated", "nominates": "nominates",
"callexile": "calls for the exile of",
"exclam": "!",
"votes": "votes", "votes": "votes",
"inFavor": "in favor", "inFavor": "in favor",
"majorityIs": "majority is", "majorityIs": "majority is",

View file

@ -70,7 +70,9 @@
"customNote": "Ajouter une note personnalisée" "customNote": "Ajouter une note personnalisée"
}, },
"vote":{ "vote":{
"nominated": "accuse", "nominates": "accuse",
"callexile": "veut exiler",
"exclam": " !",
"votes": "votes", "votes": "votes",
"inFavor": "pour", "inFavor": "pour",
"majorityIs": "majorité à", "majorityIs": "majorité à",