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.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/ui/src/i18next.ts b/ui/src/i18next.ts
index 065d63c8..f1288baa 100644
--- a/ui/src/i18next.ts
+++ b/ui/src/i18next.ts
@@ -11,6 +11,7 @@ import { zh } from './translations/zh';
import { nl } from './translations/nl';
import { it } from './translations/it';
import { fi } from './translations/fi';
+import { ca } from './translations/ca';
// https://github.com/nimbusec-oss/inferno-i18next/blob/master/tests/T.test.js#L66
const resources = {
@@ -25,6 +26,7 @@ const resources = {
nl,
it,
fi,
+ ca,
};
const format = (value: any, format: any, lng: any) => format === 'uppercase' ? value.toUpperCase() : value;