donate-intl

This commit is contained in:
tonyrewin 2022-10-08 08:24:50 +03:00
parent a0a33087f6
commit 3eeed11e76
2 changed files with 9 additions and 5 deletions

View File

@ -127,7 +127,7 @@ export const Donate = () => {
ref={customAmountElement}
type="number"
name="sum"
placeholder="Другая сумма"
placeholder={t('Another amount')}
/>
</div>
</div>
@ -143,7 +143,7 @@ export const Donate = () => {
checked={period() === once}
/>
<label for="once" class="btn payment-type" classList={{ active: period() === once }}>
Единоразово
{t('One time')}
</label>
<input
type="radio"
@ -154,14 +154,14 @@ export const Donate = () => {
checked={period() === monthly}
/>
<label for="monthly" class="btn payment-type" classList={{ active: period() === monthly }}>
Ежемесячно
{t('Every month')}
</label>
</div>
</div>
<div class="form-group">
<a href={''} class="btn send-btn donate" onClick={show}>
Помочь журналу
{t('Help discours to grow')}
</a>
</div>
</form>

View File

@ -144,5 +144,9 @@
"zine": "журнал",
"Please, confirm email": "Пожалуйста, подтвердите электронную почту",
"Something went wrong, check email and password": "Что-то пошло не так. Проверьте адрес электронной почты и пароль",
"You was successfully authorized": "Вы были успешно авторизованы"
"You was successfully authorized": "Вы были успешно авторизованы",
"Help discours to grow": "Поддержка дискурса",
"One time": "Единоразово",
"Every month": "Ежемесячно",
"Another amount": "Другая сумма"
}