Relocate board adjuster + start working on translations
[vchess.git] / client / src / components / ChallengeList.vue
index 890ec1d..095c096 100644 (file)
@@ -3,10 +3,10 @@ div
   table
     thead
       tr
-        th Variant
-        th From
-        th To
-        th Cadence
+        th {{ st.tr["Variant"] }}
+        th {{ st.tr["From"] }}
+        th {{ st.tr["To"] }}
+        th {{ st.tr["Time control"] }}
     tbody
       tr(v-for="c in sortedChallenges" @click="$emit('click-challenge',c)")
         td(data-label="Variant") {{ c.vname }}
@@ -20,7 +20,7 @@ import { store } from "@/store";
 
 export default {
   name: "my-challenge-list",
-       props: ["challenges"],
+  props: ["challenges"],
   data: function() {
     return {
       st: store.state,