From ab337a4aed512ad7a32c42ab374fd55e137b7d56 Mon Sep 17 00:00:00 2001 From: blushi Date: Wed, 27 Nov 2024 09:29:49 +0100 Subject: [PATCH 1/4] fix: plural translations --- .../TerrasosCreditsInfo.utils.tsx | 7 ++- web-marketplace/src/lib/i18n/locales/en.po | 24 ++++++----- web-marketplace/src/lib/i18n/locales/es.po | 43 ++++++++++--------- 3 files changed, 42 insertions(+), 32 deletions(-) diff --git a/web-marketplace/src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.utils.tsx b/web-marketplace/src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.utils.tsx index 3c374c376b..ecfbe7c924 100644 --- a/web-marketplace/src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.utils.tsx +++ b/web-marketplace/src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.utils.tsx @@ -1,5 +1,5 @@ import { MessageDescriptor } from '@lingui/core'; -import { msg } from '@lingui/macro'; +import { msg, plural } from '@lingui/macro'; import TebuCard from 'web-components/src/components/cards/TebuCard'; import AreaActionsBody from 'web-components/src/components/cards/TebuCard/TebuCard.AreaActionsBody'; @@ -108,7 +108,10 @@ export function getDurationCard( ]} > Date: Wed, 27 Nov 2024 10:08:48 +0100 Subject: [PATCH 2/4] fix: missing bc-orange vars --- web-marketplace/src/clients/terrasos/Terrasos.tailwind.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/web-marketplace/src/clients/terrasos/Terrasos.tailwind.css b/web-marketplace/src/clients/terrasos/Terrasos.tailwind.css index eb8979699e..a9b57e9850 100644 --- a/web-marketplace/src/clients/terrasos/Terrasos.tailwind.css +++ b/web-marketplace/src/clients/terrasos/Terrasos.tailwind.css @@ -55,6 +55,13 @@ --bc-red-300: 242 181 168; --bc-red-200: 248 218 212; --bc-red-100: 248 238 236; + --bc-orange-700: 122 64 11; + --bc-orange-600: 190 91 1; + --bc-orange-500: 224 119 22; + --bc-orange-400: 230 158 92; + --bc-orange-300: 255 207 152; + --bc-orange-200: 255 236 213; + --bc-orange-100: 255 246 236; --bc-green-700: 15 90 38; --bc-green-600: 36 136 70; --bc-green-500: 73 175 109; From e84d134a03d4c1d4544b2526303b92f8f0faa564 Mon Sep 17 00:00:00 2001 From: blushi Date: Thu, 28 Nov 2024 09:57:08 +0100 Subject: [PATCH 3/4] fix: missing translation for min/max duration labels --- .../TebuCard/TebuCard.Duration.stories.tsx | 18 +++++---- .../cards/TebuCard/TebuCard.Duration.tsx | 24 ++++-------- .../TerrasosCreditsInfo.utils.tsx | 11 +++++- web-marketplace/src/lib/i18n/locales/en.po | 32 ++++++++++------ web-marketplace/src/lib/i18n/locales/es.po | 38 +++++++++---------- 5 files changed, 66 insertions(+), 57 deletions(-) diff --git a/web-components/src/components/cards/TebuCard/TebuCard.Duration.stories.tsx b/web-components/src/components/cards/TebuCard/TebuCard.Duration.stories.tsx index 701ec0e224..4a5260161b 100644 --- a/web-components/src/components/cards/TebuCard/TebuCard.Duration.stories.tsx +++ b/web-components/src/components/cards/TebuCard/TebuCard.Duration.stories.tsx @@ -19,8 +19,8 @@ DurationStory.args = { title="20 year project duration" minimumValue={20} maximumValue={30} - minimumLabel="minimum" - durationUnitLabel="years" + minDurationLabel="20 years minimum" + maxDurationLabel="30 years" duration={20} tooltip="Duration Tooltip" /> @@ -38,22 +38,29 @@ const durationValues = [ duration: 20, title: '20 year project duration', maximumValue: 30, + minDurationLabel: '20 years minimum', + maxDurationLabel: '30 years', }, { duration: 25, title: '25 year project duration', maximumValue: 30, + minDurationLabel: '20 years minimum', + maxDurationLabel: '30 years', }, { duration: 50, title: '50 year project duration', maximumValue: 30, + minDurationLabel: '20 years minimum', + maxDurationLabel: '30 years', }, { duration: 50, title: '50 year project duration', maximumValue: 50, - maximumPrefix: '>', + minDurationLabel: '20 years minimum', + maxDurationLabel: '>50 years', }, ]; @@ -68,10 +75,7 @@ DurationStory.decorators = [ children={ } /> diff --git a/web-components/src/components/cards/TebuCard/TebuCard.Duration.tsx b/web-components/src/components/cards/TebuCard/TebuCard.Duration.tsx index 7ba9f7be49..7d4c84de39 100644 --- a/web-components/src/components/cards/TebuCard/TebuCard.Duration.tsx +++ b/web-components/src/components/cards/TebuCard/TebuCard.Duration.tsx @@ -10,23 +10,19 @@ interface TebuCardDurationProps { title: string; minimumValue: number; maximumValue: number; - minimumLabel: string; - durationUnitLabel: string; tooltip?: string; - maximumPrefix?: string; + minDurationLabel: string; + maxDurationLabel: string; } - - const TebuCardDuration: React.FC = ({ title, duration, minimumValue, maximumValue, - minimumLabel, - durationUnitLabel, tooltip, - maximumPrefix, + minDurationLabel, + maxDurationLabel, }) => { return (
@@ -56,21 +52,15 @@ const TebuCardDuration: React.FC = ({
-
- {minimumValue} {durationUnitLabel} -
-
{minimumLabel}
+ {minDurationLabel}
-
- {maximumPrefix} - {maximumValue} {durationUnitLabel} -
+
{maxDurationLabel}
{tooltip && ( years >= duration) || durationFactors[durationFactors.length - 1]; + const maxDurationPrefix = maximumDuration === 50 ? '>' : ''; return ( diff --git a/web-marketplace/src/lib/i18n/locales/en.po b/web-marketplace/src/lib/i18n/locales/en.po index 3935cf8b7a..74d2203cde 100644 --- a/web-marketplace/src/lib/i18n/locales/en.po +++ b/web-marketplace/src/lib/i18n/locales/en.po @@ -75,6 +75,14 @@ msgstr "" msgid "{from}–{displayedTo} of more than {to}" msgstr "" +#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.utils.tsx:120 +msgid "{minimumDuration, plural, one {{maxDurationPrefix}{maximumDuration} year} other {{maxDurationPrefix}{maximumDuration} years}}" +msgstr "" + +#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.utils.tsx:116 +msgid "{minimumDuration, plural, one {{minimumDuration} year minimum} other {{minimumDuration} years minimum}}" +msgstr "" + #: src/components/organisms/MediaForm/MediaFormPhotos.tsx:329 msgid "{remainingCaptionCharacters, plural, one {{remainingCaptionCharacters} character remaining} other {{remainingCaptionCharacters} characters remaining}}" msgstr "" @@ -101,7 +109,7 @@ msgstr "" msgid "{remainingTitleCharacters, plural, one {{remainingTitleCharacters} character remaining} other {{remainingTitleCharacters} characters remaining}}" msgstr "" -#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.utils.tsx:111 +#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.utils.tsx:112 msgid "{years, plural, one {{years} year project duration} other {{years} year project duration}}" msgstr "" @@ -581,7 +589,7 @@ msgstr "" msgid "Are you sure you want to discard your changes?" msgstr "" -#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.utils.tsx:144 +#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.utils.tsx:151 msgid "Area Actions" msgstr "" @@ -1884,8 +1892,8 @@ msgstr "" #: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.utils.tsx:39 #: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.utils.tsx:71 -#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.utils.tsx:105 -#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.utils.tsx:185 +#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.utils.tsx:106 +#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.utils.tsx:192 msgid "Factor:" msgstr "" @@ -2952,11 +2960,11 @@ msgstr "" msgid "Premontane humid forest" msgstr "" -#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.utils.tsx:162 +#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.utils.tsx:169 msgid "Preservation" msgstr "" -#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.utils.tsx:154 +#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.utils.tsx:161 msgid "Preservation Factor:" msgstr "" @@ -3147,7 +3155,7 @@ msgstr "" msgid "Project documentation" msgstr "" -#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.utils.tsx:101 +#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.utils.tsx:102 msgid "Project Duration" msgstr "" @@ -3255,7 +3263,7 @@ msgstr "" msgid "Projects" msgstr "" -#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.utils.tsx:146 +#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.utils.tsx:153 msgid "Projects must have a duration of at least 20 years to ensure demonstrable and quantifiable results in biodiversity. Tebu promotes projects that last longer, ensuring long term ecological processes." msgstr "" @@ -3445,11 +3453,11 @@ msgstr "" msgid "Resources for Getting Started" msgstr "" -#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.utils.tsx:163 +#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.utils.tsx:170 msgid "Restoration" msgstr "" -#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.utils.tsx:150 +#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.utils.tsx:157 msgid "Restoration Factor:" msgstr "" @@ -3797,7 +3805,7 @@ msgstr "" msgid "Social Accounts" msgstr "" -#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.utils.tsx:179 +#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.utils.tsx:186 msgid "Social and Cultural Index" msgstr "" @@ -4055,7 +4063,7 @@ msgstr "" msgid "The individual or organization that is in charge of managing the project and will appear on the project page." msgstr "" -#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.utils.tsx:181 +#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.utils.tsx:188 msgid "The integration of local communities' knowledge, social structures, and equitable participation to ensure both ecosystem conservation and community benefits." msgstr "" diff --git a/web-marketplace/src/lib/i18n/locales/es.po b/web-marketplace/src/lib/i18n/locales/es.po index d402b62bd5..40dae0318d 100644 --- a/web-marketplace/src/lib/i18n/locales/es.po +++ b/web-marketplace/src/lib/i18n/locales/es.po @@ -81,9 +81,13 @@ msgstr "{from}–{displayedTo} de {count}" msgid "{from}–{displayedTo} of more than {to}" msgstr "{from}–{displayedTo} de más de {to}" -#: src/components/organisms/BuyCreditsModal/BuyCreditsModal.utils.tsx:85 -#~ msgid "{price} {displayDenom}/credit:" -#~ msgstr "{precio} {displayDenom}/crédito:" +#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.utils.tsx:120 +msgid "{minimumDuration, plural, one {{maxDurationPrefix}{maximumDuration} year} other {{maxDurationPrefix}{maximumDuration} years}}" +msgstr "{minimumDuration, plural, one {{maxDurationPrefix}{maximumDuration} año} other {{maxDurationPrefix}{maximumDuration} años}}" + +#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.utils.tsx:116 +msgid "{minimumDuration, plural, one {{minimumDuration} year minimum} other {{minimumDuration} years minimum}}" +msgstr "{minimumDuration, plural, one {{minimumDuration} año mínimo} other {{minimumDuration} años mínimo}}" #: src/components/organisms/MediaForm/MediaFormPhotos.tsx:329 msgid "{remainingCaptionCharacters, plural, one {{remainingCaptionCharacters} character remaining} other {{remainingCaptionCharacters} characters remaining}}" @@ -111,11 +115,7 @@ msgstr "{remainingSummaryCharacters, plural, one {{remainingSummaryCharacters} c msgid "{remainingTitleCharacters, plural, one {{remainingTitleCharacters} character remaining} other {{remainingTitleCharacters} characters remaining}}" msgstr "{remainingTitleCharacters, plural, one {{remainingTitleCharacters} carácter restante} other {{remainingTitleCharacters} caracteres restantes}}" -#: src/components/organisms/BuyCreditsModal/BuyCreditsModal.utils.tsx:90 -#~ msgid "{truncatedQuantity} credit(s) available" -#~ msgstr "{truncatedQuantity} crédito(s) disponible(s)" - -#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.utils.tsx:111 +#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.utils.tsx:112 msgid "{years, plural, one {{years} year project duration} other {{years} year project duration}}" msgstr "{years, plural, one {Duración del proyecto: {years} año} other {Duración del proyecto: {years} años}}" @@ -587,7 +587,7 @@ msgstr "¿Estás seguro de que deseas eliminar esta publicación?" msgid "Are you sure you want to discard your changes?" msgstr "¿Está seguro de que desea descartar los cambios?" -#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.utils.tsx:144 +#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.utils.tsx:151 msgid "Area Actions" msgstr "Acciones del Área" @@ -1910,8 +1910,8 @@ msgstr "factor" #: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.utils.tsx:39 #: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.utils.tsx:71 -#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.utils.tsx:105 -#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.utils.tsx:185 +#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.utils.tsx:106 +#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.utils.tsx:192 msgid "Factor:" msgstr "Factor:" @@ -2990,11 +2990,11 @@ msgstr "prefinanciar este proyecto" msgid "Premontane humid forest" msgstr "Bosque húmedo premontano" -#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.utils.tsx:162 +#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.utils.tsx:169 msgid "Preservation" msgstr "Preservación" -#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.utils.tsx:154 +#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.utils.tsx:161 msgid "Preservation Factor:" msgstr "Factor de conservación:" @@ -3185,7 +3185,7 @@ msgstr "Desarrollador de proyectos" msgid "Project documentation" msgstr "Documentación del proyecto" -#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.utils.tsx:101 +#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.utils.tsx:102 msgid "Project Duration" msgstr "Duración del proyecto" @@ -3293,7 +3293,7 @@ msgstr "PROYECTADO:" msgid "Projects" msgstr "Proyectos" -#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.utils.tsx:146 +#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.utils.tsx:153 msgid "Projects must have a duration of at least 20 years to ensure demonstrable and quantifiable results in biodiversity. Tebu promotes projects that last longer, ensuring long term ecological processes." msgstr "Los proyectos deben tener una duración de al menos 20 años para garantizar resultados demostrables y cuantificables en biodiversidad. Tebu promueve proyectos que duren más tiempo, asegurando procesos ecológicos a largo plazo." @@ -3487,11 +3487,11 @@ msgstr "Recursos" msgid "Resources for Getting Started" msgstr "Recursos para empezar" -#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.utils.tsx:163 +#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.utils.tsx:170 msgid "Restoration" msgstr "Restauración" -#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.utils.tsx:150 +#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.utils.tsx:157 msgid "Restoration Factor:" msgstr "Factor de restauración:" @@ -3843,7 +3843,7 @@ msgstr "Pequeña o mediana empresa" msgid "Social Accounts" msgstr "Cuentas sociales" -#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.utils.tsx:179 +#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.utils.tsx:186 msgid "Social and Cultural Index" msgstr "Índice social y cultural" @@ -4104,7 +4104,7 @@ msgstr "La dirección de correo electrónico que está utilizando para iniciar s msgid "The individual or organization that is in charge of managing the project and will appear on the project page." msgstr "La persona u organización que está a cargo de administrar el proyecto y aparecerá en la página del proyecto." -#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.utils.tsx:181 +#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.utils.tsx:188 msgid "The integration of local communities' knowledge, social structures, and equitable participation to ensure both ecosystem conservation and community benefits." msgstr "La integración del conocimiento de las comunidades locales, las estructuras sociales y la participación equitativa para garantizar tanto la conservación del ecosistema como los beneficios comunitarios." From 5c1cab74b9b428eee2d05889e0ab16ddd53a1387 Mon Sep 17 00:00:00 2001 From: blushi Date: Tue, 3 Dec 2024 13:03:52 +0100 Subject: [PATCH 4/4] fix: es translations --- web-marketplace/src/lib/i18n/locales/es.po | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/web-marketplace/src/lib/i18n/locales/es.po b/web-marketplace/src/lib/i18n/locales/es.po index 40dae0318d..1e68240542 100644 --- a/web-marketplace/src/lib/i18n/locales/es.po +++ b/web-marketplace/src/lib/i18n/locales/es.po @@ -306,7 +306,7 @@ msgstr "Un identificador único que rastrea y verifica una transacción específ #: src/components/organisms/TerrasosFooter/TerrasosFooter.constants.ts:65 #: src/components/organisms/TerrasosHeader/TerrasosHeader.constants.ts:28 msgid "About Us" -msgstr "Sobre nosotros" +msgstr "Nosotros" #: src/components/organisms/AccountSwitchModal/AccountSwitchModal.constants.ts:3 msgid "Account switch detected!" @@ -318,7 +318,7 @@ msgstr "Acres" #: src/components/organisms/TerrasosHeader/TerrasosHeader.tsx:125 msgid "Act now" -msgstr "Actúa ahora" +msgstr "¡Actúa!" #: src/components/organisms/TerrasosFooter/TerrasosFooter.constants.ts:95 msgid "Act Now - Tebu" @@ -410,13 +410,13 @@ msgstr "¡Dirección copiada!" #: src/pages/CreditClassDetails/CreditClassDetailsSimple/CreditClassDetailsSimple.Stakeholders.tsx:37 #: src/pages/Post/Post.constants.ts:8 msgid "admin" -msgstr "administración" +msgstr "Admin" #: src/components/organisms/CreditClassForms/CreditClassForm.tsx:46 #: src/components/organisms/CreditClassForms/CreditClassReview.tsx:29 #: src/components/organisms/RolesForm/RolesForm.tsx:255 msgid "Admin" -msgstr "Administración" +msgstr "Admin" #: src/components/organisms/ChooseCreditsForm/ChooseCreditsForm.AdvanceSettings.tsx:37 msgid "Advanced settings" @@ -2013,7 +2013,7 @@ msgstr "Fotos de la galería" #: src/components/organisms/TerrasosFooter/TerrasosFooter.constants.ts:81 #: src/components/organisms/TerrasosHeader/TerrasosHeader.constants.ts:55 msgid "Geo-Viewer" -msgstr "Visor geográfico" +msgstr "GeoVisor" #: src/components/organisms/DetailsSection/DetailsSection.constants.ts:7 msgid "Get even more info on this project on the" @@ -2070,7 +2070,7 @@ msgstr "Altamente significativo" #: src/components/organisms/TerrasosHeader/TerrasosHeader.constants.ts:24 msgid "Home" -msgstr "Hogar" +msgstr "Inicio" #: src/components/organisms/RegistryLayout/RegistryLayout.Footer.tsx:63 msgid "How-to Articles" @@ -4009,11 +4009,11 @@ msgstr "Insignia de bastón" #: src/components/molecules/TebuBanner/TebuBanner.tsx:43 msgid "Tebu banner" -msgstr "Bandera de caña de azúcar." +msgstr "Bandera Tebu de azúcar." #: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCredits.utils.tsx:45 msgid "Tebu Credits" -msgstr "Créditos de caña" +msgstr "Créditos Tebu" #: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.TebuInfo.tsx:77 msgid "Tebu factors" @@ -4021,7 +4021,7 @@ msgstr "Factores de Tebu" #: src/components/organisms/TebuBannerWrapper/TebuBannerWrapper.contants.ts:15 msgid "Tebu logo" -msgstr "Logotipo de caña de azúcar" +msgstr "Logotipo Tebu" #: src/components/organisms/DescriptionForm/DescriptionForm.constants.ts:14 msgid "Tell the deeper story of what makes this project special. Describe the land stewards and why they do this work, the ecological impacts (plants, animals, ecosystems), and social impacts (community, jobs, health)." @@ -4747,7 +4747,7 @@ msgstr "Acabamos de enviar un correo electrónico de confirmación a:" #: src/components/organisms/TerrasosFooter/TerrasosFooter.constants.ts:77 #: src/components/organisms/TerrasosHeader/TerrasosHeader.constants.ts:51 msgid "What is Tebu" -msgstr "¿Qué es Tebu?" +msgstr "Qué es Tebu" #: src/components/templates/ProjectDetails/ProjectDetails.constant.ts:7 msgid "What your support enables"