-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.js
52 lines (51 loc) · 1.67 KB
/
data.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
const locales = {
en: {
header: "Digit Tutor",
info:
"Pronounce the digit that You see. Don't forget to allow microphone access. In case of any issue — reload the page. Chrome-only.",
start: "Start!",
hint: "What was heard:",
nothingYet: "nothing yet...",
name: "English",
language: "Language",
numbers: [
"zero",
"one",
"two",
"three",
"four",
"five",
"six",
"seven",
"eight",
"nine"
],
noRecognitionError:
"Your browser does not seem to support speech recognition. Only Chrome supports it as of now. Please, use Chrome."
},
ru: {
header: "Учебник Цифр",
info:
"Нужно произнести вслух цифру, показанную на экране. Также, надо дать доступ к микрофону. Если что-то не так — обновите страницу. Работает только в Chrome.",
start: "Начать!",
hint: "Что услышал компьютер:",
nothingYet: "пока ничего...",
name: "Русский",
language: "Язык",
numbers: [
"ноль",
"один",
"два",
"три",
"четыре",
"пять",
"шесть",
"семь",
"восемь",
"девять"
],
noRecognitionError:
"Похоже, Ваш браузер не поддерживает распознавание речи. На данный момент, распознавание работает только в Хроме. Пожалуйста, откройте игру в Хроме."
}
};
export { locales };