1
0
mirror of https://github.com/SomboChea/ui synced 2026-01-17 16:45:49 +07:00

feat(de-translations): added de-DE translations to the UI (#441)

This commit is contained in:
Priscila Oliveira
2020-03-12 11:40:12 +01:00
committed by GitHub
parent 0abe1ef41c
commit e27d59bff7
7 changed files with 158 additions and 5 deletions

View File

@@ -32,6 +32,18 @@ function loadDayJSLocale() {
dayjs.locale('pt-br');
}
break;
case 'de':
{
require('dayjs/locale/de');
dayjs.locale('de');
}
break;
case 'es-es':
{
require('dayjs/locale/es');
dayjs.locale('es');
}
break;
default:
break;
}