mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-02-10 18:25:54 +00:00
d70dd16f8c
* I18n Cleaning * pr comments * appease typedoc * moved types into src
12 lines
385 B
TypeScript
12 lines
385 B
TypeScript
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
|
|
export const voucher: SimpleTranslationEntries = {
|
|
"vouchers": "兌換券",
|
|
"eggVoucher": "初級扭蛋券",
|
|
"eggVoucherPlus": "中級扭蛋券",
|
|
"eggVoucherPremium": "高級扭蛋券",
|
|
"eggVoucherGold": "黃金扭蛋券",
|
|
"locked": "鎖定",
|
|
"defeatTrainer": "你打敗了{{trainerName}}"
|
|
} as const;
|