From 9c11b1eef1c307a49d36a1e8be9d920d0d070c9e Mon Sep 17 00:00:00 2001 From: odracirdev Date: Sat, 10 Aug 2024 18:32:57 -0400 Subject: [PATCH 1/7] refactor: :tada: Preparing for i18n --- .../index.astro => routes/banco-ripley.astro} | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) rename src/{pages/banco-ripley/index.astro => routes/banco-ripley.astro} (79%) diff --git a/src/pages/banco-ripley/index.astro b/src/routes/banco-ripley.astro similarity index 79% rename from src/pages/banco-ripley/index.astro rename to src/routes/banco-ripley.astro index cc6b616..2b33ac9 100644 --- a/src/pages/banco-ripley/index.astro +++ b/src/routes/banco-ripley.astro @@ -3,10 +3,17 @@ import { GradientBackground } from '@components'; import { GradientColor } from 'components/GradientBackground/GradientBackground.astro'; import Layout from '@layouts/Layout.astro'; import Contact from '@pages/_Sections/Contact/Contact.astro'; -import { Analysis, Benchmarks, Context, Criterios, Designs, Hero } from './_sections'; +import { + Analysis, + Benchmarks, + Context, + Criterios, + Designs, + Hero, +} from '../pages/banco-ripley/_sections'; --- - +
From 5d8867acc42de9b41777fa1e15f8bba1c62ada6f Mon Sep 17 00:00:00 2001 From: odracirdev Date: Sat, 10 Aug 2024 18:47:39 -0400 Subject: [PATCH 2/7] feat: :globe_with_meridians: internationalitation hero section --- src/locales/en/common.json | 7 ++++++- src/locales/es/common.json | 7 ++++++- src/pages/banco-ripley/_sections/Hero.astro | 22 +++++++++------------ 3 files changed, 21 insertions(+), 15 deletions(-) diff --git a/src/locales/en/common.json b/src/locales/en/common.json index fdcaa3d..814da70 100644 --- a/src/locales/en/common.json +++ b/src/locales/en/common.json @@ -126,5 +126,10 @@ "planogram_process_analysis_title": "Analysis", "planogram_process_analysis_desc": "In general, many valuable insights were obtained from the different types of users, we spent about 3 days to collect everything, analyze in detail and find the patterns that would be the main indicators to start prioritizing the first MVP in terms of design.", "planogram_process_mvp_desc": "Once it was clear what were the main pains and opportunities for improvement for the users, it was necessary to have a session with the entire development team and product owner to ensure that the functionalities of the first MVP are really feasible within the time limit, and that they bring value to the business.", - "planogram_designs_desc": "The entire process of sending planograms, implementation and notification that the task was completed by the stores was digitized, it was a very dense and challenging flow that had to be considered as well as the devices on which each user had to access, which had to be fast and intuitive." + "planogram_designs_desc": "The entire process of sending planograms, implementation and notification that the task was completed by the stores was digitized, it was a very dense and challenging flow that had to be considered as well as the devices on which each user had to access, which had to be fast and intuitive.", + "ripley_hero_title": "Time deposit", + "ripley_hero_desc": "The need for a study related to DAP arose, because the flow at that time was functional but had some issues both in desktop and mobile usability and some points of improvement of the front end by the system as the overlapping of components.", + "ripley_hero_methodology_desc": "Double diamond", + "ripley_hero_time_desc": "1 month", + "ripley_hero_device_desc": "Desktop & mobile" } diff --git a/src/locales/es/common.json b/src/locales/es/common.json index 25be296..3c6ccb7 100644 --- a/src/locales/es/common.json +++ b/src/locales/es/common.json @@ -126,5 +126,10 @@ "planogram_process_analysis_title": "Análisis", "planogram_process_analysis_desc": "A nivel general se obtuvieron muchos insights muy valioso de parte de los diferentes tipos de usuarios, se dedicaron unos 3 días para recopilar todo, analizar detalladamente y encontrar los patrones que serian los indicadores principales para comenzar a priorizar el primer MVP en cuanto a diseño.", "planogram_process_mvp_desc": "Ya teniendo claro cuáles eran los principales dolores y oportunidades de mejora para los usuarios había que tener una sesión con todo el equipo de desarrollo y product owner para asegurar que las funcionalidades del primer MVP sean realmente factibles dentro del tiempo límite, y que aporten valor al negocio.", - "planogram_designs_desc": "Se logró digitalizar todo el proceso de envío de planogramas, implementación y notificación de que la tarea fue realizada por las tiendas, fue un flujo bastante denso y desafiante que había que considerar tambien los dispositivos en los que cada usuario debía acceder, que fuera rápido e intuitivo." + "planogram_designs_desc": "Se logró digitalizar todo el proceso de envío de planogramas, implementación y notificación de que la tarea fue realizada por las tiendas, fue un flujo bastante denso y desafiante que había que considerar tambien los dispositivos en los que cada usuario debía acceder, que fuera rápido e intuitivo.", + "ripley_hero_title": "Depósito a plazos", + "ripley_hero_desc": "Se levantó la necesidad de realizar un estudio relacionado a DAP, debido a que el flujo en ese momento era funcional pero tenia algunas incidencias tanto de usabilidad en desktop como en mobile y algunos puntos de mejora del front por parte del sistema como la superposición de componentes.", + "ripley_hero_methodology_desc": "Doble diamante", + "ripley_hero_time_desc": "1 mes", + "ripley_hero_device_desc": "Desktop y mobile" } diff --git a/src/pages/banco-ripley/_sections/Hero.astro b/src/pages/banco-ripley/_sections/Hero.astro index 29ef549..977cb8a 100644 --- a/src/pages/banco-ripley/_sections/Hero.astro +++ b/src/pages/banco-ripley/_sections/Hero.astro @@ -1,37 +1,33 @@ --- import { CardWrapper } from '@components'; +import { t } from 'i18n:astro'; ---
-

