feat(i18n): add Chinese (Simplified) language to locales

This commit is contained in:
Amruth Pillai
2022-03-14 09:23:01 +01:00
parent e6bda688ac
commit 549363bbe5
5 changed files with 9 additions and 1 deletions

View File

@ -19,6 +19,7 @@ const DateWrapper: React.FC = ({ children }) => {
require('dayjs/locale/it');
require('dayjs/locale/kn');
require('dayjs/locale/ta');
require('dayjs/locale/zh');
locale && dayjs.locale(locale);
}, [locale]);