summaryrefslogtreecommitdiffstats
path: root/ui/src
diff options
context:
space:
mode:
Diffstat (limited to 'ui/src')
-rw-r--r--ui/src/i18next.ts4
-rw-r--r--ui/src/utils.ts3
2 files changed, 6 insertions, 1 deletions
diff --git a/ui/src/i18next.ts b/ui/src/i18next.ts
index ba81b8d4..069c820d 100644
--- a/ui/src/i18next.ts
+++ b/ui/src/i18next.ts
@@ -4,10 +4,11 @@ import { en } from './translations/en';
import { eo } from './translations/eo';
import { es } from './translations/es';
import { de } from './translations/de';
-import { zh } from './translations/zh';
import { fr } from './translations/fr';
import { sv } from './translations/sv';
import { ru } from './translations/ru';
+import { zh } from './translations/zh';
+import { nl } from './translations/nl';
// 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.
@@ -20,6 +21,7 @@ const resources = {
fr,
sv,
ru,
+ nl,
}
function format(value: any, format: any, lng: any) {
diff --git a/ui/src/utils.ts b/ui/src/utils.ts
index c7de7a51..d69bf421 100644
--- a/ui/src/utils.ts
+++ b/ui/src/utils.ts
@@ -5,6 +5,7 @@ import 'moment/locale/zh-cn';
import 'moment/locale/fr';
import 'moment/locale/sv';
import 'moment/locale/ru';
+import 'moment/locale/nl';
import { UserOperation, Comment, User, SortType, ListingType } from './interfaces';
import * as markdown_it from 'markdown-it';
@@ -198,6 +199,8 @@ export function getMomentLanguage(): string {
lang = 'es';
} else if (lang.startsWith('eo')) {
lang = 'eo';
+ } else if (lang.startsWith('nl')) {
+ lang = 'nl';
} else {
lang = 'en';
}