Depósito a plazo

-

- Se levantó la necesidad de realizar un estudio relacionado a DAP, debido a que el flujo en ese - momento era funcional pero tenia algunas incidencias tanto de usabilidad en desktop como en - mobile y algunos puntos de mejora del front por parte del sistema como la superposición de - componentes. -

+

{t('ripley_hero_title')}

+

{t('ripley_hero_desc')}

-

Metodología

-

Doble diamante

+

{t('projects_hero_methodology_title')}

+

{t('ripley_hero_methodology_desc')}

-

Tiempo

-

1 mes

+

{t('projects_hero_time_title')}

+

{t('ripley_hero_time_desc')}

-

Dispositivos

-

Desktop y mobile

+

{t('projects_hero_device_title')}

+

{t('ripley_hero_device_desc')}

From 6be2c05a3b64904b75ce978c7b50cd4b2a9bb7eb Mon Sep 17 00:00:00 2001 From: odracirdev Date: Sat, 10 Aug 2024 18:54:53 -0400 Subject: [PATCH 3/7] feat: :globe_with_meridians: internationalitation context section --- src/locales/en/common.json | 4 +++- src/locales/es/common.json | 4 +++- src/pages/banco-ripley/_sections/Context.astro | 13 ++++++------- 3 files changed, 12 insertions(+), 9 deletions(-) diff --git a/src/locales/en/common.json b/src/locales/en/common.json index 814da70..d63bac3 100644 --- a/src/locales/en/common.json +++ b/src/locales/en/common.json @@ -131,5 +131,7 @@ "ripley_hero_desc": "The need for a study related to DAP arose, because the flow at that time was functional but had some issues both in desktop and mobile usability and some points of improvement of the front end by the system as the overlapping of components.", "ripley_hero_methodology_desc": "Double diamond", "ripley_hero_time_desc": "1 month", - "ripley_hero_device_desc": "Desktop & mobile" + "ripley_hero_device_desc": "Desktop & mobile", + "ripley_context_title": "Importance", + "ripley_context_desc": "Inquiring about some KPIs, it was learned that on average in the year 2022 86% were online users. In DAP more than 1900 transactions were generated monthly on average, which translated into a large amount of money for the bank, in that year there was an increase in customer investments, which shows the contribution that this product makes to the bank." } diff --git a/src/locales/es/common.json b/src/locales/es/common.json index 3c6ccb7..055c6d6 100644 --- a/src/locales/es/common.json +++ b/src/locales/es/common.json @@ -131,5 +131,7 @@ "ripley_hero_desc": "Se levantó la necesidad de realizar un estudio relacionado a DAP, debido a que el flujo en ese momento era funcional pero tenia algunas incidencias tanto de usabilidad en desktop como en mobile y algunos puntos de mejora del front por parte del sistema como la superposición de componentes.", "ripley_hero_methodology_desc": "Doble diamante", "ripley_hero_time_desc": "1 mes", - "ripley_hero_device_desc": "Desktop y mobile" + "ripley_hero_device_desc": "Desktop y mobile", + "ripley_context_title": "Importancia", + "ripley_context_desc": "Indagando algunos KPI, se supo que en promedio en el año 2022 el 86% eran usuarios online. En DAP mensualmente se generaban más de 1900 transacciones en promedio, lo cual se traducía en una gran cantidad de dinero para el banco, en ese año había una alza en las inversiones de los clientes, lo cual muestra el aporte que hace este producto al banco." } diff --git a/src/pages/banco-ripley/_sections/Context.astro b/src/pages/banco-ripley/_sections/Context.astro index c953f7c..5c733ce 100644 --- a/src/pages/banco-ripley/_sections/Context.astro +++ b/src/pages/banco-ripley/_sections/Context.astro @@ -1,14 +1,13 @@ +--- +import { t } from 'i18n:astro'; +--- +
-

