From c5e5a6e8efdd6929869dda616d85e7117137bebf Mon Sep 17 00:00:00 2001 From: blushi Date: Thu, 28 Nov 2024 09:57:08 +0100 Subject: [PATCH] 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 | 48 +++++++++++-------- web-marketplace/src/lib/i18n/locales/es.po | 48 +++++++++++-------- 5 files changed, 83 insertions(+), 66 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 d17f26b1c0..3fbd7ee922 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 "" @@ -711,7 +719,7 @@ msgstr "" #: src/components/molecules/ProjectPageMetadata/ProjectPageMetadata.tsx:159 #: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.ComplianceInfo.tsx:74 -#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.ComplianceInfo.tsx:98 +#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.ComplianceInfo.tsx:96 msgid "biome" msgstr "" @@ -1542,7 +1550,7 @@ msgstr "" #: src/components/molecules/ProjectPageMetadata/ProjectPageMetadata.tsx:152 #: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.ComplianceInfo.tsx:55 -#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.ComplianceInfo.tsx:79 +#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.ComplianceInfo.tsx:77 msgid "department" msgstr "" @@ -1819,7 +1827,7 @@ msgstr "" #: src/components/molecules/ProjectPageMetadata/ProjectPageMetadata.tsx:154 #: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.ComplianceInfo.tsx:60 -#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.ComplianceInfo.tsx:84 +#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.ComplianceInfo.tsx:82 msgid "environmental authority" msgstr "" @@ -1876,8 +1884,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 "" @@ -2943,11 +2951,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 "" @@ -3138,7 +3146,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 "" @@ -3246,11 +3254,11 @@ 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 "" -#: src/pages/Projects/Projects.tsx:222 +#: src/pages/Projects/Projects.tsx:224 msgid "projects tabs" msgstr "" @@ -3362,7 +3370,7 @@ msgstr "" #: src/components/molecules/ProjectPageMetadata/ProjectPageMetadata.tsx:151 #: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.ComplianceInfo.tsx:53 -#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.ComplianceInfo.tsx:77 +#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.ComplianceInfo.tsx:75 msgid "region" msgstr "" @@ -3436,11 +3444,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 "" @@ -3788,7 +3796,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 "" @@ -3819,7 +3827,7 @@ msgstr "" msgid "Sorry, your transaction was not successful." msgstr "" -#: src/pages/Projects/AllProjects/AllProjects.tsx:282 +#: src/pages/Projects/AllProjects/AllProjects.tsx:288 msgid "Sort by:" msgstr "" @@ -3899,7 +3907,7 @@ msgstr "" #: src/components/molecules/ProjectPageMetadata/ProjectPageMetadata.tsx:158 #: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.ComplianceInfo.tsx:70 -#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.ComplianceInfo.tsx:94 +#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.ComplianceInfo.tsx:92 msgid "sub-watershed" msgstr "" @@ -4046,7 +4054,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 "" @@ -4625,7 +4633,7 @@ msgstr "" #: src/components/molecules/ProjectPageMetadata/ProjectPageMetadata.tsx:157 #: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.ComplianceInfo.tsx:65 -#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.ComplianceInfo.tsx:89 +#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.ComplianceInfo.tsx:87 msgid "watershed" msgstr "" diff --git a/web-marketplace/src/lib/i18n/locales/es.po b/web-marketplace/src/lib/i18n/locales/es.po index 4ef03322a8..b8e2ae6e0e 100644 --- a/web-marketplace/src/lib/i18n/locales/es.po +++ b/web-marketplace/src/lib/i18n/locales/es.po @@ -75,6 +75,14 @@ msgstr "{from}–{displayedTo} de {count}" msgid "{from}–{displayedTo} of more than {to}" msgstr "{from}–{displayedTo} de más de {to}" +#: 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}}" msgstr "{remainingCaptionCharacters, plural, one {{remainingCaptionCharacters} carácter} other {{remainingCaptionCharacters} caracteres}}" @@ -101,7 +109,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/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}}" @@ -577,7 +585,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" @@ -707,7 +715,7 @@ msgstr "FECHA DE INICIO DEL LOTE" #: src/components/molecules/ProjectPageMetadata/ProjectPageMetadata.tsx:159 #: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.ComplianceInfo.tsx:74 -#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.ComplianceInfo.tsx:98 +#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.ComplianceInfo.tsx:96 msgid "biome" msgstr "bioma" @@ -1538,7 +1546,7 @@ msgstr "Las fechas de entrega pueden variar ampliamente ya que este proyecto aú #: src/components/molecules/ProjectPageMetadata/ProjectPageMetadata.tsx:152 #: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.ComplianceInfo.tsx:55 -#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.ComplianceInfo.tsx:79 +#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.ComplianceInfo.tsx:77 msgid "department" msgstr "departamento" @@ -1815,7 +1823,7 @@ msgstr "Ingrese la dirección de billetera aquí si esta entidad tiene una direc #: src/components/molecules/ProjectPageMetadata/ProjectPageMetadata.tsx:154 #: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.ComplianceInfo.tsx:60 -#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.ComplianceInfo.tsx:84 +#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.ComplianceInfo.tsx:82 msgid "environmental authority" msgstr "autoridad ambiental" @@ -1872,8 +1880,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:" @@ -2939,11 +2947,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:" @@ -3134,7 +3142,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" @@ -3242,11 +3250,11 @@ 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." -#: src/pages/Projects/Projects.tsx:222 +#: src/pages/Projects/Projects.tsx:224 msgid "projects tabs" msgstr "Pestañas de proyectos" @@ -3358,7 +3366,7 @@ msgstr "Dirección de la billetera REGEN" #: src/components/molecules/ProjectPageMetadata/ProjectPageMetadata.tsx:151 #: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.ComplianceInfo.tsx:53 -#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.ComplianceInfo.tsx:77 +#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.ComplianceInfo.tsx:75 msgid "region" msgstr "región" @@ -3432,11 +3440,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:" @@ -3784,7 +3792,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" @@ -3815,7 +3823,7 @@ msgstr "Lo sentimos, no tienes REGEN para cubrir las tarifas de transacción" msgid "Sorry, your transaction was not successful." msgstr "Lo sentimos, su transacción no fue exitosa." -#: src/pages/Projects/AllProjects/AllProjects.tsx:282 +#: src/pages/Projects/AllProjects/AllProjects.tsx:288 msgid "Sort by:" msgstr "Ordenar por:" @@ -3895,7 +3903,7 @@ msgstr "Historia en video o foto" #: src/components/molecules/ProjectPageMetadata/ProjectPageMetadata.tsx:158 #: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.ComplianceInfo.tsx:70 -#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.ComplianceInfo.tsx:94 +#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.ComplianceInfo.tsx:92 msgid "sub-watershed" msgstr "subcuenca" @@ -4042,7 +4050,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." @@ -4621,7 +4629,7 @@ msgstr "ver video" #: src/components/molecules/ProjectPageMetadata/ProjectPageMetadata.tsx:157 #: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.ComplianceInfo.tsx:65 -#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.ComplianceInfo.tsx:89 +#: src/components/templates/ProjectDetails/TerrasosCreditsInfo/TerrasosCreditsInfo.ComplianceInfo.tsx:87 msgid "watershed" msgstr "cuenca"