mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-12-04 12:46:10 +00:00
d70dd16f8c
* I18n Cleaning * pr comments * appease typedoc * moved types into src
12 lines
393 B
TypeScript
12 lines
393 B
TypeScript
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
|
|
export const voucher: SimpleTranslationEntries = {
|
|
"vouchers": "Vales",
|
|
"eggVoucher": "Vale Huevo",
|
|
"eggVoucherPlus": "Vale Huevo Plus",
|
|
"eggVoucherPremium": "Vale Huevo Premium",
|
|
"eggVoucherGold": "Vale Huevo Dorado",
|
|
"locked": "Bloqueado",
|
|
"defeatTrainer": "Derrota a {{trainerName}}"
|
|
} as const;
|