Importancia

+

{t('ripley_context_title')}

-

- Indagando algunos KPI, se supo que en promedio en el año 2022 el 86% eran usuarios online. En - DAP mensualmente se generaban más de 1900 transacciones en promedio, lo cual se traducía en - una gran cantidad de dinero para el banco , en ese año había una alza de la inversiones de los - clientes, lo cual muestra el aporte que hace este producto al banco -

+

{t('ripley_context_desc')}

Date: Sat, 10 Aug 2024 19:10:47 -0400 Subject: [PATCH 4/7] feat: :globe_with_meridians: internationalitation benchmarks section --- src/locales/en/common.json | 6 +++++- src/locales/es/common.json | 6 +++++- .../banco-ripley/_sections/Benchmarks.astro | 21 +++++++------------ 3 files changed, 17 insertions(+), 16 deletions(-) diff --git a/src/locales/en/common.json b/src/locales/en/common.json index d63bac3..db3b060 100644 --- a/src/locales/en/common.json +++ b/src/locales/en/common.json @@ -133,5 +133,9 @@ "ripley_hero_time_desc": "1 month", "ripley_hero_device_desc": "Desktop & mobile", "ripley_context_title": "Importance", - "ripley_context_desc": "Inquiring about some KPIs, it was learned that on average in the year 2022 86% were online users. In DAP more than 1900 transactions were generated monthly on average, which translated into a large amount of money for the bank, in that year there was an increase in customer investments, which shows the contribution that this product makes to the bank." + "ripley_context_desc": "Inquiring about some KPIs, it was learned that on average in the year 2022 86% were online users. In DAP more than 1900 transactions were generated monthly on average, which translated into a large amount of money for the bank, in that year there was an increase in customer investments, which shows the contribution that this product makes to the bank.", + "ripley_benchmarks_desc": "Due to time and scope, it was decided to perform two benchmarks evaluating direct competition.", + "ripley_benchmarks_banks_numb": "No. of banks studied", + "ripley_benchmarks_obj_1_desc": "Map how the competition addresses this flow at a general level in architecture, prioritization, how information is displayed and what components and visual resources they use.", + "ripley_benchmarks_obj_2_desc": "Study how the competition provides the user with comparative information when simulating between different investment terms and whether these terms are predefined or not." } diff --git a/src/locales/es/common.json b/src/locales/es/common.json index 055c6d6..90c8e02 100644 --- a/src/locales/es/common.json +++ b/src/locales/es/common.json @@ -133,5 +133,9 @@ "ripley_hero_time_desc": "1 mes", "ripley_hero_device_desc": "Desktop y mobile", "ripley_context_title": "Importancia", - "ripley_context_desc": "Indagando algunos KPI, se supo que en promedio en el año 2022 el 86% eran usuarios online. En DAP mensualmente se generaban más de 1900 transacciones en promedio, lo cual se traducía en una gran cantidad de dinero para el banco, en ese año había una alza en las inversiones de los clientes, lo cual muestra el aporte que hace este producto al banco." + "ripley_context_desc": "Indagando algunos KPI, se supo que en promedio en el año 2022 el 86% eran usuarios online. En DAP mensualmente se generaban más de 1900 transacciones en promedio, lo cual se traducía en una gran cantidad de dinero para el banco, en ese año había una alza en las inversiones de los clientes, lo cual muestra el aporte que hace este producto al banco.", + "ripley_benchmarks_desc": "Debido al tiempo y alcance, se definió realizar dos benchmarks evaluando competencia directa.", + "ripley_benchmarks_banks_numb": "Cant. de bancos estudiados", + "ripley_benchmarks_obj_1_desc": "Mapear cómo la competencia aborda este flujo a nivel general en arquitectura, priorización, forma de mostrar información y que componentes y recursos visuales utilizan.", + "ripley_benchmarks_obj_2_desc": "Estudiar cómo la competencia le facilita al usuario la información comparativa al momento de simular entre distintos plazos al invertir y si estos plazos vienen predefinidos o no." } diff --git a/src/pages/banco-ripley/_sections/Benchmarks.astro b/src/pages/banco-ripley/_sections/Benchmarks.astro index 377397b..0ef840b 100644 --- a/src/pages/banco-ripley/_sections/Benchmarks.astro +++ b/src/pages/banco-ripley/_sections/Benchmarks.astro @@ -1,38 +1,31 @@ --- import { CardWrapper } from '@components'; +import { t } from 'i18n:astro'; ---

