-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontentData.js
More file actions
47 lines (46 loc) · 2.1 KB
/
contentData.js
File metadata and controls
47 lines (46 loc) · 2.1 KB
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
export const contentData = {
words: {
es: [
"fútbol", "cancha", "reserva", "partido", "equipo", "jugador", "torneo", "amistoso",
"estadísticas", "victoria", "derrota", "empate", "campeonato", "gol", "penalti", "remate"
],
en: [
"football", "field", "reservation", "match", "team", "player", "tournament", "friendly",
"statistics", "victory", "defeat", "draw", "championship", "goal", "penalty", "shot"
]
},
paragraphs: {
es: [
"El fútbol es un deporte apasionante que une a millones de personas en todo el mundo.",
"En un partido típico, dos equipos compiten por marcar más goles en la cancha.",
"Los jugadores deben entrenar duro para mejorar su resistencia y habilidades técnicas."
],
en: [
"Football is an exciting sport that brings together millions of people worldwide.",
"In a typical match, two teams compete to score the most goals on the field.",
"Players must train hard to improve their endurance and technical skills."
]
},
cities: {
es: [
"Madrid", "Barcelona", "Bogotá", "Lima", "Santiago", "Buenos Aires", "México", "Caracas",
"Quito", "Montevideo", "Asunción", "La Paz", "San José", "Havana", "Panamá"
],
en: [
"London", "New York", "Tokyo", "Sydney", "Paris", "Berlin", "Toronto", "Seoul",
"Dubai", "Singapore", "Rome", "Moscow", "Cape Town", "Rio de Janeiro", "Stockholm"
]
},
practice: {
es: [
"Este es un texto de práctica. Aquí podrás mejorar tu velocidad sin límite de tiempo.",
"Otro texto de práctica para que practiques libremente tu mecanografía.",
"Un tercer texto de ejemplo para tu modo práctica."
],
en: [
"This is a practice text. You can improve your typing speed with no time limit here.",
"Another practice text so you can freely train your typing.",
"A third sample text for your practice mode."
]
}
};