]> Untitled Git - lemmy-ui.git/commitdiff
Adding danish, not yet translated.
authorDessalines <tyhou13@gmx.com>
Wed, 9 Dec 2020 15:15:53 +0000 (10:15 -0500)
committerDessalines <tyhou13@gmx.com>
Wed, 9 Dec 2020 15:15:53 +0000 (10:15 -0500)
lemmy-translations
src/shared/i18next.ts
src/shared/utils.ts

index 0a30493c625167c9e973bfcce6d558a15c119db6..39e236b6456db40640e811001b36028f4062e8b7 160000 (submodule)
@@ -1 +1 @@
-Subproject commit 0a30493c625167c9e973bfcce6d558a15c119db6
+Subproject commit 39e236b6456db40640e811001b36028f4062e8b7
index ea79d9c58b78c07002ff419e50d058826667c934..bcbee8d5bf9f7b7777cc8fd3312862304a4c231c 100644 (file)
@@ -28,6 +28,7 @@ import { sq } from './translations/sq';
 import { km } from './translations/km';
 import { ga } from './translations/ga';
 import { sr_Latn } from './translations/sr_Latn';
+import { da } from './translations/da';
 
 // https://github.com/nimbusec-oss/inferno-i18next/blob/master/tests/T.test.js#L66
 const resources = {
@@ -59,6 +60,7 @@ const resources = {
   km,
   ga,
   sr_Latn,
+  da,
 };
 
 function format(value: any, format: any): any {
index 19f8b24c0d43a46833037176003436977ab21971..d7948a0f3ec15b6d518fe6d33e0e8912482640fa 100644 (file)
@@ -26,6 +26,7 @@ import 'moment/locale/km';
 import 'moment/locale/ga';
 import 'moment/locale/sr';
 import 'moment/locale/ko';
+import 'moment/locale/da';
 
 import {
   UserOperation,
@@ -89,6 +90,7 @@ export const languages = [
   { code: 'eu', name: 'Euskara' },
   { code: 'eo', name: 'Esperanto' },
   { code: 'es', name: 'EspaƱol' },
+  { code: 'da', name: 'Dansk' },
   { code: 'de', name: 'Deutsch' },
   { code: 'ga', name: 'Gaeilge' },
   { code: 'gl', name: 'Galego' },
@@ -427,6 +429,8 @@ export function getMomentLanguage(): string {
     lang = 'sr';
   } else if (lang.startsWith('ko')) {
     lang = 'ko';
+  } else if (lang.startsWith('da')) {
+    lang = 'da';
   } else {
     lang = 'en';
   }