mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-04-05 17:00:07 +00:00
format code
Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
This commit is contained in:
parent
b459dc2c0d
commit
abceb356db
1 changed files with 11 additions and 11 deletions
|
@ -5,7 +5,7 @@
|
|||
*/
|
||||
|
||||
import type { ResourceKey } from 'i18next'
|
||||
import i18n, { use as i18nUse } from 'i18next'
|
||||
import i18n, { use as i18nUse } from 'i18next'
|
||||
import LanguageDetector from 'i18next-browser-languagedetector'
|
||||
import resourcesToBackend from 'i18next-resources-to-backend'
|
||||
import { Settings } from 'luxon'
|
||||
|
@ -13,16 +13,16 @@ import { initReactI18next } from 'react-i18next'
|
|||
|
||||
export const setUpI18n = async (): Promise<void> => {
|
||||
await i18nUse(
|
||||
resourcesToBackend((language, namespace, callback) => {
|
||||
import(`../../../../../locales/${language}.json`)
|
||||
.then((resources: ResourceKey) => {
|
||||
callback(null, resources)
|
||||
})
|
||||
.catch((error: Error) => {
|
||||
callback(error, null)
|
||||
})
|
||||
})
|
||||
)
|
||||
resourcesToBackend((language, namespace, callback) => {
|
||||
import(`../../../../../locales/${language}.json`)
|
||||
.then((resources: ResourceKey) => {
|
||||
callback(null, resources)
|
||||
})
|
||||
.catch((error: Error) => {
|
||||
callback(error, null)
|
||||
})
|
||||
})
|
||||
)
|
||||
.use(LanguageDetector)
|
||||
.use(initReactI18next)
|
||||
.init({
|
||||
|
|
Loading…
Reference in a new issue