mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-02-10 02:05:46 +00: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>
44 lines
1.1 KiB
TypeScript
44 lines
1.1 KiB
TypeScript
import { PokemonInfoTranslationEntries } from "#app/interfaces/locales";
|
|
|
|
export const pokemonInfo: PokemonInfoTranslationEntries = {
|
|
Stat: {
|
|
"HP": "HP",
|
|
"HPshortened": "HP",
|
|
"ATK": "こうげき",
|
|
"ATKshortened": "こうげき",
|
|
"DEF": "ぼうぎょ",
|
|
"DEFshortened": "ぼうぎょ",
|
|
"SPATK": "とくこう",
|
|
"SPATKshortened": "とくこう",
|
|
"SPDEF": "とくぼう",
|
|
"SPDEFshortened": "とくぼう",
|
|
"SPD": "すばやさ",
|
|
"SPDshortened": "すばやさ",
|
|
"ACC": "めいちゅう",
|
|
"EVA": "かいひ"
|
|
},
|
|
|
|
Type: {
|
|
"UNKNOWN": "Unknown",
|
|
"NORMAL": "ノーマル",
|
|
"FIGHTING": "かくとう",
|
|
"FLYING": "ひこう",
|
|
"POISON": "どく",
|
|
"GROUND": "じめん",
|
|
"ROCK": "いわ",
|
|
"BUG": "むし",
|
|
"GHOST": "ゴースト",
|
|
"STEEL": "はがね",
|
|
"FIRE": "ほのお",
|
|
"WATER": "みず",
|
|
"GRASS": "くさ",
|
|
"ELECTRIC": "でんき",
|
|
"PSYCHIC": "エスパー",
|
|
"ICE": "こおり",
|
|
"DRAGON": "ドラゴン",
|
|
"DARK": "あく",
|
|
"FAIRY": "フェアリー",
|
|
"STELLAR": "ステラ",
|
|
},
|
|
} as const;
|