mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-12-13 00:56:08 +00:00
12 lines
443 B
TypeScript
12 lines
443 B
TypeScript
|
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
||
|
|
||
|
export const voucher: SimpleTranslationEntries = {
|
||
|
"vouchers": "クーポン",
|
||
|
"eggVoucher": "たまごクーポン",
|
||
|
"eggVoucherPlus": "たまごクーポンプラス",
|
||
|
"eggVoucherPremium": "たまごクーポンプレミアム",
|
||
|
"eggVoucherGold": "たまごクーポンゴールド",
|
||
|
"locked": "Locked",
|
||
|
"defeatTrainer": "Defeat {{trainerName}}"
|
||
|
} as const;
|