mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-12-12 08:36:09 +00:00
bac6c22973
* eslint config + packages
* updated eslint config
* fix the issue eslint adding ;;;; at interfaces
* first round with eslint --fix .
* removed config for unused export
* Revert "first round with eslint --fix ."
This reverts commit 77a88e0895
.
* removed config for camelCase
* for real this time, first round of eslint --fix .
* halfway to manual eslint fix
* eslint done
* added "how to setup" the hook to eslint --fix each new file before commit (if wanted)
* removed eslintrc config file duplicat
* fix human error + ignore build folder + merge overrides
* added curly brace style + eslint
* applied double quote linter rule
* added lefthook
* test precommit
* test precommit
* test precommit
* test precommit
* test precommit
* test precommit
* test precommit
* github action to run eslint
* added node_modules to ignore eslint
* different action for typescript
* no need for different glob (default src)
* node 20
* node 20
* removed no longer needed install file
* remove hooks part from README
* eslint fixes
---------
Co-authored-by: Frederico Santos <frederico.f.santos@tecnico.ulisboa.pt>
52 lines
2.5 KiB
TypeScript
52 lines
2.5 KiB
TypeScript
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
|
|
|
/**
|
|
* The menu namespace holds most miscellaneous text that isn't directly part of the game's
|
|
* contents or directly related to Pokemon data. This includes menu navigation, settings,
|
|
* account interactions, descriptive text, etc.
|
|
*/
|
|
export const menu: SimpleTranslationEntries = {
|
|
"cancel": "Cancelar",
|
|
"continue": "Continuar",
|
|
"dailyRun": "Reto diario (Beta)",
|
|
"loadGame": "Cargar partida",
|
|
"newGame": "Nueva partida",
|
|
"selectGameMode": "Elige un modo de juego.",
|
|
"logInOrCreateAccount": "Inicia sesión o crea una cuenta para empezar. ¡No se requiere correo electrónico!",
|
|
"username": "Usuario",
|
|
"password": "Contraseña",
|
|
"login": "Iniciar Sesión",
|
|
"register": "Registrarse",
|
|
"emptyUsername": "El usuario no puede estar vacío",
|
|
"invalidLoginUsername": "El usuario no es válido",
|
|
"invalidRegisterUsername": "El usuario solo puede contener letras, números y guiones bajos",
|
|
"invalidLoginPassword": "La contraseña no es válida",
|
|
"invalidRegisterPassword": "Contraseña debe tener 6 o más caracter.",
|
|
"usernameAlreadyUsed": "El usuario ya está en uso",
|
|
"accountNonExistent": "El usuario no existe",
|
|
"unmatchingPassword": "La contraseña no coincide",
|
|
"passwordNotMatchingConfirmPassword": "Las contraseñas deben coincidir",
|
|
"confirmPassword": "Confirmar Contra.",
|
|
"registrationAgeWarning": "Al registrarte, confirmas tener 13 o más años de edad.",
|
|
"backToLogin": "Volver al Login",
|
|
"failedToLoadSaveData": "No se ha podido cargar los datos guardados. Por favor, recarga la página.\nSi el fallo continúa, por favor contacta al administrador.",
|
|
"sessionSuccess": "Sesión cargada con éxito.",
|
|
"failedToLoadSession": "No se ha podido cargar los datos de tu sesión.\nPuede que estén corruptos.",
|
|
"boyOrGirl": "¿Eres un chico o una chica?",
|
|
"boy": "Chico",
|
|
"girl": "Chica",
|
|
"evolving": "What?\n{{pokemonName}} is evolving!",
|
|
"stoppedEvolving": "{{pokemonName}} stopped evolving.",
|
|
"pauseEvolutionsQuestion": "Would you like to pause evolutions for {{pokemonName}}?\nEvolutions can be re-enabled from the party screen.",
|
|
"evolutionsPaused": "Evolutions have been paused for {{pokemonName}}.",
|
|
"evolutionDone": "Congratulations!\nYour {{pokemonName}} evolved into {{evolvedPokemonName}}!",
|
|
"dailyRankings": "Rankings Diarios",
|
|
"weeklyRankings": "Rankings Semanales",
|
|
"noRankings": "Sin Rankings",
|
|
"loading": "Cargando…",
|
|
"playersOnline": "Jugadores en Línea",
|
|
"empty":"Vacío",
|
|
"yes":"Sí",
|
|
"no":"No",
|
|
} as const;
|