@@ -72,7 +72,7 @@ const parseChallengeContents = (
72
72
export function Challenges ( {
73
73
children,
74
74
isRecipes,
75
- titleText = isRecipes ? 'Try out some examples ' : 'Try out some challenges ' ,
75
+ titleText = isRecipes ? 'Prueba algunos ejemplos ' : 'Prueba algunos desafíos ' ,
76
76
titleId = isRecipes ? 'examples' : 'challenges' ,
77
77
} : ChallengesProps ) {
78
78
const challenges = parseChallengeContents ( children ) ;
@@ -143,8 +143,8 @@ export function Challenges({
143
143
< div key = { activeChallenge } >
144
144
< h3 className = "text-xl text-primary dark:text-primary-dark mb-2" >
145
145
< div className = "font-bold block md:inline" >
146
- { isRecipes ? 'Example ' : 'Challenge ' } { currentChallenge . order } { ' ' }
147
- of { challenges . length }
146
+ { isRecipes ? 'Ejemplo ' : 'Desafío ' } { currentChallenge . order } of { ' ' }
147
+ { challenges . length }
148
148
< span className = "text-primary dark:text-primary-dark" > : </ span >
149
149
</ div >
150
150
{ currentChallenge . name }
@@ -156,14 +156,14 @@ export function Challenges({
156
156
< div >
157
157
< Button className = "mr-2" onClick = { toggleHint } active = { showHint } >
158
158
< IconHint className = "mr-1.5" /> { ' ' }
159
- { showHint ? 'Hide hint ' : 'Show hint ' }
159
+ { showHint ? 'Ocultar pista ' : 'Mostrar pista ' }
160
160
</ Button >
161
161
< Button
162
162
className = "mr-2"
163
163
onClick = { toggleSolution }
164
164
active = { showSolution } >
165
165
< IconSolution className = "mr-1.5" /> { ' ' }
166
- { showSolution ? 'Hide solution ' : 'Show solution ' }
166
+ { showSolution ? 'Ocultar solución ' : 'Mostrar solución ' }
167
167
</ Button >
168
168
</ div >
169
169
) : (
@@ -173,7 +173,7 @@ export function Challenges({
173
173
onClick = { toggleSolution }
174
174
active = { showSolution } >
175
175
< IconSolution className = "mr-1.5" /> { ' ' }
176
- { showSolution ? 'Hide solution ' : 'Show solution ' }
176
+ { showSolution ? 'Ocultar solución ' : 'Mostrar solución ' }
177
177
</ Button >
178
178
)
179
179
) }
@@ -190,7 +190,7 @@ export function Challenges({
190
190
setShowSolution ( false ) ;
191
191
} }
192
192
active >
193
- Next { isRecipes ? 'Example ' : 'Challenge ' }
193
+ Próximo { isRecipes ? 'ejemplo ' : 'desafío ' }
194
194
< IconArrowSmall
195
195
displayDirection = "right"
196
196
className = "block ml-1.5"
@@ -203,12 +203,12 @@ export function Challenges({
203
203
{ showSolution && (
204
204
< div className = "mt-6" >
205
205
< h3 className = "text-2xl font-bold text-primary dark:text-primary-dark" >
206
- Solution
206
+ Solución
207
207
</ h3 >
208
208
{ currentChallenge . solution }
209
209
< div className = "flex justify-between items-center mt-4" >
210
210
< Button onClick = { ( ) => setShowSolution ( false ) } >
211
- Close solution
211
+ Cerrar solución
212
212
</ Button >
213
213
{ nextChallenge && (
214
214
< Button
@@ -226,7 +226,7 @@ export function Challenges({
226
226
}
227
227
} }
228
228
active >
229
- Next Challenge
229
+ Próximo desafío
230
230
< IconArrowSmall
231
231
displayDirection = "right"
232
232
className = "block ml-1.5"
0 commit comments