mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-03-06 18:09:10 +00:00
* organizing, translations and achv localization * localized for all languages * minor fix * minor fix 2 * minor fix 3 * Fixed Achivment Localization, Added german localization and fixes some issues with german localization at other parts * fix pickup description * Update French achv.ts * French typo correction achv.ts * eslint fixes * added zhTW * minor fix * Achivment Bar is localized and gets bigger when using german * Changed some things to make it not as Big * The Achivment Bar now grows with the context * Updated Achivment Names in german * Update French achv.ts * Vouchers now will show the correct descrption again * minor fix * minor fixes * "sub" to "semi" * minor fix * fixes warning and organizes some files * forgot about english * korean translations * test fix --------- Co-authored-by: Jannik Tappert <tappertjannik@googlemail.com> Co-authored-by: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> Co-authored-by: Lugiad <adrien.grivel@hotmail.fr>
12 lines
405 B
TypeScript
12 lines
405 B
TypeScript
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
|
|
|
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;
|