2022-02-06 19:16:49 +01:00
|
|
|
// See: https://github.com/isaachinman/next-i18next
|
|
|
|
module.exports = {
|
|
|
|
i18n: {
|
|
|
|
defaultLocale: 'en',
|
2023-07-11 20:17:24 +02:00
|
|
|
locales: ['en', 'de', 'es', 'fr', 'nl', 'uk'],
|
2023-05-29 13:35:04 -05:00
|
|
|
},
|
|
|
|
defaultNS: 'common',
|
|
|
|
react: {
|
|
|
|
nsMode: 'fallback',
|
2022-02-10 20:06:14 +01:00
|
|
|
},
|
|
|
|
interpolation: {
|
|
|
|
prefix: '{',
|
|
|
|
suffix: '}',
|
|
|
|
},
|
|
|
|
localeStructure: '{lng}/{ns}',
|
2022-02-06 19:16:49 +01:00
|
|
|
}
|