mirror of
https://github.com/bra1n/townsquare.git
synced 2025-04-04 14:14:38 +00:00
parent
91fdfcd8d3
commit
bf2bd93031
2 changed files with 9 additions and 2 deletions
|
@ -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
|
||||||
|
|
||||||
|
|
|
@ -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%;
|
||||||
|
|
Loading…
Add table
Reference in a new issue