Benchmarks

-

- Debido al tiempo y alcance, se definió realizar dos benchmarks evaluando competencia directa. -

+

{t('ripley_benchmarks_desc')}

-

Cant. de bancos estudiados

+

{t('ripley_benchmarks_banks_numb')}

8
-

Objetivo 1

-

- Mapear cómo la competencia aborda este flujo a nivel general en arquitectura, - priorización, forma de mostrar información y que componentes y recursos visuales utilizan. -

+

{t('planogram_context_obj_1')}

+

{t('ripley_benchmarks_obj_1_desc')}

-

Objetivo 2

-

- Estudiar cómo la competencia le facilita al usuario la información comparativa al momento - de simular entre distintos plazos al invertir y si estos plazos vienen predefinidos o no. -

+

{t('planogram_context_obj_2')}

+

{t('ripley_benchmarks_obj_2_desc')}

From 271eb289ad86f6fa07c286f2e06cc7f3b6906f80 Mon Sep 17 00:00:00 2001 From: odracirdev Date: Sat, 10 Aug 2024 19:33:07 -0400 Subject: [PATCH 5/7] feat: :globe_with_meridians: internationalitation criterios section --- src/locales/en/common.json | 10 +++++++- src/locales/es/common.json | 10 +++++++- .../banco-ripley/_sections/Criterios.astro | 25 +++++++------------ 3 files changed, 27 insertions(+), 18 deletions(-) diff --git a/src/locales/en/common.json b/src/locales/en/common.json index db3b060..9f86d69 100644 --- a/src/locales/en/common.json +++ b/src/locales/en/common.json @@ -137,5 +137,13 @@ "ripley_benchmarks_desc": "Due to time and scope, it was decided to perform two benchmarks evaluating direct competition.", "ripley_benchmarks_banks_numb": "No. of banks studied", "ripley_benchmarks_obj_1_desc": "Map how the competition addresses this flow at a general level in architecture, prioritization, how information is displayed and what components and visual resources they use.", - "ripley_benchmarks_obj_2_desc": "Study how the competition provides the user with comparative information when simulating between different investment terms and whether these terms are predefined or not." + "ripley_benchmarks_obj_2_desc": "Study how the competition provides the user with comparative information when simulating between different investment terms and whether these terms are predefined or not.", + "ripley_criterios_title": "Evaluation criteria", + "ripley_criterios_1": "1. Number of steps", + "ripley_criterios_2": "2. Prioritization and information saturation", + "ripley_criterios_3": "3. Flow definition, simulation and contracting", + "ripley_criterios_4": "4. Origin and destination of the product", + "ripley_criterios_5": "5. Comparison of terms", + "ripley_criterios_6": "6. Content level", + "ripley_criterios_NPS_desc": "The NPS status was reviewed to reveal what aspects customers value or dissatisfy, thus guiding improvements directly to what most impacts their satisfaction. Based on feedback indicated by detractors and some liabilities we sought to incorporate the option of renewable WTP to further improve flow, as for those users who wanted to have prolonged investments over time did not have this option available." } diff --git a/src/locales/es/common.json b/src/locales/es/common.json index 90c8e02..3abae84 100644 --- a/src/locales/es/common.json +++ b/src/locales/es/common.json @@ -137,5 +137,13 @@ "ripley_benchmarks_desc": "Debido al tiempo y alcance, se definió realizar dos benchmarks evaluando competencia directa.", "ripley_benchmarks_banks_numb": "Cant. de bancos estudiados", "ripley_benchmarks_obj_1_desc": "Mapear cómo la competencia aborda este flujo a nivel general en arquitectura, priorización, forma de mostrar información y que componentes y recursos visuales utilizan.", - "ripley_benchmarks_obj_2_desc": "Estudiar cómo la competencia le facilita al usuario la información comparativa al momento de simular entre distintos plazos al invertir y si estos plazos vienen predefinidos o no." + "ripley_benchmarks_obj_2_desc": "Estudiar cómo la competencia le facilita al usuario la información comparativa al momento de simular entre distintos plazos al invertir y si estos plazos vienen predefinidos o no.", + "ripley_criterios_title": "Criterios de evaluación", + "ripley_criterios_1": "1. Cantidad de pasos", + "ripley_criterios_2": "2. Priorización y saturación de información", + "ripley_criterios_3": "3. Definición de flujo, simulación y contratación", + "ripley_criterios_4": "4. Origen y destino del producto", + "ripley_criterios_5": "5. Comparación de plazos", + "ripley_criterios_6": "6. Nivel de contenidos", + "ripley_criterios_NPS_desc": "Se revisó el estado del NPS para revelar qué aspectos valoran o descontentan a los clientes, guiando así las mejoras directamente hacia lo que más impacta en su satisfacción. Según los comentarios que indican los detractores y algunos pasivos buscamos incorporar la opción de DAP renovable para mejorar aún más el flujo, ya que para aquellos usuarios que querían tener inversiones prolongadas en el tiempo no tenían esta opción disponible." } diff --git a/src/pages/banco-ripley/_sections/Criterios.astro b/src/pages/banco-ripley/_sections/Criterios.astro index 62712f2..7e58ab1 100644 --- a/src/pages/banco-ripley/_sections/Criterios.astro +++ b/src/pages/banco-ripley/_sections/Criterios.astro @@ -1,5 +1,6 @@ --- import { CardWrapper } from '@components'; +import { t } from 'i18n:astro'; ---
@@ -7,16 +8,15 @@ import { CardWrapper } from '@components';
-

