mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-02-11 02:35:43 +00:00
11 lines
378 B
TypeScript
11 lines
378 B
TypeScript
|
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
||
|
|
||
|
export const voucher: SimpleTranslationEntries = {
|
||
|
"vouchers": "兌換券",
|
||
|
"eggVoucher": "初級扭蛋券",
|
||
|
"eggVoucherPlus": "中級扭蛋券",
|
||
|
"eggVoucherPremium": "高級扭蛋券",
|
||
|
"eggVoucherGold": "黃金扭蛋券",
|
||
|
"locked": "鎖定",
|
||
|
"defeatTrainer": "你打敗了{{trainerName}}"
|
||
|
} as const;
|