mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-01-24 18:01:05 +00:00
d70dd16f8c
* I18n Cleaning * pr comments * appease typedoc * moved types into src
12 lines
396 B
TypeScript
12 lines
396 B
TypeScript
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
|
|
export const voucher: SimpleTranslationEntries = {
|
|
"vouchers": "兑换券",
|
|
"eggVoucher": "初级扭蛋券",
|
|
"eggVoucherPlus": "中级扭蛋券",
|
|
"eggVoucherPremium": "高级扭蛋券",
|
|
"eggVoucherGold": "黄金扭蛋券",
|
|
"locked": "锁定",
|
|
"defeatTrainer": "你打败了{{trainerName}}"
|
|
} as const;
|