|
1 | 1 | <template> |
2 | | - <p class="title-audio d-inline-block">Sound after complete period</p> |
| 2 | + <p class="title-audio d-inline-block">{{ t('pomodoroSoundAfter.message') }}</p> |
3 | 3 | <select class="option" v-model="audioAfterPeriod" @change="onAudioChange($event.target)"> |
4 | | - <option :value="PomodoroSounds['Sound 1']">Sound 1</option> |
5 | | - <option :value="PomodoroSounds['Sound 2']">Sound 2</option> |
6 | | - <option :value="PomodoroSounds['Sound 3']">Sound 3</option> |
7 | | - <option :value="PomodoroSounds['Sound 4']">Sound 4</option> |
8 | | - <option :value="PomodoroSounds['Sound 5']">Sound 5</option> |
9 | | - <option :value="PomodoroSounds['Sound 6']">Sound 6</option> |
10 | | - <option :value="PomodoroSounds['Sound 7']">Sound 7</option> |
11 | | - <option :value="PomodoroSounds['Sound 8']">Sound 8</option> |
12 | | - <option :value="PomodoroSounds['Sound 9']">Sound 9</option> |
13 | | - <option :value="PomodoroSounds['Sound 10']">Sound 10</option> |
14 | | - <option :value="PomodoroSounds['Sound 11']">Sound 11</option> |
15 | | - <option :value="PomodoroSounds['Sound 12']">Sound 12</option> |
16 | | - <option :value="PomodoroSounds['Sound 13']">Sound 13</option> |
| 4 | + <option :value="PomodoroSounds['Sound 1']">{{ t('sound.message') }} 1</option> |
| 5 | + <option :value="PomodoroSounds['Sound 2']">{{ t('sound.message') }} 2</option> |
| 6 | + <option :value="PomodoroSounds['Sound 3']">{{ t('sound.message') }} 3</option> |
| 7 | + <option :value="PomodoroSounds['Sound 4']">{{ t('sound.message') }} 4</option> |
| 8 | + <option :value="PomodoroSounds['Sound 5']">{{ t('sound.message') }} 5</option> |
| 9 | + <option :value="PomodoroSounds['Sound 6']">{{ t('sound.message') }} 6</option> |
| 10 | + <option :value="PomodoroSounds['Sound 7']">{{ t('sound.message') }} 7</option> |
| 11 | + <option :value="PomodoroSounds['Sound 8']">{{ t('sound.message') }} 8</option> |
| 12 | + <option :value="PomodoroSounds['Sound 9']">{{ t('sound.message') }} 9</option> |
| 13 | + <option :value="PomodoroSounds['Sound 10']">{{ t('sound.message') }} 10</option> |
| 14 | + <option :value="PomodoroSounds['Sound 11']">{{ t('sound.message') }} 11</option> |
| 15 | + <option :value="PomodoroSounds['Sound 12']">{{ t('sound.message') }} 12</option> |
| 16 | + <option :value="PomodoroSounds['Sound 13']">{{ t('sound.message') }} 13</option> |
17 | 17 | </select> |
18 | 18 | <img src="../assets/icons/start.svg" height="22" @click="playAudio" class="play" /> |
19 | | - <span class="preview">Click to preview</span> |
| 19 | + <span class="preview">{{ t('clickToPreview.message') }}</span> |
20 | 20 | </template> |
21 | 21 |
|
22 | 22 | <script lang="ts"> |
|
0 commit comments