donate-intl
This commit is contained in:
parent
a0a33087f6
commit
3eeed11e76
|
@ -127,7 +127,7 @@ export const Donate = () => {
|
||||||
ref={customAmountElement}
|
ref={customAmountElement}
|
||||||
type="number"
|
type="number"
|
||||||
name="sum"
|
name="sum"
|
||||||
placeholder="Другая сумма"
|
placeholder={t('Another amount')}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -143,7 +143,7 @@ export const Donate = () => {
|
||||||
checked={period() === once}
|
checked={period() === once}
|
||||||
/>
|
/>
|
||||||
<label for="once" class="btn payment-type" classList={{ active: period() === once }}>
|
<label for="once" class="btn payment-type" classList={{ active: period() === once }}>
|
||||||
Единоразово
|
{t('One time')}
|
||||||
</label>
|
</label>
|
||||||
<input
|
<input
|
||||||
type="radio"
|
type="radio"
|
||||||
|
@ -154,14 +154,14 @@ export const Donate = () => {
|
||||||
checked={period() === monthly}
|
checked={period() === monthly}
|
||||||
/>
|
/>
|
||||||
<label for="monthly" class="btn payment-type" classList={{ active: period() === monthly }}>
|
<label for="monthly" class="btn payment-type" classList={{ active: period() === monthly }}>
|
||||||
Ежемесячно
|
{t('Every month')}
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<a href={''} class="btn send-btn donate" onClick={show}>
|
<a href={''} class="btn send-btn donate" onClick={show}>
|
||||||
Помочь журналу
|
{t('Help discours to grow')}
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
|
|
|
@ -144,5 +144,9 @@
|
||||||
"zine": "журнал",
|
"zine": "журнал",
|
||||||
"Please, confirm email": "Пожалуйста, подтвердите электронную почту",
|
"Please, confirm email": "Пожалуйста, подтвердите электронную почту",
|
||||||
"Something went wrong, check email and password": "Что-то пошло не так. Проверьте адрес электронной почты и пароль",
|
"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": "Другая сумма"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user