mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-02-05 07:37:20 +00:00
12 lines
407 B
TypeScript
12 lines
407 B
TypeScript
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
|
|
|
export const voucher: SimpleTranslationEntries = {
|
|
"vouchers": "바우처",
|
|
"eggVoucher": "알 바우처",
|
|
"eggVoucherPlus": "알 바우처 플러스",
|
|
"eggVoucherPremium": "알 바우처 프리미엄",
|
|
"eggVoucherGold": "알 바우처 골드",
|
|
"locked": "미획득",
|
|
"defeatTrainer" : "{{trainerName}}에게 승리",
|
|
} as const;
|