mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-01-26 02:40:59 +00:00
d70dd16f8c
* I18n Cleaning * pr comments * appease typedoc * moved types into src
12 lines
392 B
TypeScript
12 lines
392 B
TypeScript
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
|
|
export const voucher: SimpleTranslationEntries = {
|
|
"vouchers": "Coupons",
|
|
"eggVoucher": "Coupon Œuf",
|
|
"eggVoucherPlus": "Coupon Œuf +",
|
|
"eggVoucherPremium": "Coupon Œuf Premium",
|
|
"eggVoucherGold": "Coupon Œuf Or",
|
|
"locked": "Verrouillé",
|
|
"defeatTrainer": "Vaincre {{trainerName}}"
|
|
} as const;
|