[Localization] Translate weather (Japanese) (#3399)

This commit is contained in:
Enoch 2024-08-07 23:26:18 +09:00 committed by GitHub
parent c186d53f3e
commit 1700658c5c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 44 additions and 44 deletions

View File

@ -4,63 +4,63 @@ import { SimpleTranslationEntries } from "#app/interfaces/locales";
* The weather namespace holds text displayed when weather is active during a battle * The weather namespace holds text displayed when weather is active during a battle
*/ */
export const weather: SimpleTranslationEntries = { export const weather: SimpleTranslationEntries = {
"sunnyStartMessage": "The sunlight got bright!", "sunnyStartMessage": "日差しが 強くなった!",
"sunnyLapseMessage": "The sunlight is strong.", "sunnyLapseMessage": "日差しが 強い!",
"sunnyClearMessage": "The sunlight faded.", "sunnyClearMessage": "日差しが 元に戻った!",
"rainStartMessage": "A downpour started!", "rainStartMessage": "雨が 降り始めた!",
"rainLapseMessage": "The downpour continues.", "rainLapseMessage": "雨が 降っている!",
"rainClearMessage": "The rain stopped.", "rainClearMessage": "雨が あがった!",
"sandstormStartMessage": "A sandstorm brewed!", "sandstormStartMessage": "砂あらしが 吹き始めた!",
"sandstormLapseMessage": "The sandstorm rages.", "sandstormLapseMessage": "砂あらしが 吹きあれる!",
"sandstormClearMessage": "The sandstorm subsided.", "sandstormClearMessage": "砂あらしが おさまった!",
"sandstormDamageMessage": "{{pokemonNameWithAffix}} is buffeted\nby the sandstorm!", "sandstormDamageMessage": "砂あらしが\n{{pokemonNameWithAffix}}を 襲う!",
"hailStartMessage": "It started to hail!", "hailStartMessage": "あられが 降り始めた!",
"hailLapseMessage": "Hail continues to fall.", "hailLapseMessage": "あられが 降っている!",
"hailClearMessage": "The hail stopped.", "hailClearMessage": "あられが 止んだ!",
"hailDamageMessage": "{{pokemonNameWithAffix}} is pelted\nby the hail!", "hailDamageMessage": "あられが\n{{pokemonNameWithAffix}}を 襲う!",
"snowStartMessage": "It started to snow!", "snowStartMessage": "雪が 降り始めた!",
"snowLapseMessage": "The snow is falling down.", "snowLapseMessage": "雪が 降っている!",
"snowClearMessage": "The snow stopped.", "snowClearMessage": "雪が 止んだ!",
"fogStartMessage": "A thick fog emerged!", "fogStartMessage": "足下に 霧(きり)が立ち込めた!",
"fogLapseMessage": "The fog continues.", "fogLapseMessage": "足下に 霧(きり)が 立ち込めている!",
"fogClearMessage": "The fog disappeared.", "fogClearMessage": "足下の 霧(きり)が消え去った!",
"heavyRainStartMessage": "A heavy downpour started!", "heavyRainStartMessage": "強い雨が 降り始めた!",
"heavyRainLapseMessage": "The heavy downpour continues.", "heavyRainLapseMessage": "強い雨が 降っている!",
"heavyRainClearMessage": "The heavy rain stopped.", "heavyRainClearMessage": "強い雨が あがった!",
"harshSunStartMessage": "The sunlight got hot!", "harshSunStartMessage": "日差しが とても強くなった!",
"harshSunLapseMessage": "The sun is scorching hot.", "harshSunLapseMessage": "日差しが とても強い!",
"harshSunClearMessage": "The harsh sunlight faded.", "harshSunClearMessage": "日差しが 元に戻った!",
"strongWindsStartMessage": "A heavy wind began!", "strongWindsStartMessage": "謎(なぞ)の 乱気流(らんきりゅう)が\nひこうポケモンを 護(まも)る!",
"strongWindsLapseMessage": "The wind blows intensely.", "strongWindsLapseMessage": "謎(なぞ)の 乱気流(らんきりゅう)の 勢(いきお)いは 止まらない!",
"strongWindsEffectMessage": "The mysterious air current weakened the attack!", "strongWindsEffectMessage": "謎(なぞ)の 乱気流(らんきりゅう)が 攻撃(こうげき)を 弱(よわ)めた!",
"strongWindsClearMessage": "The heavy wind stopped." "strongWindsClearMessage": "謎(なぞ)の 乱気流(らんきりゅう)が おさまった!"
}; };
export const terrain: SimpleTranslationEntries = { export const terrain: SimpleTranslationEntries = {
"misty": "Misty", "misty": "ミストフィールド",
"mistyStartMessage": "Mist swirled around the battlefield!", "mistyStartMessage": "足下に 霧(きり)が立ち込めた!",
"mistyClearMessage": "The mist disappeared from the battlefield.", "mistyClearMessage": "足下の 霧(きり)が消え去った!",
"mistyBlockMessage": "{{pokemonNameWithAffix}} surrounds itself with a protective mist!", "mistyBlockMessage": "{{pokemonNameWithAffix}}は\nミストフィールドに 守られている",
"electric": "Electric", "electric": "エレキフィールド",
"electricStartMessage": "An electric current ran across the battlefield!", "electricStartMessage": "足下に 電気が かけめぐる!",
"electricClearMessage": "The electricity disappeared from the battlefield.", "electricClearMessage": "足下の 電気が 消え去った!",
"grassy": "Grassy", "grassy": "グラスフィールド",
"grassyStartMessage": "Grass grew to cover the battlefield!", "grassyStartMessage": "足下に 草がおいしげった!",
"grassyClearMessage": "The grass disappeared from the battlefield.", "grassyClearMessage": "足下の 草が消え去った!",
"psychic": "Psychic", "psychic": "サイコフィールド",
"psychicStartMessage": "The battlefield got weird!", "psychicStartMessage": "足元が 不思議な感じに なった!",
"psychicClearMessage": "The weirdness disappeared from the battlefield!", "psychicClearMessage": "足元の 不思議感が 消え去った!",
"defaultBlockMessage": "{{pokemonNameWithAffix}} is protected by the {{terrainName}} Terrain!" "defaultBlockMessage": "{{pokemonNameWithAffix}}は\n{{terrainName}}に 守られている!"
}; };