2022-02-06 15:44:00 +01:00
|
|
|
// See: https://github.com/isaachinman/next-i18next
|
|
|
|
|
2022-05-20 15:34:08 +02:00
|
|
|
const i18n = (locales = ['en', 'de', 'es', 'fr', 'nl']) => ({
|
2022-02-06 15:44:00 +01:00
|
|
|
defaultLocale: 'en',
|
2022-05-20 15:34:08 +02:00
|
|
|
locales,
|
2022-02-06 19:16:49 +01:00
|
|
|
defaultNS: 'app',
|
2022-02-08 20:49:19 +01:00
|
|
|
interpolation: {
|
|
|
|
prefix: '{',
|
|
|
|
suffix: '}',
|
|
|
|
}
|
2022-05-20 15:34:08 +02:00
|
|
|
})
|
2022-02-06 15:44:00 +01:00
|
|
|
|
|
|
|
export default i18n
|