From e71a564f242581eaef894148d51014d7b13afad2 Mon Sep 17 00:00:00 2001 From: "locadex-agent[bot]" <217277504+locadex-agent[bot]@users.noreply.github.com> Date: Fri, 27 Feb 2026 01:10:34 +0000 Subject: [PATCH] docs(locadex): add translations --- es/api-playground/troubleshooting.mdx | 11 +- es/components/mermaid-diagrams.mdx | 8 +- es/customize/custom-404-page.mdx | 2 +- es/deploy/ci.mdx | 4 +- es/editor/keyboard-shortcuts.mdx | 4 +- es/guides/understand-your-audience.mdx | 2 +- es/guides/windsurf.mdx | 2 +- es/installation.mdx | 2 +- es/integrations/analytics/adobe.mdx | 12 +- .../analytics/google-analytics.mdx | 2 +- es/integrations/analytics/overview.mdx | 33 +- es/organize/settings.mdx | 9 +- es/quickstart.mdx | 2 +- fr/api-playground/troubleshooting.mdx | 8 +- fr/components/mermaid-diagrams.mdx | 8 +- fr/customize/custom-404-page.mdx | 2 +- fr/deploy/ci.mdx | 6 +- fr/editor/keyboard-shortcuts.mdx | 4 +- fr/installation.mdx | 2 +- fr/integrations/analytics/adobe.mdx | 14 +- .../analytics/google-analytics.mdx | 2 +- fr/integrations/analytics/overview.mdx | 29 +- fr/organize/settings.mdx | 19 +- fr/quickstart.mdx | 2 +- gt-lock.json | 1276 ++++++++++------- zh/api-playground/troubleshooting.mdx | 4 +- zh/components/mermaid-diagrams.mdx | 6 +- zh/customize/custom-404-page.mdx | 2 +- zh/deploy/ci.mdx | 6 +- zh/editor/keyboard-shortcuts.mdx | 4 +- zh/guides/understand-your-audience.mdx | 2 +- zh/guides/windsurf.mdx | 2 +- zh/installation.mdx | 2 +- zh/integrations/analytics/adobe.mdx | 12 +- .../analytics/google-analytics.mdx | 2 +- zh/integrations/analytics/overview.mdx | 31 +- zh/integrations/sdks/speakeasy.mdx | 2 +- zh/organize/settings.mdx | 11 +- 38 files changed, 892 insertions(+), 659 deletions(-) diff --git a/es/api-playground/troubleshooting.mdx b/es/api-playground/troubleshooting.mdx index c96c03964..178bf4e0e 100644 --- a/es/api-playground/troubleshooting.mdx +++ b/es/api-playground/troubleshooting.mdx @@ -62,7 +62,8 @@ Si sus páginas de la API no se muestran correctamente, revise estos problemas d - Si tienes un domain personalizado configurado, esto podría deberse a un problema con tu proxy inverso. De forma predeterminada, las solicitudes realizadas a través del área de pruebas de la API comienzan con una solicitud `POST` a la + Si tienes un domain personalizado configurado, esto podría deberse a un problema con tu proxy inverso. De forma predeterminada, + las solicitudes realizadas a través del área de pruebas de la API comienzan con una solicitud `POST` a la ruta `/_mintlify/api/request` en el sitio de documentación. Si tu proxy inverso está configurado para permitir únicamente solicitudes `GET` entonces todas estas solicitudes fallarán. Para solucionarlo, configura tu proxy inverso para permitir solicitudes `POST` a la ruta `/_mintlify/api/request`. @@ -70,7 +71,7 @@ Si sus páginas de la API no se muestran correctamente, revise estos problemas d Como alternativa, si tu proxy inverso impide aceptar solicitudes `POST`, puedes configurar Mintlify para enviar solicitudes directamente a tu backend con el ajuste `api.playground.proxy` en el `docs.json`, como se describe en la [documentación de configuración](/es/organize/settings#param-proxy). Al usar esta configuración, deberás configurar CORS en tu servidor, ya que las solicitudes llegarán directamente desde los navegadores de los usuarios en lugar de pasar por tu proxy. - + Si usas una configuración de navigation de OpenAPI, pero las páginas no se generan, revisa estos problemas comunes: 1. **Falta la especificación de OpenAPI predeterminada**: Asegúrate de tener definido un campo `openapi` en el elemento de navigation: @@ -98,14 +99,14 @@ Si sus páginas de la API no se muestran correctamente, revise estos problemas d 1. **Operaciones ocultas**: Las operaciones marcadas con `x-hidden: true` en tu especificación de OpenAPI no aparecerán en la navigation generada automáticamente. 2. **Operaciones no válidas**: Las operaciones con errores de validación en la especificación de OpenAPI pueden omitirse. Revisa tu documento de OpenAPI para detectar errores de sintaxis. - 3. **Inclusión manual vs. automática**: Si haces referencia a endpoints de una especificación de OpenAPI, solo las operaciones referenciadas explícitamente aparecerán en la navigation. No se agregarán otras páginas automáticamente. Esto incluye operaciones referenciadas en elementos secundarios de la navigation. + 3. **Inclusión manual vs. automática**: Si haces referencia a endpoints de una especificación de OpenAPI, solo las operaciones referenciadas explícitamente aparecen en la navigation. No se agregan otras páginas automáticamente. Esto incluye operaciones referenciadas en elementos secundarios de la navigation. Al combinar operaciones de OpenAPI con páginas de documentación estándar en navigation: 1. **Conflictos de archivos**: No puedes tener a la vez un archivo `MDX` y una entrada en navigation para la misma operación. Por ejemplo, si tienes `get-users.mdx`, no incluyas también `"GET /users"` en tu navigation. Si necesitas un archivo que comparta nombre con una operación, usa la extensión `x-mint` del endpoint para que el href apunte a otra ubicación. - 2. **Resolución de rutas**: Las entradas en navigation que no coincidan con operaciones de OpenAPI se tratarán como rutas de archivo. Asegúrate de que tus archivos `MDX` existan en las ubicaciones esperadas. - 3. **Distinción entre mayúsculas y minúsculas**: La coincidencia de operaciones de OpenAPI distingue mayúsculas y minúsculas. Asegúrate de que los métodos HTTP estén en mayúsculas en las entradas de navigation. + 2. **Resolución de rutas**: Las entradas en navigation que no coincidan con operaciones de OpenAPI se tratan como rutas de archivo. Asegúrate de que tus archivos `MDX` existan en las ubicaciones esperadas. + 3. **Distinción entre mayúsculas y minúscculas**: La coincidencia de operaciones de OpenAPI distingue mayúsculas y minúsculas. Asegúrate de que los métodos HTTP estén en mayúsculas en las entradas de navigation. \ No newline at end of file diff --git a/es/components/mermaid-diagrams.mdx b/es/components/mermaid-diagrams.mdx index ba9942409..e589c2d93 100644 --- a/es/components/mermaid-diagrams.mdx +++ b/es/components/mermaid-diagrams.mdx @@ -48,13 +48,14 @@ Para ver la lista completa de tipos de diagramas compatibles y su sintaxis, cons ``` ```` +
- ## Compatibilidad con diseño ELK + ## Compatibilidad con el diseño ELK
-Mintlify es compatible con el motor de diseño [ELK (Eclipse Layout Kernel)](https://www.eclipse.org/elk/) para diagramas de Mermaid. ELK optimiza la disposición para reducir superposiciones y mejorar la legibilidad, lo cual es útil para diagramas grandes o complejos. +Mintlify es compatible con el motor de diseño [ELK (Eclipse Layout Kernel)](https://www.eclipse.org/elk/) para diagramas Mermaid. ELK optimiza la disposición para reducir solapamientos y mejorar la legibilidad, lo cual es especialmente útil para diagramas grandes o complejos. -Para usar el diseño ELK en tus diagramas de Mermaid, agrega la directiva `%%{init: {'flowchart': {'defaultRenderer': 'elk'}}}%%` al comienzo de tu diagrama: +Para utilizar el diseño ELK en tus diagramas Mermaid, añade la directiva `%%{init: {'flowchart': {'defaultRenderer': 'elk'}}}%%` al principio de tu diagrama: ````mdx ELK layout example ```mermaid @@ -68,6 +69,7 @@ flowchart LR ``` ```` +
## Controles interactivos
diff --git a/es/customize/custom-404-page.mdx b/es/customize/custom-404-page.mdx index d2e252ea6..eb04bddfa 100644 --- a/es/customize/custom-404-page.mdx +++ b/es/customize/custom-404-page.mdx @@ -42,5 +42,5 @@ Configura la página 404 en la sección `errors.404` de tu archivo `docs.json`: - Descripción personalizada para la página de error 404. Admite formato Markdown. + Descripción personalizada para la página de error 404. Admite formato MDX, incluidos enlaces, texto en negrita y en cursiva, y componentes personalizados. \ No newline at end of file diff --git a/es/deploy/ci.mdx b/es/deploy/ci.mdx index 758d77849..5e869d491 100644 --- a/es/deploy/ci.mdx +++ b/es/deploy/ci.mdx @@ -437,7 +437,7 @@ Este texto es ignorado por Vale Vale reconoce y respeta automáticamente estos comentarios en los archivos MDX sin necesidad de configuración adicional. Usa los comentarios para omitir líneas o secciones que el linter deba ignorar. - No coloques `{/* vale off */}` u otros comentarios de expresión MDX similares como hijos directos de un componente JSX entre elementos hermanos. Por ejemplo, entre dos elementos `` dentro de un componente ``. - + No coloques `{/* vale off */}` o comentarios de expresión MDX similares como hijos directos de un componente JSX entre elementos hermanos. Por ejemplo, entre dos elementos `` dentro de un componente ``. + Coloca los comentarios dentro del contenido de un elemento específico o reestructura el contenido para evitar la necesidad de comentarios. diff --git a/es/editor/keyboard-shortcuts.mdx b/es/editor/keyboard-shortcuts.mdx index 060a27101..8087ac514 100644 --- a/es/editor/keyboard-shortcuts.mdx +++ b/es/editor/keyboard-shortcuts.mdx @@ -69,9 +69,9 @@ Usa estos atajos de teclado al editar en modo visual. ### Sustituciones inteligentes -El editor convierte automáticamente ciertas secuencias de caracteres en símbolos tipográficos mientras escribes. El editor omite las sustituciones dentro de bloques de código y código en línea. +El editor convierte automáticamente ciertas secuencias de caracteres en símbolos tipográficos a medida que escribes. El editor omite las sustituciones en los bloques de código y en el código en línea. -| Escribe | Resultado | +| Tipo | Resultado | | :--- | :--- | | `->` | → | | `<-` | ← | diff --git a/es/guides/understand-your-audience.mdx b/es/guides/understand-your-audience.mdx index d87f5640a..a6835aeb1 100644 --- a/es/guides/understand-your-audience.mdx +++ b/es/guides/understand-your-audience.mdx @@ -45,4 +45,4 @@ Hablar directamente con usuarios ayuda a anclar tu redacción en su perspectiva, 2. **Incorpora mecanismos de retroalimentación.** Ya sea con pulgares arriba/abajo o campos de texto simples, ofrece a los usuarios la oportunidad de enviar comentarios mientras leen tu documentación. 3. **Usa Analytics para guiarte.** Revisa los comentarios y las conclusiones para entender dónde tienen dificultades los usuarios y dónde tienen éxito. Actualiza la documentación con la que la gente tiene problemas o la más directamente relacionada con las tareas clave de tu producto. -Siempre habrá casos extremos que no estén cubiertos por tu documentación. Prioriza las páginas de mayor impacto para ayudar al mayor número de personas. Un exceso de contenido se vuelve difícil de navegar y mantener, por lo que intentar documentar todos los escenarios posibles puede ser contraproducente. \ No newline at end of file +Los casos extremos que no están cubiertos por tu documentación siempre existen. Prioriza las páginas de mayor impacto para ayudar al mayor número de personas. Un exceso de contenido se vuelve difícil de navegar y mantener, por lo que intentar documentar todos los escenarios posibles puede ser contraproducente. \ No newline at end of file diff --git a/es/guides/windsurf.mdx b/es/guides/windsurf.mdx index 77a779f0e..6b0630f27 100644 --- a/es/guides/windsurf.mdx +++ b/es/guides/windsurf.mdx @@ -15,7 +15,7 @@ El assistant Cascade de IA de Windsurf se puede ajustar para redactar documentac * **Reglas del espacio de trabajo**: se almacenan en tu repositorio de documentación y se comparten con tu equipo. * **Memorias**: proporcionan contexto individual que se acumula con el tiempo. -Recomendamos configurar reglas del espacio de trabajo para unificar los estándares de documentación. Puedes desarrollar memorias a medida que trabajas, pero como no se comparten, no serán consistentes entre los miembros del equipo. +Recomendamos configurar reglas del espacio de trabajo para unificar los estándares de documentación. Puedes desarrollar memorias a medida que trabajas, pero como no se comparten, no son consistentes entre los miembros del equipo. Crea reglas del espacio de trabajo en el directorio `.windsurf/rules` de tu repositorio de documentación. Consulta [Memories & Rules](https://docs.windsurf.com/windsurf/cascade/memories) en la documentación de Windsurf para obtener más información. diff --git a/es/installation.mdx b/es/installation.mdx index e2938bcc3..09f3f2a64 100644 --- a/es/installation.mdx +++ b/es/installation.mdx @@ -306,7 +306,7 @@ Si usas JetBrains, recomendamos el [plugin MDX para IntelliJ IDEA](https://plugi Esto se debe a no tener los permisos necesarios para instalar paquetes de Node de forma global. - **Solución**: Intenta ejecutar `sudo npm i -g mint`. Se te pedirá tu contraseña, la misma que usas para desbloquear tu computadora. + **Solución**: Intenta ejecutar `sudo npm i -g mint`. Cuando se te solicite, introduce la contraseña que usas para desbloquear tu computadora. diff --git a/es/integrations/analytics/adobe.mdx b/es/integrations/analytics/adobe.mdx index 58241e11a..5c8f80633 100644 --- a/es/integrations/analytics/adobe.mdx +++ b/es/integrations/analytics/adobe.mdx @@ -1,14 +1,14 @@ --- title: "Adobe Analytics" description: "Realiza un seguimiento del uso de la documentación con Adobe Analytics a través de Adobe Experience Platform Launch." -keywords: ["Adobe Analytics", "Adobe Launch", "Adobe Experience Platform", "site analytics"] +keywords: ["Adobe Analytics", "Adobe Launch", "Adobe Experience Platform", "analítica del sitio"] --- -Agrega lo siguiente a tu archivo `docs.json` para enviar analytics a Adobe Analytics. +Agrega lo siguiente a tu archivo `docs.json` para enviar datos de Analytics a Adobe Analytics. -```json Analytics options in docs.json +```json Opciones de Analytics en docs.json "integrations": { "adobe": { "launchUrl": "required" @@ -16,7 +16,7 @@ Agrega lo siguiente a tu archivo `docs.json` para enviar analytics a Adobe Analy } ``` -```json Example +```json Ejemplo "integrations": { "adobe": { "launchUrl": "https://assets.adobedtm.com/launch-EN93497c30fdf0424eb678d5f4ffac66dc.min.js" @@ -27,9 +27,9 @@ Agrega lo siguiente a tu archivo `docs.json` para enviar analytics a Adobe Analy
- ## Obtén tu URL de Launch + ## Obtén la URL de Launch
1. Inicia sesión en [Adobe Experience Platform Data Collection](https://experience.adobe.com/#/data-collection/). 2. Abre tu propiedad de Launch y ve a la pestaña **Environments**. -3. Copia la URL del script de tu entorno de producción. +3. Copia la URL del script de tu entorno de producción. \ No newline at end of file diff --git a/es/integrations/analytics/google-analytics.mdx b/es/integrations/analytics/google-analytics.mdx index 48afc8fe9..22c8f8f5e 100644 --- a/es/integrations/analytics/google-analytics.mdx +++ b/es/integrations/analytics/google-analytics.mdx @@ -46,7 +46,7 @@ Añade tu Measurement ID a tu archivo `docs.json` de la siguiente manera: Google Analytics tarda entre dos y tres días en mostrar tus datos. -Puedes usar el [Google Analytics Debugger](https://chrome.google.com/webstore/detail/google-analytics-debugger/jnkmfdileelhofjcijamephohjechhna?hl=en) para comprobar que Analytics está habilitado correctamente. La extensión registrará en la consola de tu navegador cada vez que GA4 haga una solicitud. +Puedes usar el [Google Analytics Debugger](https://chrome.google.com/webstore/detail/google-analytics-debugger/jnkmfdileelhofjcijamephohjechhna?hl=en) para comprobar tu configuración de Analytics. La extensión registra en la consola de tu navegador cada vez que GA4 hace una solicitud. diff --git a/es/integrations/analytics/overview.mdx b/es/integrations/analytics/overview.mdx index 91ac670b9..a4022c5ee 100644 --- a/es/integrations/analytics/overview.mdx +++ b/es/integrations/analytics/overview.mdx @@ -6,8 +6,8 @@ keywords: ["third-party analytics", "engagement tracking", "analytics platforms" Realiza un seguimiento de cómo los usuarios interactúan con tu documentación conectando plataformas de Analytics de terceros. Mintlify envía eventos de interacción a los proveedores de Analytics que hayas configurado. -
- ## Cómo funcionan las integraciones de analítica +
+ ## Cómo funcionan las integraciones de Analytics
Cuando agregas integraciones de Analytics a tu sitio de documentación, Mintlify registra interacciones de los usuarios como vistas de página, consultas de búsqueda, solicitudes en el área de pruebas de la API y envíos de comentarios, y las envía a tus proveedores de Analytics. Puedes conectar cualquier cantidad de proveedores de Analytics compatibles agregando tus claves de API al archivo `docs.json`. Los eventos de Analytics se envían a tus proveedores tan pronto como los agregas a tu configuración, sin necesidad de configuración adicional. @@ -22,18 +22,18 @@ Cuando agregas integraciones de Analytics a tu sitio de documentación, Mintlify href="/es/integrations/analytics/adobe" horizontal icon={ - - - - - } + + + + +} /> ### Ejemplo de configuración
@@ -678,7 +677,7 @@ Todos los eventos de seguimiento utilizan el prefijo `docs.`. | `docs.content.md.view` | Cuando un usuario ve la versión en Markdown de una página. | | `docs.navitem.click` | Cuando un usuario hace clic en un elemento de navegación del encabezado. | | `docs.navitem.cta_click` | Cuando un usuario hace clic en un botón de llamada a la acción. | -| `docs.footer.powered_by_mintlify_click` | Cuando un usuario hace clic en el enlace "Powered by Mintlify". | +| `docs.footer.powered_by_mintlify_click` | Cuando un usuario hace clic en el enlace "Powered by Mintlify". | - Edita la documentación en tu navegador y obtén una vista previa de cómo se verán tus páginas al publicarlas. + Edita la documentación en tu navegador y obtén una vista previa de cómo se ven tus páginas al publicarlas. diff --git a/fr/api-playground/troubleshooting.mdx b/fr/api-playground/troubleshooting.mdx index d7aa1266b..30e18e13f 100644 --- a/fr/api-playground/troubleshooting.mdx +++ b/fr/api-playground/troubleshooting.mdx @@ -60,7 +60,7 @@ Si vos pages API ne s’affichent pas correctement, consultez ces problèmes de ```
- + Si vous avez configuré un domain personnalisé, le problème peut venir de votre reverse proxy. Par défaut, les requêtes effectuées via le bac à sable d’API commencent par une requête `POST` vers le chemin `/_mintlify/api/request` sur le site de documentation. Si votre reverse proxy est configuré pour n’autoriser que les requêtes `GET`, alors toutes ces requêtes échouent. Pour corriger cela, configurez votre reverse proxy pour autoriser les requêtes `POST` vers le chemin `/_mintlify/api/request`. Sinon, si votre reverse proxy empêche l’acceptation des requêtes `POST`, vous pouvez configurer Mintlify pour envoyer les requêtes directement à votre backend avec le paramètre `api.playground.proxy` dans le `docs.json`, comme décrit dans la [documentation des paramètres](/fr/organize/settings#param-proxy). Avec cette configuration, vous devez configurer CORS sur votre serveur, car les requêtes proviennent directement des navigateurs des utilisateurs plutôt que de passer par votre proxy. @@ -91,17 +91,17 @@ Si vos pages API ne s’affichent pas correctement, consultez ces problèmes de 3. **Problèmes de validation** : Utilisez `mint openapi-check ` pour vérifier que votre document OpenAPI est valide. - + 1. **Opérations masquées** : Les opérations marquées `x-hidden: true` dans votre spécification OpenAPI n’apparaîtront pas dans la navigation générée automatiquement. 2. **Opérations invalides** : Les opérations comportant des erreurs de validation dans la spécification OpenAPI peuvent être ignorées. Vérifiez votre document OpenAPI pour détecter les erreurs de syntaxe. 3. **Inclusion manuelle vs automatique** : Si vous faites référence à des endpoints depuis une spécification OpenAPI, seules les opérations explicitement référencées apparaîtront dans la navigation. Aucune autre page ne sera ajoutée automatiquement. Cela inclut les opérations référencées dans des éléments enfants de la navigation. - Lorsqu’on combine des opérations OpenAPI avec des pages de documentation classiques dans navigation : + Lorsqu’on combine des opérations OpenAPI avec des pages de documentation classiques dans navigation : 1. **Conflits de fichiers** : Vous ne pouvez pas avoir à la fois un fichier `MDX` et une entrée de navigation pour la même opération. Par exemple, si vous avez `get-users.mdx`, n’incluez pas aussi "GET /users" dans votre navigation. Si vous devez avoir un fichier qui partage un nom avec une opération, utilisez l’extension `x-mint` pour le point de terminaison afin que le href pointe vers un autre emplacement. - 2. **Résolution des chemins** : Les entrées de navigation qui ne correspondent pas aux opérations OpenAPI seront traitées comme des chemins de fichiers. Assurez-vous que vos fichiers `MDX` existent aux emplacements attendus. + 2. **Résolution des chemins** : Les entrées de navigation qui ne correspondent pas aux opérations OpenAPI sont traitées comme des chemins de fichiers. Assurez-vous que vos fichiers `MDX` existent aux emplacements attendus. 3. **Sensibilité à la casse** : La correspondance des opérations OpenAPI est sensible à la casse. Assurez-vous que les méthodes HTTP sont en majuscules dans les entrées de navigation. \ No newline at end of file diff --git a/fr/components/mermaid-diagrams.mdx b/fr/components/mermaid-diagrams.mdx index 80fc87a99..431d8ca46 100644 --- a/fr/components/mermaid-diagrams.mdx +++ b/fr/components/mermaid-diagrams.mdx @@ -48,13 +48,14 @@ Pour la liste complète des types de diagrammes pris en charge et de leur syntax ``` ```` +
- ## Prise en charge de la mise en page ELK + ## Prise en charge de la disposition ELK
-Mintlify prend en charge le moteur de mise en page [ELK (Eclipse Layout Kernel)](https://www.eclipse.org/elk/) pour les diagrammes Mermaid. ELK optimise la disposition pour réduire les chevauchements et améliorer la lisibilité, ce qui est utile pour les diagrammes volumineux ou complexes. +Mintlify prend en charge le moteur de disposition [ELK (Eclipse Layout Kernel)](https://www.eclipse.org/elk/) pour les diagrammes Mermaid. ELK optimise l’agencement afin de réduire les chevauchements et d’améliorer la lisibilité, ce qui est particulièrement utile pour les diagrammes de grande taille ou complexes. -Pour utiliser la mise en page ELK dans vos diagrammes Mermaid, ajoutez la directive `%%{init: {'flowchart': {'defaultRenderer': 'elk'}}}%%` au début de votre diagramme : +Pour utiliser la disposition ELK dans vos diagrammes Mermaid, ajoutez la directive `%%{init: {'flowchart': {'defaultRenderer': 'elk'}}}%%` au début de votre diagramme : ````mdx ELK layout example ```mermaid @@ -68,6 +69,7 @@ flowchart LR ``` ```` +
## Contrôles interactifs
diff --git a/fr/customize/custom-404-page.mdx b/fr/customize/custom-404-page.mdx index 4c8db33ba..dbdf1c782 100644 --- a/fr/customize/custom-404-page.mdx +++ b/fr/customize/custom-404-page.mdx @@ -42,5 +42,5 @@ Configurez votre page 404 dans la section `errors.404` de votre fichier `docs.js - Description personnalisée pour la page d’erreur 404. Prend en charge le formatage Markdown. + Description personnalisée pour la page d’erreur 404. Prend en charge le formatage MDX, notamment les liens, le texte en gras ou en italique, ainsi que les composants personnalisés. \ No newline at end of file diff --git a/fr/deploy/ci.mdx b/fr/deploy/ci.mdx index 1b9ee7738..306a3e400 100644 --- a/fr/deploy/ci.mdx +++ b/fr/deploy/ci.mdx @@ -437,7 +437,7 @@ Ce texte est ignoré par Vale Vale reconnaît et respecte automatiquement ces commentaires dans les fichiers MDX sans configuration supplémentaire. Utilisez les commentaires pour ignorer les lignes ou sections qui doivent être ignorées par le linter. - Ne placez pas `{/* vale off */}` ou d'autres commentaires d'expression MDX similaires en tant qu'enfants directs d'un composant JSX entre des éléments frères. Par exemple, entre deux éléments `` à l'intérieur d'un composant ``. - - Placez les commentaires à l'intérieur du contenu d'un élément spécifique ou restructurez le contenu pour éviter d'avoir besoin de commentaires. + Ne placez pas de commentaires d'expression MDX tels que `{/* vale off */}` en tant qu'enfants directs d'un composant JSX entre des éléments frères. Par exemple, entre deux éléments `` à l'intérieur d'un composant ``. + + Placez les commentaires dans le contenu d'un élément spécifique ou remaniez la structure du contenu pour éviter d'avoir besoin de commentaires. diff --git a/fr/editor/keyboard-shortcuts.mdx b/fr/editor/keyboard-shortcuts.mdx index 1fea92777..7dba55ab5 100644 --- a/fr/editor/keyboard-shortcuts.mdx +++ b/fr/editor/keyboard-shortcuts.mdx @@ -69,9 +69,9 @@ Utilisez ces raccourcis lorsque vous modifiez en mode visuel. ### Substitutions intelligentes -L'éditeur convertit automatiquement certaines séquences de caractères en symboles typographiques lors de la saisie. L'éditeur ignore les substitutions à l'intérieur des blocs de code et du code en ligne. +L'éditeur convertit automatiquement certaines séquences de caractères en symboles typographiques au fur et à mesure que vous tapez. L'éditeur ignore les substitutions à l'intérieur des code blocks et du code en ligne. -| Saisie | Résultat | +| Type | Résultat | | :--- | :--- | | `->` | → | | `<-` | ← | diff --git a/fr/installation.mdx b/fr/installation.mdx index 3ce4193a6..40ec2efd4 100644 --- a/fr/installation.mdx +++ b/fr/installation.mdx @@ -306,7 +306,7 @@ Si vous utilisez JetBrains, nous recommandons le [plugin MDX pour IntelliJ IDEA] Cela est dû au fait que vous n’avez pas les autorisations nécessaires pour installer globalement des paquets Node. - **Solution** : Essayez d’exécuter `sudo npm i -g mint`. Votre mot de passe vous sera demandé ; il s’agit de celui que vous utilisez pour déverrouiller votre ordinateur. + **Solution** : Essayez d’exécuter `sudo npm i -g mint`. Lorsque vous y êtes invité, entrez le mot de passe que vous utilisez pour déverrouiller votre ordinateur. diff --git a/fr/integrations/analytics/adobe.mdx b/fr/integrations/analytics/adobe.mdx index 5a0447935..5c5072251 100644 --- a/fr/integrations/analytics/adobe.mdx +++ b/fr/integrations/analytics/adobe.mdx @@ -1,14 +1,14 @@ --- title: "Adobe Analytics" -description: "Suivez l'utilisation de la documentation avec Adobe Analytics via Adobe Experience Platform Launch." -keywords: ["Adobe Analytics", "Adobe Launch", "Adobe Experience Platform", "site analytics"] +description: "Suivez l’utilisation de la documentation avec Adobe Analytics via Adobe Experience Platform Launch." +keywords: ["Adobe Analytics", "Adobe Launch", "Adobe Experience Platform", "statistiques du site"] --- -Ajoutez ce qui suit à votre fichier `docs.json` pour envoyer les analytics à Adobe Analytics. +Ajoutez l’extrait suivant à votre fichier `docs.json` pour envoyer des données d’analyse à Adobe Analytics. -```json Analytics options in docs.json +```json Options d’Analytics dans docs.json "integrations": { "adobe": { "launchUrl": "required" @@ -16,7 +16,7 @@ Ajoutez ce qui suit à votre fichier `docs.json` pour envoyer les analytics à A } ``` -```json Example +```json Exemple "integrations": { "adobe": { "launchUrl": "https://assets.adobedtm.com/launch-EN93497c30fdf0424eb678d5f4ffac66dc.min.js" @@ -31,5 +31,5 @@ Ajoutez ce qui suit à votre fichier `docs.json` pour envoyer les analytics à A 1. Connectez-vous à [Adobe Experience Platform Data Collection](https://experience.adobe.com/#/data-collection/). -2. Ouvrez votre propriété Launch et accédez à l'onglet **Environments**. -3. Copiez l'URL du script de votre environnement de production. +2. Ouvrez votre propriété Launch et accédez à l’onglet **Environments**. +3. Copiez l’URL du script à partir de votre environnement de production. \ No newline at end of file diff --git a/fr/integrations/analytics/google-analytics.mdx b/fr/integrations/analytics/google-analytics.mdx index 7f8f35f74..f22759f45 100644 --- a/fr/integrations/analytics/google-analytics.mdx +++ b/fr/integrations/analytics/google-analytics.mdx @@ -46,7 +46,7 @@ Ajoutez votre ID de mesure à votre fichier `docs.json` comme suit : Google Analytics met deux à trois jours à afficher vos données. -Vous pouvez utiliser le [Google Analytics Debugger](https://chrome.google.com/webstore/detail/google-analytics-debugger/jnkmfdileelhofjcijamephohjechhna?hl=en) pour vérifier que le suivi Analytics est correctement activé. L’extension consignera dans la console de votre navigateur chaque requête effectuée par GA4. +Vous pouvez utiliser le [Google Analytics Debugger](https://chrome.google.com/webstore/detail/google-analytics-debugger/jnkmfdileelhofjcijamephohjechhna?hl=en) pour vérifier la configuration de votre suivi Analytics. L’extension consigne dans la console de votre navigateur chaque requête effectuée par GA4. diff --git a/fr/integrations/analytics/overview.mdx b/fr/integrations/analytics/overview.mdx index e56e996ce..9522ad279 100644 --- a/fr/integrations/analytics/overview.mdx +++ b/fr/integrations/analytics/overview.mdx @@ -6,7 +6,7 @@ keywords: ["third-party analytics", "engagement tracking", "analytics platforms" Suivez la manière dont les utilisateurs interagissent avec votre documentation en la connectant à des plateformes d’analytics tierces. Mintlify envoie des événements d’engagement à vos fournisseurs d’analytics configurés. -
+
## Fonctionnement des intégrations Analytics
@@ -22,18 +22,18 @@ Lorsque vous ajoutez des intégrations Analytics à votre site de documentation, href="/fr/integrations/analytics/adobe" horizontal icon={ - - - - - } + + + + +} /> ### Exemple de configuration
diff --git a/fr/organize/settings.mdx b/fr/organize/settings.mdx index 613118881..89ee012dd 100644 --- a/fr/organize/settings.mdx +++ b/fr/organize/settings.mdx @@ -132,7 +132,7 @@ Cette section présente la référence complète du fichier `docs.json`. - Nom de la famille de polices, comme « Open Sans » ou « Playfair Display ». Prend en charge les noms de famille [Google Fonts](https://fonts.google.com). + Nom de la famille de polices, comme « Open Sans » ou « Playfair Display. ». Prend en charge les noms de famille [Google Fonts](https://fonts.google.com). @@ -830,14 +830,14 @@ Cette section présente la référence complète du fichier `docs.json`.
- + Fichiers de spécification AsyncAPI pour générer la documentation d’API. Peut être une URL ou un chemin unique, ou un tableau d’URL ou de chemins. URL ou chemin vers votre fichier de spécification AsyncAPI. - Longueur minimale : 1 + Longueur minimale : 1 @@ -927,18 +927,19 @@ Cette section présente la référence complète du fichier `docs.json`. - - Configurations pour la spécification OpenAPI. - + + Paramètres pour la spécification OpenAPI. + + - Indique s'il faut afficher un bouton de téléchargement pour la spécification OpenAPI sur les pages de référence d'API. La valeur par défaut est `false`. + Indique s’il faut afficher un bouton de téléchargement pour la spécification OpenAPI sur les pages de référence d’API. La valeur par défaut est `false`. - Configurations pour les pages d'API générées à partir de fichiers MDX. + Configurations pour les pages d’API générées à partir de fichiers MDX. @@ -1246,7 +1247,7 @@ Cette section présente la référence complète du fichier `docs.json`. - Description personnalisée pour la page d’erreur 404. Prend en charge le formatage MDX de base, y compris les liens, le texte en gras et en italique. Les composants personnalisés ne sont pas pris en charge. + Description personnalisée pour la page d’erreur 404. Prend en charge le formatage MDX, y compris les liens, le texte en gras, en italique, ainsi que les composants personnalisés. diff --git a/fr/quickstart.mdx b/fr/quickstart.mdx index 376f8f94c..65773860a 100644 --- a/fr/quickstart.mdx +++ b/fr/quickstart.mdx @@ -161,7 +161,7 @@ Trouvez l’URL exacte de votre site sur la page **Overview** de votre [Tableau - Modifiez la documentation dans votre navigateur et prévisualisez l’apparence de vos pages une fois publiées. + Modifiez la documentation dans votre navigateur et prévisualisez l’apparence de vos pages lorsqu’elles sont publiées. diff --git a/gt-lock.json b/gt-lock.json index 58e65c2f5..8b4271463 100644 --- a/gt-lock.json +++ b/gt-lock.json @@ -2660,15 +2660,15 @@ }, "1f348265d3f5dac53d237929ed0cb51b6957d4afae7d85442d6c5f3fde3c3677": { "fr": { - "updatedAt": "2026-02-25T21:22:39.506Z", + "updatedAt": "2026-02-27T01:10:15.321Z", "postProcessHash": "c109057da412849de43fac220e38ff679623a2f931ef3a7c163ae824f860f6dc" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.507Z", + "updatedAt": "2026-02-27T01:10:15.321Z", "postProcessHash": "5b12105c19515aea902507b88c3ffafd3a7fb8f9095cf09c7ac50b6c7d364060" }, "es": { - "updatedAt": "2026-02-25T21:22:39.511Z", + "updatedAt": "2026-02-27T01:10:15.326Z", "postProcessHash": "689e69d6acccced4f119037ed80ca9c43af86014ca174eb2a984eba9ba6ec84c" } } @@ -2958,15 +2958,15 @@ }, "9a8a476dcd467072a9906f50c171cd1684670846fc0ea8329f911611da7a8e9a": { "zh": { - "updatedAt": "2026-02-25T21:22:39.593Z", + "updatedAt": "2026-02-27T01:10:15.393Z", "postProcessHash": "69e488021437402d0fdab34d3d8d3bfbf1f4843b012a6098795bb7257a6700fa" }, "es": { - "updatedAt": "2026-02-25T21:22:39.594Z", + "updatedAt": "2026-02-27T01:10:15.393Z", "postProcessHash": "1539069227c56069988d4f12722b082b0901770faf61e8b096a52a030ed3890b" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.594Z", + "updatedAt": "2026-02-27T01:10:15.394Z", "postProcessHash": "b7cd5f7986670d1987f1d08adf77ac93d1f1f5488624b64c43c6c6d73dab0c6c" } } @@ -3015,15 +3015,15 @@ }, "61a824e0bb112ae9250c98207da118c0eb6336d68a84aed46677ef9039e84723": { "zh": { - "updatedAt": "2026-02-25T21:22:39.426Z", + "updatedAt": "2026-02-27T01:10:15.263Z", "postProcessHash": "93b06bf09d420e2509a83627f36d55068ba3cfc9b76d1615a46c1caa7a204e4b" }, "es": { - "updatedAt": "2026-02-25T21:22:39.427Z", + "updatedAt": "2026-02-27T01:10:15.264Z", "postProcessHash": "e276ef379d067d92bd25dc0019d30cc936ee3c2a3b6a4b9b7848fc05f5459ce5" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.431Z", + "updatedAt": "2026-02-27T01:10:15.264Z", "postProcessHash": "455d21afe97d13f3bc4a80988c849109393a775c70d298645759b126a8c2ee82" } } @@ -3187,15 +3187,15 @@ }, "62bd729f0f87b2890ac8490fdd220ca2c3205a638506af405aad8e331b614cb3": { "fr": { - "updatedAt": "2026-02-25T21:22:39.483Z", + "updatedAt": "2026-02-27T01:10:15.310Z", "postProcessHash": "cdf90708df8d0fcc9c678c8eaef813e8e45a5c68a1c81018b15cf5392a11416a" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.484Z", + "updatedAt": "2026-02-27T01:10:15.310Z", "postProcessHash": "6a82732add68666fdad64a81039f0d647b1328f9f082dbeb3e380007e87a7456" }, "es": { - "updatedAt": "2026-02-25T21:22:39.485Z", + "updatedAt": "2026-02-27T01:10:15.311Z", "postProcessHash": "f63d24722f83930c271ac67af0c825bd33713460354539199006f69b76cb38fd" } } @@ -3225,15 +3225,15 @@ }, "4bbec825257b2e44662cece56ea8f6d2a270af8295558ba8c49333d01f531512": { "fr": { - "updatedAt": "2026-02-25T21:22:39.410Z", + "updatedAt": "2026-02-27T01:10:15.231Z", "postProcessHash": "e4ada9eb602ad5fdb51ee876050480b47fccc31953e905efe8f44011a48d5565" }, "es": { - "updatedAt": "2026-02-25T21:22:39.411Z", + "updatedAt": "2026-02-27T01:10:15.232Z", "postProcessHash": "ebc1a190db69005bf50e4f2c8752f264c20f759797c7656057b619bb924e6937" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.420Z", + "updatedAt": "2026-02-27T01:10:15.256Z", "postProcessHash": "73aad7b3e20eced796388977990b133e5e83bff0ac1873c62d3289b440d823d0" } } @@ -3263,15 +3263,15 @@ }, "64a3699238f7091a57f32a304d4d6ea95e7b276b252acad469433afd381059d3": { "fr": { - "updatedAt": "2026-02-25T21:22:39.465Z", + "updatedAt": "2026-02-27T01:10:15.293Z", "postProcessHash": "978df97f23c4f806289c979fd43e2fba15778522453710a70aae2b18d2e57cff" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.417Z", + "updatedAt": "2026-02-27T01:10:15.254Z", "postProcessHash": "f3064f57a2d2b4c212fdf58658bf9e4ca38fe7e5f74250630abfa517d17be1f3" }, "es": { - "updatedAt": "2026-02-25T21:22:39.418Z", + "updatedAt": "2026-02-27T01:10:15.255Z", "postProcessHash": "3f67b199792c8ebffc05370ede5870ebb5e3b0418ca6c2ef26cc564d8f25c918" } } @@ -3364,15 +3364,15 @@ }, "e6a344d226f71ec9d74b139ad033dcf67bc7845e173faafb769737d5a53e20e0": { "fr": { - "updatedAt": "2026-02-25T21:22:39.421Z", + "updatedAt": "2026-02-27T01:10:15.258Z", "postProcessHash": "81fc3568f3c86637333bdcb90c56f48b3f6af658bee62196b16e2a1a98442545" }, "es": { - "updatedAt": "2026-02-25T21:22:39.423Z", + "updatedAt": "2026-02-27T01:10:15.259Z", "postProcessHash": "c6fb9315d254d49befeadbab24e28e02dc6c42ddc9a7f14abd005bff4d261b02" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.423Z", + "updatedAt": "2026-02-27T01:10:15.259Z", "postProcessHash": "bc1ab086b0f83492f839de81e82dee958d7e38258f4973dafe1749135da3cb0e" } } @@ -3427,15 +3427,15 @@ }, "31208fd7eb8499c2ca798ca6e3f74c8adcac6b115828fb88f54980683b0e69c9": { "es": { - "updatedAt": "2026-02-25T21:22:39.581Z", + "updatedAt": "2026-02-27T01:10:15.382Z", "postProcessHash": "6604c90d94a00eb7658f1880541bbb701925408fb507b7678d7f152c4caa09e7" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.581Z", + "updatedAt": "2026-02-27T01:10:15.382Z", "postProcessHash": "d0b16b527055840c4722821d48885910205c9ed74b3267134c44a286ca6c1c0f" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.585Z", + "updatedAt": "2026-02-27T01:10:15.386Z", "postProcessHash": "d930f27dc1dd96e16b1a640b6ecf974829f81104f9571ed54ad263b6745e0592" } } @@ -3594,15 +3594,15 @@ }, "95a202f43480c443bf05bc38f59d55f00b2e683dd3372042b628fd1ceab4afda": { "zh": { - "updatedAt": "2026-02-25T21:22:39.473Z", + "updatedAt": "2026-02-27T01:10:15.299Z", "postProcessHash": "cf67ac457ee51c662b6c5c103ba43a626b428b42e3cea49fb96b3ac55259b21e" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.474Z", + "updatedAt": "2026-02-27T01:10:15.300Z", "postProcessHash": "f5428fda66d1dc8d87bf7496e51ab2c64a6f1f5629a3de2cf521b6ce0f72e685" }, "es": { - "updatedAt": "2026-02-25T21:22:39.474Z", + "updatedAt": "2026-02-27T01:10:15.301Z", "postProcessHash": "93c7e884ddaed44e70292a9e4e358642ed3e4afadce6c6e01b19be3f32ec0b80" } } @@ -3691,15 +3691,15 @@ }, "0cf28adbe17cdcfe3d427395d3cc9d1fc80c36d159416bb7dfe76aeceefd132b": { "fr": { - "updatedAt": "2026-02-25T21:22:39.472Z", + "updatedAt": "2026-02-27T01:10:15.297Z", "postProcessHash": "5e11aa901acf1c76fb626e03c612f1efbf3bd16eb797f15df5b8b7b9b6a514cd" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.472Z", + "updatedAt": "2026-02-27T01:10:15.298Z", "postProcessHash": "528f8e87118f0a10302bd5d7e139b20364340f1cb359a01cbc3819acb0fda0d8" }, "es": { - "updatedAt": "2026-02-25T21:22:39.473Z", + "updatedAt": "2026-02-27T01:10:15.299Z", "postProcessHash": "5b596f0a15ed441fb828d6ade656e860333072fc7bf75da1fb608a79c46f41c5" } } @@ -3765,15 +3765,15 @@ }, "0965ae28ece3d3c3d5e10a49890e4d424a7196e1cc325921cdee9f9d8775d554": { "es": { - "updatedAt": "2026-02-25T21:22:39.424Z", + "updatedAt": "2026-02-27T01:10:15.260Z", "postProcessHash": "e9079648372645beb581593ceb0ccf349132811088a022797123f24db8f8f028" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.424Z", + "updatedAt": "2026-02-27T01:10:15.261Z", "postProcessHash": "fd8fa286ab5dc0f1c6f7034cf4f6fd87d3905e1adfe776a1967ff103526c2fcd" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.425Z", + "updatedAt": "2026-02-27T01:10:15.261Z", "postProcessHash": "8557a5fd4a396c44eca8dda9ea37a70bfdb667aa8a2e081afd1dc7b0d10ce3f9" } } @@ -3792,15 +3792,15 @@ }, "4ba815c35fc1d6ae05c075a25e63c14bb4f99030f6269e2e624b6a6cf7b40e43": { "es": { - "updatedAt": "2026-02-25T21:22:39.402Z", + "updatedAt": "2026-02-27T01:10:15.226Z", "postProcessHash": "5650fd1e5b54ca1f661e47670d18329aa1f7bffa14db3c976ac8c62b7d8f83db" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.404Z", + "updatedAt": "2026-02-27T01:10:15.228Z", "postProcessHash": "7335a32222b237a0727718dba49a451bab788d164964f432fb24439da285b365" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.408Z", + "updatedAt": "2026-02-27T01:10:15.229Z", "postProcessHash": "9564fd4e27315a68427db20238bfd5b1ef80c3cc44a87580e41f928358511c6c" } } @@ -3858,15 +3858,15 @@ }, "e8aba32daa550bba92dbdaf45d53474e05fab2e1dfaf23ed77df1b65514e1537": { "fr": { - "updatedAt": "2026-02-25T21:22:39.579Z", + "updatedAt": "2026-02-27T01:10:15.379Z", "postProcessHash": "cc4b836e02be342bf8266f60a0717b2e567cea4c0c2520d07903ea9f0ec66737" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.579Z", + "updatedAt": "2026-02-27T01:10:15.379Z", "postProcessHash": "7886ae57023055416d1f1a7c7b7dc471521fb60d9442b153b04db4ca034775f4" }, "es": { - "updatedAt": "2026-02-25T21:22:39.580Z", + "updatedAt": "2026-02-27T01:10:15.380Z", "postProcessHash": "b234412c0d0c4d9ffc62ec9f8408045c6ce57c25481b6b8ff6a012c83c82b1b8" } } @@ -4318,15 +4318,15 @@ }, "d7b94b60c0d2284fbbec1d6972e9675cbb4da449932f3ac0dabacbc5e811664e": { "zh": { - "updatedAt": "2026-02-25T21:22:39.586Z", + "updatedAt": "2026-02-27T01:10:15.388Z", "postProcessHash": "02d7e33c7aada552bbb4565f0fb3c983da2829cebe7eb708db59f2deb07371cc" }, "es": { - "updatedAt": "2026-02-25T21:22:39.587Z", + "updatedAt": "2026-02-27T01:10:15.388Z", "postProcessHash": "0c5f9ffe9bc3b7d5c5f7d897de5d15bab4cc24d27ea69f267a0581b33c33a94f" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.590Z", + "updatedAt": "2026-02-27T01:10:15.389Z", "postProcessHash": "70617056117ac24034ac7d11311dba49d48f9e6481cc3b165e593499dec1730e" } } @@ -4579,6 +4579,20 @@ "updatedAt": "2026-02-25T21:22:39.487Z", "postProcessHash": "37a77909a446cb6c1c6763ca951c4c976511672b16f7e80d1907b4be64984a92" } + }, + "fc9af43c49453cf269d8698f283e09824ebffb06baa07afcc172ee9ff6b5c948": { + "es": { + "updatedAt": "2026-02-27T01:10:15.336Z", + "postProcessHash": "89d17517a5509d9631e4fb46106af59ef5478ae8309542bf8cd362d13668f05b" + }, + "fr": { + "updatedAt": "2026-02-27T01:10:15.336Z", + "postProcessHash": "462df189397cec978a85044997e8e5a7ebffbf52e16c8985be93d7615512b6e9" + }, + "zh": { + "updatedAt": "2026-02-27T01:10:15.337Z", + "postProcessHash": "4c9c4925a71fd384894fe3cb46d2f20211aef9b1ec832eb2a4c0dce4d4434fb2" + } } }, "13df85c2d87a00401a996d811be672622538adc32707ae60f67a771611c8feef": { @@ -5007,15 +5021,15 @@ }, "27f75fed4e29929aa5e35705fcb791d9666872c318821bd3cf36ea261a3369b1": { "fr": { - "updatedAt": "2026-02-25T21:22:39.504Z", + "updatedAt": "2026-02-27T01:10:15.317Z", "postProcessHash": "97df7d15f98f70034c12b308a9788b4227c0aac913f10ab2b422c7b054e4c17f" }, "es": { - "updatedAt": "2026-02-25T21:22:39.505Z", + "updatedAt": "2026-02-27T01:10:15.319Z", "postProcessHash": "c69455814a467741ad3f5c7b4a27ed2debe5477d0415a01f8ea2f21edd14b6b5" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.506Z", + "updatedAt": "2026-02-27T01:10:15.320Z", "postProcessHash": "6952d425b3f502a0567841667c414219c6ef2a332c53a957fa79cea74dd45db9" } } @@ -5260,6 +5274,20 @@ "updatedAt": "2026-02-25T21:22:39.502Z", "postProcessHash": "9c7dd556ce642e3dab9f2f3cbb84a370b7f5d574a21c6aaff8a2ecabfc59f3e4" } + }, + "adcb47983f8b7e2d3f6936b43bc4ec8f9e210846b243ec1804c4c97b54286442": { + "fr": { + "updatedAt": "2026-02-27T01:10:15.339Z", + "postProcessHash": "253b4d955aec06aa576a2985eac3e455abc69d3e768bce08939976898a6a1c9e" + }, + "zh": { + "updatedAt": "2026-02-27T01:10:15.339Z", + "postProcessHash": "a3fba2be089a7953cdd99f5cf2e57527c0cdbc22f97f579df23015ee81b1e53a" + }, + "es": { + "updatedAt": "2026-02-27T01:10:15.340Z", + "postProcessHash": "c4a393f84644baa77d327772b471531420c5f41eb4806b1b34ab8165615c93bb" + } } }, "511ba05a8dcd13c5ae861dd48857749e6d6e5c2ea7eb06f03f375e62d0c5507b": { @@ -5287,15 +5315,15 @@ }, "239feca6504164e8bcbd82b2524a752018ed7a39e7c99c5bd82283b05ad42419": { "es": { - "updatedAt": "2026-02-25T21:22:39.522Z", + "updatedAt": "2026-02-27T01:10:15.341Z", "postProcessHash": "ecf86e0cda0ae341235df6b851ef4573dba152f96a2d7ae573b89a51176dd861" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.529Z", + "updatedAt": "2026-02-27T01:10:15.342Z", "postProcessHash": "08ce82e18ad44239f39f8edeed8f61bd6e4414375d457afc6569d5c261ded3c1" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.535Z", + "updatedAt": "2026-02-27T01:10:15.345Z", "postProcessHash": "f2a4fceea4e9f8d0dabbab77430230ebbbc6f7c99cc3c0a26f95428fa0bfcb61" } } @@ -5325,15 +5353,15 @@ }, "6b6eb89e73eae4cff9d6413f91f2f4ce27e6b47013fb676bde0cdced959047d5": { "fr": { - "updatedAt": "2026-02-25T21:22:39.413Z", + "updatedAt": "2026-02-27T01:10:15.233Z", "postProcessHash": "803b849c10972536e3c3f4efafbfdd1440ff1b2eccbaea67ecec345932e04bb6" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.413Z", + "updatedAt": "2026-02-27T01:10:15.234Z", "postProcessHash": "d51ce93ab00e9613dc28df79c1214f96a300d0b730098afc58493ea1c3f80dfd" }, "es": { - "updatedAt": "2026-02-25T21:22:39.416Z", + "updatedAt": "2026-02-27T01:10:15.235Z", "postProcessHash": "faa968f415d917b5ccb0b41591c9d744f7353d9738cf8eae88687cc50f5e5a8e" } } @@ -5388,15 +5416,15 @@ }, "36ab4e016a4d55e0a939af5ca68231789efa259dfdc8da60d6372594276f5cbb": { "es": { - "updatedAt": "2026-02-25T21:22:39.558Z", + "updatedAt": "2026-02-27T01:10:15.358Z", "postProcessHash": "672cdc63fe64bf8aa4f62c52819fd8fabfcd006ea7cd8889ff3b45547131620f" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.559Z", + "updatedAt": "2026-02-27T01:10:15.359Z", "postProcessHash": "823b254601138f98b98fd047cbf7473e1836b534a88c7e0b8c7a06bdb407d47b" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.561Z", + "updatedAt": "2026-02-27T01:10:15.360Z", "postProcessHash": "8b32aa49852538af3b2f12113d4cf70fee3c2e860d033430ce6240f66378005b" } } @@ -5453,15 +5481,15 @@ }, "1579230cd266b076718d44b00c6f2b14c604bd1468d47abd65c5b3f284ee238b": { "fr": { - "updatedAt": "2026-02-25T21:22:39.526Z", + "updatedAt": "2026-02-27T01:10:15.341Z", "postProcessHash": "5a9e558f007c8216799e85d6928b6fa60a1215fe540ee35cdea429b4d19c2791" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.527Z", + "updatedAt": "2026-02-27T01:10:15.342Z", "postProcessHash": "f7f2e7cda47e2a406adf5e7fc43ad3d6b8107d0b39726bf0e5e4ab5a44a52ab0" }, "es": { - "updatedAt": "2026-02-25T21:22:39.534Z", + "updatedAt": "2026-02-27T01:10:15.345Z", "postProcessHash": "54ae54d4908aa6cb881c0abdbf013394d75bda9828f4008e0a1df9c56470041c" } } @@ -5480,15 +5508,15 @@ }, "84e1f1ee89d0e933d7883bd51c19cc1497abc66ebb4cfc68cb7f690d71de87f5": { "es": { - "updatedAt": "2026-02-25T21:22:39.539Z", + "updatedAt": "2026-02-27T01:10:15.347Z", "postProcessHash": "33591395616a90822fbcd2632ebabcb49a8803494aba8a028b69dc51afdb0c54" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.540Z", + "updatedAt": "2026-02-27T01:10:15.347Z", "postProcessHash": "5bf50d02759ee62bce8f381578b2d0eee1508437b88246e4189a66676257c9f8" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.541Z", + "updatedAt": "2026-02-27T01:10:15.348Z", "postProcessHash": "f7b5fc36c896417e53f8535f588715f6086fbc9a8562db1d79b0aec3258dc0e4" } } @@ -5532,15 +5560,15 @@ }, "896a599f30b625b0cd5cc5a252b0a43a7788d38666ab19d97740dff7487c952d": { "zh": { - "updatedAt": "2026-02-25T21:22:39.558Z", + "updatedAt": "2026-02-27T01:10:15.358Z", "postProcessHash": "84eb90aa993c733684bb3b1123b54ac542e6b771489a2c2966480b34b616d90e" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.559Z", + "updatedAt": "2026-02-27T01:10:15.359Z", "postProcessHash": "b0072042d31cd684f972d58a7e7b746c01896c85af04f919bcb31ae09a3dccc3" }, "es": { - "updatedAt": "2026-02-25T21:22:39.560Z", + "updatedAt": "2026-02-27T01:10:15.360Z", "postProcessHash": "1d90fd431cac30216caacfd8fe56b461eb09e16e41467de3ec17d2ea34a67acf" } } @@ -5609,6 +5637,20 @@ "updatedAt": "2026-02-25T21:22:39.565Z", "postProcessHash": "96103a7624a22e48f8fa46f157cbc267bd1b97a8f87e4d0a8bb2517b6e97aa55" } + }, + "8f5ca72463ca2ad2ba338a246aa396a3da9e7e666420907c4b610088849b22e2": { + "zh": { + "updatedAt": "2026-02-27T01:10:15.395Z", + "postProcessHash": "f12cf9a344f8027d27dc04a3c61d83a375626d3fa7254ac0ffe46912d2f08e76" + }, + "es": { + "updatedAt": "2026-02-27T01:10:15.395Z", + "postProcessHash": "a6af898dc48a895012020da072501fba3b27e4193a31dd0f59ed00fd7a8d389d" + }, + "fr": { + "updatedAt": "2026-02-27T01:10:15.396Z", + "postProcessHash": "8cf7a6604a6ee8b811888e846ccfd9be715a6555ab9d82ca30604c3da6aa05ce" + } } }, "44c8c7cbb0e955bd90a62287ee0a5a4928ef5a7f5516cd08d274f5782960d569": { @@ -5636,15 +5678,15 @@ }, "bc8397cc9a6ce325952185bd403e7322c795c94318958e9c38b0cbea30872f53": { "es": { - "updatedAt": "2026-02-25T21:22:39.522Z", + "updatedAt": "2026-02-27T01:10:15.340Z", "postProcessHash": "3dfe0b3a8adea57098cf6a28353cf3c877a5085cbd41a6e0e78c119243fd9156" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.532Z", + "updatedAt": "2026-02-27T01:10:15.343Z", "postProcessHash": "7c29ebf872683033685b8098cffab0e516dfcc75434a8dac6c025d8c5cee4a61" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.536Z", + "updatedAt": "2026-02-27T01:10:15.346Z", "postProcessHash": "8ba797a7b6f6ce48010f809e0f9c0a1d958f740c94e593f0b8cf0d296a6d44a5" } } @@ -5691,15 +5733,15 @@ }, "07779cefc465e9c874ba0a49f7ffff5ef5343aff75633678e2b0e135006a45ad": { "es": { - "updatedAt": "2026-02-25T21:22:39.571Z", + "updatedAt": "2026-02-27T01:10:15.369Z", "postProcessHash": "d3af600abd546684b143e27175152b3ac250ebf0405f220176289fc8451e2ce0" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.571Z", + "updatedAt": "2026-02-27T01:10:15.370Z", "postProcessHash": "9dc0f62949362a8f23197ec7b998c58c39d0f855c5cd4dfcc72adc9f9382f2ee" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.572Z", + "updatedAt": "2026-02-27T01:10:15.370Z", "postProcessHash": "24e9eba8d06cd737cbe3d721778ace673b2d136e1f098dd4be4e870c646c05da" } } @@ -5757,15 +5799,15 @@ }, "dfbe892e9933f71eaeb2d3e5944c1deb448e49e540e9d32187056b9b1943747a": { "fr": { - "updatedAt": "2026-02-25T21:22:39.582Z", + "updatedAt": "2026-02-27T01:10:15.383Z", "postProcessHash": "a3da1888ba0b1a06b13e2950304e32a1ffc26d4b365c7d9b3d803bf17d13a390" }, "es": { - "updatedAt": "2026-02-25T21:22:39.582Z", + "updatedAt": "2026-02-27T01:10:15.383Z", "postProcessHash": "361756d690e7a1ed16d6f2e41df283bdc18399c2516196d0c1eb663d56c86612" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.583Z", + "updatedAt": "2026-02-27T01:10:15.384Z", "postProcessHash": "e709a7a8189d69fa88ff87df3c443aa4ad01055da6b26f7ebe13a0d919dafb12" } } @@ -5820,15 +5862,15 @@ }, "f2df2e6e275d1ec9ca40bafa8486ed9db0ec685525e1f452c93cac5db9cc389a": { "es": { - "updatedAt": "2026-02-25T21:22:39.561Z", + "updatedAt": "2026-02-27T01:10:15.363Z", "postProcessHash": "31db317d07b08d998de29f672d3b8a6c11a93dd3527ccc82a835e8612454ea55" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.563Z", + "updatedAt": "2026-02-27T01:10:15.363Z", "postProcessHash": "197f2d56f6b9a71b77267b0cf82a22ac8846f2946a1c270ae26eecfe89c93083" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.563Z", + "updatedAt": "2026-02-27T01:10:15.364Z", "postProcessHash": "c49ddca746710deee3c06650c0cfc43e6652067658dc7620f92db38d0aa248d5" } } @@ -5875,15 +5917,15 @@ }, "f721dd97af3918b8f402e87b23e49fc5333042ae150f0e12aea80cde144aa80b": { "es": { - "updatedAt": "2026-02-25T21:22:39.569Z", + "updatedAt": "2026-02-27T01:10:15.367Z", "postProcessHash": "d07708b4fecaad8fc545e0903d6b49c286b3de9691d4208b44572b2b7fd2874c" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.570Z", + "updatedAt": "2026-02-27T01:10:15.368Z", "postProcessHash": "20b73549e43b69d21915dcad667ace4cfc537a3a339756e08679869823766f36" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.571Z", + "updatedAt": "2026-02-27T01:10:15.369Z", "postProcessHash": "0b24b14ded9ecd4061d3052ab4b6e1763e9f6d8e66684cca17300800fe57fdeb" } } @@ -5927,15 +5969,15 @@ }, "a52c2530d96466d47f8cfaec6b11b530ead450bf5deb1c4e70d8b3db0000b418": { "zh": { - "updatedAt": "2026-02-25T21:22:39.487Z", + "updatedAt": "2026-02-27T01:10:15.312Z", "postProcessHash": "9ed92e673ee47d0c1b3f458c85d7676d3ab124801b018b98f4b42d9e90abf95d" }, "es": { - "updatedAt": "2026-02-25T21:22:39.489Z", + "updatedAt": "2026-02-27T01:10:15.312Z", "postProcessHash": "59456dc7616b39d88528c96907e897d871e0af175af1b8c7aeca67bbb05df028" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.490Z", + "updatedAt": "2026-02-27T01:10:15.313Z", "postProcessHash": "ce4149622bd29926bcde30cda759b49412acb888e96127d088a59958ea76bc12" } } @@ -5965,15 +6007,15 @@ }, "ff6db2e1d92370a81059bfc2de4d5a8e1f57d0325aba414f0579b5874c2f211c": { "fr": { - "updatedAt": "2026-02-25T21:22:39.530Z", + "updatedAt": "2026-02-27T01:10:15.343Z", "postProcessHash": "68641cdacdd020c8dbaaf1b97877dd9c7c051bcf8df97cb41ec4f29dcd46f1df" }, "es": { - "updatedAt": "2026-02-25T21:22:39.540Z", + "updatedAt": "2026-02-27T01:10:15.348Z", "postProcessHash": "548909345f09738e4c12e5ada740edfa12c3ba741627dd44bded6d3ba0157e98" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.537Z", + "updatedAt": "2026-02-27T01:10:15.346Z", "postProcessHash": "499b29d6d13c9bf97ba8da19b96795e7c22aae097e67886ccd9fbb5ce7d46536" } } @@ -6045,15 +6087,15 @@ }, "75bd39e3ef0abdd826497a15ca3278cad0f3013bb8ffae023f9f3a1091b47c0e": { "fr": { - "updatedAt": "2026-02-25T21:22:39.566Z", + "updatedAt": "2026-02-27T01:10:15.366Z", "postProcessHash": "3037325744698f6a53e9600b9ac80a08201546a2156f7652c4fe60bc592e431b" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.567Z", + "updatedAt": "2026-02-27T01:10:15.366Z", "postProcessHash": "d9eb35c389c630a7774094e1e38385e155940ad8cc5dd697aa16bac1ecf86a6c" }, "es": { - "updatedAt": "2026-02-25T21:22:39.567Z", + "updatedAt": "2026-02-27T01:10:15.367Z", "postProcessHash": "dc435550b7162fc111bea4685f4f1585eedcbfdd62630259d49048929726709d" } } @@ -6133,6 +6175,20 @@ "updatedAt": "2026-02-25T21:22:39.590Z", "postProcessHash": "cc87505595c96c88d6101c4a97448c908a85b809a10e56a5986e5be86edfdf8b" } + }, + "04f97b24d8f32aef53891a1a33ab7db30f36538131dd0434af251796b5698daf": { + "zh": { + "updatedAt": "2026-02-27T01:10:15.396Z", + "postProcessHash": "dc5be02a619fce50178970bee363e61218e42ef8f00482c84606875cd0165419" + }, + "fr": { + "updatedAt": "2026-02-27T01:10:15.397Z", + "postProcessHash": "13671b69ce8922f66b3c622d62bae89c9e291f7b7322e53c62493c5fa4b89cd4" + }, + "es": { + "updatedAt": "2026-02-27T01:10:15.398Z", + "postProcessHash": "505aea29b1bd786920af5522f285cbab58e55c4fca6c3df9657879c9d62f5652" + } } }, "46f13b608210e15deb0231e567c1824571c666b8b594a4cb63adefb7369e9936": { @@ -6277,15 +6333,15 @@ }, "4b0ba0f4f34f826f8156c1f63a028605283e3179cd5877a303d46b79806552fb": { "zh": { - "updatedAt": "2026-02-25T21:22:39.492Z", + "updatedAt": "2026-02-27T01:10:15.314Z", "postProcessHash": "eece6f05e669d499d3d60ecf2430615b96ce2827bf33962d5099080c2a14f617" }, "es": { - "updatedAt": "2026-02-25T21:22:39.576Z", + "updatedAt": "2026-02-27T01:10:15.376Z", "postProcessHash": "1e28c1c909e201fbd60ef0272c980084f6386b0f08556f09fcde6a19b9917086" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.577Z", + "updatedAt": "2026-02-27T01:10:15.376Z", "postProcessHash": "f088b483b3c6efba0d1444cc9ee7d749d72b2478f0ab356779b4166ed5883754" } } @@ -6435,15 +6491,15 @@ }, "94e04f6c2433eb5bc08a47907643d1a392dfbe642404e0cbff8c457336f98f54": { "zh": { - "updatedAt": "2026-02-25T21:22:39.591Z", + "updatedAt": "2026-02-27T01:10:15.390Z", "postProcessHash": "e7c1c2db8c1bddcbab19659a8504ab09729d207423fabc3fa52e697471a70589" }, "es": { - "updatedAt": "2026-02-25T21:22:39.591Z", + "updatedAt": "2026-02-27T01:10:15.390Z", "postProcessHash": "9dd6f27b909534ded2779d51d4a8c8da64c2843363ec1a7f2168e105bdfa1815" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.592Z", + "updatedAt": "2026-02-27T01:10:15.391Z", "postProcessHash": "ff93a22628a6f4d97f133d41f718d95f876eac5b1f169a74424929b86f22c9a0" } } @@ -6501,15 +6557,15 @@ }, "d86c17b1142dd233dd711c26f0c3154d52a30236267c38ea12dff0bd94a947cb": { "es": { - "updatedAt": "2026-02-25T21:22:39.565Z", + "updatedAt": "2026-02-27T01:10:15.364Z", "postProcessHash": "ad899e20694a2daed2b5156c964f892c8b61fa6c6b711b0a60819233a71f62f6" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.565Z", + "updatedAt": "2026-02-27T01:10:15.365Z", "postProcessHash": "d5a042d25df67a45eefbfe8298b032ff4ee768a1bdf20db9719c5e021f9cfcda" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.566Z", + "updatedAt": "2026-02-27T01:10:15.365Z", "postProcessHash": "28d0d6246312c8002ee29f3eb53ca34885667ff28cbdc9967735c3c4d2c0194a" } } @@ -6564,15 +6620,15 @@ }, "52b19024a144c7e0686c18d91e623665102d462a44cea462c8a002f9546d2274": { "es": { - "updatedAt": "2026-02-25T21:22:39.572Z", + "updatedAt": "2026-02-27T01:10:15.371Z", "postProcessHash": "d102219fd7a3848b30fad5258447ee9599eabe5416b2f93f716a1ddb410e7ecb" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.573Z", + "updatedAt": "2026-02-27T01:10:15.371Z", "postProcessHash": "4526eb4250544d150435170c6a901ee32933add749146f4ad6e72729e0746c32" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.573Z", + "updatedAt": "2026-02-27T01:10:15.372Z", "postProcessHash": "9e3e009dfa507614ef3b8baa777cc0285a0c36906001b3f19e5ce7d103cf8d31" } } @@ -6652,15 +6708,15 @@ }, "7ed928ae0d5cb4a0607ef178d1bfd32d8d9c97c298404db2bd30c2009f7e5be9": { "fr": { - "updatedAt": "2026-02-25T21:22:39.645Z", + "updatedAt": "2026-02-27T01:10:15.446Z", "postProcessHash": "57b3baee52277a61d98f1d07d5d5d6d82f6aaef3d911d489b7030caa4f75ca97" }, "es": { - "updatedAt": "2026-02-25T21:22:39.651Z", + "updatedAt": "2026-02-27T01:10:15.451Z", "postProcessHash": "e94c41f1cc455dd4ff44da40594104f2fba68aeb48d328420b38ba458b8d5d51" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.652Z", + "updatedAt": "2026-02-27T01:10:15.451Z", "postProcessHash": "5708ec8b0ff9500861f6f77e17ecca583fca593d775f95c067f2ef5955b3a1ec" } } @@ -6704,15 +6760,15 @@ }, "2bdf2ef85e8b544cca6075074a3bc7cae7ca06232bb8783e29c2ddfb27b3368d": { "zh": { - "updatedAt": "2026-02-25T21:22:39.693Z", + "updatedAt": "2026-02-27T01:10:15.493Z", "postProcessHash": "747a1a67ef6492bbff4d4659f4a1faa894e9830ee7b848803844019d038affe8" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.694Z", + "updatedAt": "2026-02-27T01:10:15.494Z", "postProcessHash": "d7ec3f4ea916056419cdfa2dbe18407df249b166464c51adcb6414e91ba9c747" }, "es": { - "updatedAt": "2026-02-25T21:22:39.694Z", + "updatedAt": "2026-02-27T01:10:15.495Z", "postProcessHash": "4a6c74b3320c81b1a7af5f22cc61baa03cd61bf5136b427cf8ff4f818782fb3e" } } @@ -6893,15 +6949,15 @@ }, "912a6c756dc473824c24ac99e24ddab64036d2eabb7eb8372e922bf3084f278d": { "fr": { - "updatedAt": "2026-02-25T21:22:39.641Z", + "updatedAt": "2026-02-27T01:10:15.442Z", "postProcessHash": "fc5e796d2c6d1288f7fa30955a7a3c6049fe06ae5c7020fa1c4ed9c37c3238b9" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.642Z", + "updatedAt": "2026-02-27T01:10:15.443Z", "postProcessHash": "e87c48408d4d5c0221c157b91752e36794de185cb6994e5cfacf4798d20e3606" }, "es": { - "updatedAt": "2026-02-25T21:22:39.642Z", + "updatedAt": "2026-02-27T01:10:15.444Z", "postProcessHash": "7795cabf654e79cab5055c01f031e029491f610c5d944c3c8a6d5f1bc7343962" } } @@ -6945,15 +7001,15 @@ }, "2192269c54c3af90e7c565802d9aa8f6ef51409d7b2bc68ebcc06ee7b8a1ad44": { "fr": { - "updatedAt": "2026-02-25T21:22:39.606Z", + "updatedAt": "2026-02-27T01:10:15.404Z", "postProcessHash": "a6da1471be0ba270179deed8fda50d9148c3ac5fd64d007059fe4016f2a4dfe7" }, "es": { - "updatedAt": "2026-02-25T21:22:39.606Z", + "updatedAt": "2026-02-27T01:10:15.405Z", "postProcessHash": "95d87e4e1adffb9206ea6bbd027100f895b7eb767863e70056dd2e629c166b47" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.606Z", + "updatedAt": "2026-02-27T01:10:15.405Z", "postProcessHash": "4c50ea7be10368dc9337bb93f742ec0b5956dd17b6fd1d58924513b2613563d7" } } @@ -7021,6 +7077,20 @@ "updatedAt": "2026-02-25T21:22:39.551Z", "postProcessHash": "f2bf2a896296fa00ab960d420226acf234a1f2ecb485cf7bf34f3992d8a2c64c" } + }, + "df814b0e0a68e3a140bf4bfe47b4f3aa21651a1198593aab4cf11e394ffed370": { + "fr": { + "updatedAt": "2026-02-27T01:10:15.454Z", + "postProcessHash": "e609e081823569b0674219c6348db5d75f758b70fb93239a20671e85b86175f7" + }, + "zh": { + "updatedAt": "2026-02-27T01:10:15.455Z", + "postProcessHash": "b019a197fff74cb12b3449b2794b378f3e99af15849d9c26e4371ddf7b71ca17" + }, + "es": { + "updatedAt": "2026-02-27T01:10:15.456Z", + "postProcessHash": "694fb7e8556c8e4af0a3fd2985c76008fb41fdecd01c559b20993a626ef252a9" + } } }, "d32641232ad7907fa97816d907b77277a4eeca30b4509a55e981bb9d1fa7aa8f": { @@ -7062,15 +7132,15 @@ }, "86b8e097a9b0e46381251b330ee2994848fa61c2f11f64334905dbfc1ca8e17c": { "zh": { - "updatedAt": "2026-02-25T21:22:39.556Z", + "updatedAt": "2026-02-27T01:10:15.355Z", "postProcessHash": "11bae015734e64879e0d11a17f951f92c9b15f7dccbba52fba05be561836220d" }, "es": { - "updatedAt": "2026-02-25T21:22:39.556Z", + "updatedAt": "2026-02-27T01:10:15.356Z", "postProcessHash": "3e4f7108c4d0ecf5c5fddda1f03e971c3749a3376c5d9b686c3346ac98d9abdf" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.557Z", + "updatedAt": "2026-02-27T01:10:15.356Z", "postProcessHash": "79cff003f9b18f62b1f0aa24cd6df20f42f8bcd8493c67ff57052d34b41e5e45" } } @@ -7114,15 +7184,15 @@ }, "3c3a0cd2e49916d3a78ea9c30ca15a9dac71b0c58cfd39f5996949538af427f6": { "zh": { - "updatedAt": "2026-02-25T21:22:39.624Z", + "updatedAt": "2026-02-27T01:10:15.425Z", "postProcessHash": "6ee8ced04c39f790f8e2790cc249d2d07ef97db7793619a501a18c64d883e6f5" }, "es": { - "updatedAt": "2026-02-25T21:22:39.626Z", + "updatedAt": "2026-02-27T01:10:15.427Z", "postProcessHash": "f062e11080231a67a92c250ed17120e4e984d743ba158cedcb07b9f279828087" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.627Z", + "updatedAt": "2026-02-27T01:10:15.428Z", "postProcessHash": "238d5c5023a1f00c966623b3bf24955cecddc48039d03b98ebbde4154f9ee431" } } @@ -7180,15 +7250,15 @@ }, "15c320c1993e6e3bddb2a87e9131521dfe086c70529878b79c528812b2728c11": { "zh": { - "updatedAt": "2026-02-25T21:22:39.610Z", + "updatedAt": "2026-02-27T01:10:15.407Z", "postProcessHash": "4a0e1d40b6ecdea29037677181688456523903dae07f42eb7873789758c0b852" }, "es": { - "updatedAt": "2026-02-25T21:22:39.611Z", + "updatedAt": "2026-02-27T01:10:15.408Z", "postProcessHash": "260d570f040a591d3c8a37b8a4b42e0fe3d17de85f10463cbdf7fa27eb0693b5" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.611Z", + "updatedAt": "2026-02-27T01:10:15.408Z", "postProcessHash": "0d539fe5a95dffa17d2e23f694408643a638905749143a2aa027264da4ec69c4" } } @@ -7257,15 +7327,15 @@ }, "dc840019005efdf82cf09a2011702a45c02ba5bf5829e9d289536154327e953a": { "zh": { - "updatedAt": "2026-02-25T21:22:39.625Z", + "updatedAt": "2026-02-27T01:10:15.426Z", "postProcessHash": "6e5154ab531de4873d9041b20a7924609b748e796bc332ebd5d2415a2a6dc163" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.626Z", + "updatedAt": "2026-02-27T01:10:15.426Z", "postProcessHash": "813c6fe9ae6082430e11fe857037a0377f202d91a8040cd9f2ae0a7062ab0cf2" }, "es": { - "updatedAt": "2026-02-25T21:22:39.627Z", + "updatedAt": "2026-02-27T01:10:15.428Z", "postProcessHash": "5175e1044dfc4b651b074bcd0c5e246a39f20f71460bdfc52462fe1b4aa4ccad" } } @@ -7348,15 +7418,15 @@ }, "db598f5119770ed75385babf616e7e3eb1c178941401196eac1c483515f04e54": { "zh": { - "updatedAt": "2026-02-25T21:22:39.639Z", + "updatedAt": "2026-02-27T01:10:15.440Z", "postProcessHash": "075bdf3c290253e9ab55080b98a7d8a8d89e4f6b0fa6432eba91a9e4e10292f7" }, "es": { - "updatedAt": "2026-02-25T21:22:39.639Z", + "updatedAt": "2026-02-27T01:10:15.441Z", "postProcessHash": "5640d9fc7c5a458428b831f0885ec1849a97020178869973ad00650676e7f7ca" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.640Z", + "updatedAt": "2026-02-27T01:10:15.442Z", "postProcessHash": "27738bb24d1af69669b771b9c602644e4e8e4a7263cb437131eb2a4b066dfe80" } } @@ -7400,15 +7470,15 @@ }, "16ffb9f1c23dab6f47df9381a23e5d7e91e36132221c0b7f111e766fcff1f50f": { "fr": { - "updatedAt": "2026-02-25T21:22:39.555Z", + "updatedAt": "2026-02-27T01:10:15.353Z", "postProcessHash": "b73cd584801252c7df5fdaa0f1340538b79a687b2478f2982a02d096b2eddaed" }, "es": { - "updatedAt": "2026-02-25T21:22:39.555Z", + "updatedAt": "2026-02-27T01:10:15.354Z", "postProcessHash": "416e947039ecb7f48b8538ca3767057e50ac1f8a71ced0dec8ced92b6e2056d6" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.601Z", + "updatedAt": "2026-02-27T01:10:15.355Z", "postProcessHash": "c1a3a89da04cb3e41c20b10019e39cc52710f4df1e6fe5c2211d77fabe368354" } } @@ -7494,15 +7564,15 @@ }, "ed162101bda4b4639d33dc2c766a65ad5d3cbd12508e259eabd348640c370335": { "fr": { - "updatedAt": "2026-02-25T21:22:39.654Z", + "updatedAt": "2026-02-27T01:10:15.453Z", "postProcessHash": "c5ee8dfcb21e65a7b2dfc8c49161a6d88bc4da474742f308f11931efc2d23f8a" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.654Z", + "updatedAt": "2026-02-27T01:10:15.453Z", "postProcessHash": "cc80d4c0e9d737a74a6d94b036c66031ae57f65bf8839d76c420bb18d3d86725" }, "es": { - "updatedAt": "2026-02-25T21:22:39.655Z", + "updatedAt": "2026-02-27T01:10:15.454Z", "postProcessHash": "6bf35ee8c5302cd346d96baf3222ab3ea83893570bcdcc9dbe044a29fa5991a0" } } @@ -7585,15 +7655,15 @@ }, "72b278f094b7ea2fd15648a004a0c9b4182d51ef2e8f7f3f767c13ff4b06c5dd": { "zh": { - "updatedAt": "2026-02-25T21:22:39.623Z", + "updatedAt": "2026-02-27T01:10:15.423Z", "postProcessHash": "3026e816172a5338a5c3f09dbd31bc8c691288823b939d02272e45d0d9ef3f3a" }, "es": { - "updatedAt": "2026-02-25T21:22:39.623Z", + "updatedAt": "2026-02-27T01:10:15.424Z", "postProcessHash": "b58c5853ef7a32550470d65fd7d9f6fae0049611c327f95b9f33614a01fe7775" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.624Z", + "updatedAt": "2026-02-27T01:10:15.425Z", "postProcessHash": "1f2420f56bfeb6a227c955bcb5cbf6fe3ce84fdaaab10f2cb004282032f9224b" } } @@ -7679,15 +7749,15 @@ }, "06aa7d4453fb4d8977d0e0c3aeffd9e1b32aa9f2045e38b9b094613b6b446664": { "fr": { - "updatedAt": "2026-02-25T21:22:39.604Z", + "updatedAt": "2026-02-27T01:10:15.361Z", "postProcessHash": "3a955ec7658e1d1ee2f2098a00a1ac03aa3d6dfbbe567e37c44589120a8dbc6b" }, "es": { - "updatedAt": "2026-02-25T21:22:39.604Z", + "updatedAt": "2026-02-27T01:10:15.362Z", "postProcessHash": "492d0d2c9e2625af4c5cf0c13d6350f8336bda47c9bb5c7c579533082224ed91" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.605Z", + "updatedAt": "2026-02-27T01:10:15.404Z", "postProcessHash": "647228a90f03fd15e917c4a217d21c3f288e07d2ff0804954e9042666539ad26" } } @@ -7717,15 +7787,15 @@ }, "9e6bd9dddc84ee56ab61dd51d66778954d94835fa02e115422354fbc956a4a8d": { "zh": { - "updatedAt": "2026-02-25T21:22:39.544Z", + "updatedAt": "2026-02-27T01:10:15.350Z", "postProcessHash": "caa3e0316a4a3480a61d22d8cb5ebbab62d94b89282fb6bf718ae6d1ba46c992" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.542Z", + "updatedAt": "2026-02-27T01:10:15.349Z", "postProcessHash": "9718fb7d06f4c55a514dffa5450cfefd8c1d27ceb38178a3ef96f0a2ef42bd69" }, "es": { - "updatedAt": "2026-02-25T21:22:39.533Z", + "updatedAt": "2026-02-27T01:10:15.344Z", "postProcessHash": "aaaefa2927cd92debed8c8c6de6a5d4e5439e0c5b51b9a4217ce3367ef4249a4" } } @@ -7780,15 +7850,15 @@ }, "dfa947328b11fc17c0cad3050b8e35efe0f07b6c6bc2508726a7f1cc558cefff": { "es": { - "updatedAt": "2026-02-25T21:22:39.613Z", + "updatedAt": "2026-02-27T01:10:15.411Z", "postProcessHash": "475c7a3e56193fadb4439d411b36d1b1d51713f649d087e3afca216731de61a9" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.613Z", + "updatedAt": "2026-02-27T01:10:15.412Z", "postProcessHash": "405cdfa2b0bf55b348a80454dca03740bb3126337ba1b694939e48f3b27f0b06" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.614Z", + "updatedAt": "2026-02-27T01:10:15.412Z", "postProcessHash": "e00a521d9fc52c8bba9c87c9e64c5921b7d7ac555b9ae9a3e51a72ad03b5f4e2" } } @@ -7874,15 +7944,15 @@ }, "840a0dc46483c816d544ed325a31c8b2d56f22fd150fd14d4b30d4a28cec25e2": { "zh": { - "updatedAt": "2026-02-25T21:22:39.646Z", + "updatedAt": "2026-02-27T01:10:15.447Z", "postProcessHash": "7e866918a1799965c5b3ebbf87184ff7b4028a282fca8e6163778fd1235c4246" }, "es": { - "updatedAt": "2026-02-25T21:22:39.650Z", + "updatedAt": "2026-02-27T01:10:15.449Z", "postProcessHash": "b61697483f4ba24d16a582054f42f10960febb754102eb9b70e40689be0aa67c" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.651Z", + "updatedAt": "2026-02-27T01:10:15.450Z", "postProcessHash": "aaf60d0545d5fd2179b80bb736844ef1d34d8d8a87c0571f70e0fff0a2172a27" } } @@ -7948,15 +8018,15 @@ }, "360f26d93833dd03d69851304afda4dd8063b485c8334514aee68c89cc388542": { "es": { - "updatedAt": "2026-02-25T21:22:39.647Z", + "updatedAt": "2026-02-27T01:10:15.448Z", "postProcessHash": "5ae2f3741faafc534fd4242fe86788d8cb4499b372f0760687e06c993276c6c4" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.649Z", + "updatedAt": "2026-02-27T01:10:15.449Z", "postProcessHash": "a0f647473a7a76e702564087d9a003373bfcf518d07755b863b0c36bdcbf52b7" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.653Z", + "updatedAt": "2026-02-27T01:10:15.453Z", "postProcessHash": "9ebb3acafdfe1b0b6ea4a4b55802d36bc11c82df67075b0d72e28f7b77d188e7" } } @@ -8053,15 +8123,15 @@ }, "f6c2c29f74a6cb3d911ae91a6173beb11ea0ac41f81ba88dc2e09a4e2cc072fe": { "fr": { - "updatedAt": "2026-02-25T21:22:39.647Z", + "updatedAt": "2026-02-27T01:10:15.447Z", "postProcessHash": "eac83ee12b57c4b76c08998b03575bdc3779176907e378bf907ba6eee4080853" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.648Z", + "updatedAt": "2026-02-27T01:10:15.448Z", "postProcessHash": "e3bec824f2673b5fa376deeb784b6689f5f3dddfd0f1b6b8f8c12e9a2790cdf6" }, "es": { - "updatedAt": "2026-02-25T21:22:39.653Z", + "updatedAt": "2026-02-27T01:10:15.452Z", "postProcessHash": "5d157b869c72e5031605c4ff372bc080fd270eabbf748f81f11dab44769c33aa" } } @@ -8119,15 +8189,15 @@ }, "54e4b646a7aeef3337c5984be618546382a380dab336a6d083b2f2799ba07459": { "zh": { - "updatedAt": "2026-02-25T21:22:39.634Z", + "updatedAt": "2026-02-27T01:10:15.434Z", "postProcessHash": "7147d55724273260de815809ef1d136d01f215825c0867e23c1626a2d3dbd9d7" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.634Z", + "updatedAt": "2026-02-27T01:10:15.434Z", "postProcessHash": "c93c629353b76bb850b9425e16259f6f9d52045fc9c7ab66e78225e6e303f6c8" }, "es": { - "updatedAt": "2026-02-25T21:22:39.635Z", + "updatedAt": "2026-02-27T01:10:15.435Z", "postProcessHash": "a30819341ca1713467fb66bb70e6f5c2a323972cca6361ad64d4af3beb8cd55c" } } @@ -8324,15 +8394,15 @@ }, "d5f6627db51ed77acaf6d24daccc4627e3150ff64b5a283808c295203394206c": { "zh": { - "updatedAt": "2026-02-25T21:22:39.748Z", + "updatedAt": "2026-02-27T01:10:15.562Z", "postProcessHash": "8ceb5436cd19a609a22c7f5ca739d7b1e5e9a8921e50173a10de2217b35b27e9" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.748Z", + "updatedAt": "2026-02-27T01:10:15.563Z", "postProcessHash": "821ca57b8a1eb6fa9d698128760d3010d2e7f009420ea895c339d1a60e5755b3" }, "es": { - "updatedAt": "2026-02-25T21:22:39.749Z", + "updatedAt": "2026-02-27T01:10:15.564Z", "postProcessHash": "673f173b3948e68baaeed61a2edf2776871d34a514208ef1325cd4dfb332a170" } } @@ -8340,15 +8410,15 @@ "53c3b9e499ef5bd5e368aa05a9a2484ab2e83e086a848e4dc65f744f4303c18f": { "fc7569e7101cf497720e212cf9526dfda81c1a7301c1866a84396fb6339961ed": { "zh": { - "updatedAt": "2026-02-25T21:22:39.730Z", + "updatedAt": "2026-02-27T01:10:15.539Z", "postProcessHash": "054bf9d6cb704aa2d953080de4788ec2f5a1e231bd8a86e7e2ca65b646063f48" }, "es": { - "updatedAt": "2026-02-25T21:22:39.730Z", + "updatedAt": "2026-02-27T01:10:15.538Z", "postProcessHash": "88f78075b2ed06ff0170d6d66bad542dfe18ee6a1d591937ca9de4233b4c8652" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.729Z", + "updatedAt": "2026-02-27T01:10:15.538Z", "postProcessHash": "baecd50b66903875691a139950151b911d09dda239e1f7cb1d39976cbbff674f" } } @@ -8431,15 +8501,15 @@ }, "6879f711d6801e13f4a0294947ec1f1b60192fb73f4ecbc7a5df453e739dd588": { "zh": { - "updatedAt": "2026-02-25T21:22:39.685Z", + "updatedAt": "2026-02-27T01:10:15.487Z", "postProcessHash": "409a7ad870aea23bccc57c3a62d4fd25cd5fdc903b933afe66c1dcad484b9792" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.688Z", + "updatedAt": "2026-02-27T01:10:15.489Z", "postProcessHash": "1479dd56030106597dec3abb3dc89c0e931bd2a5ff2c66e0e8bab4ceeae75ca3" }, "es": { - "updatedAt": "2026-02-25T21:22:39.689Z", + "updatedAt": "2026-02-27T01:10:15.490Z", "postProcessHash": "7cf5cb02e7cdf4d538557dae703fd007381a2ad7456108166fb108d3c227c129" } } @@ -8511,15 +8581,15 @@ }, "567f6409363f3d8372798d08bf4298683cc200e43b0d67900f902c440979f8a3": { "fr": { - "updatedAt": "2026-02-25T21:22:39.632Z", + "updatedAt": "2026-02-27T01:10:15.432Z", "postProcessHash": "702f2d9e31dbbbf255f485a76e5c5512c2bd44c6987144db5fddfdd4be49dbd2" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.632Z", + "updatedAt": "2026-02-27T01:10:15.433Z", "postProcessHash": "6e7c0d1b2c765c76c55d73902b4552f077bc6db0611e1f1f568af8f42eb5ca44" }, "es": { - "updatedAt": "2026-02-25T21:22:39.633Z", + "updatedAt": "2026-02-27T01:10:15.433Z", "postProcessHash": "196ca0559e69dd94c867140ed6e8be9f96f6a2aec66112838f7e587da504ede2" } } @@ -8577,15 +8647,15 @@ }, "21a0b2deabfbaf3dac32c33102696e7f1e7d7f3c06f9dfd11ba79361689e8523": { "zh": { - "updatedAt": "2026-02-25T21:22:39.666Z", + "updatedAt": "2026-02-27T01:10:15.463Z", "postProcessHash": "68a00808acfc77f5b20417d067f729eefa421a526ab40f860b2c2f5f5272da72" }, "es": { - "updatedAt": "2026-02-25T21:22:39.666Z", + "updatedAt": "2026-02-27T01:10:15.464Z", "postProcessHash": "ba05cd6a5756d951f89fddb02b38e30ff9ba5d43ebb537d384fc4675987a357f" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.667Z", + "updatedAt": "2026-02-27T01:10:15.465Z", "postProcessHash": "7379c5482c054de412421f901d3706f30b79d23a8b93ed69a78dc3e540e740ac" } } @@ -8615,15 +8685,15 @@ }, "adbe9541002b1646c97b2808c84189ee9f023c72ad021051e865d9d5ef268ec9": { "es": { - "updatedAt": "2026-02-25T21:22:39.595Z", + "updatedAt": "2026-02-27T01:10:15.398Z", "postProcessHash": "4b0acbfe6598a091275b0e8bb0e204956606e3250e939e46c796cc67719609c4" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.596Z", + "updatedAt": "2026-02-27T01:10:15.399Z", "postProcessHash": "9db8494b6a5fc6f8d035c978771fda3d0f622d7365996b5086201f7cea7ba409" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.600Z", + "updatedAt": "2026-02-27T01:10:15.401Z", "postProcessHash": "113a8f8013e81920fc3346eb087306aefbe82ef33b8bc0648c4d0acf9bb7ce97" } } @@ -8739,15 +8809,15 @@ }, "e82790c3849cc945326d64deaa58103dee138b606ce25e1b8bf5ab9f856e7e45": { "es": { - "updatedAt": "2026-02-25T21:22:39.688Z", + "updatedAt": "2026-02-27T01:10:15.489Z", "postProcessHash": "7b6306bce094cb6d0218e6b51dc9b19fe8f157a6bf9dee3f4c0fb3100697c799" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.689Z", + "updatedAt": "2026-02-27T01:10:15.490Z", "postProcessHash": "0d6aa088048cf1f695535a37c5df06c15984124dcc87f405e08909a292b8900c" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.690Z", + "updatedAt": "2026-02-27T01:10:15.491Z", "postProcessHash": "a0e8ba264f0786c42e6dcbd66aa74ffd9d5cb4db118e5f1153a447bfbb8fa54e" } } @@ -8777,15 +8847,15 @@ }, "79ce9a01a754dff7caa2815c273adb26f9fa5e7a21f6e8e07fc94d1f85cdba74": { "es": { - "updatedAt": "2026-02-25T21:22:39.655Z", + "updatedAt": "2026-02-27T01:10:15.456Z", "postProcessHash": "4f3d9036b6c463c31d5d73da325be00fc2f397e1caacd8189f0ccc1ee8e14a33" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.657Z", + "updatedAt": "2026-02-27T01:10:15.458Z", "postProcessHash": "fa4b69feb4a7ff9a420eb06a60cf2ee33443e29243043d54a564a6b12a4228d3" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.660Z", + "updatedAt": "2026-02-27T01:10:15.459Z", "postProcessHash": "edb3a451e5f74672eb9931e14a85482d7ed3e838a1c45b58040fcdb8ca2a8243" } } @@ -8843,15 +8913,15 @@ }, "baf32d1cfa893d8645aa04940ca24c98a6b3923c644bd266616ef2977297da71": { "es": { - "updatedAt": "2026-02-25T21:22:39.700Z", + "updatedAt": "2026-02-27T01:10:15.502Z", "postProcessHash": "dab543e149f93d62731b07ce91fa0d88912c8458b5c9f805357d518de8deaa7a" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.706Z", + "updatedAt": "2026-02-27T01:10:15.508Z", "postProcessHash": "d224af4975dc6836cebc458e5e98438d4d83015dfa2d19298f302a50ef9b704c" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.706Z", + "updatedAt": "2026-02-27T01:10:15.509Z", "postProcessHash": "c2a8bafb840a5e9de84b617cc9e0c67482ccfbc98dfc3ea9f581ad198f00c696" } } @@ -8937,15 +9007,15 @@ }, "2db8745f155c5e3bb6e91def35eb08aafaf5f8f42456a04d9770801b2ab10f21": { "zh": { - "updatedAt": "2026-02-25T21:22:39.635Z", + "updatedAt": "2026-02-27T01:10:15.436Z", "postProcessHash": "af3a22f8a2b65db7c287a3c0957cee075d990b227b4add5fff278916e3aaf2aa" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.636Z", + "updatedAt": "2026-02-27T01:10:15.436Z", "postProcessHash": "73f88b68b25c53c7cc5b1ef66d5514cc7f3202fbb2e8e69e69ca881e6b6f6319" }, "es": { - "updatedAt": "2026-02-25T21:22:39.637Z", + "updatedAt": "2026-02-27T01:10:15.437Z", "postProcessHash": "bc834ac23bfdc6c99900cc39da8d9330a110606cbe234acce450c66417902d06" } } @@ -8989,15 +9059,15 @@ }, "6e6dc4bf8a784178938fc8940b19d12840b4dfc0616cfcffd389c1dbf6b169cb": { "es": { - "updatedAt": "2026-02-25T21:22:39.684Z", + "updatedAt": "2026-02-27T01:10:15.486Z", "postProcessHash": "82c9ed346972417a9d7662ea34e3ac36db6755a80a947b37067fe61ae2000b28" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.687Z", + "updatedAt": "2026-02-27T01:10:15.488Z", "postProcessHash": "66084a8f055207dbb271ebc1e9c53b3e4eab4dd4375a4849ae86ed370c9b20e4" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.695Z", + "updatedAt": "2026-02-27T01:10:15.495Z", "postProcessHash": "a60b72007a91b910277cefb0cfa09e751a90eb2e5b663cb1a1047689c6c50cb4" } } @@ -9132,15 +9202,15 @@ }, "967d283ada886b039699066a3259866fe1aa25360575ec5040eda09930e2d8aa": { "fr": { - "updatedAt": "2026-02-25T21:22:39.667Z", + "updatedAt": "2026-02-27T01:10:15.465Z", "postProcessHash": "ef8621e9268023e8d7269a41ba7a99edf8b3ba85041ce046d96f58ac6eae5a22" }, "es": { - "updatedAt": "2026-02-25T21:22:39.668Z", + "updatedAt": "2026-02-27T01:10:15.466Z", "postProcessHash": "e6122f1b04ee460f1614c92390ced11f1e7d17ded163bc5289d2ca0980980fd9" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.668Z", + "updatedAt": "2026-02-27T01:10:15.466Z", "postProcessHash": "c0ee9bd57dbd708b85602cb7b74025d987d6ff500838c4e4383d95a86fa2c81b" } } @@ -9184,15 +9254,15 @@ }, "3bf53e657d302e66c328eb8569155aac8b14a0076046efd03ed57e78fefe0b98": { "es": { - "updatedAt": "2026-02-25T21:22:39.618Z", + "updatedAt": "2026-02-27T01:10:15.418Z", "postProcessHash": "b580c591bd87d7d3a1333410ef2c89df193538ab6b1039d206ff16ab2c619b1b" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.618Z", + "updatedAt": "2026-02-27T01:10:15.418Z", "postProcessHash": "644f39fac2d83222764f818828f154b69d949c7202c879416fbddbcdaff86609" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.619Z", + "updatedAt": "2026-02-27T01:10:15.419Z", "postProcessHash": "fb116c8c60ff1488474e46773aa7e0b2b106bd96e4c5c6a1aa9ada5fcf1ed206" } } @@ -9247,15 +9317,15 @@ }, "b6ea0c7a225755bacd477acbbc5b8dbd73479fed92ebf8f8efd929e0e8a8a9be": { "zh": { - "updatedAt": "2026-02-25T21:22:39.602Z", + "updatedAt": "2026-02-27T01:10:15.402Z", "postProcessHash": "f53d39e4a7b80b8a9bedb81b3247069a4e81755a32d1bb1d8348096980c01cf2" }, "es": { - "updatedAt": "2026-02-25T21:22:39.603Z", + "updatedAt": "2026-02-27T01:10:15.402Z", "postProcessHash": "a826efeec4fa4189192e630acfa71494cc692aa80dff0719168d716f84509286" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.603Z", + "updatedAt": "2026-02-27T01:10:15.403Z", "postProcessHash": "e057cec31a86d8972d74e812f23ed9f74a802f8a7d8d8d80b6aeb41d398d17f7" } } @@ -9313,15 +9383,15 @@ }, "ffe754492fb43c9ed081f9e4f675fa3f8b6213e56dafdc00640177d402d2b7f1": { "es": { - "updatedAt": "2026-02-25T21:22:39.607Z", + "updatedAt": "2026-02-27T01:10:15.406Z", "postProcessHash": "7758e49d49608814be15fe9e645b128575fc5515a7d45fb9be407ea99e666d78" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.607Z", + "updatedAt": "2026-02-27T01:10:15.406Z", "postProcessHash": "196f10b3d47ebd0858ac5f1e958877a5eef97fc879051bad3479b5b02171224b" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.609Z", + "updatedAt": "2026-02-27T01:10:15.407Z", "postProcessHash": "5b677cd74b13110306acdf349cb3e78fcb4e7abe66d7f54eb2e77b0a9c01a9bb" } } @@ -9404,15 +9474,15 @@ }, "aaac413d73c778b1c130dbf4991589b6f93c401a02a489098c86cb2ab6fdeda2": { "zh": { - "updatedAt": "2026-02-25T21:22:39.701Z", + "updatedAt": "2026-02-27T01:10:15.503Z", "postProcessHash": "b61d28e4dbd1a77875095a4a69cbf6263c6d6ab10833f25acbcc92e9945f5dfb" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.702Z", + "updatedAt": "2026-02-27T01:10:15.505Z", "postProcessHash": "0c971ee7f1b337fafb311c32ff80ff109258f22f0986567fc5c124b48c527de9" }, "es": { - "updatedAt": "2026-02-25T21:22:39.705Z", + "updatedAt": "2026-02-27T01:10:15.507Z", "postProcessHash": "291b10cf877e4af5c871eb712f526a377783b86af10d0452ddbc4c2f13b8dcf5" } } @@ -9509,15 +9579,15 @@ }, "8de82b65bba503a49da0992eb5b41849bfcb0940c15785d7cf86957e27ed421e": { "fr": { - "updatedAt": "2026-02-25T21:22:39.701Z", + "updatedAt": "2026-02-27T01:10:15.504Z", "postProcessHash": "ec8542b6b75f6bdc14b838c89e8a262b37a0646255919d05fa560af6df39f6cc" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.700Z", + "updatedAt": "2026-02-27T01:10:15.502Z", "postProcessHash": "3b909d6dad7d57ab67816acd30722a1aafe7dca6953312d5417b6aca2075f34d" }, "es": { - "updatedAt": "2026-02-25T21:22:39.705Z", + "updatedAt": "2026-02-27T01:10:15.506Z", "postProcessHash": "74b947a7f22877e9069531d056a5321dbd6e6822eab926d67a4778b6e011190a" } } @@ -9547,15 +9617,15 @@ }, "160f5f116c9fa308d3ec6a5259bbd3981661441ed3005e4cecde5805eb67d49f": { "zh": { - "updatedAt": "2026-02-25T21:22:39.596Z", + "updatedAt": "2026-02-27T01:10:15.399Z", "postProcessHash": "b28d42a6f94c40653c2068e6658b348d192f91c3a4d711f865121c8cf9dd1130" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.598Z", + "updatedAt": "2026-02-27T01:10:15.400Z", "postProcessHash": "b296312f68f318d7230611776108eea87a4b53ed201c8aabe3ee79bfd290c562" }, "es": { - "updatedAt": "2026-02-25T21:22:39.600Z", + "updatedAt": "2026-02-27T01:10:15.401Z", "postProcessHash": "8510c54a3b69f2ef327f022a09fb5e0e960dbd13b0700a28548f682f8c98f3ec" } } @@ -9621,15 +9691,15 @@ }, "cb4e5ba4ccf8f00385b82d7b5cb2da3029c4101431a220a28511aabccdc50d24": { "zh": { - "updatedAt": "2026-02-25T21:22:39.692Z", + "updatedAt": "2026-02-27T01:10:15.493Z", "postProcessHash": "9810ad763b2ada4579f4feffe4a3084c146e5db2a7c78013fe1cf95875eea20f" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.693Z", + "updatedAt": "2026-02-27T01:10:15.494Z", "postProcessHash": "11b3868e91bd67425973e98cf18a08918750a847946ef540677d82a6a3db4fa5" }, "es": { - "updatedAt": "2026-02-25T21:22:39.696Z", + "updatedAt": "2026-02-27T01:10:15.496Z", "postProcessHash": "e54dc5168514566d8546c7c483ff2c35669a1129f97e054d52cc972c0e3a6d6c" } } @@ -9740,15 +9810,15 @@ }, "e6339ce35542c0a5015ec2d55de7321f2a4d7ede56e917a83707b0214744813f": { "fr": { - "updatedAt": "2026-02-25T21:22:39.614Z", + "updatedAt": "2026-02-27T01:10:15.413Z", "postProcessHash": "b5fa581694ecb201e289d13c1f059926e690969383c248805125350229253d42" }, "es": { - "updatedAt": "2026-02-25T21:22:39.615Z", + "updatedAt": "2026-02-27T01:10:15.413Z", "postProcessHash": "4420cd00d566ef5ab3e1e5b1eda860d15f9c5cfa48e37a087c9fa8e3be19b3ee" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.615Z", + "updatedAt": "2026-02-27T01:10:15.414Z", "postProcessHash": "770739c81b33d7b389ff8e5bbcd71fcd28d193e6ef7ada15010a72ac9174731d" } } @@ -9864,6 +9934,20 @@ "updatedAt": "2026-02-25T21:22:39.692Z", "postProcessHash": "8ff3ceb2d4873483b1234f8fc1691cbf5c87a0a387db638500e81736ca072c83" } + }, + "c338296ef2144139636fd714513123a4503a7bba3ca6c919ba2b69275fb4c298": { + "fr": { + "updatedAt": "2026-02-27T01:10:15.511Z", + "postProcessHash": "be8e5e824c25b5b191077978e0dc05006ee10e46dcbd57e7756ce2fde9f75f4a" + }, + "zh": { + "updatedAt": "2026-02-27T01:10:15.512Z", + "postProcessHash": "78e5c97c4e5eb6238180cf44d353a080b50b2937fa6d4d50ad1c6188cd083e44" + }, + "es": { + "updatedAt": "2026-02-27T01:10:15.512Z", + "postProcessHash": "7916698a403aa93c17ed684d9b53871056d15f18ebc1df720d2001cff1ba63a5" + } } }, "44c31b0e87eb3f5827bc84bcb16d57dfc76423a199c8e786dde38ca3a8827006": { @@ -9986,15 +10070,15 @@ }, "ede39419e4d413de11f237574334979fb35c7ca9e0c1953c179fac8fbfe49866": { "fr": { - "updatedAt": "2026-02-25T21:22:39.690Z", + "updatedAt": "2026-02-27T01:10:15.492Z", "postProcessHash": "9853292149c4d8141f220b64d43ccb29fd27a9c1ae997974d41df8dcf8eb08c9" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.691Z", + "updatedAt": "2026-02-27T01:10:15.492Z", "postProcessHash": "331c599b0ed529ea81a1f223aec9da318818d2f8516f8e7deafd9628ca6bc345" }, "es": { - "updatedAt": "2026-02-25T21:22:39.695Z", + "updatedAt": "2026-02-27T01:10:15.496Z", "postProcessHash": "82508ad5a7110e5b2d1c166ef36b2ed7b00a659d78f0a60bc691fdec60a98662" } } @@ -10048,15 +10132,15 @@ }, "acfaa578e31469bba912c816947b7f178d4832f82c00d05c3e244edd94887e39": { "es": { - "updatedAt": "2026-02-25T21:22:39.786Z", + "updatedAt": "2026-02-27T01:10:15.604Z", "postProcessHash": "1bf805d28357fd4c6516184713411d605ca067fec74cc0d93dfe220ff49585bb" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.787Z", + "updatedAt": "2026-02-27T01:10:15.605Z", "postProcessHash": "13005ac041b93bd857d8e59aaa93c6efd67ced33e802174e8b0d67f43e384265" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.789Z", + "updatedAt": "2026-02-27T01:10:15.607Z", "postProcessHash": "792476f5828a03d073e4b19df36512d43f64747ae6d95f7ae3be63b9f4fec9e9" } } @@ -10106,15 +10190,15 @@ }, "42b3b8e5f6df092aaed3104aae480cc47309e92cf65f63abfaab2dc4cf4110a5": { "zh": { - "updatedAt": "2026-02-25T21:22:39.737Z", + "updatedAt": "2026-02-27T01:10:15.548Z", "postProcessHash": "1f051c2d961473d3929ef01ce5e21555b641625c8ee4adcc33b94b4ae10d9575" }, "es": { - "updatedAt": "2026-02-25T21:22:39.738Z", + "updatedAt": "2026-02-27T01:10:15.549Z", "postProcessHash": "88211209eb0d899c8625e6edb38fffaa13abc1882abe21f89669ed79778061fd" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.739Z", + "updatedAt": "2026-02-27T01:10:15.550Z", "postProcessHash": "d5ec3e46bab410f255ca0dc8499f3d0fdea710ff5293e44a601830294897e5a4" } } @@ -10122,15 +10206,15 @@ "b75acb2803501aae1bc445e5c4671f7a1cb79a55d21e1658ded84494ddd40dd7": { "2d3ea0369c9e0a1cae4d532293d6570f21f57b514c73f999de5c56c3a56fa419": { "fr": { - "updatedAt": "2026-02-25T21:22:39.723Z", + "updatedAt": "2026-02-27T01:10:15.530Z", "postProcessHash": "2d3ea0369c9e0a1cae4d532293d6570f21f57b514c73f999de5c56c3a56fa419" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.724Z", + "updatedAt": "2026-02-27T01:10:15.531Z", "postProcessHash": "2d3ea0369c9e0a1cae4d532293d6570f21f57b514c73f999de5c56c3a56fa419" }, "es": { - "updatedAt": "2026-02-25T21:22:39.724Z", + "updatedAt": "2026-02-27T01:10:15.532Z", "postProcessHash": "2d3ea0369c9e0a1cae4d532293d6570f21f57b514c73f999de5c56c3a56fa419" } } @@ -10188,15 +10272,15 @@ }, "74e8824ab6015987ea1c1e76d886e29be3e50a5056d4eda7e1624f777ac215c6": { "fr": { - "updatedAt": "2026-02-25T21:22:39.771Z", + "updatedAt": "2026-02-27T01:10:15.569Z", "postProcessHash": "f8f7095ac29294a540876b6dfd693f57ae27a92b9b0d9d302d549f638893714f" }, "es": { - "updatedAt": "2026-02-25T21:22:39.772Z", + "updatedAt": "2026-02-27T01:10:15.569Z", "postProcessHash": "6d89498ac65b6a916b1f9d4805cb0151c8c835f4f1b218b67ba6b50ae4eda15c" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.775Z", + "updatedAt": "2026-02-27T01:10:15.576Z", "postProcessHash": "9136a16761f64bd9812875cd273bafd2ac8a66bde86da41e38927bfa9f2346f0" } } @@ -10296,15 +10380,15 @@ }, "789b4f37793f77c4abe5b2712c02238ad63817d56b173e2c9b91018fdcebb721": { "fr": { - "updatedAt": "2026-02-25T21:22:39.743Z", + "updatedAt": "2026-02-27T01:10:15.555Z", "postProcessHash": "f1f7efc214258b9cc8d40ffe9bd59f81ef83c40f74ea45a44c01f9e72ae4c5de" }, "es": { - "updatedAt": "2026-02-25T21:22:39.743Z", + "updatedAt": "2026-02-27T01:10:15.556Z", "postProcessHash": "9a6f28b0dd8a496aaaa7fa3445cee5cb7ed3a5477e0037e5963f719987b7285e" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.746Z", + "updatedAt": "2026-02-27T01:10:15.559Z", "postProcessHash": "fe431ffdf0542c5d8bcce2330390ccc473a793b20d7c49bc7fd938491db87f99" } } @@ -10337,15 +10421,15 @@ }, "709f1e1b33eeed8ad53cb13ea4e727a8215b387114ecdb7e2c723297a4fd9289": { "fr": { - "updatedAt": "2026-02-25T21:22:39.741Z", + "updatedAt": "2026-02-27T01:10:15.553Z", "postProcessHash": "627e70389bb5a0c6524205c3cae4ddaffbc564d35d567feabad9e8e4684440c4" }, "es": { - "updatedAt": "2026-02-25T21:22:39.742Z", + "updatedAt": "2026-02-27T01:10:15.554Z", "postProcessHash": "153907d08def532246087a1aa48377e29692af601c662a98148da323a3bc34ec" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.742Z", + "updatedAt": "2026-02-27T01:10:15.555Z", "postProcessHash": "d2ef4c0b13a67e2baeedbc29b455d87422ae7cc43858e689f6f72a50e8995af1" } } @@ -10400,6 +10484,20 @@ "updatedAt": "2026-02-25T21:22:39.664Z", "postProcessHash": "73b1c79ce04dedcda42e25bf73ee6b3212283260267522f88f58c4d6cc9c6d84" } + }, + "580ea7b0a8ec24a7c1e9c654196c653a68aa7bdb4a2771f758f34d59b73b26a1": { + "es": { + "updatedAt": "2026-02-27T01:10:15.582Z", + "postProcessHash": "e051bfa40277a3f497334f47a30f2e71027506be57574bb1e4c26eccf2a6d2f3" + }, + "fr": { + "updatedAt": "2026-02-27T01:10:15.584Z", + "postProcessHash": "d37f0f378968a73f55b39cc6ffde9b52759de18d49b897894aa4adc0303dccc1" + }, + "zh": { + "updatedAt": "2026-02-27T01:10:15.584Z", + "postProcessHash": "7e91557fb7eea7afcd647745ffad3280ab5c2d8efab7d8e10cd0feccc684390d" + } } }, "81ac5f2b69baef8cd4fd44c2689f9e3f7706a240ec69bdb9fdf435cf454291d7": { @@ -10616,15 +10714,15 @@ }, "4ec7a8a7b8a9f1902e1f8a4a47f0d8b03f9c907eeae3b967aa3f1ec48e524552": { "es": { - "updatedAt": "2026-02-25T21:22:39.809Z", + "updatedAt": "2026-02-27T01:10:15.643Z", "postProcessHash": "622029527a1ab8d3eed8d120f6570e2351b8505f9e212f038f10c7b479fab1ea" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.810Z", + "updatedAt": "2026-02-27T01:10:15.644Z", "postProcessHash": "a5f29164e129533e41a3c72dd6c0c433bbdfac9bef8daf4370bf749ed8899316" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.811Z", + "updatedAt": "2026-02-27T01:10:15.646Z", "postProcessHash": "bc544e0880c26482f8d6c9ba8f28be921ce14977308dedc453dd26232fc3db52" } } @@ -10731,6 +10829,20 @@ "updatedAt": "2026-02-25T21:22:39.658Z", "postProcessHash": "d5f4acd37da75353c4da7775bb4d6dee19433308a0fd075916c41abca972b311" } + }, + "5694ef7b8d52ae3b15cb65d6c4f1a56d28cf19bfa475241ca02f27202ec8ec5d": { + "zh": { + "updatedAt": "2026-02-27T01:10:15.583Z", + "postProcessHash": "568101b6034984ac536a422c484e63f12c22b2f7c85df293806c78024157215b" + }, + "es": { + "updatedAt": "2026-02-27T01:10:15.585Z", + "postProcessHash": "188cdea9a69147614bc3eaa6a2b031cac6e5967bf692d2dca1b6a03ddf5ee312" + }, + "fr": { + "updatedAt": "2026-02-27T01:10:15.585Z", + "postProcessHash": "1b7200c17e4a1a70668709828b6960c49d796b2e48aca1217fc3202d7cc8cb8f" + } } }, "2d1d6b2b8d4aec332b453117f55f18188ee094a264055732a15f29a2a954dd56": { @@ -10772,15 +10884,15 @@ }, "c889b5cf6462e6a9e6b4ef3de28af6ce73aa33fa297f4923adc0c9fc3f347e5c": { "es": { - "updatedAt": "2026-02-25T21:22:39.773Z", + "updatedAt": "2026-02-27T01:10:15.571Z", "postProcessHash": "57f6be4d50de9a1b69d3c6fbdd935a54c91806d93fdcaf9f3e32f93a00fd55de" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.773Z", + "updatedAt": "2026-02-27T01:10:15.572Z", "postProcessHash": "e8d6f339a381143a0f4bdda97e7b5327947e4827b1395dc5d58b5f1cf2a5ae26" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.774Z", + "updatedAt": "2026-02-27T01:10:15.573Z", "postProcessHash": "2865c5a4d907fe77512ad9ca6f0c87933ff18542dd9d7cbf4aa1183d103cefb1" } } @@ -10832,15 +10944,15 @@ }, "4eae604426bf8aea4e211d29fbdb8293ad317b800322c61d893101024cdadff0": { "fr": { - "updatedAt": "2026-02-25T21:22:39.661Z", + "updatedAt": "2026-02-27T01:10:15.460Z", "postProcessHash": "d050cda4da0cd6807b3671ca7719f9e4a3d0592935b40fe0b6e5776c08314ac8" }, "es": { - "updatedAt": "2026-02-25T21:22:39.661Z", + "updatedAt": "2026-02-27T01:10:15.460Z", "postProcessHash": "74cd4f6452e34e9ff2ebedf20d2113f6b3e081a079084e5bc367a5a6ffc6d23a" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.663Z", + "updatedAt": "2026-02-27T01:10:15.462Z", "postProcessHash": "d181d20d3d4ad8e044f5e7ad78b356a816c999b73cd5a336403e87ceae9f02e8" } } @@ -10881,15 +10993,15 @@ }, "b50bec2f6fbc20f925edb6d286c9764aae8d9649421d2ee0556e6a4354954892": { "es": { - "updatedAt": "2026-02-25T21:22:39.662Z", + "updatedAt": "2026-02-27T01:10:15.461Z", "postProcessHash": "7c00710bb6230a11a5e4a58d7832cd1ac3a4880c965fc054693ba27f275a594d" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.662Z", + "updatedAt": "2026-02-27T01:10:15.461Z", "postProcessHash": "e3d8dc2fccf2b0e4df0e27bea8ed2f4158fad71db1bcc9f7f3fe9f9d896d6532" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.663Z", + "updatedAt": "2026-02-27T01:10:15.462Z", "postProcessHash": "268c9b1e68fd46219de27c7862aacdb2c2b9df92f8c7d05ecc8c5bfef95131e5" } } @@ -10958,15 +11070,15 @@ }, "20b7347758388583c203f0052281d7a6bdf78dc88359401240a1477a2f4815db": { "es": { - "updatedAt": "2026-02-25T21:22:39.774Z", + "updatedAt": "2026-02-27T01:10:15.574Z", "postProcessHash": "bd2f14232c7c825533dc429202a7353178b231a2ac4271747af673a1d2b1fe08" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.774Z", + "updatedAt": "2026-02-27T01:10:15.574Z", "postProcessHash": "f6ce4c36e3d5ba566a42b03a89f09e6b2897de42de570a80be655da2f83c3193" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.775Z", + "updatedAt": "2026-02-27T01:10:15.575Z", "postProcessHash": "5067a97b672278d9d409ef9b49730e22d1c06d5c1aefb5ce41a3322a59c12245" } } @@ -11024,15 +11136,15 @@ }, "3e5624c4db5f017e44ecc8f54c4cd49c8e131a33434b6766352cad02115167d0": { "es": { - "updatedAt": "2026-02-25T21:22:39.771Z", + "updatedAt": "2026-02-27T01:10:15.568Z", "postProcessHash": "dd9ea99bfe41b4f6ef150b2ccab717ee8f2a77a3b9cc5d1c0e63b472a9eceb56" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.772Z", + "updatedAt": "2026-02-27T01:10:15.570Z", "postProcessHash": "cb46b2a05f3b5821f1eb86d50386fa52ef26b7e704c6e999898aa1c667398eb2" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.773Z", + "updatedAt": "2026-02-27T01:10:15.572Z", "postProcessHash": "2dd3d34542780272abad73926a5ddfaa990c3fbcd4b03e1049b2ae376d40b5d2" } } @@ -11101,15 +11213,15 @@ }, "0a5cf282774169501138586032ba2e9e32d22021465523bd83360611aae61bee": { "es": { - "updatedAt": "2026-02-25T21:22:39.671Z", + "updatedAt": "2026-02-27T01:10:15.469Z", "postProcessHash": "bf6cdb9c480ba4cdfd2c7609d3ec39dce5126aec52471839b0ef63ff83065428" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.671Z", + "updatedAt": "2026-02-27T01:10:15.469Z", "postProcessHash": "cec402b92b31544d837f8e85e3bdf3df70475ced1923fabb72b47d23489f8502" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.672Z", + "updatedAt": "2026-02-27T01:10:15.471Z", "postProcessHash": "6806446adb3c493603b689f7c3059b3fea3e918dbc5aae7bd8882e72fccc5ac9" } } @@ -11139,15 +11251,15 @@ }, "8868b228fc8a687b133035b70a0de2ce37b05bf402b2e01848c326ea1dea023f": { "fr": { - "updatedAt": "2026-02-25T21:22:39.656Z", + "updatedAt": "2026-02-27T01:10:15.457Z", "postProcessHash": "2dfa29d17529516813e4f9d5cac8869f0e8443242aed5f9e9c371ff3ea3935ea" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.657Z", + "updatedAt": "2026-02-27T01:10:15.458Z", "postProcessHash": "0df0fb5ee9eaeaf7bcbfac87a0997d52db99c11792c7b09d1d7df76d5be6b301" }, "es": { - "updatedAt": "2026-02-25T21:22:39.659Z", + "updatedAt": "2026-02-27T01:10:15.459Z", "postProcessHash": "15cd17e2ec537cafb081a4ef7d7dc769843a0815247a25db22c877b1a3bba11e" } } @@ -11241,15 +11353,15 @@ }, "fbaf7f39693860ba352f74453a560e9a7119858dc06718b22ba6ae29401a9d86": { "zh": { - "updatedAt": "2026-02-25T21:22:39.743Z", + "updatedAt": "2026-02-27T01:10:15.557Z", "postProcessHash": "bda00a312c7387aaf719d5bf3cf490d2d26907b7ca23b6d028edc4084bd82fd0" }, "es": { - "updatedAt": "2026-02-25T21:22:39.745Z", + "updatedAt": "2026-02-27T01:10:15.558Z", "postProcessHash": "0c514d4086be3560107c89fbd997c1cbd9346112751a192d7a987961d8bf6998" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.747Z", + "updatedAt": "2026-02-27T01:10:15.561Z", "postProcessHash": "8eb43787d5f8f7c93eae537376d4ad004a5ada6f02085f26ef5e07354954604e" } } @@ -11597,6 +11709,20 @@ "updatedAt": "2026-02-25T21:22:39.813Z", "postProcessHash": "a2120c87bafbc8fb7f81557d0c3d09c24c6312053b400ffecd88cb444c2d84bb" } + }, + "d0dccd273746ab874fe8507783460a0d9987de6f6110e61327dd211998b48565": { + "zh": { + "updatedAt": "2026-02-27T01:10:15.647Z", + "postProcessHash": "9001ad737b632480e0b04ddd742005e83e03abab466978c3a9235191b9309c5b" + }, + "fr": { + "updatedAt": "2026-02-27T01:10:15.649Z", + "postProcessHash": "8aa89e91fe73228760f3206398a0cba0b33908bc10f0b8790c90ab27d07cdd80" + }, + "es": { + "updatedAt": "2026-02-27T01:10:15.650Z", + "postProcessHash": "59d107dc203edbcabb7cc976c7ea9eed950142e0f62dd749fce729075037c143" + } } }, "06cb030b3ffd741cf54d6e45d012198a88112770614d9f4e2d32906dc7d49280": { @@ -11660,6 +11786,20 @@ "updatedAt": "2026-02-25T21:22:39.801Z", "postProcessHash": "9db25684d8c3c78e8ee3a8bbd0bc8548b99d20099f5c0a57cc2c9843fc10228e" } + }, + "28cde68965d28ebc01dd8803ad0ee789c3b53aa659b5ab89ce274c6cb4e2577b": { + "zh": { + "updatedAt": "2026-02-27T01:10:15.654Z", + "postProcessHash": "9566558832cd6f57f004ec3f9ba1dce62438cf583cb68d1559e1393a1d56b4e3" + }, + "es": { + "updatedAt": "2026-02-27T01:10:15.655Z", + "postProcessHash": "d53f2a7aaa4ca333a643154aaa28d7d93058e12222f53185b856d8ecedb8f6f3" + }, + "fr": { + "updatedAt": "2026-02-27T01:10:15.656Z", + "postProcessHash": "9db25684d8c3c78e8ee3a8bbd0bc8548b99d20099f5c0a57cc2c9843fc10228e" + } } }, "7c22d261916db6f9ac1c277f3b1a92fdc3a1d1011483ca9a74c8eb13ca78a50c": { @@ -11687,15 +11827,15 @@ }, "e5f66a275721a9cc17c973319dccecc1dac2ac8dee59f4ab039032125acac1a5": { "zh": { - "updatedAt": "2026-02-25T21:22:39.779Z", + "updatedAt": "2026-02-27T01:10:15.590Z", "postProcessHash": "957d17811fdc1a0a0bfefd536dc68c8a72663d76bf22cc3511d35a3c8684d9ef" }, "es": { - "updatedAt": "2026-02-25T21:22:39.777Z", + "updatedAt": "2026-02-27T01:10:15.587Z", "postProcessHash": "fe0dc117f70e9942557c15b5cee3f12455c69e421e062504d8016ae6923bce50" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.788Z", + "updatedAt": "2026-02-27T01:10:15.606Z", "postProcessHash": "cc22fdbc75d6087d1c7fe491329801246f9629ebcab8e7e68b078a8559e584b4" } } @@ -11731,15 +11871,15 @@ }, "86089fad9f70f2674372c36d94b197335c68fe998f576bc45be728743b351cb9": { "zh": { - "updatedAt": "2026-02-25T21:22:39.735Z", + "updatedAt": "2026-02-27T01:10:15.547Z", "postProcessHash": "29757b143089b41bd019314aaeed4bb973af055bc2931572b06589da7ef655be" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.736Z", + "updatedAt": "2026-02-27T01:10:15.548Z", "postProcessHash": "b188ade5a94905236c76e7d32671e07fd3164eefaf10cf062b69b9c3523840ad" }, "es": { - "updatedAt": "2026-02-25T21:22:39.739Z", + "updatedAt": "2026-02-27T01:10:15.551Z", "postProcessHash": "dcc5cc6056c9a2f1b8473cdb4906fb449f9754ef9d659dfe1365b5e58623ad53" } } @@ -11817,15 +11957,15 @@ }, "ddeb7f2354190cbc31ab09c6f70e517fff11b85b0d95e50c7db0f94bb98f084b": { "zh": { - "updatedAt": "2026-02-25T21:22:39.783Z", + "updatedAt": "2026-02-27T01:10:15.596Z", "postProcessHash": "caca14a7c8131127e6530e569eea0ea790aec3703ba1941af9282a54fa82f47c" }, "es": { - "updatedAt": "2026-02-25T21:22:39.709Z", + "updatedAt": "2026-02-27T01:10:15.602Z", "postProcessHash": "01eb4ba640b3f9904e85a6843a95902dc1066cff0458214269390403563839a5" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.711Z", + "updatedAt": "2026-02-27T01:10:15.610Z", "postProcessHash": "8b3091ec7ab69e425ed7b4bbefc8f04ef65ef0d90f8a803b446ad272a9ac04e7" } } @@ -11855,15 +11995,15 @@ }, "f07a3c65b544b1b6c3631e472056dfd51f9fbc79e28fe7073271fa963f1355a2": { "zh": { - "updatedAt": "2026-02-25T21:22:39.707Z", + "updatedAt": "2026-02-27T01:10:15.513Z", "postProcessHash": "4496ca98a01e7502324d30bf0469b59ce40c1db2b03a86b44353ea82fd7ea120" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.708Z", + "updatedAt": "2026-02-27T01:10:15.514Z", "postProcessHash": "08ca06a1338ba7049b87366bddb334e923088a7206035d664245d22801820110" }, "es": { - "updatedAt": "2026-02-25T21:22:39.711Z", + "updatedAt": "2026-02-27T01:10:15.516Z", "postProcessHash": "b563eb2cea6afc1153afe426a3ac992bd028ce5fa354232e994b9a3a5d449291" } } @@ -11893,15 +12033,15 @@ }, "9af3d645babdeca987fedca80aae0b76816b37e30bf3a25fc1db00ead3f1bca8": { "es": { - "updatedAt": "2026-02-25T21:22:39.777Z", + "updatedAt": "2026-02-27T01:10:15.587Z", "postProcessHash": "33c20bd73a7a8748f16da13e403820f6f6966387d9cfea733ef5e68057ec6cc6" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.778Z", + "updatedAt": "2026-02-27T01:10:15.589Z", "postProcessHash": "c6c4a678806e221fab1713a0b18cf048bbf05300f7c6c9308b94c8c30c47d297" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.780Z", + "updatedAt": "2026-02-27T01:10:15.592Z", "postProcessHash": "fe0bdd6098714b57e215235c69b6041a271ff0bfd974868e95c18b57981c0836" } } @@ -11931,15 +12071,15 @@ }, "6958bd474f6a4553c34c8b0c0941dc296fda94522707820277c2a5d0c951d3d9": { "fr": { - "updatedAt": "2026-02-25T21:22:39.782Z", + "updatedAt": "2026-02-27T01:10:15.594Z", "postProcessHash": "9dab242a07567b150cbdce7d855a21d5ebbdde9ebbb61991d4d2d4e94dcdae59" }, "es": { - "updatedAt": "2026-02-25T21:22:39.784Z", + "updatedAt": "2026-02-27T01:10:15.598Z", "postProcessHash": "098c8d43ec5bc487807f87a1cd4206ec9c2d8e3c3067e471dc14d0326bc4c134" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.784Z", + "updatedAt": "2026-02-27T01:10:15.600Z", "postProcessHash": "57a5c14521091112adecddb1fe39f246022dbfcbb42091857316c42cc6437584" } } @@ -11969,15 +12109,15 @@ }, "9a8eb49e54fa21c3ff613191e3d1b289989902d0fa2e4ba51397002c40e93870": { "zh": { - "updatedAt": "2026-02-25T21:22:39.785Z", + "updatedAt": "2026-02-27T01:10:15.601Z", "postProcessHash": "266d3597b0059ee6955b0d5a84ddb285c34240690f93ba963cb973e895b61350" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.790Z", + "updatedAt": "2026-02-27T01:10:15.609Z", "postProcessHash": "bfaf25829776d4049319ebbabd5c6a3537254d6aaded2c22d0e680e9258b9144" }, "es": { - "updatedAt": "2026-02-25T21:22:39.790Z", + "updatedAt": "2026-02-27T01:10:15.610Z", "postProcessHash": "b1bd6004b9a39368ebbe1b63ed8f9eaaff34054d720e733d69021cbf3de77ce2" } } @@ -12007,15 +12147,15 @@ }, "1154edcbe3fdbda2eae42bc99ecc5bb63cae52c0474d507872da2f6dc8e7f297": { "fr": { - "updatedAt": "2026-02-25T21:22:39.787Z", + "updatedAt": "2026-02-27T01:10:15.605Z", "postProcessHash": "21b5b35c9c3d7707093d026952bafea8cc25dbf0bcff32e2aa86cb21e76afdec" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.785Z", + "updatedAt": "2026-02-27T01:10:15.601Z", "postProcessHash": "5253edd586464bf07b7b09aac7caa2e58b0153736207e6f57a2100c7da6252cb" }, "es": { - "updatedAt": "2026-02-25T21:22:39.789Z", + "updatedAt": "2026-02-27T01:10:15.608Z", "postProcessHash": "425623b37f056b00d0ac9ed37f587ef02be5d38f06c26325833f28d0297440d6" } } @@ -12122,6 +12262,20 @@ "updatedAt": "2026-02-25T21:22:39.806Z", "postProcessHash": "440757ee9382e10b9be73b6024a02e99e240498c02afa164b5da0a15ac71b5f5" } + }, + "ae378d5b7e55646ce3304777c2f02379b8b3aaf5c7ad9779831441dc55e80db8": { + "es": { + "updatedAt": "2026-02-27T01:10:15.651Z", + "postProcessHash": "2cbf5b9d6d5a41ab046b1550d92b488819d97dcdc15d28a8b2a7511da4ab895f" + }, + "zh": { + "updatedAt": "2026-02-27T01:10:15.652Z", + "postProcessHash": "42d85381b1b7f797751caedfd24ae27be40ee35859b61098eb228d051c7da24d" + }, + "fr": { + "updatedAt": "2026-02-27T01:10:15.653Z", + "postProcessHash": "6ae5b5254d24e47b6473e989eed1f3b2ad8019eed86ab8263bb96f69353a6e40" + } } }, "42629c414f361b9276d0b2f1cdc5dcd31ee3b54c10cd6d33fc1d0a1054a00f44": { @@ -12166,15 +12320,15 @@ }, "c46494b3996003b007adaedfc4b41d29182d0e0f5b84b2b60152384a72e79e20": { "fr": { - "updatedAt": "2026-02-25T21:22:39.726Z", + "updatedAt": "2026-02-27T01:10:15.533Z", "postProcessHash": "caca5abd5fa48f6cef6be25ae7a65ab9c00177382530050f0f4afd2849ecb976" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.727Z", + "updatedAt": "2026-02-27T01:10:15.534Z", "postProcessHash": "344f26ae3d47271b73de499e7db4ef133c2627fe93bb8b0f07879ea45337ffe9" }, "es": { - "updatedAt": "2026-02-25T21:22:39.727Z", + "updatedAt": "2026-02-27T01:10:15.535Z", "postProcessHash": "db4c0b9ba2d416e484c7b32510acadcc5eb488b28258e3c29db48b18efafc85a" } } @@ -12207,15 +12361,15 @@ }, "9b2521d77dcb0f3a1b076db93f0fce6fa228d763d08823a4923240744a33b6e4": { "es": { - "updatedAt": "2026-02-25T21:22:39.713Z", + "updatedAt": "2026-02-27T01:10:15.518Z", "postProcessHash": "19cb440bb33042f18c726298f421e3819fa5b0ca02effb9d0d5be85cedc98a89" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.715Z", + "updatedAt": "2026-02-27T01:10:15.520Z", "postProcessHash": "77901b25a20d95a27bcb867a38ef4a439703ca53fa9494b4c05e5867643b6320" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.719Z", + "updatedAt": "2026-02-27T01:10:15.525Z", "postProcessHash": "35120c1e9cf62caebfce2e2bda8fae590f34a7eb6d3c526cbf7483ece98d2022" } } @@ -12248,15 +12402,15 @@ }, "3b4d746118c03d3f1689a6484a77b1123bdb898858cfb21d0c74f7c7530e5106": { "es": { - "updatedAt": "2026-02-25T21:22:39.715Z", + "updatedAt": "2026-02-27T01:10:15.520Z", "postProcessHash": "158a03497834c5483055cd5500cb606f423c04906604f6c74b2ef8f9148dcbb0" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.717Z", + "updatedAt": "2026-02-27T01:10:15.522Z", "postProcessHash": "3c2b6dee76f34f1e2629226e79b5f14c0ab4c6d2e3e2d2b908c29d99db767e6a" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.718Z", + "updatedAt": "2026-02-27T01:10:15.524Z", "postProcessHash": "6b6b920d5ecd82b7877a7dbe1681ab8266680167e0ad75ba6deb04edf83d4477" } } @@ -12289,15 +12443,15 @@ }, "1aa9d2a0f653714017d2595d9219aac463355da86f4c5a7d4c4696bbb1d4ae8b": { "zh": { - "updatedAt": "2026-02-25T21:22:39.712Z", + "updatedAt": "2026-02-27T01:10:15.516Z", "postProcessHash": "3f48bc4b124ed5e38bd6e4cf974f80212f3b88b9d6e5a94f865c683fcb02fb03" }, "es": { - "updatedAt": "2026-02-25T21:22:39.716Z", + "updatedAt": "2026-02-27T01:10:15.521Z", "postProcessHash": "f9c9a37d205e9ce823edc1797661247aba4f5671f1c2ca3abbca2854dd42d93a" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.717Z", + "updatedAt": "2026-02-27T01:10:15.523Z", "postProcessHash": "70b7981c1bbd9db6da6a1d3373aa7a7cd5c2e77f7d949ca4e5da2b464597ee7d" } } @@ -12330,15 +12484,15 @@ }, "08f9dd3e813bd43ed49aaa064fdf92cb93b24e9b4681dbe1662083f135aa7a56": { "es": { - "updatedAt": "2026-02-25T21:22:39.712Z", + "updatedAt": "2026-02-27T01:10:15.517Z", "postProcessHash": "5dd24fae76476de9d20ca64a3f04352c0f7810de566260ee53744ae54e1830c5" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.713Z", + "updatedAt": "2026-02-27T01:10:15.517Z", "postProcessHash": "a2f32cd38d1c834c2b4da83b5fc62eba6e058c030fb2f1b09d8657793d3b702b" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.718Z", + "updatedAt": "2026-02-27T01:10:15.524Z", "postProcessHash": "98d91777bf0ccb78f4c52da809daa5d58b3429bec7e47528e745662cdab00a15" } } @@ -12385,15 +12539,15 @@ }, "a09d0a1e722492938d9985a7dafcbac1018303df26b2b14e58d6e331ac12d83a": { "es": { - "updatedAt": "2026-02-25T21:22:39.714Z", + "updatedAt": "2026-02-27T01:10:15.519Z", "postProcessHash": "544dd5f4200b70a1a9faffaf88ab001aef72abadccc1f942d5da1383e06bb58c" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.714Z", + "updatedAt": "2026-02-27T01:10:15.519Z", "postProcessHash": "48c44a45ad6c6b96afc96eb3743d3c144fb8844b09bc89fcab0b3dbc71b8e544" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.716Z", + "updatedAt": "2026-02-27T01:10:15.522Z", "postProcessHash": "1e0e3fe0cd240d987b48c2e297048e3e1331db5342a664ac82882f0e65daa4f3" } } @@ -12521,15 +12675,15 @@ }, "5768e492c5b9d733ed7244e251eb00962e3d6c654afc0682f60a4fdc6247c591": { "es": { - "updatedAt": "2026-02-25T21:22:39.728Z", + "updatedAt": "2026-02-27T01:10:15.536Z", "postProcessHash": "4934ac7167618c9719912ac85e46d026dd80fe36230d61b2316047dc3724b9b7" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.728Z", + "updatedAt": "2026-02-27T01:10:15.536Z", "postProcessHash": "4bb8c2a3aa3d5c8ea31c2e3323ec28371117cd031506ff1fefbba846a0161a35" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.729Z", + "updatedAt": "2026-02-27T01:10:15.537Z", "postProcessHash": "3dc28e9e472a43f739850f7cf9cc1e62c0c89ba2ad8c000ee10ff396958901b6" } } @@ -12551,15 +12705,15 @@ }, "51bcf4d81ac47aad8b4d4d0ee489e8af7924906fc1ffbc68bc7543d1c360bfdd": { "fr": { - "updatedAt": "2026-02-25T21:22:39.719Z", + "updatedAt": "2026-02-27T01:10:15.526Z", "postProcessHash": "4a7fdbba23db103898b33138a2510ec97a20020fcf7c7a28701dfe98145ea486" }, "es": { - "updatedAt": "2026-02-25T21:22:39.720Z", + "updatedAt": "2026-02-27T01:10:15.527Z", "postProcessHash": "4a7fdbba23db103898b33138a2510ec97a20020fcf7c7a28701dfe98145ea486" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.720Z", + "updatedAt": "2026-02-27T01:10:15.528Z", "postProcessHash": "4a7fdbba23db103898b33138a2510ec97a20020fcf7c7a28701dfe98145ea486" } } @@ -12628,15 +12782,15 @@ }, "d105f05c082a3d197f6e5df69d51463c104e388b130286bf01f3a361621acdea": { "zh": { - "updatedAt": "2026-02-25T21:22:39.643Z", + "updatedAt": "2026-02-27T01:10:15.445Z", "postProcessHash": "0665f9a804cb1ba298ea6933f67bb07bdf9c92042f5671c26d0c604f06d82b06" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.644Z", + "updatedAt": "2026-02-27T01:10:15.445Z", "postProcessHash": "ffb5d7b69b4b53866f2b28a5429a4cd74e1a766f82545dafb482a26c880a4d73" }, "es": { - "updatedAt": "2026-02-25T21:22:39.645Z", + "updatedAt": "2026-02-27T01:10:15.446Z", "postProcessHash": "62297e67780ea8029278b720cbda340eafe167025138ea9bfa59eca38575979f" } } @@ -12677,15 +12831,15 @@ }, "eaf3b675306027bf04595dca52e74dd1614edc320fafff007530df01cbb22259": { "zh": { - "updatedAt": "2026-02-25T21:22:39.792Z", + "updatedAt": "2026-02-27T01:10:15.625Z", "postProcessHash": "a3587b20ebaaff884bc5a71b020088e7cef33d8b63b3bd39058bea7096fd54d8" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.793Z", + "updatedAt": "2026-02-27T01:10:15.626Z", "postProcessHash": "4171929429febde0247535e00c036a61f0a1d8975ce6750b115cb3065f6a98a5" }, "es": { - "updatedAt": "2026-02-25T21:22:39.794Z", + "updatedAt": "2026-02-27T01:10:15.627Z", "postProcessHash": "1a90247d6776c6905777a0fadee52f8e5ba0dadaf221f8ec6bb0fe865ca109bd" } } @@ -12715,15 +12869,15 @@ }, "df2826252d76bef142551e69ee162b565fd37e0e63cdd9159fb925f1f911f524": { "es": { - "updatedAt": "2026-02-25T21:22:39.795Z", + "updatedAt": "2026-02-27T01:10:15.629Z", "postProcessHash": "adde6a2d0fb1ee3bca85e28e51569c0f94aab798902466f85edb4b009a7fd7df" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.795Z", + "updatedAt": "2026-02-27T01:10:15.630Z", "postProcessHash": "aa37022925bf21be39c3527ab3027b797f5665fafa64c76b81afff460fcc0ff6" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.794Z", + "updatedAt": "2026-02-27T01:10:15.628Z", "postProcessHash": "27f8ce2d73d590a03d8a02df646039b494324138621ea9a0f03c25c3d4448950" } } @@ -12778,6 +12932,20 @@ "updatedAt": "2026-02-25T21:22:39.802Z", "postProcessHash": "526f4175cde280ff4dddbe9990e96c030f9296385cfc85e5acdcad39611cb079" } + }, + "b3c4dc531cb5c6430de3f3acd7104d5c9245e869b9c9091658981737b6831a35": { + "zh": { + "updatedAt": "2026-02-27T01:10:15.658Z", + "postProcessHash": "79ec9d35577f4249ba1a4b421fd031dcef3a68d443361f875056f9ffc1727dd6" + }, + "es": { + "updatedAt": "2026-02-27T01:10:15.659Z", + "postProcessHash": "526f4175cde280ff4dddbe9990e96c030f9296385cfc85e5acdcad39611cb079" + }, + "fr": { + "updatedAt": "2026-02-27T01:10:15.660Z", + "postProcessHash": "effbd1d7ce33aca98fb60d5eaec6ec1afadddb3c45dd29b0359a2d76a765b588" + } } }, "ce05b4d5e5ef4cfa0eceaa768aa9c709fe0c35c6503a1130ee46599071e76b86": { @@ -12805,15 +12973,15 @@ }, "4bc387e1ff76fddd88238476d65b74ade4cc2f449ce36eb3bc8b85f770c3f490": { "es": { - "updatedAt": "2026-02-25T21:22:39.780Z", + "updatedAt": "2026-02-27T01:10:15.591Z", "postProcessHash": "052f957adbf550b514f0b00fb1c6ce4d1f05ee2a1e8c78c4450c7ef4515ce0c6" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.781Z", + "updatedAt": "2026-02-27T01:10:15.593Z", "postProcessHash": "890f0487febc4d3a384c1258113cff8ca9f4897a21aa5f02b498f09c3c436a91" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.781Z", + "updatedAt": "2026-02-27T01:10:15.593Z", "postProcessHash": "4c92ed5694ff42e4e0b3df5381b266d95cc2b19b95ff2b9ee323faed4f1b853b" } } @@ -12854,15 +13022,15 @@ }, "2e6a80a1a0b8e8424f493d4c864eb475de15f72d6014090c74d48ecd2104428c": { "zh": { - "updatedAt": "2026-02-25T21:22:39.792Z", + "updatedAt": "2026-02-27T01:10:15.624Z", "postProcessHash": "5ce156680db30f828548b0a9a8396e18e5a3af8bb9ff529252ac1fe1be223ce4" }, "es": { - "updatedAt": "2026-02-25T21:22:39.792Z", + "updatedAt": "2026-02-27T01:10:15.624Z", "postProcessHash": "ad231391fa7696cac3044bf4464023ffe8859f8bc46a24de55c6d25a4e495ce0" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.793Z", + "updatedAt": "2026-02-27T01:10:15.626Z", "postProcessHash": "e1ec1af3e9ff1ce8f3858e2cdb4ecba29883568556230feb2676ae4fbb4eb1b1" } } @@ -12906,15 +13074,15 @@ }, "a44008273723fd04ac7e69e086eb43dcc6b98999b351cf6bbb00c93d86950ebc": { "zh": { - "updatedAt": "2026-02-25T21:22:39.797Z", + "updatedAt": "2026-02-27T01:10:15.633Z", "postProcessHash": "15c687cde3d5141b8595af275d988a845142d38f96618c341c82a72cd00135df" }, "es": { - "updatedAt": "2026-02-25T21:22:39.797Z", + "updatedAt": "2026-02-27T01:10:15.635Z", "postProcessHash": "2c67744772576b049509851e7540269c273f4a4d4460f1d07f30b72c4cd252e8" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.798Z", + "updatedAt": "2026-02-27T01:10:15.635Z", "postProcessHash": "c85477b554dd59d278ac41e4c0d6643100a48b740b17f36e84c2f170504fec29" } } @@ -12944,15 +13112,15 @@ }, "ec813e998591f0d4114ebde9d66a49f01a39db4bc9c058a1340c41d38731a456": { "fr": { - "updatedAt": "2026-02-25T21:22:39.778Z", + "updatedAt": "2026-02-27T01:10:15.588Z", "postProcessHash": "79c7dd77372a39e9d196a3a3d40f9e8355b5def4f469e2919fb82965f86e63ce" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.789Z", + "updatedAt": "2026-02-27T01:10:15.606Z", "postProcessHash": "53027cd6eda8c980f27d3105ee31e080fff8cf3e7c52f66c3cf8c698a6da648b" }, "es": { - "updatedAt": "2026-02-25T21:22:39.786Z", + "updatedAt": "2026-02-27T01:10:15.603Z", "postProcessHash": "4c93a613201a4ab30ddb7f265310a03f56e70b0cb53860b0cb31413b79f02b6d" } } @@ -12993,15 +13161,15 @@ }, "725c514c7f51a988e1a1f21ba6c44e514520aa57b3b2f7ba21b45751dcfac18d": { "es": { - "updatedAt": "2026-02-25T21:22:39.791Z", + "updatedAt": "2026-02-27T01:10:15.611Z", "postProcessHash": "40e11462937239fe1be662299aaf082d0eb693c84d4f87a1f7e93617b37d1ba4" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.791Z", + "updatedAt": "2026-02-27T01:10:15.612Z", "postProcessHash": "8405da61923d3d0b0e0384ca625ed33901fb4282f909afad0a1f02c156f64188" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.791Z", + "updatedAt": "2026-02-27T01:10:15.623Z", "postProcessHash": "82548bec5d746f41292cf2fc1449753856ce64e8ee5ab2186658edb2373af083" } } @@ -13031,15 +13199,15 @@ }, "02a3f8a9c2b7bed0ca12b135d6610f9dd0567e2045b9486068c3fcc46e5e7b9f": { "fr": { - "updatedAt": "2026-02-25T21:22:39.777Z", + "updatedAt": "2026-02-27T01:10:15.586Z", "postProcessHash": "9a95b5516fce01f14489a297d66bbca47b91f015d8332ce935f6e3302a3fbcd1" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.779Z", + "updatedAt": "2026-02-27T01:10:15.590Z", "postProcessHash": "00e8294e32af03a56d151ca0fc87fd279d476d3bcca0ce5c26d509ecedf60ce3" }, "es": { - "updatedAt": "2026-02-25T21:22:39.782Z", + "updatedAt": "2026-02-27T01:10:15.595Z", "postProcessHash": "bd2e02bcf312fa532b075d1b76a9166b8815072855d47d9d2ed6f8c440ce2227" } } @@ -13225,6 +13393,20 @@ "updatedAt": "2026-02-25T21:22:39.805Z", "postProcessHash": "11de047d268696450770cddc28f37ef7e18ca709fa52d0f84cc702337a4a4b76" } + }, + "b9114dfa24305e5853cb8f2e15b05710209e14b3ea6acb61f2e43d577f9a7bf8": { + "es": { + "updatedAt": "2026-02-27T01:10:15.657Z", + "postProcessHash": "0a977cf52d7deace9686e94bf1fdcf71f888337404d6d09aadec2de88b979244" + }, + "fr": { + "updatedAt": "2026-02-27T01:10:15.663Z", + "postProcessHash": "2cee4f80f4ea7a156c8612feff8de20682541646af3d34ed8cd8b8ef6bad05c0" + }, + "zh": { + "updatedAt": "2026-02-27T01:10:15.664Z", + "postProcessHash": "62ecfe821718ff3abedbb9587ba50e508ad8d7a1e48c912126e3fe7357852879" + } } }, "ee8ff7fec304805b60e60e89884f31476b87cd39d3b331bf3f35d1287b350cf0": { @@ -13266,15 +13448,15 @@ }, "b85bb5007e7deb7865d5b813a2c0c5ec688641c4b13448a178740389da412283": { "zh": { - "updatedAt": "2026-02-25T21:22:39.795Z", + "updatedAt": "2026-02-27T01:10:15.631Z", "postProcessHash": "0c9882ea6d3ae01dc8e6353df56cccfc7e9f14c693b8f4b36faa7ff1e496a5ae" }, "es": { - "updatedAt": "2026-02-25T21:22:39.796Z", + "updatedAt": "2026-02-27T01:10:15.631Z", "postProcessHash": "fa94ce937193dabe077a20a3de4dc18090bc1aab03488207448b489737ebdab7" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.796Z", + "updatedAt": "2026-02-27T01:10:15.633Z", "postProcessHash": "9d1a036f1027d5108e7803529d3acd5348a1443ca061a4f7543a5d0479b66f40" } } @@ -13318,15 +13500,15 @@ }, "d097e9c152be02a891d440d5353f6d3c0ffb1f5c7ab6b0cfa7515ae743fefd67": { "fr": { - "updatedAt": "2026-02-25T21:22:39.799Z", + "updatedAt": "2026-02-27T01:10:15.636Z", "postProcessHash": "d8aced1839d5f060bb6febb1ecbcab8c26cd99ecf1a8938e972c23ad2799d55d" }, "es": { - "updatedAt": "2026-02-25T21:22:39.799Z", + "updatedAt": "2026-02-27T01:10:15.637Z", "postProcessHash": "ebbf6dbfe62e90eb6070c59f0fcd8a101d046bdca76bc76b033b73ce3c04b3e2" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.800Z", + "updatedAt": "2026-02-27T01:10:15.639Z", "postProcessHash": "4e3ba92a677942b11a77fb77e3638c86d7e8edaf8243776c6f148f7fcf3dc20c" } } @@ -13398,15 +13580,15 @@ }, "d1b86bd27a9b3d0d191ff79562832185f526786562290f658da1fac515090cba": { "fr": { - "updatedAt": "2026-02-25T21:22:39.672Z", + "updatedAt": "2026-02-27T01:10:15.473Z", "postProcessHash": "aba0d48f6a412996446421475acee49b420a75b36ac252edbcf23d1d6edee717" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.672Z", + "updatedAt": "2026-02-27T01:10:15.475Z", "postProcessHash": "b12d2c38e90249dba3768af01013b75da5607fbe5a4135fb5c02bfae6ad9169b" }, "es": { - "updatedAt": "2026-02-25T21:22:39.673Z", + "updatedAt": "2026-02-27T01:10:15.475Z", "postProcessHash": "33ee9ddd33ae51296497dc55bd4b54afe0d7c41fb72b982ba3e3476633a26aaa" } } @@ -13436,15 +13618,15 @@ }, "b72d2b9d9ef504cbfecd6422d202a23f54cb213b4a6c7fbe372d2fe6c315757d": { "fr": { - "updatedAt": "2026-02-25T21:22:39.708Z", + "updatedAt": "2026-02-27T01:10:15.514Z", "postProcessHash": "bbf4b3fc2fee65a6334d5b66c1603b7b6219e142b93e3db1fd55c60e81cc4fee" }, "es": { - "updatedAt": "2026-02-25T21:22:39.709Z", + "updatedAt": "2026-02-27T01:10:15.515Z", "postProcessHash": "a2d361d2756d7fe746e60b623d07c14d40ae7115aaed3744a6540574ec8c2427" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.709Z", + "updatedAt": "2026-02-27T01:10:15.608Z", "postProcessHash": "45babf5a62e66b6b4e205ccf73a62e99a96ed2c5c3062e56c1a45a8ec803e8b0" } } @@ -13533,15 +13715,15 @@ }, "26a9b7caee79887d55f51aaa0ca76ae9864df8bd8cdbc913823bbd8459e64a8a": { "zh": { - "updatedAt": "2026-02-25T21:22:39.611Z", + "updatedAt": "2026-02-27T01:10:15.409Z", "postProcessHash": "b284e0f934275ebd4417451db4bc9006ff7945848ebe71e604f99de77e01591b" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.612Z", + "updatedAt": "2026-02-27T01:10:15.410Z", "postProcessHash": "1476c7d2e95ec2574e0f90caf5a3d93a0509f197102b1f1065d87e2b37d1397e" }, "es": { - "updatedAt": "2026-02-25T21:22:39.612Z", + "updatedAt": "2026-02-27T01:10:15.410Z", "postProcessHash": "1e7778210fe538c0ef497fbcfd5403e9ecc77f4e63cffeca458198d674c4bec4" } } @@ -13563,15 +13745,15 @@ }, "7495e3fb569b2c03c70be9168321c853593529b80da8d66d8168318b9c9d859a": { "es": { - "updatedAt": "2026-02-25T21:22:39.425Z", + "updatedAt": "2026-02-27T01:10:15.262Z", "postProcessHash": "0e6d023e6d304ef54fca436590806c65ef75fd69f39da00b7f62c105eb0016ad" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.426Z", + "updatedAt": "2026-02-27T01:10:15.263Z", "postProcessHash": "aa61f4a8fc9c06c889f7b43ea17491303a0103c334778e7e109857a7eee65864" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.557Z", + "updatedAt": "2026-02-27T01:10:15.357Z", "postProcessHash": "ba25dabff2e908bf4a1c11b73cfe18d65a0aae8a288f6dae67e481f8ae9a739f" } } @@ -13579,15 +13761,15 @@ "5ee2c22c5f816bd2e9ccb18534d94c7d2d0d1fd48d15aea7d344871cc05d6b5d": { "ab26030a2677e7aee15a1962ed36cc8690f9395c1234a20e05071c72dccaff07": { "es": { - "updatedAt": "2026-02-25T21:22:39.466Z", + "updatedAt": "2026-02-27T01:10:15.293Z", "postProcessHash": "c800ef09ae4adce36dc0d0c6c64378e180832b8895a27d3d652c0d3c42795a8c" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.420Z", + "updatedAt": "2026-02-27T01:10:15.257Z", "postProcessHash": "496cda871f724559afe4e88467de9c87d069bf04e92fb8ee183b59b3d8ff838d" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.421Z", + "updatedAt": "2026-02-27T01:10:15.257Z", "postProcessHash": "e4b8adc3ca76352c41e482b9724b6d91da3a3e92f053ab34bd57967ce19dafc2" } } @@ -13637,15 +13819,15 @@ }, "5a238f841df8b1dfb8f1a7960d5cb6521feed3e5d9b1365f0c90ad01991588a9": { "fr": { - "updatedAt": "2026-02-25T21:22:39.580Z", + "updatedAt": "2026-02-27T01:10:15.381Z", "postProcessHash": "cacaad41da0a1c985c98d24f55be2e1d39f1e2c8be5a901d58333d5629d95bbf" }, "es": { - "updatedAt": "2026-02-25T21:22:39.581Z", + "updatedAt": "2026-02-27T01:10:15.381Z", "postProcessHash": "d55489dc40ed86932350a0f8f79ea5f16e4536651e5e5230fd884ffc3868ce38" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.584Z", + "updatedAt": "2026-02-27T01:10:15.385Z", "postProcessHash": "d223c2103799456e869f173a15ff5049a337492d0f4a75a8c70ae9b9fcb6d363" } } @@ -13678,15 +13860,15 @@ }, "6803275364488ffc8473da56bb487e9587c52f8ff5487fe29c086e3ab51b7c71": { "fr": { - "updatedAt": "2026-02-25T21:22:39.461Z", + "updatedAt": "2026-02-27T01:10:15.291Z", "postProcessHash": "7fdc174290d40bcd349ee3d30be23a4150451e0e4ff6b66103988199be656edb" }, "es": { - "updatedAt": "2026-02-25T21:22:39.463Z", + "updatedAt": "2026-02-27T01:10:15.292Z", "postProcessHash": "191c5663faab715f3829b5845b11d8c87fd9771fec4b835b02a182baa29cc8a3" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.464Z", + "updatedAt": "2026-02-27T01:10:15.292Z", "postProcessHash": "768e8a17d86b08374b9f8f66beab7d2f2543bda1b4c55b92230389379eeed672" } } @@ -13733,15 +13915,15 @@ }, "f1424459f70c9ad23b7b04877e13591cd159d4e650a821d2ee908dd60721e9e6": { "zh": { - "updatedAt": "2026-02-25T21:22:39.750Z", + "updatedAt": "2026-02-27T01:10:15.564Z", "postProcessHash": "cc1a618e750e396eea46dddbdc1fadde4b205da857c2a44fc98549831adc1e9f" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.751Z", + "updatedAt": "2026-02-27T01:10:15.565Z", "postProcessHash": "a4c6749e0ec0bb3f0e891bba8e68736e18053ee17f6bed6e6b0622f4fcd2fa01" }, "es": { - "updatedAt": "2026-02-25T21:22:39.752Z", + "updatedAt": "2026-02-27T01:10:15.567Z", "postProcessHash": "e4d914ccb3409a650dc3252eb481557f07931e37ffe3d7d6950a401c5db50b5b" } } @@ -13793,15 +13975,15 @@ }, "e9177cad386e13625525c06a05b8fc1ce9ca27d17a42cca126b6a7c789eb81c8": { "zh": { - "updatedAt": "2026-02-25T21:22:39.703Z", + "updatedAt": "2026-02-27T01:10:15.505Z", "postProcessHash": "87e15cf769ea6fa7b862a1fd667619a240676a9dc17eb2bc2b1d1f3ae7689964" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.704Z", + "updatedAt": "2026-02-27T01:10:15.506Z", "postProcessHash": "46a0daea80591cca0ee6744d15365137cca73775b87662f36cfecc8540ce1028" }, "es": { - "updatedAt": "2026-02-25T21:22:39.705Z", + "updatedAt": "2026-02-27T01:10:15.508Z", "postProcessHash": "2dc448b6fecb9c891fb2b31108a8efab5fccae4cc1f7d944fc82b20063418355" } } @@ -13823,15 +14005,15 @@ }, "5eafbbc208f687b4a403d456c293cffe8f20e44e21d54fc71c02ab2757a3c8d2": { "fr": { - "updatedAt": "2026-02-25T21:22:39.577Z", + "updatedAt": "2026-02-27T01:10:15.377Z", "postProcessHash": "1f94aa51bc07f810453da55de3cfb6cb07fd2397a20b5d883e0e3b7d3d26f78f" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.578Z", + "updatedAt": "2026-02-27T01:10:15.378Z", "postProcessHash": "5f119e31ab9fa3f6bdac6775d876168bfc9d925e1820a1b31c660a192204c4e2" }, "es": { - "updatedAt": "2026-02-25T21:22:39.578Z", + "updatedAt": "2026-02-27T01:10:15.378Z", "postProcessHash": "fe5e47cb35644b4a8c43a4862c5d08198bda306ecf9f0ab94ae4ee83b58ae860" } } @@ -13895,15 +14077,15 @@ }, "9b06c9240cfbf8fe66ef12cc3374de63c4b0e3cb3a8856eb6dc18d7836c56cad": { "zh": { - "updatedAt": "2026-02-25T21:22:39.721Z", + "updatedAt": "2026-02-27T01:10:15.529Z", "postProcessHash": "26f830229b591d5666f9a06bc35f45e2bb173e9a6d24f37d351230914737c724" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.665Z", + "updatedAt": "2026-02-27T01:10:15.463Z", "postProcessHash": "f36b74d6b27c8ae5877f85e2d7f949546af67a183b05131c20fd708e81f817b3" }, "es": { - "updatedAt": "2026-02-25T21:22:39.721Z", + "updatedAt": "2026-02-27T01:10:15.529Z", "postProcessHash": "3dc7af1258d14c035f3b630d482acfb0c2479938ddbe52364ae14cbd15d70992" } } @@ -14006,15 +14188,15 @@ }, "69603a7b5bc59d76b2d81e0ad06f81c1fdb17fd82bcfc9af1fdb366e436d0cec": { "zh": { - "updatedAt": "2026-02-25T21:22:39.740Z", + "updatedAt": "2026-02-27T01:10:15.551Z", "postProcessHash": "63501d660fc8198d77b721448a96c48bc02eab7e388c77f6ced615ae0156a022" }, "es": { - "updatedAt": "2026-02-25T21:22:39.741Z", + "updatedAt": "2026-02-27T01:10:15.552Z", "postProcessHash": "f2dcffe800e1e7714be155d22c8d1cb0e406e57b9c17f71035dc470e34d4a9f2" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.741Z", + "updatedAt": "2026-02-27T01:10:15.553Z", "postProcessHash": "b7784428c6660bc0496234c515198f7a4a2f32ce32a21b013bfe76b1d18f4358" } } @@ -14036,15 +14218,15 @@ }, "53b5875c23ebd3fc6ab3e9fad6f660b34cf7874b97fd4d2abbceb0b7fe555999": { "es": { - "updatedAt": "2026-02-25T21:22:39.552Z", + "updatedAt": "2026-02-27T01:10:15.352Z", "postProcessHash": "1dd6e21695b6516e0355af6f151e9ccc72ffff811290a7a42d4fa998b95affcc" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.552Z", + "updatedAt": "2026-02-27T01:10:15.352Z", "postProcessHash": "420c93371057865a79359c203f469080a820f68a3e262ce769826211d7566162" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.554Z", + "updatedAt": "2026-02-27T01:10:15.353Z", "postProcessHash": "8b6ecee2a69b91fa777ab51b93f9c0958763f7ecc95b901666c384c9364f8630" } } @@ -14066,15 +14248,15 @@ }, "0a476bb8a619c607ee41046b0d42be40f8b390711886b04394117bd059fddd41": { "es": { - "updatedAt": "2026-02-25T21:22:39.643Z", + "updatedAt": "2026-02-27T01:10:15.444Z", "postProcessHash": "bc37f8b005a1fa3f12c246a89bd17411eb4538486679197c8741ad3effb23b92" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.685Z", + "updatedAt": "2026-02-27T01:10:15.486Z", "postProcessHash": "4ca4d337d14bee11d080d9a151a1cfd61dea8e40156444e483f87c362b746df4" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.686Z", + "updatedAt": "2026-02-27T01:10:15.488Z", "postProcessHash": "8c40b4bbad8294898e38da83b400e2aa837485adff978e62c052583ec91e793b" } } @@ -14124,15 +14306,15 @@ }, "19751f1f0b8505dfd8795e2d1a4ff262e78d0e7b3c0355d44c2c7c3bd2589221": { "es": { - "updatedAt": "2026-02-25T21:22:39.629Z", + "updatedAt": "2026-02-27T01:10:15.430Z", "postProcessHash": "2eafdcca9485255a99ae211c2dd53e3340bb49020caeb3c20df800d1b9dc9ecf" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.630Z", + "updatedAt": "2026-02-27T01:10:15.431Z", "postProcessHash": "00f552fcf1134146205613edf1238178ebe342d491e72c33071d6f5bde659380" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.631Z", + "updatedAt": "2026-02-27T01:10:15.431Z", "postProcessHash": "da1aaac3cb5349f91306039640c3d007129d5b9b0bfc5ae1ec7ceb5ed58289f6" } } @@ -14210,15 +14392,15 @@ }, "4b54c0fc2c558be48d1c97fa9808aed7739ad40c237ff80b44f990c48bc3a00e": { "es": { - "updatedAt": "2026-02-25T21:22:39.725Z", + "updatedAt": "2026-02-27T01:10:15.472Z", "postProcessHash": "118feab5abdb3df06ee3a85a83a85f0848b170bb35bc66856fac9cbec98ab7c7" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.725Z", + "updatedAt": "2026-02-27T01:10:15.473Z", "postProcessHash": "66c9c7db9b0dc696a779d3f9a5fbad3edb4c75b37ad22fab6fa77e7bf50116be" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.726Z", + "updatedAt": "2026-02-27T01:10:15.474Z", "postProcessHash": "c94a1858b33e78e9b821a2b17f2f8ef50d74ec2ea5c406b18d24c4ba9e1d78ed" } } @@ -14240,17 +14422,17 @@ }, "cb36618c2336212a5cf8c13576286c10078aac018ea786b19adbcd4d4fefc8a6": { "es": { - "updatedAt": "2026-02-25T21:22:39.454Z", + "updatedAt": "2026-02-27T01:10:15.277Z", "sourceHash": "ea3c89909bf1219c83982572a3053112571d292bb30f235ad0f862f9060ba22f", "postProcessHash": "cc442a531a1644431cf1178f17b1b19e6b34006d9becf533706b14fed8fc201e" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.455Z", + "updatedAt": "2026-02-27T01:10:15.287Z", "sourceHash": "ea3c89909bf1219c83982572a3053112571d292bb30f235ad0f862f9060ba22f", "postProcessHash": "f41be3530176f9ca4d1e6d2a4d7cada150f12f3aa1da69455239ff6fe3237ec4" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.457Z", + "updatedAt": "2026-02-27T01:10:15.288Z", "sourceHash": "ea3c89909bf1219c83982572a3053112571d292bb30f235ad0f862f9060ba22f", "postProcessHash": "040deea5703739636a9af62d924db1afcddcd87c1df43ad626c51426de4430f8" } @@ -14318,17 +14500,17 @@ }, "c9cf8e48d0434ec12e49f6efee67e4b5d992681f2a5e216f57283f95943228a0": { "zh": { - "updatedAt": "2026-02-25T21:22:39.519Z", + "updatedAt": "2026-02-27T01:10:15.331Z", "sourceHash": "1c14cdc8541a8887d2c6296b2ccba95a276f63024389481b51cdbf136987e84a", "postProcessHash": "34d27ddb4d7179dbb9fa9490b7e62be947acabe93fb3bceabe7402214deb006c" }, "es": { - "updatedAt": "2026-02-25T21:22:39.521Z", + "updatedAt": "2026-02-27T01:10:15.332Z", "sourceHash": "1c14cdc8541a8887d2c6296b2ccba95a276f63024389481b51cdbf136987e84a", "postProcessHash": "e050f83fe6176602b1f18e487be6074b56bab808626459376aa133cfcc719adf" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.522Z", + "updatedAt": "2026-02-27T01:10:15.334Z", "sourceHash": "1c14cdc8541a8887d2c6296b2ccba95a276f63024389481b51cdbf136987e84a", "postProcessHash": "d6fd25d078204b8dded5f0707ed2f9eca07d08b9ba9c755cebf4380db2fde13b" } @@ -14407,17 +14589,17 @@ }, "39fe0744420d4f8df0d0457bbd9a08120da4f6297886b6d9454bbe204fa2e5ed": { "fr": { - "updatedAt": "2026-02-25T21:22:39.478Z", + "updatedAt": "2026-02-27T01:10:15.304Z", "sourceHash": "376c09c290b6d7167235cf669e92f03c14b2857379d1119b189b258b71ef54d2", "postProcessHash": "c6ccba9cf06d91b306cf9a2d8d6b18743253a73d0bfb5148340b70d7ff8bc0d0" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.480Z", + "updatedAt": "2026-02-27T01:10:15.306Z", "sourceHash": "376c09c290b6d7167235cf669e92f03c14b2857379d1119b189b258b71ef54d2", "postProcessHash": "4a71d88d8c41c3edc85d561b72f1d09caa7a46cf64466b131c18852fb1f8b910" }, "es": { - "updatedAt": "2026-02-25T21:22:39.482Z", + "updatedAt": "2026-02-27T01:10:15.309Z", "sourceHash": "376c09c290b6d7167235cf669e92f03c14b2857379d1119b189b258b71ef54d2", "postProcessHash": "45b4d6d7b7e1340a449e283a7ee23bc91da8d957030263947f553bfa928c6d3f" } @@ -14612,15 +14794,15 @@ }, "0f8e22051637264211d79388f2597b5e56b3649d5737260426476243c3ccf445": { "es": { - "updatedAt": "2026-02-25T21:22:39.583Z", + "updatedAt": "2026-02-27T01:10:15.385Z", "postProcessHash": "35637738162e1d6abd94b1557d441a3297c4d000afba63d343c4a3546534a7c4" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.584Z", + "updatedAt": "2026-02-27T01:10:15.386Z", "postProcessHash": "7284a3e20774edf3b14e189bd7571142fadcbe8d439f619ca16d1e51afd80fa4" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.585Z", + "updatedAt": "2026-02-27T01:10:15.387Z", "postProcessHash": "ea91962fcda925599540fc3d6c2ff0fae319af6dbd71fbb7b4f64272bc7d4ca9" } } @@ -14740,15 +14922,15 @@ }, "189646bdc0ed9d9022e7ef66baaa48306eb4400b654246299eec52b7be9a8775": { "fr": { - "updatedAt": "2026-02-25T21:22:39.437Z", + "updatedAt": "2026-02-27T01:10:15.269Z", "postProcessHash": "d041964f9726e9b5f58981772504d9bb8c152d9e265cfb9023e4e9b2174a3764" }, "es": { - "updatedAt": "2026-02-25T21:22:39.437Z", + "updatedAt": "2026-02-27T01:10:15.270Z", "postProcessHash": "1e313d62b27282fa727d38976d285fd3188d9dccdc17753817bc4e970c8aa1ff" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.440Z", + "updatedAt": "2026-02-27T01:10:15.270Z", "postProcessHash": "353a3f55dd963e1d3c33c4e4ed563ed4de1c4ec12f2ce488676152cf3354006e" } } @@ -14756,15 +14938,15 @@ "edb50f189db7d5bfeac8f5d547b43e347fde48c9ea7d5e24ad491e9ae61ab75b": { "00c09e65a79f72278711c9fb568e4e1f395e409f4598d44e32c21dc3116da422": { "zh": { - "updatedAt": "2026-02-25T21:22:39.545Z", + "updatedAt": "2026-02-27T01:10:15.350Z", "postProcessHash": "395acb5224ac7bb78ec6cebf58f580beb49730e83685f45b43ff1b6abe810917" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.547Z", + "updatedAt": "2026-02-27T01:10:15.351Z", "postProcessHash": "ee86c7337fe5fd18652f517a6fd69df62058a3805a009a94e9e7a54d6473b32f" }, "es": { - "updatedAt": "2026-02-25T21:22:39.548Z", + "updatedAt": "2026-02-27T01:10:15.351Z", "postProcessHash": "2dbf13d1f2e674684e1ff5c412bfc3fd5e8937c9fe07114d6bc3849c70fd80c5" } } @@ -14800,15 +14982,15 @@ }, "a87217ae39ffeef6d529ce8b6c773c9cc08ace144e46705e3203317bae79173f": { "zh": { - "updatedAt": "2026-02-25T21:22:39.573Z", + "updatedAt": "2026-02-27T01:10:15.372Z", "postProcessHash": "7e33707027557a588477a791ec2e9e9a5b9bb89185f694cf01bd3067768cc33b" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.574Z", + "updatedAt": "2026-02-27T01:10:15.373Z", "postProcessHash": "fe368bcd061be859a3a61be10aef79b6681c55381e1041b59ae65224533a7d51" }, "es": { - "updatedAt": "2026-02-25T21:22:39.575Z", + "updatedAt": "2026-02-27T01:10:15.374Z", "postProcessHash": "294c359d992b752ea5c08263bd2793f78361ef1c3faa45b6d07c537bb4fad9b9" } } @@ -14872,15 +15054,15 @@ }, "b397054acf30d7488f124a3d82a65cc4fff52f6f83db2c19845a8af7004df342": { "es": { - "updatedAt": "2026-02-25T21:22:39.621Z", + "updatedAt": "2026-02-27T01:10:15.421Z", "postProcessHash": "20ddd3ce2dc2e0e799cfff82d0585f6fb51b1dcf06f2af553dc5b55bdc35a511" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.621Z", + "updatedAt": "2026-02-27T01:10:15.422Z", "postProcessHash": "d711b4f93dc6ee41ceba0c675af229c1f2c8b18e2337d36913b5a27286bd69b2" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.622Z", + "updatedAt": "2026-02-27T01:10:15.422Z", "postProcessHash": "4026e3acd26086e0d3685b8c6da3dd71798a91b9b98529dbc330b2ba71a99308" } } @@ -14944,15 +15126,15 @@ }, "c229aa7018f414a4c6c3c934f1e69c19ddbf558a66912c1b143cc647e1e7d02d": { "fr": { - "updatedAt": "2026-02-25T21:22:39.679Z", + "updatedAt": "2026-02-27T01:10:15.482Z", "postProcessHash": "7405fba69b2e83b2dd276ba4f943956cf93dd858db950eed146a47082cf3e89f" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.680Z", + "updatedAt": "2026-02-27T01:10:15.483Z", "postProcessHash": "2d488e0dec888b5c05245cce6f6e5a59883de36a569a3488e416d23651bf8121" }, "es": { - "updatedAt": "2026-02-25T21:22:39.680Z", + "updatedAt": "2026-02-27T01:10:15.483Z", "postProcessHash": "3b27849aa2e611e823b7f5a0d91448a9f0d706feb2183b28b2be7444dc54fc7b" } } @@ -15016,15 +15198,15 @@ }, "fa24d088160120aed642667b2be3d4a80a37ccb04ef3ef3787cc9dacb3e685c3": { "es": { - "updatedAt": "2026-02-25T21:22:39.628Z", + "updatedAt": "2026-02-27T01:10:15.429Z", "postProcessHash": "d99ce203327d66db51343ed23dd4ffea3ee41620247fa1201bc329e0e886f1b6" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.628Z", + "updatedAt": "2026-02-27T01:10:15.429Z", "postProcessHash": "0e7d0027c0e46019b75d57e661bc255e90a0a16907df05cfce7e5cf32afa6a0d" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.629Z", + "updatedAt": "2026-02-27T01:10:15.430Z", "postProcessHash": "424b7935491796cd40cda994c00221fdbff1912192b490db9b9aa9adc819d326" } } @@ -15116,15 +15298,15 @@ }, "5263ce25fb3d5479ecd0fc0ea868c69229c56cf35460e76d823612b3dbb3941e": { "zh": { - "updatedAt": "2026-02-25T21:22:39.678Z", + "updatedAt": "2026-02-27T01:10:15.481Z", "postProcessHash": "31806064719338fa0faa51fa207cecf77666319a41d90c1875daf861ebc18dda" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.679Z", + "updatedAt": "2026-02-27T01:10:15.481Z", "postProcessHash": "b8e7273a1409899fbd747e9aee6c0b26a79662f20b19f0fddbe8dbbe60fd02b7" }, "es": { - "updatedAt": "2026-02-25T21:22:39.679Z", + "updatedAt": "2026-02-27T01:10:15.482Z", "postProcessHash": "7673cd5c1c1303c236414c26eed74263427d34b3411a746be3f351a0821b8b2d" } } @@ -15300,15 +15482,15 @@ }, "c5172e8219b944efd57bfb102bb3dcce13f8d94c08993605fd1f7b83d305a8fb": { "es": { - "updatedAt": "2026-02-25T21:22:39.682Z", + "updatedAt": "2026-02-27T01:10:15.484Z", "postProcessHash": "cbc940fe94ddadf45b2d84d473136f441bf3ba5973a7a97f22b362a0a9e257cd" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.683Z", + "updatedAt": "2026-02-27T01:10:15.485Z", "postProcessHash": "b0ac27636b2fafff91eacaffbfa9a71608224d470729586c1a751992a5d40826" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.684Z", + "updatedAt": "2026-02-27T01:10:15.485Z", "postProcessHash": "0f68843b2bcaabd03c23bd6893f4f188efae4e2484251f4ac27bbfe9d40dd376" } } @@ -15344,15 +15526,15 @@ }, "178e9ec28788e9c7c06b96e4dba51a301d6ac12e4eeea7f1c4c1c94f36094d22": { "zh": { - "updatedAt": "2026-02-25T21:22:39.674Z", + "updatedAt": "2026-02-27T01:10:15.476Z", "postProcessHash": "2f64868d2a76f666e8bbcbe1f662bec3312656a186a950c78329b0d297de7f1e" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.616Z", + "updatedAt": "2026-02-27T01:10:15.415Z", "postProcessHash": "94b157f5055d1bc924953f066cf001a50e4af17733b8245dda455e4fc3b155a5" }, "es": { - "updatedAt": "2026-02-25T21:22:39.616Z", + "updatedAt": "2026-02-27T01:10:15.415Z", "postProcessHash": "8202509b112264d6df352808e4e207d918d8c7787d7579efae56da778949cfb0" } } @@ -15413,6 +15595,20 @@ "updatedAt": "2026-02-25T21:22:39.682Z", "postProcessHash": "83b17aa8134ef885585a7add606ba9fae6ba4f2929651925cdf75cdc2f475cdd" } + }, + "f8694e4371f5bdeae28ec884e6c2eeb4731a02e679b8842be1e8f96eb54637c3": { + "es": { + "updatedAt": "2026-02-27T01:10:15.509Z", + "postProcessHash": "eb31529d4d9477d94592293e5c3f03b82d14209f7df00b2ec2e405ef5d04c3cb" + }, + "zh": { + "updatedAt": "2026-02-27T01:10:15.510Z", + "postProcessHash": "2256636efd9a5261da9e9acf6117e3f64774788ea9c5e2570e5a4e90b3fdaf0b" + }, + "fr": { + "updatedAt": "2026-02-27T01:10:15.510Z", + "postProcessHash": "567d179053d30aa3d9cb688d3936725fa747354351c7ec3cfb8d31a18b1a6ae8" + } } }, "b35d9f72983b55567b557677c2f5175ab790f66c289bab55571d1a996e18054c": { @@ -15488,15 +15684,15 @@ }, "d025bbffa46c785e0fd0683981f8d66381ac74a5f688c9a8395c84e3ca61ab90": { "fr": { - "updatedAt": "2026-02-25T21:22:39.673Z", + "updatedAt": "2026-02-27T01:10:15.476Z", "postProcessHash": "5671352395d1b86064fbcfe1c2f8ef0dcc4c1e70ba3782aff729983ae3d820c1" }, "es": { - "updatedAt": "2026-02-25T21:22:39.675Z", + "updatedAt": "2026-02-27T01:10:15.478Z", "postProcessHash": "7abfb41293a30404f67ed2abdcab22610b86392103ff66e0936e68dbb51689a6" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.676Z", + "updatedAt": "2026-02-27T01:10:15.478Z", "postProcessHash": "b3d4c857c2d16428d3ec6e637059c2d8608136938391324b3ce780545c38a933" } } @@ -15628,15 +15824,15 @@ }, "2aa7df46fd0f207dd9418e12a9be87217173c18189dd643b0c5546c43fbcf68c": { "es": { - "updatedAt": "2026-02-25T21:22:39.699Z", + "updatedAt": "2026-02-27T01:10:15.500Z", "postProcessHash": "38e0f33d6ddcfafeac7784221bb6f40e1dc58b9851eaae75e5cbdd9bc385fd01" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.699Z", + "updatedAt": "2026-02-27T01:10:15.501Z", "postProcessHash": "c53a75fde2ab7e68ece1946337762e2adc122b570b652b1513149a49c8182385" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.702Z", + "updatedAt": "2026-02-27T01:10:15.504Z", "postProcessHash": "cefdf85782c155b56c450c7380e759ae9b1c1226cdff75717aec391e037c2a27" } } @@ -15686,15 +15882,15 @@ }, "0d6c77b28597cea53ab4ac916e4d89659b35eec4d3b8c225d02760d93d6d087f": { "es": { - "updatedAt": "2026-02-25T21:22:39.744Z", + "updatedAt": "2026-02-27T01:10:15.558Z", "postProcessHash": "38c9e71bf38f82b440adb8928b74b09aca525e2678400f3fda45ce7d8018c143" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.746Z", + "updatedAt": "2026-02-27T01:10:15.560Z", "postProcessHash": "048508fa6bd2a67bf99b21c26dd9d3c4be532481b6f180f162cd0225ac19670c" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.747Z", + "updatedAt": "2026-02-27T01:10:15.560Z", "postProcessHash": "e997b976818b287d616db406be152db707d5ca6683bb2b4ae964bb2fb1397794" } } @@ -15730,15 +15926,15 @@ }, "f3ad9d6d459a2f296bb64e85960d79c64f616676161d1c8123e8b73485bbff5f": { "es": { - "updatedAt": "2026-02-25T21:22:39.441Z", + "updatedAt": "2026-02-27T01:10:15.271Z", "postProcessHash": "0a1c00568a257ace5443ac2b4dcbce56ea822cf2accaa7cfc6d89d24663419cf" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.442Z", + "updatedAt": "2026-02-27T01:10:15.271Z", "postProcessHash": "7395dab23c68d9d20bad5f824b614772982a07b8a49d9f50dc970a1a8b045110" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.444Z", + "updatedAt": "2026-02-27T01:10:15.272Z", "postProcessHash": "c2aa5e073812e65f96de2f6b07d1bcb24bdd9003589c5dab4388bda280270e83" } } @@ -15844,15 +16040,15 @@ }, "1322c3a88a799eb9c31e12f84473104ccfb3b2a1090d28036f0bb46b4a1a1250": { "fr": { - "updatedAt": "2026-02-25T21:22:39.457Z", + "updatedAt": "2026-02-27T01:10:15.289Z", "postProcessHash": "0bc3dcae243907875d4295269481a314527172c81df323a75a25bc00fdc8de1e" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.458Z", + "updatedAt": "2026-02-27T01:10:15.290Z", "postProcessHash": "ecf4a2c357be6e2fa7a9e7feb7532782b62232b6cdc8390e6304f803a49222c4" }, "es": { - "updatedAt": "2026-02-25T21:22:39.460Z", + "updatedAt": "2026-02-27T01:10:15.290Z", "postProcessHash": "07e9c47395a8da83bc71b34837a8cd479df78052d2ce363b3292f2d2bb67b895" } } @@ -15874,15 +16070,15 @@ }, "66241b80c47311c2b355243772b50d6756e7beeeef6a56f06495a6636a55e8dd": { "zh": { - "updatedAt": "2026-02-25T21:22:39.447Z", + "updatedAt": "2026-02-27T01:10:15.273Z", "postProcessHash": "fe191debfbbabd736ab4b0d8a0b287918f27cbebf89e6d051946452e92e654f9" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.449Z", + "updatedAt": "2026-02-27T01:10:15.273Z", "postProcessHash": "a70de197ac8d57521975780a45f0cb186f91cdb3bb2fbe9569e8f5f441e56f2d" }, "es": { - "updatedAt": "2026-02-25T21:22:39.449Z", + "updatedAt": "2026-02-27T01:10:15.274Z", "postProcessHash": "f7491d552ec06125beffdc64aac6aa5ac069bc52f57a83f13b99670727f9e0ef" } } @@ -15890,15 +16086,15 @@ "70faccccd73a9dd61ce9b1bd9ff46301b2e624965165899ddeb0501dbfd990f9": { "afde3f3e70cc7a58266bc02ee0a53613165e4f4427689fc0f79f7e244fde053a": { "fr": { - "updatedAt": "2026-02-25T21:22:39.432Z", + "updatedAt": "2026-02-27T01:10:15.265Z", "postProcessHash": "f20c9920e15cc1ccc84f470fba7346c2acad1225611de1d1162b919566501ad8" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.434Z", + "updatedAt": "2026-02-27T01:10:15.266Z", "postProcessHash": "bd7acdef766e5bff3d7a97f9644a1d0d6b7a6cc41ce5298c2f64038e3ddd9a87" }, "es": { - "updatedAt": "2026-02-25T21:22:39.435Z", + "updatedAt": "2026-02-27T01:10:15.266Z", "postProcessHash": "37fa7464003cbfe5a6c6b467b57c80ddedbbc9615c94a61b1d032d84e97a8d69" } } @@ -15934,15 +16130,15 @@ }, "e1d35ebefca260bafb0f59e362719da9073c20deda880cfcae2a340405427bae": { "fr": { - "updatedAt": "2026-02-25T21:22:39.518Z", + "updatedAt": "2026-02-27T01:10:15.329Z", "postProcessHash": "6111a40636caac24820a32b15bdf1c1f4560c373b40cc12f9d04ecf650343b63" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.592Z", + "updatedAt": "2026-02-27T01:10:15.392Z", "postProcessHash": "9845af9986cdb982ebea50f6be22dd9546ea9095dd5136be360a655482e00688" }, "es": { - "updatedAt": "2026-02-25T21:22:39.593Z", + "updatedAt": "2026-02-27T01:10:15.392Z", "postProcessHash": "19c9fca0f6a06bfdf5d7ac2a20bf7612dc1e9d881778120e66d41c59af364dd0" } } @@ -15964,15 +16160,15 @@ }, "f2b440bda8d19f4dfea847c83bf37f2e1cbe8478268f093780630cbb5c6d8f8c": { "zh": { - "updatedAt": "2026-02-25T21:22:39.469Z", + "updatedAt": "2026-02-27T01:10:15.295Z", "postProcessHash": "f14695e1d9c3ad002ba390cdb53028314896306060f1fc381a00c119105a7a6e" }, "es": { - "updatedAt": "2026-02-25T21:22:39.469Z", + "updatedAt": "2026-02-27T01:10:15.296Z", "postProcessHash": "4f2e573c3e15e626754b20dd1e4aefa5c7688bdbe64dcb9da1fbb3c1b59d09a5" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.470Z", + "updatedAt": "2026-02-27T01:10:15.297Z", "postProcessHash": "208424a7920d4d0cd8c8735f2310d574933697f14d3a607daf01a3e6af0917b3" } } @@ -15980,15 +16176,15 @@ "5d08314e63d08f032dfb08da51396a73e3ad03b6bf41f2a05c8e44f690a872ce": { "0ee03c46035c61c12ea7a34234572ee97ad7b5a4ff868d39161cf55f6039796e": { "fr": { - "updatedAt": "2026-02-25T21:22:39.435Z", + "updatedAt": "2026-02-27T01:10:15.267Z", "postProcessHash": "5664c00b4e6cbc88d84a6190b8f024d956fe158f157dd2bf025a51af1c05df60" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.436Z", + "updatedAt": "2026-02-27T01:10:15.268Z", "postProcessHash": "e8c312bc6b74dfe723c2bb891eb06c369fdb111038194bc9d135f48316d0caa8" }, "es": { - "updatedAt": "2026-02-25T21:22:39.436Z", + "updatedAt": "2026-02-27T01:10:15.269Z", "postProcessHash": "8dcb1ed9d12975b400f20d92a39c23f09ae8521d9cd8e85802f77f0e89a1548c" } } @@ -16052,15 +16248,15 @@ }, "b525364b3ff1d37d5480c89b4dd875fcf738360dda0a3e4ff6c2a2e018ee997e": { "zh": { - "updatedAt": "2026-02-25T21:22:39.674Z", + "updatedAt": "2026-02-27T01:10:15.477Z", "postProcessHash": "8e3dfc4e0d63500d35c186527cf8491b0a3b03a0e3764b574616d4a3834fb878" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.675Z", + "updatedAt": "2026-02-27T01:10:15.477Z", "postProcessHash": "cc1bd823b0a4726c8276cba9c6d646c1c2d25a322c4f18775b9fa49843c8c4b5" }, "es": { - "updatedAt": "2026-02-25T21:22:39.676Z", + "updatedAt": "2026-02-27T01:10:15.478Z", "postProcessHash": "28e4a6203c3891641b964396f7a58352bef86276c63922ea821e8d2564f09e71" } } @@ -16098,15 +16294,15 @@ "67b2976cb91ee4f8480cfe85e9ec0895c34c6b8af068b38e824529a0a12ea668": { "38dedfae90f23be82c1679ffcf3dbe17731699d734dab8acf4bc6cb6335deaf8": { "zh": { - "updatedAt": "2026-02-25T21:22:39.669Z", + "updatedAt": "2026-02-27T01:10:15.467Z", "postProcessHash": "9605c30375a12896881412ed2d6ba5247931b39b61c641ead9b0dc205026c63c" }, "es": { - "updatedAt": "2026-02-25T21:22:39.669Z", + "updatedAt": "2026-02-27T01:10:15.468Z", "postProcessHash": "99fef70bd5d12536fa5b7c73796905f7fd745206f0937122d8e1788de869f15d" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.670Z", + "updatedAt": "2026-02-27T01:10:15.468Z", "postProcessHash": "21a475f4091d276c5d0e333648fd18bfad610e1520f5210aad359551cc638013" } } @@ -16142,15 +16338,15 @@ }, "fd8d507980de996b568e5edcb47fcd3b9f92f242abcfd69ee693c999c4aef272": { "es": { - "updatedAt": "2026-02-25T21:22:39.722Z", + "updatedAt": "2026-02-27T01:10:15.470Z", "postProcessHash": "0d75ca3247d5ca8ca9a153bf0fdc136fde620eda6f7f1bee16507206cd242ad7" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.722Z", + "updatedAt": "2026-02-27T01:10:15.470Z", "postProcessHash": "63d4811365362f535d008aab9c1cf9626c2f3f1da09abc338f484ab9b1174be3" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.723Z", + "updatedAt": "2026-02-27T01:10:15.472Z", "postProcessHash": "3c8fa17952368b4b98506dcc06d859b4451171edacc66eeefa54d8bbe6289861" } } @@ -16200,15 +16396,15 @@ }, "7aec247c7251e50f0b7b73139d449cb6afeaf0b528eb2a9637555fcb76a78950": { "zh": { - "updatedAt": "2026-02-25T21:22:39.638Z", + "updatedAt": "2026-02-27T01:10:15.439Z", "postProcessHash": "15b14136eb252813dc090ed33dd35e2cf72b2cee9e8d4eced0447cb5c570c273" }, "es": { - "updatedAt": "2026-02-25T21:22:39.638Z", + "updatedAt": "2026-02-27T01:10:15.440Z", "postProcessHash": "a7d65e0f72a0302cc366beffaf7d2b58f9a6cc53e73b3d98e95b046d81451a26" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.640Z", + "updatedAt": "2026-02-27T01:10:15.441Z", "postProcessHash": "35fd424ebedf22e225be3bed419fec2bf53cf09dd536b1cd4d99492a5810264c" } } @@ -16286,15 +16482,15 @@ }, "c64d5f075e6781b782478722f9818c1441eaec0ff51a37084cfbd8f9720b1b66": { "fr": { - "updatedAt": "2026-02-25T21:22:39.466Z", + "updatedAt": "2026-02-27T01:10:15.294Z", "postProcessHash": "41f3e32f1a515f2039394bbf778a78db70c7cdca5c839332293694c600be95b0" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.467Z", + "updatedAt": "2026-02-27T01:10:15.294Z", "postProcessHash": "3fba0079d3c396dccff602c8a16dce0ad538d4ca410327a943ce5abebf64c5b3" }, "es": { - "updatedAt": "2026-02-25T21:22:39.468Z", + "updatedAt": "2026-02-27T01:10:15.295Z", "postProcessHash": "0a6bbf7cefb352ab146c40781dddc3271dfda047071f20fd1f760a4490a784de" } } @@ -16344,15 +16540,15 @@ }, "934524b3cce24965a951f3324e7b9aac101433cf6952252a2f571ac001192e60": { "fr": { - "updatedAt": "2026-02-25T21:22:39.776Z", + "updatedAt": "2026-02-27T01:10:15.580Z", "postProcessHash": "9bbcfbf9ad7edc91818084d23080b96030805351b08145219754eb7fb3a00622" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.776Z", + "updatedAt": "2026-02-27T01:10:15.581Z", "postProcessHash": "7aa226f8cd13a12af59987ad278c3f559edf283c09c953d77e839a457590e25e" }, "es": { - "updatedAt": "2026-02-25T21:22:39.776Z", + "updatedAt": "2026-02-27T01:10:15.582Z", "postProcessHash": "96bc07a565889bc62e8ec2017c14d6912f85f7c4681a7d1ae341a84c7438d9b3" } } @@ -16402,15 +16598,15 @@ }, "3fcb44e0c46a9a0919230de79ae45e43012e69652a46844f77039f558e84ff8e": { "zh": { - "updatedAt": "2026-02-25T21:22:39.492Z", + "updatedAt": "2026-02-27T01:10:15.316Z", "postProcessHash": "da7404b28730c5af4a4e312e63498dda787bf988f0615585549986bb102bcc25" }, "es": { - "updatedAt": "2026-02-25T21:22:39.493Z", + "updatedAt": "2026-02-27T01:10:15.316Z", "postProcessHash": "9a7b3e717d946bb6f2c46463cc5c576f266322dfbf2b18292abd5ba4062caaac" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.491Z", + "updatedAt": "2026-02-27T01:10:15.314Z", "postProcessHash": "fdecb2ff4722da3da3d612db22ba55eaf6a59cf58b627053cd8d6c77c280f161" } } @@ -16474,15 +16670,15 @@ }, "efcfdf04c357d0255b73975d68962dd84c4623a576fe5ae244b2abfa78d55dc1": { "zh": { - "updatedAt": "2026-02-25T21:22:39.730Z", + "updatedAt": "2026-02-27T01:10:15.540Z", "postProcessHash": "893f834d727078cb827e54e4905dbfcef231814fdf2a9f3b5af689e8b64fa6aa" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.731Z", + "updatedAt": "2026-02-27T01:10:15.541Z", "postProcessHash": "d91f21698bbcab139f79690475f6b63b4fe029435b8e5da4755afbc96d7a8490" }, "es": { - "updatedAt": "2026-02-25T21:22:39.732Z", + "updatedAt": "2026-02-27T01:10:15.543Z", "postProcessHash": "552eef90ef9c915dcd8a66c83a89fcccb1dac894df483bbfbbeac7ae4d81d6d2" } } @@ -16518,15 +16714,15 @@ }, "e5146fdb42a7bf1ecb3ede51d0689115c218b144a0c8f9868bcee0e9ead9d055": { "fr": { - "updatedAt": "2026-02-25T21:22:39.732Z", + "updatedAt": "2026-02-27T01:10:15.542Z", "postProcessHash": "76da1cc8011a869604a05dd08ac37486d97662f7273cb9481da4933b25017b33" }, "es": { - "updatedAt": "2026-02-25T21:22:39.732Z", + "updatedAt": "2026-02-27T01:10:15.542Z", "postProcessHash": "f4e9cbea20eaf3aab8c4191e1637047f6fe44dcf4ba81aa09ee777f2e300cb9a" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.733Z", + "updatedAt": "2026-02-27T01:10:15.544Z", "postProcessHash": "3c456113480e40b46704575dbb3d791440d121e7c9649e8aada799a5ea5e14ad" } } @@ -16548,15 +16744,15 @@ }, "fa380ddab7b410555868b0046798f59512e031715d0ef7fb172f047a38926080": { "zh": { - "updatedAt": "2026-02-25T21:22:39.807Z", + "updatedAt": "2026-02-27T01:10:15.578Z", "postProcessHash": "1bad8287281fae79643769ad418531639a8e72b7b6a5147bcae23bbed18db6fa" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.808Z", + "updatedAt": "2026-02-27T01:10:15.579Z", "postProcessHash": "51d85cd80c8be65ee9b73d9395cde189f436f6d4a9349fa962d41f60362cdd45" }, "es": { - "updatedAt": "2026-02-25T21:22:39.809Z", + "updatedAt": "2026-02-27T01:10:15.642Z", "postProcessHash": "f1acf224133646bb7a4d1592eaefb352af4fe4db55492eac45029109f9ea7c6c" } } @@ -16578,15 +16774,15 @@ }, "b318cd55ec0faa7e4d684ef517eb8602965207035bf088b199ae0f73263b06e7": { "es": { - "updatedAt": "2026-02-25T21:22:39.807Z", + "updatedAt": "2026-02-27T01:10:15.577Z", "postProcessHash": "390c23cd8296954dfa7d545f8e0dadec26efbf8dbb0cee8191113c1a11201573" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.808Z", + "updatedAt": "2026-02-27T01:10:15.640Z", "postProcessHash": "4a4efab81454119af1e407c7e32079fff9046373a3f3f6b03b53e5dbcd0c6ca3" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.809Z", + "updatedAt": "2026-02-27T01:10:15.641Z", "postProcessHash": "c4208fc1124eb79f5f0da31ee4b20c650ac60f0304115a42280a50b674330c41" } } @@ -16639,17 +16835,17 @@ }, "8c3f100e3bd9fce5b5c713d02987071cb8332f9e0820ab5ebce9cd4b0a24e63a": { "zh": { - "updatedAt": "2026-02-25T21:22:39.509Z", + "updatedAt": "2026-02-27T01:10:15.324Z", "sourceHash": "18bbf29053f1595886bce9006159ef8219b026e8bf42cd137c26fd3030b1e11c", "postProcessHash": "88fa18bdcebbcecf813183f246b2efea6a1ba9a3545e7627aff3c933d98d3113" }, "es": { - "updatedAt": "2026-02-25T21:22:39.510Z", + "updatedAt": "2026-02-27T01:10:15.326Z", "sourceHash": "18bbf29053f1595886bce9006159ef8219b026e8bf42cd137c26fd3030b1e11c", "postProcessHash": "2dfc2c742efce9c1a8826b6e5aa933f754ce34915d5eda90ddb18e78b5c5b52b" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.513Z", + "updatedAt": "2026-02-27T01:10:15.328Z", "sourceHash": "18bbf29053f1595886bce9006159ef8219b026e8bf42cd137c26fd3030b1e11c", "postProcessHash": "b8a6bd22cfbd41776600a578d5a8faa806d29cb304ff840c98811c4cbede9a8c" } @@ -16700,15 +16896,15 @@ }, "eb3aa67dd5cc029efa59187711b541704009f1e8f34cd37cf8cfee9092fd7dfe": { "fr": { - "updatedAt": "2026-02-25T21:22:39.751Z", + "updatedAt": "2026-02-27T01:10:15.566Z", "postProcessHash": "c4f1a765916ce19d2ddf1d28282bba5b8d4afc6894c5087e3bde90170e7c88b9" }, "es": { - "updatedAt": "2026-02-25T21:22:39.752Z", + "updatedAt": "2026-02-27T01:10:15.567Z", "postProcessHash": "c3b0c96b954a35d3e33f6e652c1b7cd62c6743e2df20e33bb27e6f8c709e0419" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.769Z", + "updatedAt": "2026-02-27T01:10:15.568Z", "postProcessHash": "57c2faebf71a39c35214b68a443861c20e6707bee28e52623fe85df941199e2d" } } @@ -16716,15 +16912,15 @@ "cd37325dcee18e9737492066e67e870b0f545631e7e5fcbda2abc86bf1e3a866": { "491eb17e87e32f09b57d2721e3f2c64355d6c845704e5e03b708cd6376cc93d4": { "fr": { - "updatedAt": "2026-02-25T21:22:39.617Z", + "updatedAt": "2026-02-27T01:10:15.416Z", "postProcessHash": "38564a502db95200d7caeb68ee4681c2955017959e522181a40c40daa4746edc" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.617Z", + "updatedAt": "2026-02-27T01:10:15.417Z", "postProcessHash": "515802465019b9b121301f05e1556039bf9c66c7583ade0a524a49ae5e5659dd" }, "es": { - "updatedAt": "2026-02-25T21:22:39.618Z", + "updatedAt": "2026-02-27T01:10:15.417Z", "postProcessHash": "af390aab86257905b34cfcf1711891e61d0a05745e9467a500231b5f93f3fbf5" } } @@ -16760,15 +16956,15 @@ }, "f8a849aa102db1c482786ad1a317a0c8ed16b33c6560c2cb76ca8c483e0c382b": { "fr": { - "updatedAt": "2026-02-25T21:22:39.733Z", + "updatedAt": "2026-02-27T01:10:15.545Z", "postProcessHash": "0334fe05e4c402851021d32a7bffb732dac4db371f3933329a61f304584a8d99" }, "es": { - "updatedAt": "2026-02-25T21:22:39.734Z", + "updatedAt": "2026-02-27T01:10:15.545Z", "postProcessHash": "4082146841f1337d331d7e6711f0e966c57c2354aa7e68ac7778aa803da4b82b" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.735Z", + "updatedAt": "2026-02-27T01:10:15.546Z", "postProcessHash": "baa0151bf0886d233e31b4605f42aec4ab5fd6327def99819761466bfb278e39" } } @@ -16790,15 +16986,15 @@ }, "b15e5dabb90b8449182e9c9f0d078094a4c991be094912bb2768000384e55981": { "es": { - "updatedAt": "2026-02-25T21:22:39.637Z", + "updatedAt": "2026-02-27T01:10:15.437Z", "postProcessHash": "c9561e4f91d8b66e9230243f7754bf4bccc2bfb7c1d125af4ca236509b34c4ff" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.637Z", + "updatedAt": "2026-02-27T01:10:15.438Z", "postProcessHash": "865bdfaf3c6e5a58d4b87fc1f6d6d7089ab476ba789484ced620b5c9ae61d26f" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.638Z", + "updatedAt": "2026-02-27T01:10:15.439Z", "postProcessHash": "7b6c959fe9e886365a3fb1f61b89609a5eb5047d4a8f00edd82c84e9412b9c28" } } @@ -16806,15 +17002,15 @@ "e3661f9d3d5acd4ab3cbfe59dd0badc71371b9067262486447f25332babc6cff": { "9b127d2057c14eddcfec193913024d1ffbf8d565c50a21d0abef939a667e7537": { "zh": { - "updatedAt": "2026-02-25T21:22:39.574Z", + "updatedAt": "2026-02-27T01:10:15.373Z", "postProcessHash": "49a9d92030d79b820888725f71a1c866909ec3b5b6c796d0e2ceabafbc303d10" }, "es": { - "updatedAt": "2026-02-25T21:22:39.575Z", + "updatedAt": "2026-02-27T01:10:15.374Z", "postProcessHash": "35becb2d7cd729783c3e4a5fd9bf375da54a13eb6df6802dc12d79a69d92f5e6" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.576Z", + "updatedAt": "2026-02-27T01:10:15.375Z", "postProcessHash": "3861c6e26d05e90d7584f26dea1f4ed8b465bccdf7a266d6b868eca143db28a0" } } @@ -16822,15 +17018,15 @@ "40596eae1a2a1dad10689b2421fc2f389ecf02fbf78656fe752301a420af56d3": { "e4fed848c6dd280df9a0c8d18df4115d0d23fd43e6a531ddaf33dbb4720ca2cd": { "fr": { - "updatedAt": "2026-02-25T21:22:39.620Z", + "updatedAt": "2026-02-27T01:10:15.420Z", "postProcessHash": "a8c05cc79783fa881b8eae2fbe8b8f0ed9c143c889fc5f3afb402c4bd868d4ba" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.620Z", + "updatedAt": "2026-02-27T01:10:15.420Z", "postProcessHash": "5de5a372fe3bf6302bab46123c4233c3bdb15470ca5abc72c7761b0f45f2a6e2" }, "es": { - "updatedAt": "2026-02-25T21:22:39.622Z", + "updatedAt": "2026-02-27T01:10:15.423Z", "postProcessHash": "4b53c78debe7b5f03195fe361cdff919d109fc378b38b984c305c5e40162a75f" } } @@ -16838,15 +17034,15 @@ "6cfbc759c7c541c3530f6208468c89340746f6f1989c23fcfedc5941bdb8b00e": { "7741f8723bbaaeeb4de7097363e0e153dc0d06fda6d7d63fe78ce66cb9c96256": { "es": { - "updatedAt": "2026-02-25T21:22:39.677Z", + "updatedAt": "2026-02-27T01:10:15.479Z", "postProcessHash": "608779ebcec626a6cf754e706ea4cdd8708d5e4585b428e15078067875488ff7" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.677Z", + "updatedAt": "2026-02-27T01:10:15.480Z", "postProcessHash": "f271328cc2310c3c2201c8251fe9ae21d4d06f6d1135803e51ec4b72d0fdc776" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.678Z", + "updatedAt": "2026-02-27T01:10:15.480Z", "postProcessHash": "5977c3a421348aa0059e2e0319d2e111ec82aa545e3526048d270ada0b0ea916" } } @@ -16854,15 +17050,15 @@ "33b78ddcb669475fe5730abe069afeb8a101804826f137ad1c3a9f411275e48c": { "90baae772a98343f65c426eede4774f14c9224f73cf1e631e1c939d9d8efe9d5": { "es": { - "updatedAt": "2026-02-25T21:22:39.696Z", + "updatedAt": "2026-02-27T01:10:15.497Z", "postProcessHash": "26f564adf051b9e41278468972a0dc363b78cc6f97f33438da2defd13509d6c7" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.698Z", + "updatedAt": "2026-02-27T01:10:15.499Z", "postProcessHash": "cc30e302189917b334dc38e93cec49628949872073b310a9bd19c337a7b2551a" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.698Z", + "updatedAt": "2026-02-27T01:10:15.500Z", "postProcessHash": "c01eebcf5505c48f58fb727de06b2d211543e2743835540e2ce39edacf8f9ccc" } } @@ -16870,15 +17066,15 @@ "2bc3575c889bc3b9a5a6f43ec008f99c7ec03483e2231a2f6126017d18532c25": { "6e9d369a2e5e03319704f2b22738528e1681fb0ef4a2ccb38728dada5f08a360": { "es": { - "updatedAt": "2026-02-25T21:22:39.697Z", + "updatedAt": "2026-02-27T01:10:15.497Z", "postProcessHash": "c5990fb54f50fbfc3050b576f1a92dffe1aa32aae5aba312be804b623ed3bc69" }, "fr": { - "updatedAt": "2026-02-25T21:22:39.697Z", + "updatedAt": "2026-02-27T01:10:15.498Z", "postProcessHash": "27da59cbe9ed0eb403df6f45d2abd0f7ca807d5e1b866b2af1b0b9ecf14889de" }, "zh": { - "updatedAt": "2026-02-25T21:22:39.698Z", + "updatedAt": "2026-02-27T01:10:15.499Z", "postProcessHash": "fb693b3b7836af17a000415e118c9451a1ae7aec20dc2c3dca84c70d60487bc7" } } @@ -16897,6 +17093,36 @@ "updatedAt": "2026-02-25T21:22:39.515Z", "postProcessHash": "3d8de23c99175d1c1752af84c391c81d620e41d5503c2beac17b68c31e39fa87" } + }, + "14ea651585af6418fbe1025b9da70a4c2f1473ff426c44938d107176c7bfac41": { + "zh": { + "updatedAt": "2026-02-27T01:10:15.334Z", + "postProcessHash": "d6837aa92adaaa34b096d09539e9674285e49328993a174bf6fde35f61b3b4f7" + }, + "fr": { + "updatedAt": "2026-02-27T01:10:15.335Z", + "postProcessHash": "8758bd4cf41fae1fec5c27930bfaa4de8a2ef8da706a92bb991811c48a9c29e4" + }, + "es": { + "updatedAt": "2026-02-27T01:10:15.335Z", + "postProcessHash": "fcc22aa782e070f25ad4db86f6d88f7c3f7fc501f14d8e2df84062d849be9aa7" + } + } + }, + "e1a9142591f68cbf45b4493a42c720b92379126eab07472503491f565e2fb773": { + "663f896c29a6c3bcf7df268b419eafd2d938f52c46336671ff0139bc0fc9e082": { + "fr": { + "updatedAt": "2026-02-27T01:10:15.661Z", + "postProcessHash": "8f64a018f92998a24d87504a5e13c1ee3a481c63aca2cc037708bafc95b21a41" + }, + "es": { + "updatedAt": "2026-02-27T01:10:15.662Z", + "postProcessHash": "d87e1e576413b90c447fec7b87379c2674e0d96f3bc1f29797805968a809bac7" + }, + "zh": { + "updatedAt": "2026-02-27T01:10:15.662Z", + "postProcessHash": "a0207908adb2d79e47ed2c9f80161a36ee5f0ab07af7042130b33540e066a336" + } } } }, diff --git a/zh/api-playground/troubleshooting.mdx b/zh/api-playground/troubleshooting.mdx index e877f7c8b..56d744cc5 100644 --- a/zh/api-playground/troubleshooting.mdx +++ b/zh/api-playground/troubleshooting.mdx @@ -89,13 +89,13 @@ keywords: ["API 故障排查", "OpenAPI 无效", "配置问题"] 3. **验证问题**:使用 `mint openapi-check ` 验证你的 OpenAPI 文档是否有效。
- + 1. **隐藏操作**:在你的 OpenAPI 规范中标记为 `x-hidden: true` 的操作不会出现在自动生成的导航中。 2. **无效操作**:OpenAPI 规范中存在校验错误的操作可能会被跳过。请检查你的 OpenAPI 文档是否有语法错误。 3. **手动与自动包含**:如果你从某个 OpenAPI 规范中引用了任意端点,只有被明确引用的操作会显示在导航中,其他页面不会自动添加。这也包括在子导航元素中被引用的操作。 - + 在导航中将 OpenAPI 操作与常规文档页面结合使用时: 1. **文件冲突**:同一操作不能同时存在 `MDX` 文件和导航条目。比如,如果你有 `get-users.mdx`,就不要在导航中再包含 `"GET /users"`。如果你需要一个与该操作同名的文件,请为该端点使用 `x-mint` 扩展,让 href 指向其他位置。 diff --git a/zh/components/mermaid-diagrams.mdx b/zh/components/mermaid-diagrams.mdx index 8a24c1a52..82f18ae5f 100644 --- a/zh/components/mermaid-diagrams.mdx +++ b/zh/components/mermaid-diagrams.mdx @@ -48,13 +48,14 @@ keywords: ["Mermaid", "flowcharts", "diagrams"] ``` ```` +
## ELK 布局支持
-Mintlify 支持将 [ELK (Eclipse Layout Kernel)](https://www.eclipse.org/elk/) 布局引擎用于 Mermaid 图表。ELK 可以优化排列方式以减少重叠并提高可读性,这对于大型或复杂的图表特别有用。 +Mintlify 支持将 [ELK(Eclipse Layout Kernel)](https://www.eclipse.org/elk/) 布局引擎用于 Mermaid 图表。ELK 会优化元素排布,减少重叠并提升可读性,对大型或复杂图表尤其有用。 -要在 Mermaid 图表中使用 ELK 布局,请在图表开头添加 `%%{init: {'flowchart': {'defaultRenderer': 'elk'}}}%%` 指令: +要在 Mermaid 图表中使用 ELK 布局,请在图表定义的开头添加 `%%{init: {'flowchart': {'defaultRenderer': 'elk'}}}%%` 指令: ````mdx ELK layout example ```mermaid @@ -68,6 +69,7 @@ flowchart LR ``` ```` +
## 交互式控件
diff --git a/zh/customize/custom-404-page.mdx b/zh/customize/custom-404-page.mdx index 4029e0b54..6feea0b08 100644 --- a/zh/customize/custom-404-page.mdx +++ b/zh/customize/custom-404-page.mdx @@ -42,5 +42,5 @@ keywords: ["404 error page", "custom error pages"] - 404 错误页面的自定义说明。支持 Markdown 格式。 + 404 错误页面的自定义说明。支持 MDX 格式,包括链接、加粗、斜体文本和自定义组件。 \ No newline at end of file diff --git a/zh/deploy/ci.mdx b/zh/deploy/ci.mdx index a3622cf59..30409d90b 100644 --- a/zh/deploy/ci.mdx +++ b/zh/deploy/ci.mdx @@ -437,7 +437,7 @@ Vale 支持一系列[软件包](https://vale.sh/docs/keys/packages),可用于 Vale 会在 MDX 文件中自动识别并遵守这些注释,无需额外配置。使用注释来跳过需要被 linter 忽略的行或片段。 - 不要将 `{/* vale off */}` 或类似的 MDX 表达式注释直接放置为 JSX 组件的子元素,尤其是在兄弟元素之间。例如,不要在 `` 组件内的两个 `` 元素之间放置这类注释。 - - 请将注释放在特定元素的内容中,或重新组织内容结构以避免需要使用注释。 + 不要将 `{/* vale off */}` 或类似的 MDX 表达式注释放在 JSX 组件内,作为位于同级元素之间的直接子元素。例如,在 `` 组件内部的两个 `` 元素之间。 + + 请将注释放在某个特定元素的内容内部,或通过重构内容结构来避免需要使用这些注释。 diff --git a/zh/editor/keyboard-shortcuts.mdx b/zh/editor/keyboard-shortcuts.mdx index ead5ba1fb..511e2fa0c 100644 --- a/zh/editor/keyboard-shortcuts.mdx +++ b/zh/editor/keyboard-shortcuts.mdx @@ -69,9 +69,9 @@ keywords: ["编辑器", "快捷键", "键盘", "快捷方式"] ### 智能替换 -编辑器会在你输入时自动将某些字符序列转换为排版符号。编辑器会跳过代码块和行内代码中的替换。 +编辑器在你输入时,会自动将某些字符序列转换为排版符号。编辑器会跳过代码块和行内代码中的替换。 -| 输入 | 结果 | +| 类型 | 结果 | | :--- | :--- | | `->` | → | | `<-` | ← | diff --git a/zh/guides/understand-your-audience.mdx b/zh/guides/understand-your-audience.mdx index d3d7f4e9f..a5350b4d0 100644 --- a/zh/guides/understand-your-audience.mdx +++ b/zh/guides/understand-your-audience.mdx @@ -45,4 +45,4 @@ keywords: ["user research", "audience personas", "user feedback", "target audien 2. **引入反馈机制。** 无论是点赞/点踩还是纯文本输入,都应让用户在阅读文档时有机会提供反馈。 3. **使用 Analytics 进行指导。** 审查反馈与洞察,了解用户在哪些地方遇到困难、在哪些地方顺利完成。优先更新那些用户最易受阻或与产品关键任务最相关的文档。 -总会有文档无法覆盖的边缘情况。优先处理影响最大、能帮助最多人的页面。内容过多会增加导航与维护成本,试图覆盖所有情形可能适得其反。 \ No newline at end of file +文档无法覆盖的边缘情况始终存在。优先处理影响最大、能帮助最多人的页面。内容过多会增加导航与维护成本,试图覆盖所有情形可能适得其反。 \ No newline at end of file diff --git a/zh/guides/windsurf.mdx b/zh/guides/windsurf.mdx index 107bbdb6f..5ec0bb022 100644 --- a/zh/guides/windsurf.mdx +++ b/zh/guides/windsurf.mdx @@ -15,7 +15,7 @@ Windsurf 的 Cascade AI 助手可以配合 Mintlify 组件,按照你的标准 * **工作区规则** 存储在你的文档存储库中,并与团队共享。 * **记忆** 提供会随时间累积的个人 context。 -我们建议为共享的文档规范设置工作区规则。你可以在工作中逐步积累记忆,但由于记忆不共享,团队成员之间的体验将不一致。 +我们建议为共享的文档规范设置工作区规则。你可以在工作中逐步积累记忆,但由于记忆不共享,团队成员之间的体验是不一致的。 在你的文档存储库的 `.windsurf/rules` 目录中创建工作区规则。更多信息请参阅 Windsurf 文档:[Memories & Rules](https://docs.windsurf.com/windsurf/cascade/memories)。 diff --git a/zh/installation.mdx b/zh/installation.mdx index 8ffa662ac..a85399b28 100644 --- a/zh/installation.mdx +++ b/zh/installation.mdx @@ -307,7 +307,7 @@ mint migrate-mdx 这是因为没有全局安装 Node 包所需的权限。 - **解决方案**:尝试运行 `sudo npm i -g mint`。系统会提示你输入密码,即用于解锁电脑的密码。 + **解决方案**:尝试运行 `sudo npm i -g mint`。当系统提示时,输入你用于解锁电脑的密码。 diff --git a/zh/integrations/analytics/adobe.mdx b/zh/integrations/analytics/adobe.mdx index 47150ba7e..de7db496e 100644 --- a/zh/integrations/analytics/adobe.mdx +++ b/zh/integrations/analytics/adobe.mdx @@ -4,11 +4,11 @@ description: "通过 Adobe Experience Platform Launch 使用 Adobe Analytics 跟 keywords: ["Adobe Analytics", "Adobe Launch", "Adobe Experience Platform", "site analytics"] --- -将以下内容添加到你的 `docs.json` 文件以将 analytics 数据发送到 Adobe Analytics。 +在你的 `docs.json` 文件中添加以下配置,以将分析数据发送到 Adobe Analytics。 -```json Analytics options in docs.json +```json docs.json 中的 Analytics 选项 "integrations": { "adobe": { "launchUrl": "required" @@ -16,7 +16,7 @@ keywords: ["Adobe Analytics", "Adobe Launch", "Adobe Experience Platform", "site } ``` -```json Example +```json 示例 "integrations": { "adobe": { "launchUrl": "https://assets.adobedtm.com/launch-EN93497c30fdf0424eb678d5f4ffac66dc.min.js" @@ -27,9 +27,9 @@ keywords: ["Adobe Analytics", "Adobe Launch", "Adobe Experience Platform", "site
- ## 获取你的 Launch URL + ## 获取 Launch URL
1. 登录 [Adobe Experience Platform Data Collection](https://experience.adobe.com/#/data-collection/)。 -2. 打开你的 Launch 属性并前往 **Environments** 标签页。 -3. 从你的生产环境中复制脚本 URL。 +2. 打开你的 Launch 属性并进入 **Environments** 标签页。 +3. 从生产环境中复制脚本 URL。 \ No newline at end of file diff --git a/zh/integrations/analytics/google-analytics.mdx b/zh/integrations/analytics/google-analytics.mdx index 8b7bfb368..3b39b7ed7 100644 --- a/zh/integrations/analytics/google-analytics.mdx +++ b/zh/integrations/analytics/google-analytics.mdx @@ -47,7 +47,7 @@ keywords: ["GA4 integration", "measurement ID", "web stream", "Universal Analyti Google Analytics 通常需要两到三天才会显示你的数据。 -你可以使用 [Google Analytics Debugger](https://chrome.google.com/webstore/detail/google-analytics-debugger/jnkmfdileelhofjcijamephohjechhna?hl=en) 检查是否已正确启用 Analytics。每当 GA4 发出请求时,该扩展都会在你的浏览器控制台中记录日志。 +你可以使用 [Google Analytics Debugger](https://chrome.google.com/webstore/detail/google-analytics-debugger/jnkmfdileelhofjcijamephohjechhna?hl=en) 检查你的 Analytics 配置。每当 GA4 发出请求时,该扩展都会在你的浏览器控制台中记录日志。 diff --git a/zh/integrations/analytics/overview.mdx b/zh/integrations/analytics/overview.mdx index 7ab27cbc7..625785cc9 100644 --- a/zh/integrations/analytics/overview.mdx +++ b/zh/integrations/analytics/overview.mdx @@ -6,7 +6,7 @@ keywords: ["third-party analytics", "engagement tracking", "analytics platforms" 通过连接第三方 Analytics 平台来跟踪用户如何与你的文档交互。Mintlify 会将互动事件发送到你已配置的 Analytics 提供商。 -
+
## Analytics 集成的工作原理
@@ -22,18 +22,18 @@ keywords: ["third-party analytics", "engagement tracking", "analytics platforms" href="/zh/integrations/analytics/adobe" horizontal icon={ - - - - - } + + + + +} /> ### 示例配置
diff --git a/zh/integrations/sdks/speakeasy.mdx b/zh/integrations/sdks/speakeasy.mdx index a6d0bb71e..aaaeda944 100644 --- a/zh/integrations/sdks/speakeasy.mdx +++ b/zh/integrations/sdks/speakeasy.mdx @@ -57,7 +57,7 @@ keywords: ["Speakeasy SDK", "autogenerated SDKs", "SDK code samples", "API playg { "anchors": [ { - "name": "API 参考", + "name": "API Reference", // !mark "openapi": "SPEAKEASY_COMBINED_SPEC_URL", "url": "api-reference", diff --git a/zh/organize/settings.mdx b/zh/organize/settings.mdx index a520786cd..284f78f37 100644 --- a/zh/organize/settings.mdx +++ b/zh/organize/settings.mdx @@ -927,12 +927,13 @@ import IconsOptional from "/snippets/zh/icons-optional.mdx"; - - OpenAPI 规范配置。 - + + OpenAPI 规范的配置。 + + - 是否在 API 参考页面上显示 OpenAPI 规范的下载按钮。默认为 `false`。 + 是否在 API 参考页面上为 OpenAPI 规范显示下载按钮。默认为 `false`。 @@ -1246,7 +1247,7 @@ import IconsOptional from "/snippets/zh/icons-optional.mdx"; - 404 错误页面的自定义说明。支持基本 MDX 格式,包括链接、加粗和斜体文本。不支持自定义组件。 + 404 错误页面的自定义说明。支持 MDX 格式,包括链接、加粗、斜体文本和自定义组件。