-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtranslations.js
77 lines (77 loc) · 2.92 KB
/
translations.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
// Language data
export const translations = {
en: {
// Common
home: "Home",
playGame: "Play Game",
language: "Русский",
// Main page
welcome: "Welcome to the Messier Object Quiz",
testYourKnowledge: 'Test your knowledge of the 110 Messier objects!',
startQuiz: "Start Quiz",
// Game page
enterNumber: "Enter Messier Number (1-110):",
submit: "Submit",
pause: "Pause",
resume: "Resume",
next: "Next",
hint: "Hint",
timeRemaining: "Time Remaining: ",
seconds: "s",
score: "Score: ",
correct: "Correct!",
incorrect: "Incorrect! The correct answer was M",
timesUp: "Time's up! Moving to the next object.",
paused: "Paused",
gameOver: "Game Over\nYour score: ",
correctAnswers: "\nCorrect answers: ",
timeTaken: "\nTime taken: ",
secondsSuffix: " seconds",
hintText: 'Hint: ',
noHintAvailable: 'No hint available for this object.',
hintsNotAllowed: 'Hints are not allowed in Hard mode.',
selectDifficulty: 'Select Difficulty:',
easy: 'Easy',
medium: 'Medium',
toggleTheme: 'Toggle Theme',
hard: 'Hard',
difficultyLevel: '\nDifficulty Level: ',
},
ru: {
// Common
home: "Главная",
playGame: "Играть",
language: "English",
// Main page
welcome: "Добро пожаловать в Викторину Объектов Мессье",
testYourKnowledge: 'Проверьте свои знания 110 объектов Мессье!',
startQuiz: "Начать Викторину",
// Game page
enterNumber: "Введите номер Мессье (1-110):",
submit: "Отправить",
pause: "Пауза",
resume: "Продолжить",
next: "Далее",
hint: "Подсказка",
timeRemaining: "Оставшееся время: ",
seconds: "с",
score: "Счет: ",
correct: "Верно!",
incorrect: "Неверно! Правильный ответ: М",
timesUp: "Время вышло! Переходим к следующему объекту.",
paused: "Пауза",
hintText: 'Подсказка: ',
noHintAvailable: 'Подсказка недоступна для этого объекта.',
gameOver: "Игра окончена\nВаш счет: ",
correctAnswers: "\nПравильных ответов: ",
timeTaken: "\nЗатраченное время: ",
secondsSuffix: " секунд",
toggleTheme: 'Переключить тему',
hintsNotAllowed: 'Подсказки недоступны в сложном режиме.',
selectDifficulty: 'Выберите сложность:',
easy: 'Легко',
medium: 'Средне',
hard: 'Сложно',
difficultyLevel: '\nУровень сложности: ',
},
};