mirror of
https://github.com/wukko/cobalt.git
synced 2025-02-24 12:08:55 +01:00
web/DonateOptionsCard: rename monthly to recurring
This commit is contained in:
parent
3ceef9565d
commit
6e3755ae3a
3 changed files with 5 additions and 5 deletions
|
@ -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.",
|
"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.once": "one-time donation",
|
||||||
"card.monthly": "monthly donation",
|
"card.recurring": "recurring donation",
|
||||||
"card.custom": "custom amount (from $2)",
|
"card.custom": "custom amount (from $2)",
|
||||||
|
|
||||||
"card.processor": "processed by {{value}}",
|
"card.processor": "processed by {{value}}",
|
||||||
|
|
|
@ -114,7 +114,7 @@
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
color: white;
|
color: white;
|
||||||
padding: 48px;
|
padding: 47px;
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
gap: 14px;
|
gap: 14px;
|
||||||
white-space: pre-wrap;
|
white-space: pre-wrap;
|
||||||
|
|
|
@ -119,7 +119,7 @@
|
||||||
</button>
|
</button>
|
||||||
|
|
||||||
<button
|
<button
|
||||||
id="donation-type-monthly"
|
id="donation-type-recurring"
|
||||||
class="donation-type"
|
class="donation-type"
|
||||||
on:click={() => (processor = "liberapay")}
|
on:click={() => (processor = "liberapay")}
|
||||||
class:selected={processor === "liberapay"}
|
class:selected={processor === "liberapay"}
|
||||||
|
@ -128,7 +128,7 @@
|
||||||
>
|
>
|
||||||
<div class="donation-type-icon"><IconCalendarRepeat /></div>
|
<div class="donation-type-icon"><IconCalendarRepeat /></div>
|
||||||
<div class="donation-type-text">
|
<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">
|
<div class="donate-card-subtitle">
|
||||||
{$t("donate.card.processor", { value: "liberapay" })}
|
{$t("donate.card.processor", { value: "liberapay" })}
|
||||||
</div>
|
</div>
|
||||||
|
@ -241,7 +241,7 @@
|
||||||
#donation-types {
|
#donation-types {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
gap: var(--donate-card-padding);
|
gap: calc(var(--donate-card-main-padding) / 2);
|
||||||
overflow: scroll;
|
overflow: scroll;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue