From 267bc7cd6bb5a81940c04fac0987e92c3b6db1e2 Mon Sep 17 00:00:00 2001 From: GyeongMin Lee <59150207+gyeongent@users.noreply.github.com> Date: Sat, 11 May 2024 15:44:32 +0900 Subject: [PATCH] =?UTF-8?q?pokemon-stat.ts=20=EC=97=85=EB=8D=B0=EC=9D=B4?= =?UTF-8?q?=ED=8A=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/locales/ko/pokemon-stat.ts | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/locales/ko/pokemon-stat.ts diff --git a/src/locales/ko/pokemon-stat.ts b/src/locales/ko/pokemon-stat.ts new file mode 100644 index 00000000000..7a209461b11 --- /dev/null +++ b/src/locales/ko/pokemon-stat.ts @@ -0,0 +1,16 @@ +import { SimpleTranslationEntries } from "#app/plugins/i18n"; + +export const pokemonStat: SimpleTranslationEntries = { + "HP": "Max. HP", + "HPshortened": "MaxHP", + "ATK": "Attack", + "ATKshortened": "Atk", + "DEF": "Defense", + "DEFshortened": "Def", + "SPATK": "Sp. Atk", + "SPATKshortened": "SpAtk", + "SPDEF": "Sp. Def", + "SPDEFshortened": "SpDef", + "SPD": "Speed", + "SPDshortened": "Spd" +} as const; \ No newline at end of file