mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-02-03 22:57:24 +00:00
11 lines
384 B
TypeScript
11 lines
384 B
TypeScript
|
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
||
|
|
||
|
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;
|