diff --git a/src/assets/icons/demon_info.png b/src/assets/icons/demon_info.png new file mode 100644 index 0000000..f59435e Binary files /dev/null and b/src/assets/icons/demon_info.png differ diff --git a/src/assets/icons/minion_info.png b/src/assets/icons/minion_info.png new file mode 100644 index 0000000..01a2092 Binary files /dev/null and b/src/assets/icons/minion_info.png differ diff --git a/src/components/Menu.vue b/src/components/Menu.vue index c23dd3a..09f808d 100644 --- a/src/components/Menu.vue +++ b/src/components/Menu.vue @@ -134,10 +134,6 @@ Copy player link -
  • - Send Characters - -
  • [V]
  • - Leave Session + 退出房间 {{ session.sessionId }}
  • @@ -154,13 +150,13 @@ @@ -169,22 +165,26 @@
  • Characters
  • - Select Edition + 选择剧本 [E]
  • - Choose & Assign + 分配角色 [C]
  • +
  • + 发送角色 + +
  • - Add Fabled + 传奇角色
  • - Remove all + 移除全部角色
  • @@ -193,11 +193,11 @@
  • Help
  • - Reference Sheet + 角色能力表 [R]
  • - Night Order Sheet + 夜晚顺序表 [N]
  • @@ -253,7 +253,7 @@ export default { hostSession() { if (this.session.sessionId) return; const sessionId = prompt( - "Enter a channel number / name for your session", + "输入你想要创建的房间的名称或号码", Math.round(Math.random() * 10000) ); if (sessionId) { @@ -271,7 +271,7 @@ export default { distributeRoles() { if (this.session.isSpectator) return; const popup = - "Do you want to distribute assigned characters to all SEATED players?"; + "你确定要向所有已入座的玩家发送角色吗?"; if (confirm(popup)) { this.$store.commit("session/distributeRoles", true); setTimeout( @@ -292,7 +292,7 @@ export default { joinSession() { if (this.session.sessionId) return this.leaveSession(); let sessionId = prompt( - "Enter the channel number / name of the session you want to join" + "输入你想要加入的房间的名称或号码" ); if (sessionId.match(/^https?:\/\//i)) { sessionId = sessionId.split("#").pop(); @@ -305,7 +305,7 @@ export default { } }, leaveSession() { - if (confirm("Are you sure you want to leave the active live game?")) { + if (confirm("你确定要离开房间吗?")) { this.$store.commit("session/setSpectator", false); this.$store.commit("session/setSessionId", ""); } @@ -320,13 +320,13 @@ export default { }, randomizeSeatings() { if (this.session.isSpectator) return; - if (confirm("Are you sure you want to randomize seatings?")) { + if (confirm("你确定要打乱座位吗?")) { this.$store.dispatch("players/randomize"); } }, clearPlayers() { if (this.session.isSpectator) return; - if (confirm("Are you sure you want to remove all players?")) { + if (confirm("你确定要移除所有座位吗?")) { // abort vote if in progress if (this.session.nomination) { this.$store.commit("session/nomination"); @@ -335,7 +335,7 @@ export default { } }, clearRoles() { - if (confirm("Are you sure you want to remove all player roles?")) { + if (confirm("你确定要移除所有玩家的角色吗?")) { this.$store.dispatch("players/clearRoles"); } }, diff --git a/src/components/Player.vue b/src/components/Player.vue index 65bdf61..e99d488 100644 --- a/src/components/Player.vue +++ b/src/components/Player.vue @@ -632,11 +632,11 @@ li.move:not(.from) .player .overlay svg.move { } } -@include glow("townsfolk", $townsfolk); -@include glow("outsider", $outsider); -@include glow("demon", $demon); -@include glow("minion", $minion); -@include glow("traveler", $traveler); +@include glow("镇民", $townsfolk); +@include glow("外来者", $outsider); +@include glow("恶魔", $demon); +@include glow("爪牙", $minion); +@include glow("旅行者", $traveler); .player.you .token { animation: townsfolk-glow 5s ease-in-out infinite; diff --git a/src/components/TownSquare.vue b/src/components/TownSquare.vue index 33a6707..45249a1 100644 --- a/src/components/TownSquare.vue +++ b/src/components/TownSquare.vue @@ -31,7 +31,7 @@ >

    Other characters - Demon bluffs + 恶魔的伪装角色

    @@ -48,7 +48,7 @@

    - Fabled + 传奇角色

    diff --git a/src/components/modals/NightOrderModal.vue b/src/components/modals/NightOrderModal.vue index 97ba4a2..6ab4b22 100644 --- a/src/components/modals/NightOrderModal.vue +++ b/src/components/modals/NightOrderModal.vue @@ -113,25 +113,24 @@ export default { if (this.players.length > 6) { rolesFirstNight.push( { - id: "evil", - name: "Minion info", + id: "minion_info", + name: "爪牙信息", firstNight: 5, team: "minion", players: this.players.filter(p => p.role.team === "minion"), firstNightReminder: - "• If more than one Minion, they all make eye contact with each other. " + - "• Show the “This is the Demon” card. Point to the Demon." + "• 如果有七名或以上玩家:爪牙睁眼相互认识。" + + "• 告诉他们恶魔是哪名玩家。" }, { - id: "evil", - name: "Demon info & bluffs", + id: "demon_info", + name: "恶魔信息", firstNight: 8, team: "demon", players: this.players.filter(p => p.role.team === "demon"), firstNightReminder: - "• Show the “These are your minions” card. Point to each Minion. " + - "• Show the “These characters are not in play” card. Show 3 character tokens of good " + - "characters not in play." + "• 如果有七名或以上玩家:告诉恶魔,这些玩家是你的爪牙。 " + + "• 告诉恶魔3个不在场的伪装角色。" } ); } diff --git a/src/components/modals/RolesModal.vue b/src/components/modals/RolesModal.vue index 27833b0..6672654 100644 --- a/src/components/modals/RolesModal.vue +++ b/src/components/modals/RolesModal.vue @@ -4,7 +4,7 @@ v-if="modals.roles && nonTravelers >= 5" @close="toggleModal('roles')" > -

    Select the characters for {{ nonTravelers }} players:

    +

    为 {{ nonTravelers }} 个玩家选择角色: