mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-02-04 23:27:13 +00:00
d70dd16f8c
* I18n Cleaning * pr comments * appease typedoc * moved types into src
12 lines
413 B
TypeScript
12 lines
413 B
TypeScript
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
|
|
export const voucher: SimpleTranslationEntries = {
|
|
"vouchers": "바우처",
|
|
"eggVoucher": "알 바우처",
|
|
"eggVoucherPlus": "알 바우처 플러스",
|
|
"eggVoucherPremium": "알 바우처 프리미엄",
|
|
"eggVoucherGold": "알 바우처 골드",
|
|
"locked": "미획득",
|
|
"defeatTrainer" : "{{trainerName}}에게 승리",
|
|
} as const;
|