mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-03-03 00:19:06 +00:00
12 lines
411 B
TypeScript
12 lines
411 B
TypeScript
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
|
|
export const voucher: SimpleTranslationEntries = {
|
|
"vouchers": "Vouchers",
|
|
"eggVoucher": "Voucher de Ovo",
|
|
"eggVoucherPlus": "Voucher de Ovo Plus",
|
|
"eggVoucherPremium": "Voucher de Ovo Premium",
|
|
"eggVoucherGold": "Voucher de Ovo Dourado",
|
|
"locked": "Bloqueado",
|
|
"defeatTrainer": "Derrote {{trainerName}}"
|
|
} as const;
|