diff --git a/web/i18n/en/about.json b/web/i18n/en/about.json index 35e93f03..e566faaa 100644 --- a/web/i18n/en/about.json +++ b/web/i18n/en/about.json @@ -6,5 +6,11 @@ "page.privacy": "privacy policy", "page.terms": "terms and ethics", - "page.credits": "thanks & licenses" + "page.credits": "thanks & licenses", + + "community.discord": "community discord server", + "community.twitter": "news account on twitter", + "community.github": "github repo", + "community.email": "support email", + "community.telegram": "news channel on telegram" } diff --git a/web/i18n/en/donate.json b/web/i18n/en/donate.json index 33d47384..bf99eb80 100644 --- a/web/i18n/en/donate.json +++ b/web/i18n/en/donate.json @@ -32,5 +32,5 @@ "alternative.title": "alternative ways to donate", "alt.copy": "{{ value }}. crypto wallet address. press to copy.", - "alt.open": "{{ value }}. donation link, press to open." + "alt.open": "{{ value }}. press to open." } diff --git a/web/src/components/donate/DonateAltItem.svelte b/web/src/components/donate/DonateAltItem.svelte index c82f987e..0bc45789 100644 --- a/web/src/components/donate/DonateAltItem.svelte +++ b/web/src/components/donate/DonateAltItem.svelte @@ -8,6 +8,7 @@ export let type: "copy" | "open"; export let name: string; export let address: string; + export let title = ""; let copied = false; @@ -44,7 +45,9 @@