From 20be8ffbe31ed2e642a3a8d3002fd5b30d6a1260 Mon Sep 17 00:00:00 2001 From: AlessandroBonomo Date: Fri, 15 Nov 2024 13:51:11 +0100 Subject: [PATCH] changes footer copyright text --- .../src/lib/components/core/Footer.svelte | 35 ++++++++++--------- src/frontend/src/lib/i18n/en.json | 4 ++- src/frontend/src/lib/types/i18n.d.ts | 2 +- 3 files changed, 23 insertions(+), 18 deletions(-) diff --git a/src/frontend/src/lib/components/core/Footer.svelte b/src/frontend/src/lib/components/core/Footer.svelte index 86b4d03c8f..296cb6c57a 100644 --- a/src/frontend/src/lib/components/core/Footer.svelte +++ b/src/frontend/src/lib/components/core/Footer.svelte @@ -65,23 +65,26 @@ class:md:translate-x-full={$authSignedIn} class:1.5md:translate-x-0={$authSignedIn} > - -
- - + + + {replaceOisyPlaceholders($i18n.footer.text.incubated_with)} + - {replaceOisyPlaceholders($i18n.footer.text.developed_with)} - -
-
+ {replaceOisyPlaceholders($i18n.footer.text.dfinity_foundation)} + + {replaceOisyPlaceholders($i18n.footer.text.copyright)} + + diff --git a/src/frontend/src/lib/i18n/en.json b/src/frontend/src/lib/i18n/en.json index cc6050e110..26ada0cd95 100644 --- a/src/frontend/src/lib/i18n/en.json +++ b/src/frontend/src/lib/i18n/en.json @@ -109,7 +109,9 @@ }, "footer": { "text": { - "developed_with": "© 2024 Developed with ❤\uFE0F at DFINITY" + "incubated_with": "Incubated with ❤\uFE0F by \uFE0F", + "dfinity_foundation": "DFINITY Foundation \uFE0F", + "copyright": "© 2024" }, "alt": { "dfinity": "Go to DFINITY Foundation website", diff --git a/src/frontend/src/lib/types/i18n.d.ts b/src/frontend/src/lib/types/i18n.d.ts index c9eff6a397..81f7c0ceaf 100644 --- a/src/frontend/src/lib/types/i18n.d.ts +++ b/src/frontend/src/lib/types/i18n.d.ts @@ -101,7 +101,7 @@ interface I18nDapps { } interface I18nFooter { - text: { developed_with: string }; + text: { incubated_with: string, dfinity_foundation: string, copyright: string }; alt: { dfinity: string; status: string }; }