diff --git a/src/js/components/SiteFooter.tsx b/src/js/components/SiteFooter.tsx index 791ba6a5..b80e3424 100644 --- a/src/js/components/SiteFooter.tsx +++ b/src/js/components/SiteFooter.tsx @@ -14,7 +14,7 @@ const SiteFooter = () => {
- {t('Powered by')} + {t('footer.powered_by')} Bento @@ -22,19 +22,19 @@ const SiteFooter = () => {
- Copyright © 2019-2024 the{' '} + {t('footer.copyright')} 2019-2024{' '} - Canadian Centre for Computational Genomics + {t('footer.c3g')} .
- Bento is licensed under the{' '} + {t('footer.licensed_under') + ' '} LGPLv3 - . The source code is available on{' '} + . {t('footer.source_available') + ' '} Github @@ -43,7 +43,7 @@ const SiteFooter = () => {
- {t('Terms of Use')} + {t('footer.terms_of_use')}
diff --git a/src/public/locales/en/default_translation_en.json b/src/public/locales/en/default_translation_en.json index dbc7865d..a0e45d65 100644 --- a/src/public/locales/en/default_translation_en.json +++ b/src/public/locales/en/default_translation_en.json @@ -70,8 +70,6 @@ "Remove this chart": "Remove this chart", "Width": "Width", "Insufficient data available.": "Insufficient data available.", - "Powered by": "Powered by", - "Terms of Use": "Terms of Use", "No Data": "No Data", "Counts": "Counts", "Search by genomic variants, clinical metadata or both.": "Search by genomic variants, clinical metadata or both.", @@ -134,5 +132,13 @@ "Coordinates are one-based.", "Leave this form blank to search by metadata only." ] + }, + "footer": { + "powered_by": "Powered by", + "copyright": "Copyright ©", + "c3g": "the Canadian Centre for Computational Genomics", + "licensed_under": "Bento is licensed under the", + "source_available": "The source code is available on", + "terms_of_use": "Terms of Use" } } diff --git a/src/public/locales/fr/default_translation_fr.json b/src/public/locales/fr/default_translation_fr.json index fc6cc70a..adde0dda 100644 --- a/src/public/locales/fr/default_translation_fr.json +++ b/src/public/locales/fr/default_translation_fr.json @@ -70,8 +70,6 @@ "Remove this chart": "Supprimer ce tableau", "Width": "Largeur", "Insufficient data available.": "Pas suffisamment de données.", - "Powered by": "Propulsé par", - "Terms of Use": "Conditions d'utilisation (en anglais)", "No Data": "Pas de données", "Counts": "Totaux", "Search by genomic variants, clinical metadata or both.": "Recherche par variant génomique, métadonnées cliniques ou les deux.", @@ -134,5 +132,13 @@ "Les coordonnées sont en base un.", "Laissez ce formulaire vide pour effectuer une recherche sur les métadonnées seulement." ] + }, + "footer": { + "powered_by": "Propulsé par", + "copyright": "©", + "c3g": "le Centre canadien de génomique computationnelle", + "licensed_under": "Bento est sous licence", + "source_available": "Le code source est disponible sur", + "terms_of_use": "Conditions d'utilisation (en anglais)" } }