summaryrefslogtreecommitdiffstats
path: root/ui/src/i18next.ts
diff options
context:
space:
mode:
Diffstat (limited to 'ui/src/i18next.ts')
-rw-r--r--ui/src/i18next.ts10
1 files changed, 6 insertions, 4 deletions
diff --git a/ui/src/i18next.ts b/ui/src/i18next.ts
index 756bab8b..2bd5d559 100644
--- a/ui/src/i18next.ts
+++ b/ui/src/i18next.ts
@@ -4,14 +4,16 @@ import { en } from './translations/en';
import { de } from './translations/de';
import { zh } from './translations/zh';
import { fr } from './translations/fr';
+import { sv } from './translations/sv';
// https://github.com/nimbusec-oss/inferno-i18next/blob/master/tests/T.test.js#L66
// TODO don't forget to add moment locales for new languages.
const resources = {
- en: en,
- de: de,
- zh: zh,
- fr, fr,
+ en,
+ de,
+ zh,
+ fr,
+ sv,
}
function format(value: any, format: any, lng: any) {