Criterios de evaluación

+

{t('ripley_criterios_title')}

    -
  1. 1. Cantidad de pasos
  2. -
  3. 2. Priorización y saturación de información
  4. -
  5. 3. Definición de flujo simulación y contratación
  6. -
  7. 4. Origen y destino del producto
  8. -
  9. 5. Comparación de plazos
  10. -
  11. 6. Nivel de contenidos
  12. -
  13. 7. Priorización y saturación de información
  14. +
  15. {t('ripley_criterios_1')}
  16. +
  17. {t('ripley_criterios_2')}
  18. +
  19. {t('ripley_criterios_3')}
  20. +
  21. {t('ripley_criterios_4')}
  22. +
  23. {t('ripley_criterios_5')}
  24. +
  25. {t('ripley_criterios_6')}
@@ -34,14 +34,7 @@ import { CardWrapper } from '@components';

NPS

-

- Se revisó el estado del NPS para revelar qué aspectos valoran o descontentan a los - clientes, guiando así las mejoras directamente hacia lo que más impacta en su - satisfacción. Según los comentarios que indican los detractores y algunos pasivos buscamos - incorporar la opción de DAP renovable para mejorar aún más el flujo, ya que para aquellos - usuarios que querían tener inversiones prolongadas en el tiempo no tenían esta opción - disponible -

+

{t('ripley_criterios_NPS_desc')}

