]> Untitled Git - lemmy-ui.git/commitdiff
Adding croatian.
authorDessalines <tyhou13@gmx.com>
Fri, 5 Feb 2021 18:13:39 +0000 (13:13 -0500)
committerDessalines <tyhou13@gmx.com>
Fri, 5 Feb 2021 18:13:39 +0000 (13:13 -0500)
src/shared/i18next.ts
src/shared/utils.ts

index 1ca0027a0fb9640462d637647b1f57cad01e106f..193f57c1b2dd807737b932ba49afb8636399f08c 100644 (file)
@@ -30,6 +30,7 @@ import { ga } from './translations/ga';
 import { sr_Latn } from './translations/sr_Latn';
 import { da } from './translations/da';
 import { oc } from './translations/oc';
+import { hr } from './translations/hr';
 
 // https://github.com/nimbusec-oss/inferno-i18next/blob/master/tests/T.test.js#L66
 const resources = {
@@ -63,6 +64,7 @@ const resources = {
   sr_Latn,
   da,
   oc,
+  hr,
 };
 
 function format(value: any, format: any): any {
index 330ba085d12d2770f2c6fef5fd20254e248b3bac..33f9ff1928a5901d8c7ed7ba39eadbd2607d772b 100644 (file)
@@ -27,6 +27,7 @@ import 'moment/locale/ga';
 import 'moment/locale/sr';
 import 'moment/locale/ko';
 import 'moment/locale/da';
+import 'moment/locale/hr';
 
 import {
   UserOperation,
@@ -102,6 +103,7 @@ export const languages = [
   { code: 'de', name: 'Deutsch' },
   { code: 'ga', name: 'Gaeilge' },
   { code: 'gl', name: 'Galego' },
+  { code: 'hr', name: 'hrvatski' },
   { code: 'hu', name: 'Magyar Nyelv' },
   { code: 'ka', name: 'ქართული ენა' },
   { code: 'ko', name: '한국어' },
@@ -451,6 +453,8 @@ export function getMomentLanguage(): string {
     lang = 'da';
   } else if (lang.startsWith('oc')) {
     lang = 'oc';
+  } else if (lang.startsWith('hr')) {
+    lang = 'hr';
   } else {
     lang = 'en';
   }