adding 18n and player turn highlitgh
This commit is contained in:
		@@ -13,6 +13,7 @@ import { useGameOptionsStore } from '@/stores/gameOptions'
 | 
			
		||||
 | 
			
		||||
let background = ref<string>('green')
 | 
			
		||||
let teamed = ref<boolean>(false)
 | 
			
		||||
let pointsToWin = ref<number>(100)
 | 
			
		||||
let seed = ref<string>('')
 | 
			
		||||
let sessionName = ref('Test Value')
 | 
			
		||||
let matchSessions = ref<MatchSessionDto[]>([])
 | 
			
		||||
@@ -146,7 +147,22 @@ function copy(sessionSeed: string) {
 | 
			
		||||
              </div>
 | 
			
		||||
            </div>
 | 
			
		||||
          </div>
 | 
			
		||||
          <div class="cell"></div>
 | 
			
		||||
          <div class="cell">
 | 
			
		||||
            <div class="field">
 | 
			
		||||
              <label for="pointsToWin" class="label">Points to win</label>
 | 
			
		||||
              <div class="control">
 | 
			
		||||
                <div class="select">
 | 
			
		||||
                  <select v-model="pointsToWin" name="pointsToWin">
 | 
			
		||||
                    <option value="50">50</option>
 | 
			
		||||
                    <option value="80">80</option>
 | 
			
		||||
                    <option value="100">100</option>
 | 
			
		||||
                    <option value="150">150</option>
 | 
			
		||||
                    <option value="200">200</option>
 | 
			
		||||
                  </select>
 | 
			
		||||
                </div>
 | 
			
		||||
              </div>
 | 
			
		||||
            </div>
 | 
			
		||||
          </div>
 | 
			
		||||
        </div>
 | 
			
		||||
      </div>
 | 
			
		||||
      <div class="block" v-if="!isSessionStarted"></div>
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user