mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-12-29 04:59:16 +01:00
* Update fonts * Add locales/ja files * Add some more files * Add more ui stuff * Fix failing typescript doc being generated * Add the 4 ui handlers * Add i18n.ts * Try something in text.ts * Fix some more errors * Add ja type icons * Add missed message keys * Update src/plugins/i18n.ts Co-authored-by: Enoch <enoch.jwsong@gmail.com> * Update src/ui/text.ts Co-authored-by: Enoch <enoch.jwsong@gmail.com> * Update src/plugins/i18n.ts Co-authored-by: Enoch <enoch.jwsong@gmail.com> * Apply TLs from xsn34kzx Co-authored-by: Amani H. <109637146+xsn34kzx@users.noreply.github.com> * Translate essential text (move, ability descriptions) * Translate missed move/ability * Translated battle.ts - All phrases are taken from USUM script via Poké Corpus https://abcboy101.github.io/poke-corpus/ (I used the USUM script because it is in hiragana/katakana. If we decide to change these phrases to Kanji later, I will refer to the SV script to modify them again.) - * Update battle.ts * Update battle.ts * Update src/locales/ja/battle.ts Co-authored-by: Enoch <enoch.jwsong@gmail.com> * Update battle.ts --------- Co-authored-by: EnochG1 <enoch.jwsong@gmail.com> Co-authored-by: Amani H. <109637146+xsn34kzx@users.noreply.github.com> Co-authored-by: Chapybara-jp <charlie.beer@hotmail.com>
67 lines
2.6 KiB
TypeScript
67 lines
2.6 KiB
TypeScript
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
|
|
/**
|
|
* The weather namespace holds text displayed when weather is active during a battle
|
|
*/
|
|
export const weather: SimpleTranslationEntries = {
|
|
"sunnyStartMessage": "The sunlight got bright!",
|
|
"sunnyLapseMessage": "The sunlight is strong.",
|
|
"sunnyClearMessage": "The sunlight faded.",
|
|
|
|
"rainStartMessage": "A downpour started!",
|
|
"rainLapseMessage": "The downpour continues.",
|
|
"rainClearMessage": "The rain stopped.",
|
|
|
|
"sandstormStartMessage": "A sandstorm brewed!",
|
|
"sandstormLapseMessage": "The sandstorm rages.",
|
|
"sandstormClearMessage": "The sandstorm subsided.",
|
|
"sandstormDamageMessage": "{{pokemonNameWithAffix}} is buffeted\nby the sandstorm!",
|
|
|
|
"hailStartMessage": "It started to hail!",
|
|
"hailLapseMessage": "Hail continues to fall.",
|
|
"hailClearMessage": "The hail stopped.",
|
|
"hailDamageMessage": "{{pokemonNameWithAffix}} is pelted\nby the hail!",
|
|
|
|
"snowStartMessage": "It started to snow!",
|
|
"snowLapseMessage": "The snow is falling down.",
|
|
"snowClearMessage": "The snow stopped.",
|
|
|
|
"fogStartMessage": "A thick fog emerged!",
|
|
"fogLapseMessage": "The fog continues.",
|
|
"fogClearMessage": "The fog disappeared.",
|
|
|
|
"heavyRainStartMessage": "A heavy downpour started!",
|
|
"heavyRainLapseMessage": "The heavy downpour continues.",
|
|
"heavyRainClearMessage": "The heavy rain stopped.",
|
|
|
|
"harshSunStartMessage": "The sunlight got hot!",
|
|
"harshSunLapseMessage": "The sun is scorching hot.",
|
|
"harshSunClearMessage": "The harsh sunlight faded.",
|
|
|
|
"strongWindsStartMessage": "A heavy wind began!",
|
|
"strongWindsLapseMessage": "The wind blows intensely.",
|
|
"strongWindsEffectMessage": "The mysterious air current weakened the attack!",
|
|
"strongWindsClearMessage": "The heavy wind stopped."
|
|
};
|
|
|
|
export const terrain: SimpleTranslationEntries = {
|
|
"misty": "Misty",
|
|
"mistyStartMessage": "Mist swirled around the battlefield!",
|
|
"mistyClearMessage": "The mist disappeared from the battlefield.",
|
|
"mistyBlockMessage": "{{pokemonNameWithAffix}} surrounds itself with a protective mist!",
|
|
|
|
"electric": "Electric",
|
|
"electricStartMessage": "An electric current ran across the battlefield!",
|
|
"electricClearMessage": "The electricity disappeared from the battlefield.",
|
|
|
|
"grassy": "Grassy",
|
|
"grassyStartMessage": "Grass grew to cover the battlefield!",
|
|
"grassyClearMessage": "The grass disappeared from the battlefield.",
|
|
|
|
"psychic": "Psychic",
|
|
"psychicStartMessage": "The battlefield got weird!",
|
|
"psychicClearMessage": "The weirdness disappeared from the battlefield!",
|
|
|
|
"defaultBlockMessage": "{{pokemonNameWithAffix}} is protected by the {{terrainName}} Terrain!"
|
|
};
|