forked from nemo-crypto/Next.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathi18n.js
More file actions
20 lines (20 loc) · 805 Bytes
/
i18n.js
File metadata and controls
20 lines (20 loc) · 805 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
module.exports = ({
defaultLocale: 'en',
locales: ['en', 'zh-hant', 'es', 'id', 'ar', 'pl', 'tr', 'fr', 'de', 'th', 'nl', 'pt', 'ru', 'vi', 'sv', 'ko'],
localeDetection: false,
pages: {
'*': ['common'],
'/price/[coin]': ['price'],
'/flexible-staking': ['flexible'],
'/flexible-staking/[coin]': ['flexible'],
'/flexible-staking/vip': ['flexible'],
'/flexible-staking/record': ['flexible'],
'/btr-lockup-staking': ['btrlockup'],
'/btr-lockup-staking/[coin]': ['btrlockup'],
'/btc-xrp-eth-trading-bot': ['autoinvest'],
'/btc-xrp-eth-trading-bot/[coin]': ['autoinvest'],
'/staking/learn-staking': ['learnstaking'],
'/converter': ['converter'],
'/converter/[coin]': ['converter'],
}
})