Adding croatian.

This commit is contained in:
Dessalines 2021-02-05 13:13:39 -05:00
parent 72a1f141ec
commit ef19b9f6b8
2 changed files with 6 additions and 0 deletions

View 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 {

View 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';
}