mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-07-03 06:52:16 +02:00
12 lines
381 B
TypeScript
12 lines
381 B
TypeScript
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
|
|
export const voucher: SimpleTranslationEntries = {
|
|
"vouchers": "Vouchers",
|
|
"eggVoucher": "Egg Voucher",
|
|
"eggVoucherPlus": "Egg Voucher Plus",
|
|
"eggVoucherPremium": "Egg Voucher Premium",
|
|
"eggVoucherGold": "Egg Voucher Gold",
|
|
"locked": "Locked",
|
|
"defeatTrainer": "Defeat {{trainerName}}"
|
|
} as const;
|