From b3096edd673d9259498adfdeeafe651befdfeb19 Mon Sep 17 00:00:00 2001 From: odracirdev Date: Sat, 10 Aug 2024 19:47:26 -0400 Subject: [PATCH 6/7] feat: :globe_with_meridians: internationalitation analysis section --- src/locales/en/common.json | 7 +++++- src/locales/es/common.json | 7 +++++- .../banco-ripley/_sections/Analysis.astro | 23 +++++-------------- 3 files changed, 18 insertions(+), 19 deletions(-) diff --git a/src/locales/en/common.json b/src/locales/en/common.json index 9f86d69..69514f4 100644 --- a/src/locales/en/common.json +++ b/src/locales/en/common.json @@ -145,5 +145,10 @@ "ripley_criterios_4": "4. Origin and destination of the product", "ripley_criterios_5": "5. Comparison of terms", "ripley_criterios_6": "6. Content level", - "ripley_criterios_NPS_desc": "The NPS status was reviewed to reveal what aspects customers value or dissatisfy, thus guiding improvements directly to what most impacts their satisfaction. Based on feedback indicated by detractors and some liabilities we sought to incorporate the option of renewable WTP to further improve flow, as for those users who wanted to have prolonged investments over time did not have this option available." + "ripley_criterios_NPS_desc": "The NPS status was reviewed to reveal what aspects customers value or dissatisfy, thus guiding improvements directly to what most impacts their satisfaction. Based on feedback indicated by detractors and some liabilities we sought to incorporate the option of renewable WTP to further improve flow, as for those users who wanted to have prolonged investments over time did not have this option available.", + "ripley_analysis_title": "Final analysis", + "ripley_analysis_1": "The competition maintains at least two layers of information, the first with a history of the DAPs in cards with the minimum necessary information and the second layer with the detail.", + "ripley_analysis_2": "The current account was recently integrated as an option for the origin of the investment to be made. Previously, only a customer with a demand account could make a time deposit.", + "ripley_analysis_3": "The user is notified by e-mail when the automatic renewal is done and a detailed document with the renewal conditions is sent.", + "ripley_analysis_4": "" } diff --git a/src/locales/es/common.json b/src/locales/es/common.json index 3abae84..72e0cb7 100644 --- a/src/locales/es/common.json +++ b/src/locales/es/common.json @@ -145,5 +145,10 @@ "ripley_criterios_4": "4. Origen y destino del producto", "ripley_criterios_5": "5. Comparación de plazos", "ripley_criterios_6": "6. Nivel de contenidos", - "ripley_criterios_NPS_desc": "Se revisó el estado del NPS para revelar qué aspectos valoran o descontentan a los clientes, guiando así las mejoras directamente hacia lo que más impacta en su satisfacción. Según los comentarios que indican los detractores y algunos pasivos buscamos incorporar la opción de DAP renovable para mejorar aún más el flujo, ya que para aquellos usuarios que querían tener inversiones prolongadas en el tiempo no tenían esta opción disponible." + "ripley_criterios_NPS_desc": "Se revisó el estado del NPS para revelar qué aspectos valoran o descontentan a los clientes, guiando así las mejoras directamente hacia lo que más impacta en su satisfacción. Según los comentarios que indican los detractores y algunos pasivos buscamos incorporar la opción de DAP renovable para mejorar aún más el flujo, ya que para aquellos usuarios que querían tener inversiones prolongadas en el tiempo no tenían esta opción disponible.", + "ripley_analysis_title": "Análisis final", + "ripley_analysis_1": "La competencia mantiene al menos dos capas de información, la primera con un historial de los DAPs en cards con la información mínima necesaria y la segunda capa con el detalle.", + "ripley_analysis_2": "Se integró recientemente cuenta corriente como opción de origen de la inversión a realizar. Antes sólo un cliente con cuenta vista podía realizar un depósito a plazo.", + "ripley_analysis_3": "Se le notifica al usuario por correo electrónico cuando se hace la renovación automática y se envía un documento detallado con las condiciones de la renovación.", + "ripley_analysis_4": "" } diff --git a/src/pages/banco-ripley/_sections/Analysis.astro b/src/pages/banco-ripley/_sections/Analysis.astro index 12b02fa..787f93f 100644 --- a/src/pages/banco-ripley/_sections/Analysis.astro +++ b/src/pages/banco-ripley/_sections/Analysis.astro @@ -1,38 +1,27 @@ --- import { CardWrapper } from '@components'; +import { t } from 'i18n:astro'; ---
-

Análisis final

+

{t('ripley_analysis_title')}

1

-

