Tranlsating bubbles' title (#180)

* Translating bubbles' hover text
This commit is contained in:
MRegnard 2024-08-25 22:05:33 +02:00 committed by GitHub
parent 91fdfcd8d3
commit bf2bd93031
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 9 additions and 2 deletions

View file

@ -5,6 +5,7 @@
- Various corrections in the French version - Various corrections in the French version
- Minor corrections in the English version - Minor corrections in the English version
- Various corrections in the French version - Various corrections in the French version
- Translatable night description bubbles
### Version 3.19.0 ### Version 3.19.0

View file

@ -190,6 +190,12 @@ export default {
...mapGetters({ nightOrder: "players/nightOrder" }), ...mapGetters({ nightOrder: "players/nightOrder" }),
...mapState(["grimoire", "roles", "session", "locale"]), ...mapState(["grimoire", "roles", "session", "locale"]),
...mapState("players", ["players", "bluffs", "fabled"]), ...mapState("players", ["players", "bluffs", "fabled"]),
firstMessage() {
return JSON.stringify(this.locale.modal.nightOrder.firstNight);
},
otherMessage() {
return JSON.stringify(this.locale.modal.nightOrder.otherNights);
},
}, },
data() { data() {
return { return {
@ -767,7 +773,7 @@ export default {
rgba(0, 0, 0, 0.5) 20% rgba(0, 0, 0, 0.5) 20%
); );
&:before { &:before {
content: "First Night"; content: v-bind(firstMessage);
} }
&:after { &:after {
border-left-color: $townsfolk; border-left-color: $townsfolk;
@ -780,7 +786,7 @@ export default {
left: 120%; left: 120%;
background: linear-gradient(to right, $demon 0%, rgba(0, 0, 0, 0.5) 20%); background: linear-gradient(to right, $demon 0%, rgba(0, 0, 0, 0.5) 20%);
&:before { &:before {
content: "Other Nights"; content: v-bind(otherMessage);
} }
&:after { &:after {
right: 100%; right: 100%;