summaryrefslogtreecommitdiffstats
path: root/ui/src/utils.ts
diff options
context:
space:
mode:
Diffstat (limited to 'ui/src/utils.ts')
-rw-r--r--ui/src/utils.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/ui/src/utils.ts b/ui/src/utils.ts
index 867ff91e..b6e4aafa 100644
--- a/ui/src/utils.ts
+++ b/ui/src/utils.ts
@@ -6,6 +6,7 @@ import 'moment/locale/fr';
import 'moment/locale/sv';
import 'moment/locale/ru';
import 'moment/locale/nl';
+import 'moment/locale/it';
import {
UserOperation,
@@ -263,6 +264,8 @@ export function getMomentLanguage(): string {
lang = 'eo';
} else if (lang.startsWith('nl')) {
lang = 'nl';
+ } else if (lang.startsWith('it')) {
+ lang = 'it';
} else {
lang = 'en';
}