Skip to content

Commit

Permalink
feat: change default colours to purple and orange
Browse files Browse the repository at this point in the history
change default number of tries to 7 and word length to 6.
remove all mention of wordle
  • Loading branch information
roedoejet committed Mar 6, 2024
1 parent b7c4a9d commit e8568e7
Show file tree
Hide file tree
Showing 8 changed files with 327 additions and 316 deletions.
40 changes: 25 additions & 15 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

197 changes: 98 additions & 99 deletions public/locales/es/translation.json
Original file line number Diff line number Diff line change
@@ -1,102 +1,101 @@
{
"about": "Acerca de este juego",
"gameName": "No Wordle - {{language}}",
"enterKey": "Enviar",
"deleteKey": "Eliminar",
"notEnoughLetters": "No hay suficientes letras",
"wordNotFound": "Palabra no encontrada",
"solution": "La palabra era {{solution}}",
"gameCopied": "Juego copiado al portapapeles",
"howToPlay": "Cómo jugar",
"instructions": "Adivina la palabra en {{tries}} intentos. Después de cada intento, el color de las letras cambiará para mostrar qué tan cerca estás de acertar la palabra.",
"pickYourLanguage": "Elige un idioma",
"correctSpotInstructions": "La letra T se encuentra en la palabra y está en la posición correcta.",
"wrongSpotInstructions": "La letra N se encuentra en la palabra pero en la posición incorrecta.",
"notInWordInstructions": "La letra O no se encuentra en la palabra.",
"guessDistribution": "Distribución de aciertos",
"statistics": "Estadísticas",
"totalTries": "Jugadas",
"successRate": "Victorias",
"currentStreak": "Racha actual",
"bestStreak": "Mejor racha",
"newWordCountdown": "Nueva palabra en",
"share": "Compartir",
"winMessages": [
"¡Gran trabajo!",
"Increíble",
"¡Bien hecho!"
],
"firstExampleWord": [{
"letter": "T",
"highlight": true
},
{
"letter": "R",
"highlight": false
},
{
"letter": "A",
"highlight": false
},
{
"letter": "M",
"highlight": false
},
{
"letter": "O",
"highlight": false
}
],
"secondExampleWord": [{
"letter": "G",
"highlight": false
},
{
"letter": "A",
"highlight": false
},
{
"letter": "N",
"highlight": true
},
{
"letter": "A",
"highlight": false
},
{
"letter": "S",
"highlight": false
}
],
"thirdExampleWord": [{
"letter": "R",
"highlight": false
},
{
"letter": "E",
"highlight": false
},
{
"letter": "T",
"highlight": false
},
{
"letter": "O",
"highlight": true
},
{
"letter": "S",
"highlight": false
}
],
"aboutAuthorSentence": "Este es un clon de código abierto del juego Wordle adaptado a {{language}} por <3>{{author}}</3>. ",
"aboutCodeSentence": "Echa un vistazo al <1>código original</1> de <3>Hannah Park</3> o echa un vistazo al <5>fork de Aidan Pine</5> y personalízalo para otro idioma. ",
"aboutDataSentence": "Las palabras para este juego se obtuvieron de <1>{{wordListSource}}</1>. ",
"aboutOriginalSentence": "También puedes jugar la original <1>aquí</1>",
"languages": {
"en": "English",
"es": "Español",
"sw": "Kiswahili",
"zh": "中文"
"about": "Acerca de este juego",
"gameName": "No Word-Guessing-Game - {{language}}",
"enterKey": "Enviar",
"deleteKey": "Eliminar",
"notEnoughLetters": "No hay suficientes letras",
"wordNotFound": "Palabra no encontrada",
"solution": "La palabra era {{solution}}",
"gameCopied": "Juego copiado al portapapeles",
"howToPlay": "Cómo jugar",
"instructions": "Adivina la palabra en {{tries}} intentos. Después de cada intento, el color de las letras cambiará para mostrar qué tan cerca estás de acertar la palabra.",
"pickYourLanguage": "Elige un idioma",
"correctSpotInstructions": "La letra T se encuentra en la palabra y está en la posición correcta.",
"wrongSpotInstructions": "La letra N se encuentra en la palabra pero en la posición incorrecta.",
"notInWordInstructions": "La letra O no se encuentra en la palabra.",
"guessDistribution": "Distribución de aciertos",
"statistics": "Estadísticas",
"totalTries": "Jugadas",
"successRate": "Victorias",
"currentStreak": "Racha actual",
"bestStreak": "Mejor racha",
"newWordCountdown": "Nueva palabra en",
"share": "Compartir",
"winMessages": ["¡Gran trabajo!", "Increíble", "¡Bien hecho!"],
"firstExampleWord": [
{
"letter": "T",
"highlight": true
},
{
"letter": "R",
"highlight": false
},
{
"letter": "A",
"highlight": false
},
{
"letter": "M",
"highlight": false
},
{
"letter": "O",
"highlight": false
}
],
"secondExampleWord": [
{
"letter": "G",
"highlight": false
},
{
"letter": "A",
"highlight": false
},
{
"letter": "N",
"highlight": true
},
{
"letter": "A",
"highlight": false
},
{
"letter": "S",
"highlight": false
}
],
"thirdExampleWord": [
{
"letter": "R",
"highlight": false
},
{
"letter": "E",
"highlight": false
},
{
"letter": "T",
"highlight": false
},
{
"letter": "O",
"highlight": true
},
{
"letter": "S",
"highlight": false
}
],
"aboutAuthorSentence": "Este es un clon de código abierto del juego Word-Guessing-Game adaptado a {{language}} por <3>{{author}}</3>. ",
"aboutCodeSentence": "Echa un vistazo al <1>código original</1> de <3>Hannah Park</3> o echa un vistazo al <5>fork de Aidan Pine</5> y personalízalo para otro idioma. ",
"aboutDataSentence": "Las palabras para este juego se obtuvieron de <1>{{wordListSource}}</1>. ",
"aboutOriginalSentence": "También puedes jugar la original <1>aquí</1>",
"languages": {
"en": "English",
"es": "Español",
"sw": "Kiswahili",
"zh": "中文"
}
}
Loading

0 comments on commit e8568e7

Please sign in to comment.