mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-01-30 04:37:14 +00:00
d70dd16f8c
* I18n Cleaning * pr comments * appease typedoc * moved types into src
12 lines
401 B
TypeScript
12 lines
401 B
TypeScript
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
|
|
export const voucher: SimpleTranslationEntries = {
|
|
"vouchers": "Gutscheine",
|
|
"eggVoucher": "Ei-Gutschein",
|
|
"eggVoucherPlus": "Ei-Gutschein Plus",
|
|
"eggVoucherPremium": "Ei-Gutschein Premium",
|
|
"eggVoucherGold": "Ei-Gutschein Gold",
|
|
"locked": "Gesperrt",
|
|
"defeatTrainer": "Besiege {{trainerName}}"
|
|
} as const;
|