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