pokerogue/src/locales/zh_CN/weather.ts
Laeticia PIERRE f53dce432b
useMove + pokemon affix localization (#1276)
* useMove + pokemonPrefix localization

* Rename prefix to affix + line break fr

* getPokemonAffix to getPokemonNameWithAffix + remove space + replace

* Better getPokemonNameWithAffix switch

* Ko locale + fix es locale

* Doc getPokemonNameWithAffix + getPokemonMessage + fix

* Ko translate / missing weather changes

* Fix conflicts getPokemonPrefix

---------

Co-authored-by: Benjamin Odom <bennybroseph@gmail.com>
2024-06-06 08:36:12 -05:00

45 lines
1.6 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { SimpleTranslationEntries } from "#app/plugins/i18n";
/**
* The weather namespace holds text displayed when weather is active during a battle
*/
export const weather: SimpleTranslationEntries = {
"sunnyStartMessage": "日照变强了!",
"sunnyLapseMessage": "日照很强。",
"sunnyClearMessage": "日照复原了。",
"rainStartMessage": "开始下雨了!",
"rainLapseMessage": "雨继续下。",
"rainClearMessage": "雨停了。",
"sandstormStartMessage": "开始刮沙暴了!",
"sandstormLapseMessage": "沙暴肆虐。",
"sandstormClearMessage": "沙暴停止了!",
"sandstormDamageMessage": "沙暴袭击了{{pokemonNameWithAffix}}",
"hailStartMessage": "开始下冰雹了!",
"hailLapseMessage": "冰雹继续肆虐。",
"hailClearMessage": "冰雹不再下了。",
"hailDamageMessage": "冰雹袭击了{{pokemonNameWithAffix}}",
"snowStartMessage": "开始下雪了!",
"snowLapseMessage": "雪继续下。",
"snowClearMessage": "雪停了。",
"fogStartMessage": "起雾了!",
"fogLapseMessage": "雾很浓。",
"fogClearMessage": "雾散了。",
"heavyRainStartMessage": "开始下起了暴雨!",
"heavyRainLapseMessage": "暴雨势头不减。",
"heavyRainClearMessage": "暴雨停了。",
"harshSunStartMessage": "日照变得非常强了!",
"harshSunLapseMessage": "强日照势头不减。",
"harshSunClearMessage": "日照复原了。",
"strongWindsStartMessage": "吹起了神秘的乱流!",
"strongWindsLapseMessage": "神秘的乱流势头不减。",
"strongWindsClearMessage": "神秘的乱流停止了。"
};