Add Polish language
This commit is contained in:
parent
4a3c8cbbf7
commit
82b6b55be2
|
|
@ -13,6 +13,7 @@
|
|||
name="description"
|
||||
content="Enter your availability to find a time that works for everyone!"
|
||||
>
|
||||
<meta name="monetization" content="$ilp.uphold.com/HjDULeBk9JnH">
|
||||
<meta http-equiv="origin-trial" content="Ar7tjGW2QiMeUPQCeRlYjb3ea5SyMxU5a7dEPxbmq7BSlOrSb+Twl7QiZ+z36B2KlPH9HXXCrTxfOBs2W1IbPQQAAABOeyJvcmlnaW4iOiJodHRwczovL2NyYWIuZml0OjQ0MyIsImZlYXR1cmUiOiJEaWdpdGFsR29vZHMiLCJleHBpcnkiOjE2MzE2NjM5OTl9">
|
||||
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png">
|
||||
<link rel="manifest" href="%PUBLIC_URL%/manifest.json">
|
||||
|
|
|
|||
|
|
@ -228,11 +228,11 @@ const Home = ({ offline }) => {
|
|||
<h2>{t('home:about.name')}</h2>
|
||||
<Stats>
|
||||
<Stat>
|
||||
<StatNumber>{stats.eventCount ?? '700+'}</StatNumber>
|
||||
<StatNumber>{stats.eventCount ?? '1100+'}</StatNumber>
|
||||
<StatLabel>{t('home:about.events')}</StatLabel>
|
||||
</Stat>
|
||||
<Stat>
|
||||
<StatNumber>{stats.personCount ?? '1600+'}</StatNumber>
|
||||
<StatNumber>{stats.personCount ?? '3700+'}</StatNumber>
|
||||
<StatLabel>{t('home:about.availabilities')}</StatLabel>
|
||||
</Stat>
|
||||
</Stats>
|
||||
|
|
|
|||
|
|
@ -54,6 +54,12 @@ const locales = {
|
|||
weekStart: 0,
|
||||
timeFormat: '24h',
|
||||
},
|
||||
'pl': { // Polish
|
||||
name: 'Polskie',
|
||||
import: () => import('dayjs/locale/pl'),
|
||||
weekStart: 1,
|
||||
timeFormat: '12h',
|
||||
},
|
||||
'ru': { // Russian
|
||||
name: 'Pусский',
|
||||
import: () => import('dayjs/locale/ru'),
|
||||
|
|
|
|||
Loading…
Reference in a new issue