mirror of
https://github.com/imputnet/cobalt.git
synced 2024-12-28 02:26:10 +00:00
web/DonateOptionsCard: rename monthly to recurring
This commit is contained in:
parent
3ceef9565d
commit
6e3755ae3a
|
@ -6,7 +6,7 @@
|
|||
"body.keep_going": "you can help us stay motivated & keep creating safe alternatives to abusive tools by sharing cobalt with a friend or donating.",
|
||||
|
||||
"card.once": "one-time donation",
|
||||
"card.monthly": "monthly donation",
|
||||
"card.recurring": "recurring donation",
|
||||
"card.custom": "custom amount (from $2)",
|
||||
|
||||
"card.processor": "processed by {{value}}",
|
||||
|
|
|
@ -114,7 +114,7 @@
|
|||
flex-direction: column;
|
||||
justify-content: center;
|
||||
color: white;
|
||||
padding: 48px;
|
||||
padding: 47px;
|
||||
padding-right: 0;
|
||||
gap: 14px;
|
||||
white-space: pre-wrap;
|
||||
|
|
|
@ -119,7 +119,7 @@
|
|||
</button>
|
||||
|
||||
<button
|
||||
id="donation-type-monthly"
|
||||
id="donation-type-recurring"
|
||||
class="donation-type"
|
||||
on:click={() => (processor = "liberapay")}
|
||||
class:selected={processor === "liberapay"}
|
||||
|
@ -128,7 +128,7 @@
|
|||
>
|
||||
<div class="donation-type-icon"><IconCalendarRepeat /></div>
|
||||
<div class="donation-type-text">
|
||||
<div class="donate-card-title">{$t("donate.card.monthly")}</div>
|
||||
<div class="donate-card-title">{$t("donate.card.recurring")}</div>
|
||||
<div class="donate-card-subtitle">
|
||||
{$t("donate.card.processor", { value: "liberapay" })}
|
||||
</div>
|
||||
|
@ -241,7 +241,7 @@
|
|||
#donation-types {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
gap: var(--donate-card-padding);
|
||||
gap: calc(var(--donate-card-main-padding) / 2);
|
||||
overflow: scroll;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue