Forgot two translations
authorBenjamin Auder <benjamin.auder@somewhere>
Sat, 29 Feb 2020 12:45:03 +0000 (13:45 +0100)
committerBenjamin Auder <benjamin.auder@somewhere>
Sat, 29 Feb 2020 12:45:03 +0000 (13:45 +0100)
client/src/components/Chat.vue
client/src/components/Settings.vue
client/src/views/Game.vue

index 7f80767..6eb7ef3 100644 (file)
@@ -1,7 +1,7 @@
 <template lang="pug">
 div
   button(@click="clearHistory()")
-    | {{ st.tr["Clear chat"] }}
+    | {{ st.tr["Clear history"] }}
   input#inputChat(
     type="text"
     :placeholder="st.tr['Chat here']"
index d01f2cd..6e623ba 100644 (file)
@@ -47,7 +47,7 @@ div
             option(value="chesstempo") {{ st.tr["blue"] }}
         fieldset
           label(for="setSound")
-            | {{ st.tr["Sound on new game?"] }}
+            | {{ st.tr["Sound alert when game starts?"] }}
           input#setSound(
             type="checkbox"
             v-model="st.settings.sound"
index 23c4578..b52de82 100644 (file)
@@ -212,6 +212,7 @@ export default {
           "DELETE",
           {gid: this.game.id},
           () => {
+            // TODO: this.game.pastChats = [] could be enough here?
             this.$set(this.game, "pastChats", []);
           }
         );