mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-02-10 02:05:46 +00:00
* 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 77a88e0895f7c3389cb223651b90d918af778fe9. * 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>
38 lines
1.7 KiB
TypeScript
38 lines
1.7 KiB
TypeScript
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
|
|
|
export const splashMessages: SimpleTranslationEntries = {
|
|
"battlesWon": "Battaglie Vinte!",
|
|
"joinTheDiscord": "Entra nel Discord!",
|
|
"infiniteLevels": "Livelli Infiniti!",
|
|
"everythingStacks": "Tutto si impila!",
|
|
"optionalSaveScumming": "Salvataggio Facoltativo!",
|
|
"biomes": "35 Biomi!",
|
|
"openSource": "Open Source!",
|
|
"playWithSpeed": "Gioca con il 5x di Velocità!",
|
|
"liveBugTesting": "Test dei Bug in Tempo Reale!",
|
|
"heavyInfluence": "Influenzato da RoR2!",
|
|
"pokemonRiskAndPokemonRain": "Pokémon Risk e Pokémon Rain!",
|
|
"nowWithMoreSalt": "Adesso con il 33% di sale in più!",
|
|
"infiniteFusionAtHome": "Fusioni Infinite a Casa!",
|
|
"brokenEggMoves": "Mosse delle Uova Rotte!",
|
|
"magnificent": "Magnifico!",
|
|
"mubstitute": "Mubstitute!",
|
|
"thatsCrazy": "È Pazzesco!",
|
|
"oranceJuice": "Succo d'Arancia!",
|
|
"questionableBalancing": "Bilanciamento Discutibile!",
|
|
"coolShaders": "Shader fantastici!",
|
|
"aiFree": "Senza Intelligenza Artificiale!",
|
|
"suddenDifficultySpikes": "Picchi di Difficoltà Improvvisi!",
|
|
"basedOnAnUnfinishedFlashGame": "Basato su un Gioco Flash Incompiuto!",
|
|
"moreAddictiveThanIntended": "Crea Dipendeza più del Dovuto!",
|
|
"mostlyConsistentSeeds": "Seeds Consistenti!",
|
|
"achievementPointsDontDoAnything": "I Punti Obiettivo non Fanno Nulla!",
|
|
"youDoNotStartAtLevel": "Non Cominci dal Livello 2000!",
|
|
"dontTalkAboutTheManaphyEggIncident": "Non Parlare dell'Incidente dell'Uovo di Manaphy!",
|
|
"alsoTryPokengine": "Prova anche Pokéngine!",
|
|
"alsoTryEmeraldRogue": "Prova anche Emerald Rogue!",
|
|
"alsoTryRadicalRed": "Prova anche Radical Red!",
|
|
"eeveeExpo": "Eevee Expo!",
|
|
"ynoproject": "YNOproject!",
|
|
} as const;
|