- La competencia mantiene al menos dos capas de información, la primera con un historial de - los DAPs en cards con la información mínima necesaria y la segunda capa con el detalle -

+

{t('ripley_analysis_1')}

2

-

- Se integró recientemente cuenta corriente como opción de origen de la inversión a realizar. - Antes sólo un cliente con cuenta vista podía realizar un depósito a plazo. -

+

{t('ripley_analysis_2')}

3

-

- Se le notifica al usuario por correo electrónico cuando se hace la renovación automática y - se envía un documento detallado con las condiciones de la renovación -

+

{t('ripley_analysis_3')}

4

-

- Se le notifica al usuario por correo electrónico cuando se hace la renovación automática y - se envía un documento detallado con las condiciones de la renovación -

+

{t('ripley_analysis_3')}

From b149f761b70a2eab0c308bcf9461c656dab79500 Mon Sep 17 00:00:00 2001 From: odracirdev Date: Sat, 10 Aug 2024 19:52:59 -0400 Subject: [PATCH 7/7] feat: :globe_with_meridians: internationalitation design section --- src/locales/en/common.json | 4 +++- src/locales/es/common.json | 4 +++- src/pages/banco-ripley/_sections/Designs.astro | 11 +++-------- 3 files changed, 9 insertions(+), 10 deletions(-) diff --git a/src/locales/en/common.json b/src/locales/en/common.json index 69514f4..d20ee2e 100644 --- a/src/locales/en/common.json +++ b/src/locales/en/common.json @@ -150,5 +150,7 @@ "ripley_analysis_1": "The competition maintains at least two layers of information, the first with a history of the DAPs in cards with the minimum necessary information and the second layer with the detail.", "ripley_analysis_2": "The current account was recently integrated as an option for the origin of the investment to be made. Previously, only a customer with a demand account could make a time deposit.", "ripley_analysis_3": "The user is notified by e-mail when the automatic renewal is done and a detailed document with the renewal conditions is sent.", - "ripley_analysis_4": "" + "ripley_analysis_4": "", + "ripley_designs_title": "Designs", + "ripley_designs_desc": "After a process of empathizing and defining opportunities for improvement, the entire flow was refreshed, and additional new functionalities were added to further optimize this flow, which was then tested to ensure its usability and implement it for development." } diff --git a/src/locales/es/common.json b/src/locales/es/common.json index 72e0cb7..0496619 100644 --- a/src/locales/es/common.json +++ b/src/locales/es/common.json @@ -150,5 +150,7 @@ "ripley_analysis_1": "La competencia mantiene al menos dos capas de información, la primera con un historial de los DAPs en cards con la información mínima necesaria y la segunda capa con el detalle.", "ripley_analysis_2": "Se integró recientemente cuenta corriente como opción de origen de la inversión a realizar. Antes sólo un cliente con cuenta vista podía realizar un depósito a plazo.", "ripley_analysis_3": "Se le notifica al usuario por correo electrónico cuando se hace la renovación automática y se envía un documento detallado con las condiciones de la renovación.", - "ripley_analysis_4": "" + "ripley_analysis_4": "", + "ripley_designs_title": "Diseños", + "ripley_designs_desc": "Después de un proceso de empatizar y definir cuáles eras las oportunidades de mejora, se hizo un refrescamiento de todo el flujo, y adicional se agregaron nuevas funcionalidades para optimizar aún mas este flujo, posteriormente fue llevado a testeo para asegurar su usabilidad e implementarlo a desarrollo." } diff --git a/src/pages/banco-ripley/_sections/Designs.astro b/src/pages/banco-ripley/_sections/Designs.astro index f06f056..81908b2 100644 --- a/src/pages/banco-ripley/_sections/Designs.astro +++ b/src/pages/banco-ripley/_sections/Designs.astro @@ -1,17 +1,12 @@ --- - +import { t } from 'i18n:astro'; ---
-

Diseños

-

- Después de un proceso de empatizar y definir cuáles eras las oportunidades de mejora, se - hizo un refrescamiento de todo el flujo, y adicional se agregaron nuevas funcionalidades - para optimizar aún mas este flujo, posteriormente fue llevado a testeo para asegurar su - usabilidad e implementarlo a desarrollo -

+

{t('ripley_designs_title')}

+

{t('ripley_designs_desc')}