Rename analyze --> analyse (UK spelling?)
[vchess.git] / client / src / components / BaseGame.vue
index aa606aa..0e0f372 100644 (file)
@@ -29,11 +29,11 @@ div#baseGame(tabindex=-1 @click="() => focusBg()"
       #pgnDiv
         #downloadDiv(v-if="game.vname!='Dark' || game.score!='*'")
           a#download(href="#")
-          button(@click="download") {{ st.tr["Download PGN"] }}
+          button(@click="download") {{ st.tr["Download"] }} PGN
         button(onClick="doClick('modalAdjust')") ⤢
         button(v-if="game.vname!='Dark' && game.mode!='analyze'"
             @click="analyzePosition")
-          | {{ st.tr["Analyze"] }}
+          | {{ st.tr["Analyse"] }}
         // NOTE: rather ugly hack to avoid showing twice "rules" link...
         button(v-if="!$route.path.match('/variants/')" @click="showRules")
           | {{ st.tr["Rules"] }}
@@ -225,7 +225,7 @@ export default {
       this.incheck = [];
     },
     analyzePosition: function() {
-      const newUrl = "/analyze/" + this.game.vname +
+      const newUrl = "/analyse/" + this.game.vname +
         "/?fen=" + this.vr.getFen().replace(/ /g, "_");
       if (this.game.type == "live")
         this.$router.push(newUrl); //open in same tab: against cheating...