mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-12-28 12:39:32 +01:00
12 lines
397 B
TypeScript
12 lines
397 B
TypeScript
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
|
|
|
export const voucher: SimpleTranslationEntries = {
|
|
"vouchers": "Vouchers",
|
|
"eggVoucher": "Voucher uovo",
|
|
"eggVoucherPlus": "Voucher uovo plus",
|
|
"eggVoucherPremium": "Voucher uovo premium",
|
|
"eggVoucherGold": "Voucher uovo dorato",
|
|
"locked": "Bloccato",
|
|
"defeatTrainer": "Sconfiggi {{trainerName}}"
|
|
} as const;
|