diff --git a/es/changelog.mdx b/es/changelog.mdx index 0e03dd9e7..ee8a54a67 100644 --- a/es/changelog.mdx +++ b/es/changelog.mdx @@ -5,6 +5,17 @@ rss: true noindex: true --- + + ## Widget de vista previa + + Las implementaciones de vista previa ahora incluyen un widget interactivo que muestra todos los archivos modificados en la implementación. El widget aparece como un botón flotante en la esquina inferior derecha y ofrece: + + * Navegación con un solo clic a las páginas modificadas. + * Lista con función de búsqueda de todos los archivos modificados con insignias de estado (añadido, modificado, eliminado). + + El widget se habilita automáticamente en todas las implementaciones de vista previa y ayuda a los revisores a navegar rápidamente al contenido modificado. + + ## Fechas de última modificación diff --git a/es/create/code.mdx b/es/create/code.mdx index 486b6e078..8e850b6b9 100644 --- a/es/create/code.mdx +++ b/es/create/code.mdx @@ -1,32 +1,32 @@ --- -title: "Formato de código" -description: "Muestra y da estilo al código en línea y a los bloques de código." +title: "Dar formato al código" +description: "Mostrar y aplicar estilo al código en línea y a los bloques de código." keywords: ["bloques de código", "resaltado de sintaxis", "estilo de código"] ---
- ## Agregar ejemplos de código + ## Añadir ejemplos de código
-Puedes agregar fragmentos de código en línea o bloques de código. Los bloques de código ofrecen opciones de metadatos para el resaltado de sintaxis, títulos, resaltado de líneas, iconos y más. +Puedes añadir fragmentos de código en línea o bloques de código. Los bloques de código admiten opciones meta para el resaltado de sintaxis, títulos, resaltado de líneas, iconos y más.
### Código en línea
-Para indicar una `palabra` o `frase` como código, enciérrala entre acentos invertidos (`). +Para indicar que una `palabra` o `frase` es código, enciérrala entre comillas invertidas (`). ```mdx -Para indicar una `palabra` o `frase` como código, enciérrala entre acentos invertidos (`). +Para denotar una `palabra` o `frase` como código, enciérrala entre acentos graves (`). ```
### Bloques de código
-Usa [bloques de código delimitados](https://www.markdownguide.org/extended-syntax/#fenced-code-blocks) encerrando el código entre tres comillas invertidas. Los bloques de código se pueden copiar y, si tienes el assistant habilitado, los usuarios pueden pedir a la IA que explique el código. +Utiliza [bloques de código delimitados](https://www.markdownguide.org/extended-syntax/#fenced-code-blocks) encerrando el código entre tres comillas invertidas (`). Los bloques de código se pueden copiar y, si tienes assistant habilitado, los usuarios pueden pedirle a la IA que explique el código. -Especifica el lenguaje de programación para el resaltado de sintaxis y para habilitar opciones meta. Agrega cualquier opción meta, como title o icon, después del lenguaje. +Especifica el lenguaje de programación para el resaltado de sintaxis y para habilitar las opciones meta. Agrega cualquier opción meta, como un title o icon, después del lenguaje. ```java HelloWorld.java example icon=java lines @@ -37,7 +37,7 @@ Especifica el lenguaje de programación para el resaltado de sintaxis y para hab } ``` - ````mdx Format + ````mdx Formato ```java HelloWorld.java example lines icon="java" class HelloWorld { public static void main(String[] args) { @@ -49,34 +49,34 @@ Especifica el lenguaje de programación para el resaltado de sintaxis y para hab
- ## Opciones para bloques de código + ## Opciones de bloques de código
-Añade opciones meta a tus bloques de código para personalizar su apariencia. +Añade opciones de metadatos a tus bloques de código para personalizar su apariencia. - Debes especificar un lenguaje de programación para un bloque de código antes de añadir cualquier otra opción meta. + Debes especificar un lenguaje de programación para un bloque de código antes de añadir cualquier otra opción de metadatos.
### Sintaxis de opciones
-* **Opciones de tipo cadena y booleanas**: Envuélvelas con `""`, `''` o sin comillas. -* **Opciones de expresión**: Envuélvelas con `{}`, `""` o `''`. +* **Opciones de tipo cadena (string) y booleanas**: Escríbelas entre `""`, `''` o sin comillas. +* **Opciones de expresión**: Escríbelas entre `{}`, `""` o `''`.
### Resaltado de sintaxis
-Activa el resaltado de sintaxis especificando el lenguaje de programación tras las comillas invertidas de apertura de un bloque de código. +Habilita el resaltado de sintaxis especificando el lenguaje de programación después de las comillas invertidas de apertura de un bloque de código. Usamos [Shiki](https://shiki.style/) para el resaltado de sintaxis y admitimos todos los lenguajes disponibles. Consulta la lista completa de [lenguajes](https://shiki.style/languages) en la documentación de Shiki. -Personaliza globalmente los temas de los bloques de código usando `styling.codeblocks` en tu archivo `docs.json`. Define temas simples como `system` o `dark`, o configura [temas de Shiki](https://shiki.style/themes) personalizados para los modos claro y oscuro. Consulta [Settings](/es/organize/settings#param-styling) para ver las opciones de configuración. +Personaliza los temas de bloques de código de forma global usando `styling.codeblocks` en tu archivo `docs.json`. Establece temas simples como `system` o `dark`, o configura [temas de Shiki](https://shiki.style/themes) personalizados para los modos claro y oscuro. Consulta [Configuración](/es/organize/settings#param-styling) para ver las opciones de configuración. - ```java Ejemplo de resaltado de sintaxis + ```java Syntax highlighting example class HelloWorld { public static void main(String[] args) { System.out.println("Hello, World!"); @@ -85,7 +85,7 @@ Personaliza globalmente los temas de los bloques de código usando `styling.code ``` ````mdx Format - ```java Ejemplo de resaltado de sintaxis + ```java Syntax highlighting example class HelloWorld { public static void main(String[] args) { System.out.println("Hello, World!"); @@ -95,10 +95,10 @@ Personaliza globalmente los temas de los bloques de código usando `styling.code ```` - - Para temas personalizados, establece tu tema en `docs.json` como `"css-variables"` y reemplaza los colores del resaltado de sintaxis usando variables CSS con el prefijo `--mint-`. + + Para temas personalizados, configura el tema en `docs.json` como `"css-variables"` y redefine los colores de resaltado de sintaxis usando variables de CSS con el prefijo `--mint-`. - Estas variables están disponibles: + Están disponibles las siguientes variables: **Colores básicos** @@ -108,12 +108,12 @@ Personaliza globalmente los temas de los bloques de código usando `styling.code **Colores de tokens** * `--mint-token-constant`: Constantes y literales - * `--mint-token-string`: Valores de cadena + * `--mint-token-string`: Valores de tipo string * `--mint-token-comment`: Comentarios * `--mint-token-keyword`: Palabras clave - * `--mint-token-parameter`: Parámetros de función - * `--mint-token-function`: Nombres de función - * `--mint-token-string-expression`: Expresiones de cadena + * `--mint-token-parameter`: Parámetros de funciones + * `--mint-token-function`: Nombres de funciones + * `--mint-token-string-expression`: Expresiones de tipo string * `--mint-token-punctuation`: Signos de puntuación * `--mint-token-link`: Enlaces @@ -138,7 +138,7 @@ Personaliza globalmente los temas de los bloques de código usando `styling.code **Resaltado de sintaxis personalizado** - Añade resaltado de sintaxis para lenguajes que no estén incluidos en el conjunto predeterminado de Shiki proporcionando archivos de gramática TextMate personalizados. Crea un archivo JSON siguiendo el [formato de gramática de TextMate](https://macromates.com/manual/en/language_grammars) y luego haz referencia a él en tu `docs.json`. Puedes añadir varios lenguajes personalizados incluyendo rutas adicionales en el array. + Agrega resaltado de sintaxis para lenguajes que no estén incluidos en el conjunto predeterminado de Shiki proporcionando archivos de gramática TextMate personalizados. Crea un archivo JSON siguiendo el [formato de gramática de TextMate](https://macromates.com/manual/en/language_grammars) y luego haz referencia a él en tu `docs.json`. Puedes agregar varios lenguajes personalizados incluyendo rutas adicionales en el array. ```json docs.json { @@ -157,29 +157,29 @@ Personaliza globalmente los temas de los bloques de código usando `styling.code ### Twoslash -En los bloques de código de JavaScript y TypeScript, usa `twoslash` para habilitar información de tipos interactiva. Los usuarios pueden pasar el cursor sobre variables, funciones y parámetros para ver los tipos y errores como en un IDE. +En bloques de código de JavaScript y TypeScript, usa `twoslash` para habilitar información interactiva sobre tipos. Los usuarios pueden colocar el cursor sobre variables, funciones y parámetros para ver tipos y errores como en un IDE. - ```ts twoslash Twoslash example + ```ts twoslash Ejemplo de Twoslash type Pet = "cat" | "dog" | "hamster"; function adoptPet(name: string, type: Pet) { return `${name} the ${type} is now adopted!`; } - // Hover to see the inferred types + // Coloca el cursor para ver los tipos inferidos const message = adoptPet("Mintie", "cat"); ``` ````mdx Format - ```ts twoslash Twoslash example + ```ts twoslash Ejemplo de Twoslash type Pet = "cat" | "dog" | "hamster"; function adoptPet(name: string, type: Pet) { return `${name} the ${type} is now adopted!`; } - // Hover to see the inferred types + // Coloca el cursor para ver los tipos inferidos const message = adoptPet("Mintie", "cat"); ``` ```` @@ -189,15 +189,15 @@ En los bloques de código de JavaScript y TypeScript, usa `twoslash` para habili ### Título -Añade un título para etiquetar tu ejemplo de código. Usa `title="Your title"` o una cadena en una sola línea. +Añade un título para identificar tu ejemplo de código. Usa `title="Your title"` o una cadena en una sola línea. - ```javascript example + ```javascript Title example const hello = "world"; ``` ````mdx Format - ```javascript example + ```javascript Title example const hello = "world"; ``` ```` @@ -225,10 +225,10 @@ Añade un icono a tu bloque de código usando la propiedad `icon`. Consulta [Ico ### Resaltado de líneas -Resalta líneas específicas en tus bloques de código usando `highlight` con los números de línea o los rangos que quieras resaltar. +Resalta líneas específicas en tus bloques de código usando `highlight` con los números de línea o rangos que deseas resaltar. - ```javascript Ejemplo de resaltado de líneas {1,2,5} + ```javascript Line highlighting example {1,2,5} const greeting = "Hello, World!"; function sayHello() { console.log(greeting); @@ -236,8 +236,8 @@ Resalta líneas específicas en tus bloques de código usando `highlight` con lo sayHello(); ``` - ````mdx Formato - ```javascript Ejemplo de resaltado de líneas highlight={1-2,5} + ````mdx Format + ```javascript Line highlighting example highlight={1-2,5} const greeting = "Hello, World!"; function sayHello() { console.log(greeting); @@ -251,10 +251,10 @@ Resalta líneas específicas en tus bloques de código usando `highlight` con lo ### Enfoque de líneas -Resalta líneas específicas en tus bloques de código usando `focus` con números de línea o rangos. +Resalta líneas específicas en tus bloques de código usando `focus` con números o rangos de líneas. - ```javascript Line focusing example focus=2,4,5 + ```javascript Ejemplo de enfoque de líneas focus=2,4,5 const greeting = "Hello, World!"; function sayHello() { console.log(greeting); @@ -262,8 +262,8 @@ Resalta líneas específicas en tus bloques de código usando `focus` con númer sayHello(); ``` - ````mdx Format - ```javascript Line focusing example focus={2,4-5} + ````mdx Formato + ```javascript Ejemplo de enfoque de líneas focus={2,4-5} const greeting = "Hello, World!"; function sayHello() { console.log(greeting); @@ -280,7 +280,7 @@ Resalta líneas específicas en tus bloques de código usando `focus` con númer Muestra los números de línea en el lado izquierdo de tu bloque de código usando `lines`. - ```javascript Ejemplo de mostrar números de línea lines + ```javascript Show line numbers example lines const greeting = "Hello, World!"; function sayHello() { console.log(greeting); @@ -303,7 +303,7 @@ Muestra los números de línea en el lado izquierdo de tu bloque de código usan ### Expandible -Permite a los usuarios expandir y contraer bloques de código largos usando `expandable`. +Permite que los usuarios expandan y contraigan bloques de código largos con `expandable`. ```python Expandable example expandable @@ -360,7 +360,7 @@ Permite a los usuarios expandir y contraer bloques de código largos usando `exp book.checked_out = False book.due_date = None - # Remove from patron's checkouts + # Quitar de los préstamos del usuario for patron, books in self.checkouts.items(): if isbn in books: books.remove(isbn) @@ -378,7 +378,7 @@ Permite a los usuarios expandir y contraer bloques de código largos usando `exp def main(): library = Library() - # Añade algunos libros + # Agregar algunos libros books = [ Book("The Hobbit", "J.R.R. Tolkien", "978-0-261-10295-4"), Book("1984", "George Orwell", "978-0-452-28423-4"), @@ -411,10 +411,10 @@ Permite a los usuarios expandir y contraer bloques de código largos usando `exp
- ### Ajuste + ### Ajuste de línea
-Activa el ajuste de texto para líneas largas con `wrap`. Esto evita el desplazamiento horizontal y facilita la lectura de líneas extensas. +Activa el ajuste de texto para líneas largas con `wrap`. Esto evita el desplazamiento horizontal y hace que las líneas largas sean más fáciles de leer. ```javascript Wrap example wrap @@ -442,14 +442,14 @@ Activa el ajuste de texto para líneas largas con `wrap`. Esto evita el desplaza ### Diff -Muestra una diferencia visual de las líneas añadidas o eliminadas en tus bloques de código. Las líneas añadidas se resaltan en verde y las eliminadas en rojo. +Muestra un diff visual de las líneas añadidas o eliminadas en tus bloques de código. Las líneas añadidas se resaltan en verde y las eliminadas, en rojo. -Para crear diferencias, añade estos comentarios especiales al final de las líneas en tu bloque de código: +Para crear diffs, añade estos comentarios especiales al final de las líneas en tu bloque de código: -* `// [!code ++]`: Marca una línea como añadida (resaltado en verde). -* `// [!code --]`: Marca una línea como eliminada (resaltado en rojo). +* `// [!code ++]`: Marca una línea como añadida (resaltada en verde). +* `// [!code --]`: Marca una línea como eliminada (resaltada en rojo). -Para varias líneas consecutivas, especifica el número de líneas después de dos puntos: +Para varias líneas consecutivas, especifica el número de líneas después de los dos puntos: * `// [!code ++:3]`: Marca la línea actual más las dos siguientes como añadidas. * `// [!code --:5]`: Marca la línea actual más las cuatro siguientes como eliminadas. @@ -482,7 +482,7 @@ La sintaxis del comentario debe coincidir con tu lenguaje de programación (por ## Componente CodeBlock -Usa el componente `` en componentes personalizados de React para renderizar bloques de código de forma programática con el mismo estilo y las mismas funciones que los bloques de código de Markdown. +Usa el componente `` en componentes React personalizados para renderizar de manera programática bloques de código con el mismo estilo y las mismas características que los bloques de código de Markdown.
### Props @@ -493,7 +493,7 @@ Usa el componente `` en componentes personalizados de React para rend - El nombre del archivo que se mostrará en el encabezado del bloque de código. + El nombre de archivo que se mostrará en el encabezado del bloque de código. @@ -502,24 +502,24 @@ Usa el componente `` en componentes personalizados de React para rend - Si mostrar números de línea. + Indica si se deben mostrar los números de línea. - Si ajustar el bloque de código. + Indica si se debe ajustar el bloque de código. - Si expandir el bloque de código. + Indica si el bloque de código se puede expandir. - Las líneas que se deben resaltar. Proporciona un arreglo de números en formato de cadena. Ejemplo: + Las líneas que se deben resaltar. Proporciona un array de números como cadena. Ejemplo: `"[1,3,4,5]"`. - Las líneas en las que enfocarse. Proporciona un arreglo de números en formato de cadena. Ejemplo: + Las líneas en las que se debe centrar la atención. Proporciona un array de números como cadena. Ejemplo: `"[1,3,4,5]"`. diff --git a/es/deploy/preview-deployments.mdx b/es/deploy/preview-deployments.mdx index 4cf7c4c59..a6f7429b3 100644 --- a/es/deploy/preview-deployments.mdx +++ b/es/deploy/preview-deployments.mdx @@ -23,10 +23,10 @@ Las implementaciones de vista previa se crean automáticamente mediante solicitu
- Las vistas previas automáticas solo se crean para las solicitudes de extracción dirigidas a tu [rama de implementación](/es/guides/git-concepts#deployment-branch). + Las vistas previas automáticas solo se generan para solicitudes de extracción cuyo destino sea tu [rama de implementación](/es/guides/git-concepts#deployment-branch). -Cuando creas una solicitud de extracción, el bot de Mintlify agrega automáticamente un enlace para ver la implementación de la vista previa en tu solicitud de extracción. La vista previa se actualiza cada vez que haces push de nuevas confirmaciones a la rama. +Cuando creas una solicitud de extracción, el bot de Mintlify agrega automáticamente un enlace para ver la implementación de vista previa en tu solicitud de extracción. La vista previa se actualiza cada vez que haces push de nuevas confirmaciones a la branch. Enlace para ver la implementación en la línea de tiempo de la solicitud de extracción @@ -61,6 +61,24 @@ Vuelve a implementar una vista previa para actualizar el contenido o intentarlo El menú Previews con el botón de implementación resaltado con un rectángulo naranja. +
+ ## Widget de vista previa +
+ +El widget de vista previa aparece en las implementaciones de vista previa para ayudarte a navegar y revisar las páginas actualizadas. El widget es un botón flotante en la esquina inferior derecha de la implementación de vista previa. + + + Widget de vista previa expandido que muestra la lista de archivos modificados. + + Widget de vista previa expandido que muestra la lista de archivos modificados. + + +1. Haz clic en el widget para ver todos los archivos agregados, modificados o eliminados en la vista previa. +2. Haz clic en un archivo para ver los cambios en la página correspondiente. +3. Usa la barra de búsqueda para filtrar la lista de archivos modificados. + +El widget solo aparece en las implementaciones de vista previa, no en tu sitio en producción ni en las vistas previas locales. +
## Restringir el acceso a las implementaciones de vista previa
diff --git a/es/editor.mdx b/es/editor.mdx index a47c448bd..9cc83e8f0 100644 --- a/es/editor.mdx +++ b/es/editor.mdx @@ -370,5 +370,5 @@ Encuentra soluciones a problemas comunes que puedes encontrar al usar el editor ## Próximos pasos -* Aprende los conceptos fundamentales de [Git](/es/guides/git-concepts) -* Aprende las prácticas recomendadas para colaborar con [branches](/es/guides/branches) \ No newline at end of file +* Aprende conceptos fundamentales de [Git](/es/guides/git-concepts) +* Aprende las mejores prácticas para colaborar con [branches](/es/guides/branches) \ No newline at end of file diff --git a/fr/changelog.mdx b/fr/changelog.mdx index d71cc2843..ad965196f 100644 --- a/fr/changelog.mdx +++ b/fr/changelog.mdx @@ -5,6 +5,17 @@ rss: true noindex: true --- + + ## Widget d’aperçu + + Les déploiements de prévisualisation incluent désormais un widget interactif qui affiche tous les fichiers modifiés dans le déploiement. Le widget apparaît sous la forme d’un bouton flottant dans le coin inférieur droit et fournit : + + * Une navigation en un clic vers les pages modifiées. + * Une liste de tous les fichiers modifiés, que vous pouvez rechercher, avec des badges de statut (ajoutés, modifiés, supprimés). + + Le widget est automatiquement activé sur tous les déploiements de prévisualisation et aide les relecteurs à naviguer rapidement vers le contenu modifié. + + ## Dates de dernière modification diff --git a/fr/create/code.mdx b/fr/create/code.mdx index a091dfc3b..1bfb5f242 100644 --- a/fr/create/code.mdx +++ b/fr/create/code.mdx @@ -1,32 +1,32 @@ --- -title: "Mise en forme du code" -description: "Afficher et styliser le code en ligne et les code blocks." -keywords: ["code blocks", "coloration syntaxique", "mise en forme du code"] +title: "Formater le code" +description: "Afficher et mettre en forme le code inline et les blocs de code." +keywords: ["blocs de code", "coloration syntaxique", "mise en forme du code"] ---
- ## Ajouter des exemples de code +## Ajout d'exemples de code
-Vous pouvez ajouter des extraits de code en ligne ou des code blocks. Les code blocks prennent en charge des options de métadonnées pour la coloration syntaxique, les titles, la mise en évidence de lignes, les icon, et plus encore. +Vous pouvez ajouter des extraits de code en ligne ou des code blocks. Les code blocks prennent en charge des options méta pour la coloration syntaxique, les titres, la mise en surbrillance de lignes, les icônes, et plus encore.
### Code en ligne
-Pour indiquer qu’un `mot` ou une `expression` est du code, encadrez-le de backticks (`). +Pour marquer un `mot` ou une `expression` comme code, encadrez-le de backticks (`). ```mdx -Pour désigner un `mot` ou une `phrase` comme du code, entourez-le de backticks (`). +Pour désigner un `mot` ou une `phrase` en tant que code, entourez-les d'accents graves (`). ```
### Blocs de code
-Utilisez des [blocs de code délimités](https://www.markdownguide.org/extended-syntax/#fenced-code-blocks) en entourant le code de trois backticks. Les blocs de code sont copiables et, si vous avez activé l’Assistant, les utilisateurs peuvent demander à l’IA d’expliquer le code. +Utilisez des [blocs de code délimités](https://www.markdownguide.org/extended-syntax/#fenced-code-blocks) en entourant le code de trois accents graves. Les blocs de code peuvent être copiés et, si vous avez activé l’Assistant, les utilisateurs peuvent demander à l’IA d’expliquer le code. -Spécifiez le langage de programmation pour la mise en évidence syntaxique et pour activer les options méta. Ajoutez les options méta, comme un titre ou un icon, après le langage. +Indiquez le langage de programmation pour la coloration syntaxique et pour activer les options méta. Ajoutez toutes les options méta, comme un titre ou une icône, après le langage. ```java HelloWorld.java example icon=java lines @@ -49,31 +49,31 @@ Spécifiez le langage de programmation pour la mise en évidence syntaxique et p
- ## Options de code block + ## Options pour les code blocks
-Ajoutez des options méta à vos code blocks pour personnaliser leur apparence. +Ajoutez des options meta à vos code blocks pour personnaliser leur apparence. - Vous devez spécifier un langage de programmation pour un code block avant d'ajouter d'autres options méta. + Vous devez spécifier un langage de programmation pour un code block avant de pouvoir ajouter d’autres options meta.
### Syntaxe des options
-* **Options de type chaîne ou booléen** : Entourez-les de `""`, `''` ou laissez sans guillemets. -* **Options d’expression** : Entourez-les de `{}`, `""` ou `''`. +* **Options chaînes de caractères et booléennes** : Entourez-les de `""`, `''` ou ne mettez pas de guillemets. +* **Options d'expression** : Entourez-les de `{}`, `""` ou `''`.
### Coloration syntaxique
-Activez la coloration syntaxique en indiquant le langage de programmation après les premiers backticks d’un code block. +Activez la coloration syntaxique en indiquant le langage de programmation après les backticks ouvrants d'un bloc de code. Nous utilisons [Shiki](https://shiki.style/) pour la coloration syntaxique et prenons en charge tous les langages disponibles. Consultez la liste complète des [langages](https://shiki.style/languages) dans la documentation de Shiki. -Personnalisez globalement les thèmes des code blocks avec `styling.codeblocks` dans votre fichier `docs.json`. Définissez des thèmes simples comme `system` ou `dark`, ou configurez des [thèmes Shiki](https://shiki.style/themes) personnalisés pour les modes clair et sombre. Voir [Paramètres](/fr/organize/settings#param-styling) pour les options de configuration. +Personnalisez globalement les thèmes des blocs de code avec `styling.codeblocks` dans votre fichier `docs.json`. Définissez des thèmes simples comme `system` ou `dark`, ou configurez des [thèmes Shiki](https://shiki.style/themes) personnalisés pour les modes clair et sombre. Consultez la page [Settings](/fr/organize/settings#param-styling) pour les options de configuration. ```java Exemple de coloration syntaxique @@ -95,25 +95,25 @@ Personnalisez globalement les thèmes des code blocks avec `styling.codeblocks` ```` - - Pour des thèmes personnalisés, définissez votre thème dans `docs.json` sur `"css-variables"` et surchargez les couleurs de coloration syntaxique à l’aide de variables CSS avec le préfixe `--mint-`. + + Pour des thèmes personnalisés, définissez votre thème dans `docs.json` sur `"css-variables"` et surchargez les couleurs de la coloration syntaxique à l'aide de variables CSS avec le préfixe `--mint-`. Les variables suivantes sont disponibles : **Couleurs de base** * `--mint-color-text` : Couleur de texte par défaut - * `--mint-color-background` : Couleur d’arrière-plan + * `--mint-color-background` : Couleur d'arrière-plan - **Couleurs de tokens** + **Couleurs de jetons** * `--mint-token-constant` : Constantes et littéraux - * `--mint-token-string` : Valeurs de chaîne + * `--mint-token-string` : Valeurs de chaîne de caractères * `--mint-token-comment` : Commentaires * `--mint-token-keyword` : Mots-clés * `--mint-token-parameter` : Paramètres de fonction * `--mint-token-function` : Noms de fonction - * `--mint-token-string-expression` : Expressions de chaîne + * `--mint-token-string-expression` : Expressions de chaîne de caractères * `--mint-token-punctuation` : Signes de ponctuation * `--mint-token-link` : Liens @@ -138,7 +138,7 @@ Personnalisez globalement les thèmes des code blocks avec `styling.codeblocks` **Coloration syntaxique personnalisée** - Ajoutez une coloration syntaxique pour les langages qui ne figurent pas dans le jeu par défaut de Shiki en fournissant des fichiers de grammaire TextMate personnalisés. Créez un fichier JSON suivant le [format de grammaire TextMate](https://macromates.com/manual/en/language_grammars), puis référencez-le dans votre `docs.json`. Vous pouvez ajouter plusieurs langages personnalisés en incluant des chemins supplémentaires dans le tableau. + Ajoutez la coloration syntaxique pour les langages qui ne font pas partie de l'ensemble par défaut de Shiki en fournissant des fichiers de grammaire TextMate personnalisés. Créez un fichier JSON conforme au [format de grammaire TextMate](https://macromates.com/manual/en/language_grammars), puis référencez-le dans votre `docs.json`. Vous pouvez ajouter plusieurs langages personnalisés en incluant des chemins supplémentaires dans le tableau. ```json docs.json { @@ -157,7 +157,7 @@ Personnalisez globalement les thèmes des code blocks avec `styling.codeblocks` ### Twoslash -Dans les code blocks JavaScript et TypeScript, utilisez `twoslash` pour activer des informations de type interactives. Les utilisateurs peuvent survoler les variables, les fonctions et les paramètres pour voir les types et les erreurs comme dans un IDE. +Dans les blocs de code JavaScript et TypeScript, utilisez `twoslash` pour activer des informations de type interactives. Les utilisateurs peuvent survoler les variables, les fonctions et les paramètres pour voir les types et les erreurs, comme dans un IDE. ```ts twoslash Twoslash example @@ -167,7 +167,7 @@ Dans les code blocks JavaScript et TypeScript, utilisez `twoslash` pour activer return `${name} the ${type} is now adopted!`; } - // Hover to see the inferred types + // Survolez pour voir les types inférés const message = adoptPet("Mintie", "cat"); ``` @@ -179,7 +179,7 @@ Dans les code blocks JavaScript et TypeScript, utilisez `twoslash` pour activer return `${name} the ${type} is now adopted!`; } - // Hover to see the inferred types + // Survolez pour voir les types inférés const message = adoptPet("Mintie", "cat"); ``` ```` @@ -189,7 +189,7 @@ Dans les code blocks JavaScript et TypeScript, utilisez `twoslash` pour activer ### Titre -Ajoutez un titre pour identifier votre exemple de code. Utilisez `title="Votre titre"` ou une chaîne sur une seule ligne. +Ajoutez un titre pour légender votre exemple de code. Utilisez `title="Your title"` ou une chaîne de caractères sur une seule ligne. ```javascript Exemple de titre @@ -225,10 +225,10 @@ Ajoutez une icône à votre bloc de code à l’aide de la propriété `icon`. C ### Surlignage de lignes -Mettez en évidence des lignes précises dans vos blocs de code à l’aide de `highlight`, en indiquant les numéros de lignes ou les plages de lignes à surligner. +Mettez en évidence des lignes spécifiques dans vos blocs de code en utilisant `highlight` avec les numéros ou plages de lignes que vous souhaitez surligner. - ```javascript Line highlighting example {1,2,5} + ```javascript Exemple de surlignage de lignes {1,2,5} const greeting = "Hello, World!"; function sayHello() { console.log(greeting); @@ -237,7 +237,7 @@ Mettez en évidence des lignes précises dans vos blocs de code à l’aide de ` ``` ````mdx Format - ```javascript Line highlighting example highlight={1-2,5} + ```javascript Exemple de surlignage de lignes highlight={1-2,5} const greeting = "Hello, World!"; function sayHello() { console.log(greeting); @@ -248,10 +248,10 @@ Mettez en évidence des lignes précises dans vos blocs de code à l’aide de `
- ### Mise en évidence de lignes + ### Mise en évidence des lignes
-Mettez en évidence des lignes spécifiques dans vos blocs de code à l’aide de `focus` avec des numéros de ligne ou des plages. +Mettez en évidence des lignes spécifiques dans vos blocs de code en utilisant `focus` avec des numéros de ligne ou des plages. ```javascript Line focusing example focus=2,4,5 @@ -277,10 +277,10 @@ Mettez en évidence des lignes spécifiques dans vos blocs de code à l’aide d ### Afficher les numéros de ligne -Affichez les numéros de ligne sur le côté gauche de votre bloc de code à l’aide de `lines`. +Affichez les numéros de ligne à gauche de votre code block à l’aide de `lines`. - ```javascript Exemple d’affichage des numéros de ligne lines + ```javascript Show line numbers example lines const greeting = "Hello, World!"; function sayHello() { console.log(greeting); @@ -289,7 +289,7 @@ Affichez les numéros de ligne sur le côté gauche de votre bloc de code à l ``` ````mdx Format - ```javascript Exemple d’affichage des numéros de ligne lines + ```javascript Show line numbers example lines const greeting = "Hello, World!"; function sayHello() { console.log(greeting); @@ -300,10 +300,10 @@ Affichez les numéros de ligne sur le côté gauche de votre bloc de code à l
- ### Repliable + ### Dépliable
-Permettez aux utilisateurs d’ouvrir et de replier de longs code blocks à l’aide de `expandable`. +Permet aux utilisateurs de développer et de replier de longs code block à l'aide de `expandable`. ```python Expandable example expandable @@ -414,7 +414,7 @@ Permettez aux utilisateurs d’ouvrir et de replier de longs code blocks à l’ ### Retour à la ligne -Activez le retour à la ligne pour les longues lignes à l’aide de `wrap`. Cela évite le défilement horizontal et facilite la lecture des lignes longues. +Activez le retour à la ligne automatique pour les longues lignes avec `wrap`. Cela empêche le défilement horizontal et rend les longues lignes plus faciles à lire. ```javascript Wrap example wrap @@ -442,22 +442,22 @@ Activez le retour à la ligne pour les longues lignes à l’aide de `wrap`. Cel ### Diff -Affichez un diff visuel des lignes ajoutées ou supprimées dans vos code blocks. Les lignes ajoutées sont mises en évidence en vert et les lignes supprimées en rouge. +Affichez un diff visuel des lignes ajoutées ou supprimées dans vos code blocks. Les lignes ajoutées sont surlignées en vert et les lignes supprimées en rouge. -Pour créer des diffs, ajoutez ces commentaires spéciaux à la fin des lignes dans votre code block : +Pour créer un diff, ajoutez ces commentaires spéciaux à la fin des lignes dans votre code block : -* `// [!code ++]` : Indique qu’une ligne est ajoutée (mise en évidence en vert). -* `// [!code --]` : Indique qu’une ligne est supprimée (mise en évidence en rouge). +* `// [!code ++]` : Marque une ligne comme ajoutée (surlignage vert). +* `// [!code --]` : Marque une ligne comme supprimée (surlignage rouge). -Pour plusieurs lignes consécutives, indiquez le nombre de lignes après un deux-points : +Pour plusieurs lignes consécutives, indiquez le nombre de lignes après un deux-points : -* `// [!code ++:3]` : Indique que la ligne actuelle et les deux suivantes sont ajoutées. -* `// [!code --:5]` : Indique que la ligne actuelle et les quatre suivantes sont supprimées. +* `// [!code ++:3]` : Marque la ligne actuelle plus les deux lignes suivantes comme ajoutées. +* `// [!code --:5]` : Marque la ligne actuelle plus les quatre lignes suivantes comme supprimées. -La syntaxe des commentaires doit correspondre à votre langage de programmation (par exemple, `//` pour JavaScript ou `#` pour Python). +La syntaxe de commentaire doit correspondre à votre langage de programmation (par exemple, `//` pour JavaScript ou `#` pour Python). - ```js Diff example lines + ```js Exemple de lignes avec diff const greeting = "Hello, World!"; // [!code ++] function sayHello() { console.log("Hello, World!"); // [!code --] @@ -467,7 +467,7 @@ La syntaxe des commentaires doit correspondre à votre langage de programmation ``` ````text Format - ```js Diff example lines + ```js Exemple de lignes avec diff const greeting = "Hello, World!"; // [!code ++] function sayHello() { console.log("Hello, World!"); // [!code --] @@ -482,7 +482,7 @@ La syntaxe des commentaires doit correspondre à votre langage de programmation ## Composant CodeBlock -Utilisez le composant `` dans des composants React personnalisés pour rendre des code blocks par programmation, avec le même style et les mêmes fonctionnalités que les code blocks en Markdown. +Utilisez le composant `` au sein de composants React personnalisés pour générer des code blocks de manière programmatique, avec le même style et les mêmes fonctionnalités que les code blocks en Markdown.
### Props @@ -493,33 +493,33 @@ Utilisez le composant `` dans des composants React personnalisés pou - Le nom de fichier à afficher dans l’en-tête du bloc de code. + Le nom de fichier à afficher dans l'en-tête du code block. - L’icône à afficher dans l’en-tête du bloc de code. Voir [Icônes](/fr/components/icons) + L'icône à afficher dans l'en-tête du code block. Voir [Icons](/fr/components/icons) pour les options disponibles. - Indique s’il faut afficher les numéros de ligne. + Indique s'il faut afficher les numéros de ligne. - Indique s’il faut effectuer un retour à la ligne dans le bloc de code. + Indique s'il faut appliquer un retour à la ligne dans le code block. - Indique s’il faut développer le bloc de code. + Indique s'il faut permettre de développer le code block. - Les lignes à mettre en évidence. Fournissez un tableau de nombres sous forme de chaîne. Exemple : + Les lignes à mettre en évidence. Indiquez un tableau de nombres converti en chaîne de caractères. Exemple : `"[1,3,4,5]"`. - Les lignes sur lesquelles se concentrer. Fournissez un tableau de nombres sous forme de chaîne. Exemple : + Les lignes sur lesquelles mettre l'accent. Indiquez un tableau de nombres converti en chaîne de caractères. Exemple : `"[1,3,4,5]"`. diff --git a/fr/deploy/preview-deployments.mdx b/fr/deploy/preview-deployments.mdx index a04ddaf95..210964bf5 100644 --- a/fr/deploy/preview-deployments.mdx +++ b/fr/deploy/preview-deployments.mdx @@ -1,6 +1,6 @@ --- title: "Aperçus de déploiement" -description: "Obtenez des URL d’aperçu uniques pour les pull requests afin de revoir les modifications avant la fusion." +description: "Obtenez des URL d’aperçu uniques pour les pull requests (demandes de fusion) afin de revoir les modifications avant la fusion." keywords: ["URL d’aperçu", "aperçus de pull request", "aperçus de branche", "environnements de préproduction"] --- @@ -23,15 +23,15 @@ Les déploiements de prévisualisation sont créés automatiquement via des pull
- Les aperçus automatiques ne sont créés que pour les pull requests (demandes de fusion) qui ciblent votre [branche de déploiement](/fr/guides/git-concepts#deployment-branch). + Les aperçus automatiques ne sont créés que pour les pull requests (demandes de fusion) ciblant votre [branche de déploiement](/fr/guides/git-concepts#deployment-branch). -Lorsque vous créez une pull request (demande de fusion), le bot Mintlify ajoute automatiquement un lien pour afficher le déploiement de prévisualisation dans votre pull request. L’aperçu est mis à jour chaque fois que vous poussez de nouveaux commits sur la branche. +Lorsque vous créez un pull request (demande de fusion), le bot Mintlify ajoute automatiquement un lien pour afficher le déploiement de prévisualisation dans votre pull request. L’aperçu se met à jour chaque fois que vous poussez de nouveaux commits vers la branche. - Lien pour afficher le déploiement dans la chronologie de la pull request + Lien pour afficher le déploiement dans la chronologie du pull request - Lien pour afficher le déploiement dans la chronologie de la pull request + Lien pour afficher le déploiement dans la chronologie du pull request
@@ -61,6 +61,24 @@ Redéployez un aperçu pour actualiser le contenu ou réessayer après un déplo Le menu Previews avec le bouton de déploiement mis en évidence par un rectangle orange. +
+## Widget d'aperçu +
+ +Le widget d'aperçu apparaît sur les déploiements d’aperçu pour vous aider à naviguer et à examiner les pages mises à jour. Le widget est un bouton flottant situé dans le coin inférieur droit de votre déploiement d’aperçu. + + + Widget d’aperçu développé affichant la liste des fichiers modifiés. + + Widget d’aperçu développé affichant la liste des fichiers modifiés. + + +1. Cliquez sur le widget pour afficher tous les fichiers ajoutés, modifiés ou supprimés dans l’aperçu. +2. Cliquez sur un fichier pour afficher les modifications sur la page correspondante. +3. Utilisez la barre de recherche pour filtrer la liste des fichiers modifiés. + +Le widget apparaît uniquement sur les déploiements d’aperçu, pas sur votre site en production ni sur les aperçus locaux. +
## Restreindre l’accès aux déploiements de prévisualisation
@@ -88,5 +106,5 @@ Si votre déploiement de prévisualisation échoue, essayez les étapes de dépa * Chemins de fichiers manquants ou incorrects référencés dans votre navigation * Frontmatter invalide dans les fichiers MDX * Liens d’images cassés ou fichiers d’images manquants -* **Validez en local** : Exécutez `mint dev` en local pour détecter les erreurs de build avant de pousser sur le dépôt. +* **Validez en local** : Exécutez `mint dev` en local pour détecter les erreurs de build avant de pousser vers le référentiel. * **Vérifiez les modifications récentes** : Passez en revue les derniers commits dans votre branche pour identifier les modifications qui ont provoqué l’échec du build. \ No newline at end of file diff --git a/fr/editor.mdx b/fr/editor.mdx index 2abbd89d3..5dd4dca12 100644 --- a/fr/editor.mdx +++ b/fr/editor.mdx @@ -369,5 +369,5 @@ Trouvez des solutions aux problèmes courants que vous pouvez rencontrer lors de ## Prochaines étapes
-* Découvrez les concepts fondamentaux de [Git](/fr/guides/git-concepts) -* Découvrez les meilleures pratiques de collaboration avec les [branches](/fr/guides/branches) \ No newline at end of file +* Apprenez les concepts fondamentaux de [Git](/fr/guides/git-concepts) +* Apprenez les bonnes pratiques pour collaborer avec les [branches](/fr/guides/branches) \ No newline at end of file diff --git a/gt-lock.json b/gt-lock.json index 6a292e66f..45245c172 100644 --- a/gt-lock.json +++ b/gt-lock.json @@ -2576,15 +2576,15 @@ }, "df76a0eb48f3969fa97c0b9cb3c3f66431ff507911c97129b5ae5a7848619c74": { "zh": { - "updatedAt": "2025-12-09T18:17:45.717Z", + "updatedAt": "2025-12-09T23:26:38.967Z", "postProcessHash": "3a1293f09a6ae811b12b3e995e949f189daa02ec78dbdc5ab690caf0d4d5d01e" }, "es": { - "updatedAt": "2025-12-09T18:17:45.718Z", + "updatedAt": "2025-12-09T23:26:38.967Z", "postProcessHash": "4af755390b12715c0597e2ebd89ef33a94e4aec2387ff3efeacc1d52830433fa" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.719Z", + "updatedAt": "2025-12-09T23:26:38.968Z", "postProcessHash": "6bf7392de7fdd42c1880a5728152317e0b101cdbe0def6e9bb66907e3e010111" } } @@ -2650,15 +2650,15 @@ }, "0579ffc577775164976c5e898116e860683a976ec79c94b7553422bb3894506c": { "fr": { - "updatedAt": "2025-12-09T18:17:45.767Z", + "updatedAt": "2025-12-09T23:26:38.982Z", "postProcessHash": "b9f50e13e3d920422b94b980fc1cbbe5b01b74e05f0b82a97ee816070fd75f67" }, "es": { - "updatedAt": "2025-12-09T18:17:45.768Z", + "updatedAt": "2025-12-09T23:26:38.983Z", "postProcessHash": "a5516c4061739fbe87c7141d7f6287cf2395ef16d04614aba7e6917b2bbdcb69" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.768Z", + "updatedAt": "2025-12-09T23:26:38.983Z", "postProcessHash": "538793b2270a8db6ce368ce78c59574c22cf8e4c6bf22e808c2906e3cf8b5b1c" } } @@ -2666,15 +2666,15 @@ "23468f0552fb3e6e3e07f5ccc3f3267c1f9e3dde0f865e866f185cb2947d3700": { "cf671b42a22bf53b553d52737aa0ebd2832efeeb3c4329997d454109b44b2d0b": { "zh": { - "updatedAt": "2025-12-09T18:17:45.773Z", + "updatedAt": "2025-12-09T23:26:38.987Z", "postProcessHash": "0dcb24a821f6210e76e947eb5f6d0ac515f880cddf8d8f863c3f89ee6d07a2ee" }, "es": { - "updatedAt": "2025-12-09T18:17:45.773Z", + "updatedAt": "2025-12-09T23:26:38.988Z", "postProcessHash": "d8f94ac787cbcf1c6c3f809e4867f5da828393f9df972d61175c5371cbb03806" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.774Z", + "updatedAt": "2025-12-09T23:26:38.989Z", "postProcessHash": "e627ac75f507c186c4e17ce56c74814f83795f7530786508096aaba835fc20fc" } } @@ -2693,15 +2693,15 @@ }, "33b27f6424e49160a6a8f7ca639a6ecabe4ccb6c81e109c16357715ed5705d59": { "zh": { - "updatedAt": "2025-12-09T18:17:45.677Z", + "updatedAt": "2025-12-09T23:26:38.939Z", "postProcessHash": "074fa429573f00a1a21055dff2b0a74ec8972d03a84e1950b7b9c7fba4d093d9" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.678Z", + "updatedAt": "2025-12-09T23:26:38.946Z", "postProcessHash": "3bd6f9d399a6dac7643be1d4dba76192f6188a388d66f180dd730f64c22ca80f" }, "es": { - "updatedAt": "2025-12-09T18:17:45.679Z", + "updatedAt": "2025-12-09T23:26:38.947Z", "postProcessHash": "f623c406f79201a2fd99b95d00e73b254f3d4b5fd9d6b84fd90b818557fb1467" } } @@ -2753,15 +2753,15 @@ }, "27f53cd80f1d9d96ab5f1d15c7d4143a1faa63b80e35b5f57fa79bf4da0eaea4": { "zh": { - "updatedAt": "2025-12-09T18:17:45.720Z", + "updatedAt": "2025-12-09T23:26:38.968Z", "postProcessHash": "f2b8c58dbc7cb5d90601c366f26d4734107c62b49a9402e0f1dbc6adce2f439f" }, "es": { - "updatedAt": "2025-12-09T18:17:45.721Z", + "updatedAt": "2025-12-09T23:26:38.969Z", "postProcessHash": "8865decdb223590ec3aba90314e0223ea216957aab3d0ccfc47f409f1d473cb7" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.721Z", + "updatedAt": "2025-12-09T23:26:38.969Z", "postProcessHash": "fc21bafb1a5666a2c38776625e014540ca7164b0a57c08cfabdb61032a89363a" } } @@ -2791,15 +2791,15 @@ }, "4bbec825257b2e44662cece56ea8f6d2a270af8295558ba8c49333d01f531512": { "fr": { - "updatedAt": "2025-12-09T18:17:45.691Z", + "updatedAt": "2025-12-09T23:26:38.953Z", "postProcessHash": "e4ada9eb602ad5fdb51ee876050480b47fccc31953e905efe8f44011a48d5565" }, "es": { - "updatedAt": "2025-12-09T18:17:45.691Z", + "updatedAt": "2025-12-09T23:26:38.954Z", "postProcessHash": "ebc1a190db69005bf50e4f2c8752f264c20f759797c7656057b619bb924e6937" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.701Z", + "updatedAt": "2025-12-09T23:26:38.959Z", "postProcessHash": "73aad7b3e20eced796388977990b133e5e83bff0ac1873c62d3289b440d823d0" } } @@ -2829,15 +2829,15 @@ }, "64a3699238f7091a57f32a304d4d6ea95e7b276b252acad469433afd381059d3": { "fr": { - "updatedAt": "2025-12-09T18:17:45.683Z", + "updatedAt": "2025-12-09T23:26:38.949Z", "postProcessHash": "488d2901ae32fae3c5e865187c72139349368ff3de72b1e30801cf5c6bf51734" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.696Z", + "updatedAt": "2025-12-09T23:26:38.956Z", "postProcessHash": "f3064f57a2d2b4c212fdf58658bf9e4ca38fe7e5f74250630abfa517d17be1f3" }, "es": { - "updatedAt": "2025-12-09T18:17:45.698Z", + "updatedAt": "2025-12-09T23:26:38.957Z", "postProcessHash": "3f67b199792c8ebffc05370ede5870ebb5e3b0418ca6c2ef26cc564d8f25c918" } } @@ -2867,15 +2867,15 @@ }, "91728bc6b9b8b6139a0dd62305e5baa3b279f2b75c5da5884361f1d6921cd5a0": { "zh": { - "updatedAt": "2025-12-09T18:17:45.683Z", + "updatedAt": "2025-12-09T23:26:38.949Z", "postProcessHash": "d637bf9d227e05282377f6bd772ec71b43b8211a9e949701fcfd52bbb5cac513" }, "es": { - "updatedAt": "2025-12-09T18:17:45.686Z", + "updatedAt": "2025-12-09T23:26:38.951Z", "postProcessHash": "3bd2ac2aed58004e59237b3527abe871ac3265fd4b0a312aee2cbeceff4dbbbf" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.687Z", + "updatedAt": "2025-12-09T23:26:38.952Z", "postProcessHash": "3a2d26e68770d0d604dc626f49a18eac2cf5a12ed65ad17cbfb628fc35554bff" } } @@ -2916,15 +2916,15 @@ }, "e6a344d226f71ec9d74b139ad033dcf67bc7845e173faafb769737d5a53e20e0": { "fr": { - "updatedAt": "2025-12-09T18:17:45.814Z", + "updatedAt": "2025-12-09T23:26:39.017Z", "postProcessHash": "81fc3568f3c86637333bdcb90c56f48b3f6af658bee62196b16e2a1a98442545" }, "es": { - "updatedAt": "2025-12-09T18:17:45.816Z", + "updatedAt": "2025-12-09T23:26:39.018Z", "postProcessHash": "c6fb9315d254d49befeadbab24e28e02dc6c42ddc9a7f14abd005bff4d261b02" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.818Z", + "updatedAt": "2025-12-09T23:26:39.019Z", "postProcessHash": "bc1ab086b0f83492f839de81e82dee958d7e38258f4973dafe1749135da3cb0e" } } @@ -2965,15 +2965,15 @@ }, "9242b786b93718623d525ba9255744e28d36cba2b1a87db50bc7d4c700693c27": { "es": { - "updatedAt": "2025-12-09T18:17:45.712Z", + "updatedAt": "2025-12-09T23:26:38.965Z", "postProcessHash": "0dfce139955738c77a275458dd53278808d6fd24f3e701551150cdbbfbce5b01" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.713Z", + "updatedAt": "2025-12-09T23:26:38.965Z", "postProcessHash": "28eceddc3cf9e7a65cce6084f46c71231a4d5add174ae3e6182a3c6b5a42d554" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.817Z", + "updatedAt": "2025-12-09T23:26:39.018Z", "postProcessHash": "8546874971ef988b94a9f39dda6382b3c44b77bc52e6898f6fb159f55eb71f55" } } @@ -3006,15 +3006,15 @@ }, "211896759821e62e0cb97cd383d5f261b0822cdc33f8eee345d050dea39126a2": { "es": { - "updatedAt": "2025-12-09T18:17:45.771Z", + "updatedAt": "2025-12-09T23:26:38.985Z", "postProcessHash": "b65186759c88410fd350981115509a78eb5e9df5cfcd403e5bc7bec5f0c5bcb4" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.771Z", + "updatedAt": "2025-12-09T23:26:38.985Z", "postProcessHash": "3db60684991a7645903ab834727736c06cd351909998a92aa8d1fcdb77371178" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.772Z", + "updatedAt": "2025-12-09T23:26:38.986Z", "postProcessHash": "d3068b86d212f906ecdda1bc4cdf40b575f46b8eb38a3a5b7c026319a4d10690" } } @@ -3033,15 +3033,15 @@ }, "7df72a5c83b1558be5c0fa2deec46e528d5f4d2df119cca457c97ad94568dafd": { "zh": { - "updatedAt": "2025-12-09T18:17:45.685Z", + "updatedAt": "2025-12-09T23:26:38.950Z", "postProcessHash": "ef36a326da3d8fa106566418e5c1b31a03e9e8ed4cd5b25bc67066b302acc4ee" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.687Z", + "updatedAt": "2025-12-09T23:26:38.951Z", "postProcessHash": "88f0c4b5718472ba8b2016909e7787c4c1126bcdb87296fd6f921b455393bd01" }, "es": { - "updatedAt": "2025-12-09T18:17:45.690Z", + "updatedAt": "2025-12-09T23:26:38.953Z", "postProcessHash": "280ad2a610db0eee1030c4fd9a623eaaa9a0127945201be88540eab3124e1e3c" } } @@ -3093,15 +3093,15 @@ }, "ed36c10a2ac068ab971d9018c8eaed0e1d8810b6cab254986672b83e7260c35f": { "es": { - "updatedAt": "2025-12-09T18:17:45.672Z", + "updatedAt": "2025-12-09T23:26:38.936Z", "postProcessHash": "c2d575803e67814e2b47954c87980beb51b0f35137f53f3993bc4e9b7a862080" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.673Z", + "updatedAt": "2025-12-09T23:26:38.937Z", "postProcessHash": "eccffd10c1c9b5e8dc27bf7d7492437cbe3db1d9f67a99692272f0df979cec32" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.674Z", + "updatedAt": "2025-12-09T23:26:38.938Z", "postProcessHash": "2aac5cc095f999af84f446578539e80acb7e3a5225fef095fa9cd43f53cf966b" } } @@ -3120,15 +3120,15 @@ }, "4ba815c35fc1d6ae05c075a25e63c14bb4f99030f6269e2e624b6a6cf7b40e43": { "es": { - "updatedAt": "2025-12-09T18:17:45.676Z", + "updatedAt": "2025-12-09T23:26:38.938Z", "postProcessHash": "5650fd1e5b54ca1f661e47670d18329aa1f7bffa14db3c976ac8c62b7d8f83db" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.678Z", + "updatedAt": "2025-12-09T23:26:38.945Z", "postProcessHash": "7335a32222b237a0727718dba49a451bab788d164964f432fb24439da285b365" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.679Z", + "updatedAt": "2025-12-09T23:26:38.946Z", "postProcessHash": "9564fd4e27315a68427db20238bfd5b1ef80c3cc44a87580e41f928358511c6c" } } @@ -3158,15 +3158,15 @@ }, "eb20f767427fb4ce5134a35c35949a707ee0443db110d0b9778a731d5cfc0e82": { "es": { - "updatedAt": "2025-12-09T18:17:45.682Z", + "updatedAt": "2025-12-09T23:26:38.948Z", "postProcessHash": "d877c19b8c7d77430f40b3e355f978e688beb88f69826e706fc3f6b0613ece0a" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.703Z", + "updatedAt": "2025-12-09T23:26:38.960Z", "postProcessHash": "d418dfc3e19cfe9aaa58501f8a8b7d713008cec5d60b7a8694ea652a199dbff8" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.703Z", + "updatedAt": "2025-12-09T23:26:38.960Z", "postProcessHash": "370d177442be0ae1e7a10e8dfdf6200f7cf08662a5bb0c0a1b6bcbe8762a91fe" } } @@ -3282,15 +3282,15 @@ }, "75bd5a1c1607f92165bbefa595fe3bb14e5967244dd3016647ff043d021c752c": { "es": { - "updatedAt": "2025-12-09T18:17:46.073Z", + "updatedAt": "2025-12-09T23:26:38.986Z", "postProcessHash": "cb1568532f57d0f7c053d6a920ca6e5276a342a149c2c2d4ac44623ea29f1e6c" }, "fr": { - "updatedAt": "2025-12-09T18:17:46.074Z", + "updatedAt": "2025-12-09T23:26:38.987Z", "postProcessHash": "e098853339af41e06e8bb8299353d66fc281399603e1cbb61472c877eda59138" }, "zh": { - "updatedAt": "2025-12-09T18:17:46.074Z", + "updatedAt": "2025-12-09T23:26:38.987Z", "postProcessHash": "3bf0d1473501a27f572a0482574e1f481c4d45933e411f5ff178f030a3c6aee2" } } @@ -3400,15 +3400,15 @@ }, "f2d2eba18f2d99a846a22e37f08013200d0d53bea29eed47e8ab65c63ea495d2": { "fr": { - "updatedAt": "2025-12-09T18:17:45.684Z", + "updatedAt": "2025-12-09T23:26:38.950Z", "postProcessHash": "8f24befec031ba478bdd384847f30297bd4ef16bc475812d2c75015c0ccc4244" }, "es": { - "updatedAt": "2025-12-09T18:17:45.723Z", + "updatedAt": "2025-12-09T23:26:38.970Z", "postProcessHash": "d82dfc5acb2b61f2c3dcf98d604456bd2239dfe0662d3c0b1a3dbf3fb298f759" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.705Z", + "updatedAt": "2025-12-09T23:26:38.961Z", "postProcessHash": "0f69fa5eacefb31067b354e86a6584c3aa538822dc0be4cc80ac164559e79e7f" } } @@ -3482,15 +3482,15 @@ }, "614e7e8383fa563b9fa872425dc6b9d1304340386a1d5f5a70cfdc636141d63e": { "zh": { - "updatedAt": "2025-12-09T18:17:45.670Z", + "updatedAt": "2025-12-09T23:26:38.935Z", "postProcessHash": "77e006bd842f861d7c61348464be11bc9af77b07df26143498ebad9e9c6d0d5a" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.671Z", + "updatedAt": "2025-12-09T23:26:38.936Z", "postProcessHash": "eb6d0df147285afa69c3a84417a00553fb72755fd171d33ea57e175c9b1b5312" }, "es": { - "updatedAt": "2025-12-09T18:17:45.674Z", + "updatedAt": "2025-12-09T23:26:38.937Z", "postProcessHash": "65f8a3f42f04182ad381d92939bbe2ca30298a47634bfde963e3e41f992816d7" } } @@ -3542,16 +3542,16 @@ }, "a1bd07d382165778edcabffa3686ed892ef439380ca48b8aebf9e4d4ec2cde92": { "fr": { - "updatedAt": "2025-12-09T18:17:45.714Z", - "postProcessHash": "0093e614b111853bced845acbb84081f116d38327ce2fe50df4597962377b592" + "updatedAt": "2025-12-09T23:26:38.966Z", + "postProcessHash": "b5bf2be145efdd2dd1db94261be3982b79345681ae9439561d645fbc68408d31" }, "es": { - "updatedAt": "2025-12-09T18:17:45.722Z", - "postProcessHash": "e080bad5adbaf4b23425241c82259bde5c031b76b7b98ffec44a9fbf5c8efe29" + "updatedAt": "2025-12-09T23:26:38.970Z", + "postProcessHash": "f5f3585205a2b199f913eaae8ca0bc41b826fdca3e246e76c7a633af108e572e" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.715Z", - "postProcessHash": "1920b5b5c855bcff4e3156207b2f0c110b5b93245e33b0331c2c42bdec9611ce" + "updatedAt": "2025-12-09T23:26:38.966Z", + "postProcessHash": "f3f35102fd210a709acb506a5be04f6c0eeb74533e345a168b72d584b5198b0e" } } }, @@ -3666,6 +3666,20 @@ "updatedAt": "2025-12-09T18:17:45.766Z", "postProcessHash": "621c342a73e1293a7d309860e2cd8fe5e4fe72a6265ecd901c1d439f2fb5561d" } + }, + "cc5a8c1ee945c85f73d198bab80cfcb86afed16dcaf9eea815c387bc2a122c7f": { + "es": { + "updatedAt": "2025-12-09T23:26:39.170Z", + "postProcessHash": "ccfb51a2b8c4fc14d2c3d771db52373c8234a8c3821433eb040316b6ec1e5f43" + }, + "zh": { + "updatedAt": "2025-12-09T23:26:39.171Z", + "postProcessHash": "5ce0292a43b66bdf9c85fe023a8b4d7d6220653218d35ef16236b14a25def83a" + }, + "fr": { + "updatedAt": "2025-12-09T23:26:39.172Z", + "postProcessHash": "b7ba4c8f6abcd715ef7661e3fecedcd85a992a0cb5b9111cf09c62f0e80b065e" + } } }, "7979622e86719d2c7c310c9141ca233d9ad266a4fb8b7130bafbf0e147008774": { @@ -3729,15 +3743,15 @@ }, "8a57fb2bf73502e46b07d0f552d28d7f5e2e71583500d8383f923b148ebd3323": { "es": { - "updatedAt": "2025-12-09T18:17:45.732Z", + "updatedAt": "2025-12-09T23:26:38.976Z", "postProcessHash": "7384493fd8f795b14ee81f713097f8b2e80297e31912468e6f9454927a465c82" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.733Z", + "updatedAt": "2025-12-09T23:26:38.976Z", "postProcessHash": "c0c8f6ef6ae01d8bbadfac97e2c17b51541ffc95a0e0e2c549b5bd6d4fb3ab10" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.734Z", + "updatedAt": "2025-12-09T23:26:38.976Z", "postProcessHash": "b6fb2cb2afbf7dfe99c77cbe29f27544fb8d5933e1d45f47f5196801a6c9eb11" } } @@ -3767,15 +3781,15 @@ }, "239feca6504164e8bcbd82b2524a752018ed7a39e7c99c5bd82283b05ad42419": { "es": { - "updatedAt": "2025-12-09T18:17:45.791Z", + "updatedAt": "2025-12-09T23:26:39.002Z", "postProcessHash": "ecf86e0cda0ae341235df6b851ef4573dba152f96a2d7ae573b89a51176dd861" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.795Z", + "updatedAt": "2025-12-09T23:26:39.006Z", "postProcessHash": "08ce82e18ad44239f39f8edeed8f61bd6e4414375d457afc6569d5c261ded3c1" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.798Z", + "updatedAt": "2025-12-09T23:26:39.008Z", "postProcessHash": "f2a4fceea4e9f8d0dabbab77430230ebbbc6f7c99cc3c0a26f95428fa0bfcb61" } } @@ -3805,15 +3819,15 @@ }, "6b6eb89e73eae4cff9d6413f91f2f4ce27e6b47013fb676bde0cdced959047d5": { "fr": { - "updatedAt": "2025-12-09T18:17:45.692Z", + "updatedAt": "2025-12-09T23:26:38.954Z", "postProcessHash": "803b849c10972536e3c3f4efafbfdd1440ff1b2eccbaea67ecec345932e04bb6" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.693Z", + "updatedAt": "2025-12-09T23:26:38.954Z", "postProcessHash": "d51ce93ab00e9613dc28df79c1214f96a300d0b730098afc58493ea1c3f80dfd" }, "es": { - "updatedAt": "2025-12-09T18:17:45.694Z", + "updatedAt": "2025-12-09T23:26:38.955Z", "postProcessHash": "faa968f415d917b5ccb0b41591c9d744f7353d9738cf8eae88687cc50f5e5a8e" } } @@ -3854,15 +3868,15 @@ }, "2142b34f605ba6b02fc694f8930d1d6a0068a69bd4e2f55d94bb3b33512bc21b": { "zh": { - "updatedAt": "2025-12-09T18:17:45.822Z", + "updatedAt": "2025-12-09T23:26:39.023Z", "postProcessHash": "2b42ae5d214bdcf117c9fccef9536d943bd0ac0610021e8dc23f864c425ae69f" }, "es": { - "updatedAt": "2025-12-09T18:17:45.823Z", + "updatedAt": "2025-12-09T23:26:39.024Z", "postProcessHash": "b21adce213645928d0461969a163d45bb40eafa7a46bc8b45e65ac6428965944" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.823Z", + "updatedAt": "2025-12-09T23:26:39.023Z", "postProcessHash": "75a48247570e4aeed9288553e74fdc1ee72bd2b93625d091b06ac31aee4f0058" } } @@ -3881,15 +3895,15 @@ }, "9b746c5834165dc199fdd794e1657e4116749bcc2ce014fa6bc5e7a59751e5e0": { "fr": { - "updatedAt": "2025-12-09T18:17:45.843Z", + "updatedAt": "2025-12-09T23:26:39.028Z", "postProcessHash": "bcc5ad8c02a010869436abf275abe92007f40251eff63cbe8586d2dbec9b2405" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.853Z", + "updatedAt": "2025-12-09T23:26:39.032Z", "postProcessHash": "19e6d916d166ac44f673ee4a0752179bfaff59e83f5984ca86856ef64df7b9b9" }, "es": { - "updatedAt": "2025-12-09T18:17:45.840Z", + "updatedAt": "2025-12-09T23:26:39.027Z", "postProcessHash": "ada3db3d9afc6df89f01fffe6cdaf172e275fea40aad0d1e6a440bc530a7df77" } } @@ -3919,15 +3933,15 @@ }, "1579230cd266b076718d44b00c6f2b14c604bd1468d47abd65c5b3f284ee238b": { "fr": { - "updatedAt": "2025-12-09T18:17:45.688Z", + "updatedAt": "2025-12-09T23:26:38.952Z", "postProcessHash": "5a9e558f007c8216799e85d6928b6fa60a1215fe540ee35cdea429b4d19c2791" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.689Z", + "updatedAt": "2025-12-09T23:26:38.953Z", "postProcessHash": "f7f2e7cda47e2a406adf5e7fc43ad3d6b8107d0b39726bf0e5e4ab5a44a52ab0" }, "es": { - "updatedAt": "2025-12-09T18:17:45.698Z", + "updatedAt": "2025-12-09T23:26:38.957Z", "postProcessHash": "54ae54d4908aa6cb881c0abdbf013394d75bda9828f4008e0a1df9c56470041c" } } @@ -3946,15 +3960,15 @@ }, "84e1f1ee89d0e933d7883bd51c19cc1497abc66ebb4cfc68cb7f690d71de87f5": { "es": { - "updatedAt": "2025-12-09T18:17:45.809Z", + "updatedAt": "2025-12-09T23:26:39.014Z", "postProcessHash": "33591395616a90822fbcd2632ebabcb49a8803494aba8a028b69dc51afdb0c54" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.810Z", + "updatedAt": "2025-12-09T23:26:39.014Z", "postProcessHash": "5bf50d02759ee62bce8f381578b2d0eee1508437b88246e4189a66676257c9f8" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.811Z", + "updatedAt": "2025-12-09T23:26:39.015Z", "postProcessHash": "f7b5fc36c896417e53f8535f588715f6086fbc9a8562db1d79b0aec3258dc0e4" } } @@ -3984,15 +3998,15 @@ }, "b0fc3fe18db44f5d5e3138970ce56042937cae027c36a20826e5e83b18448c2c": { "es": { - "updatedAt": "2025-12-09T18:17:45.688Z", + "updatedAt": "2025-12-09T23:26:38.952Z", "postProcessHash": "38b483ace0062e2e4d7aff7f92af31e591ad0bd5b6afef17e7f20df38b27992d" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.702Z", + "updatedAt": "2025-12-09T23:26:38.959Z", "postProcessHash": "f18539681eb6e25076b0fcccb6513d5a61fd58771c86fb5443c0dca4703d8f54" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.706Z", + "updatedAt": "2025-12-09T23:26:38.961Z", "postProcessHash": "b7558b56b96127532fe43b6ceedfcd79da5f33583082d1ebf164a81d437c1d8e" } } @@ -4022,15 +4036,15 @@ }, "f6377bf2dbd5497b12e74eecdf1c1400c517c2aec35e1ac91f461cd4769214b4": { "fr": { - "updatedAt": "2025-12-09T18:17:45.797Z", + "updatedAt": "2025-12-09T23:26:39.007Z", "postProcessHash": "5a6eabb55ef741d3a9ec91052b2ece9b7b05b8515464f34dee55482405f9f214" }, "es": { - "updatedAt": "2025-12-09T18:17:45.812Z", + "updatedAt": "2025-12-09T23:26:39.016Z", "postProcessHash": "ff221cad8299c0441a89215d748949d4791cb6b17955ce5281e73544785b5d1b" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.814Z", + "updatedAt": "2025-12-09T23:26:39.017Z", "postProcessHash": "2bb9222be8ad6a93309739feef0dace849861e6d34c15ba08a59ea8543ddebd0" } } @@ -4060,15 +4074,15 @@ }, "bc8397cc9a6ce325952185bd403e7322c795c94318958e9c38b0cbea30872f53": { "es": { - "updatedAt": "2025-12-09T18:17:45.787Z", + "updatedAt": "2025-12-09T23:26:38.995Z", "postProcessHash": "3dfe0b3a8adea57098cf6a28353cf3c877a5085cbd41a6e0e78c119243fd9156" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.796Z", + "updatedAt": "2025-12-09T23:26:39.006Z", "postProcessHash": "7c29ebf872683033685b8098cffab0e516dfcc75434a8dac6c025d8c5cee4a61" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.806Z", + "updatedAt": "2025-12-09T23:26:39.012Z", "postProcessHash": "8ba797a7b6f6ce48010f809e0f9c0a1d958f740c94e593f0b8cf0d296a6d44a5" } } @@ -4101,15 +4115,15 @@ }, "b14ea7d2935e7f31137092f520b495ef77c95ada9ca283401985d81fd043b520": { "fr": { - "updatedAt": "2025-12-09T18:17:45.856Z", + "updatedAt": "2025-12-09T23:26:39.034Z", "postProcessHash": "24e9eba8d06cd737cbe3d721778ace673b2d136e1f098dd4be4e870c646c05da" }, "es": { - "updatedAt": "2025-12-09T18:17:45.856Z", + "updatedAt": "2025-12-09T23:26:39.034Z", "postProcessHash": "d3af600abd546684b143e27175152b3ac250ebf0405f220176289fc8451e2ce0" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.857Z", + "updatedAt": "2025-12-09T23:26:39.034Z", "postProcessHash": "9dc0f62949362a8f23197ec7b998c58c39d0f855c5cd4dfcc72adc9f9382f2ee" } } @@ -4139,15 +4153,15 @@ }, "6065a4c2de7e7a039acb75fd86ac55270b68e0a1c50cce78c38218d7e17332be": { "es": { - "updatedAt": "2025-12-09T18:17:45.782Z", + "updatedAt": "2025-12-09T23:26:38.993Z", "postProcessHash": "f505d335e7e41002bead32a72ef8770e0f01aa55ddfd00df962df90c74fa6f30" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.810Z", + "updatedAt": "2025-12-09T23:26:39.014Z", "postProcessHash": "4d31183d779a1f62ff522cd37888cdbe563be18971040f0cbebc87f22a3de068" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.805Z", + "updatedAt": "2025-12-09T23:26:39.011Z", "postProcessHash": "c3b64d28e24a0b671275be48dc47ab4eb1e3e0b21912431067473846b817cd36" } } @@ -4188,15 +4202,15 @@ }, "58530194580e1f232e86282b69ce2eca0690f31f7c0d6cace4af03fc68418734": { "zh": { - "updatedAt": "2025-12-09T18:17:45.666Z", + "updatedAt": "2025-12-09T23:26:38.932Z", "postProcessHash": "abb859b784f13b6e795d658969fa78e074298e010e41db1cb3d828a1e91bcd8b" }, "es": { - "updatedAt": "2025-12-09T18:17:45.668Z", + "updatedAt": "2025-12-09T23:26:38.934Z", "postProcessHash": "427a7a11f12a4c4197f656bc7720ac76d40c480c07ab129dd0195d007b58dcf5" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.669Z", + "updatedAt": "2025-12-09T23:26:38.934Z", "postProcessHash": "fbaabf2cf64092cef80bb797cd12417c96f2545bea053c2aedae63197293533f" } } @@ -4215,15 +4229,15 @@ }, "fa529df5efd3bbc04a1b2491b1b102472a547fa0543ac8eb62229ff695e1e2b8": { "zh": { - "updatedAt": "2025-12-09T18:17:45.680Z", + "updatedAt": "2025-12-09T23:26:38.947Z", "postProcessHash": "4d4bf4147726be0b1956e1a1100c527d4bcf9fa1ce583d3c4d75a3814d33c519" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.681Z", + "updatedAt": "2025-12-09T23:26:38.948Z", "postProcessHash": "820c6b8dd20c8435f1420f6b3345ca0f2c79af6d4c6c40a2047a821b12b65ab4" }, "es": { - "updatedAt": "2025-12-09T18:17:45.700Z", + "updatedAt": "2025-12-09T23:26:38.958Z", "postProcessHash": "20a74979d1a3488b4b6d50975ca30584004746e99f1a7f632600aea7852a4342" } } @@ -4253,15 +4267,15 @@ }, "7af7098ed0591bb1b52aeda833b7c793c648c594ddc27001cc458732beb61d42": { "fr": { - "updatedAt": "2025-12-09T18:17:45.695Z", + "updatedAt": "2025-12-09T23:26:38.955Z", "postProcessHash": "ee7927a66bca5f3914e782982c16c4bd197ad1fc99475d6b796714ec5cdca520" }, "es": { - "updatedAt": "2025-12-09T18:17:45.695Z", + "updatedAt": "2025-12-09T23:26:38.956Z", "postProcessHash": "c2ac1d60635a33b85cc74b7f3e9c7948eba155cc374c08a7b72a8db0fef9624e" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.701Z", + "updatedAt": "2025-12-09T23:26:38.958Z", "postProcessHash": "09062f0322a3c03c37f1aadf8125a0bce1f1aef6090cc1100f954977b2ebfc3f" } } @@ -4291,15 +4305,15 @@ }, "ff6db2e1d92370a81059bfc2de4d5a8e1f57d0325aba414f0579b5874c2f211c": { "fr": { - "updatedAt": "2025-12-09T18:17:45.795Z", + "updatedAt": "2025-12-09T23:26:39.006Z", "postProcessHash": "68641cdacdd020c8dbaaf1b97877dd9c7c051bcf8df97cb41ec4f29dcd46f1df" }, "es": { - "updatedAt": "2025-12-09T18:17:45.811Z", + "updatedAt": "2025-12-09T23:26:39.015Z", "postProcessHash": "548909345f09738e4c12e5ada740edfa12c3ba741627dd44bded6d3ba0157e98" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.807Z", + "updatedAt": "2025-12-09T23:26:39.012Z", "postProcessHash": "499b29d6d13c9bf97ba8da19b96795e7c22aae097e67886ccd9fbb5ce7d46536" } } @@ -4329,15 +4343,15 @@ }, "d6a5a6940e86056dceb450ae7e7d83a0ff1ae53e967a7386f2ee6e1a51cb1919": { "fr": { - "updatedAt": "2025-12-09T18:17:45.792Z", + "updatedAt": "2025-12-09T23:26:39.003Z", "postProcessHash": "cb3a885b4c1e16998b51e7a68e2f80acc0c85795405cb8e5bea6213adb689962" }, "es": { - "updatedAt": "2025-12-09T18:17:45.792Z", + "updatedAt": "2025-12-09T23:26:39.003Z", "postProcessHash": "e6ef32b6539f0fc8a299077c2101f4517407000d422c5751cecb64c25e31f40a" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.813Z", + "updatedAt": "2025-12-09T23:26:39.016Z", "postProcessHash": "20a7ff032325dc1f4a2b20302aae40c6514032b0bb46bbec277ed5ebe0268a8d" } } @@ -4378,15 +4392,15 @@ }, "7b5e31679e6dc64290dcbaf7ebdc38d509f113fac1106932fc5c382eae0f70f2": { "fr": { - "updatedAt": "2025-12-09T18:17:45.710Z", + "updatedAt": "2025-12-09T23:26:38.963Z", "postProcessHash": "65d9d06b4c59c29060ebc535647e1d043c06d0af011948127afc661f003ff8bf" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.711Z", + "updatedAt": "2025-12-09T23:26:38.964Z", "postProcessHash": "50b56894e24fefc140d3295b7479b802008f2870f0de88257d15c192eb066e83" }, "es": { - "updatedAt": "2025-12-09T18:17:45.819Z", + "updatedAt": "2025-12-09T23:26:39.022Z", "postProcessHash": "ba83d909f06c536eed658c3bb9988e8b972ab31bf4ba50f21dbb7308a9183589" } } @@ -4449,15 +4463,15 @@ }, "eb41c43939f88bd3938929ecf1ed929135f2aa5ad83f4775c2d2a29f1c9da37c": { "zh": { - "updatedAt": "2025-12-09T18:17:45.852Z", + "updatedAt": "2025-12-09T23:26:39.032Z", "postProcessHash": "08d306d2877f2153abbf0658f9fe970c34da297bfeffc8b4b0b3a0cf04cf8aaa" }, "es": { - "updatedAt": "2025-12-09T18:17:45.820Z", + "updatedAt": "2025-12-09T23:26:39.022Z", "postProcessHash": "1f333e535afbc58a202038b0e7bf2ce948a1666a4778f4d6195ba04a9acb7855" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.821Z", + "updatedAt": "2025-12-09T23:26:39.023Z", "postProcessHash": "5af3afa46d9c04147a478614a47e51230424ac1d381fc18674b1db7684202306" } } @@ -4509,15 +4523,15 @@ }, "15dcc5bf8fe3a6cc2d7be853f5ea3001fbd0a4390995b0d89c4688a863d93554": { "fr": { - "updatedAt": "2025-12-09T18:17:45.815Z", + "updatedAt": "2025-12-09T23:26:39.018Z", "postProcessHash": "c368d5ac47f0591534eb11bfdbce32db76f6ff1efc5a281f4071da6d88c615fa" }, "es": { - "updatedAt": "2025-12-09T18:17:45.851Z", + "updatedAt": "2025-12-09T23:26:39.032Z", "postProcessHash": "78909af21516a9d8fd34c573eec5893aba200d42e0150cf1d48ed7dd2668ad6e" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.848Z", + "updatedAt": "2025-12-09T23:26:39.030Z", "postProcessHash": "e71e653dc7f9b3ce0030ee6f50335f33bc33e2e3c28b8b19d5f6e12117be1751" } } @@ -4547,15 +4561,15 @@ }, "4b669eac3d8af5dba744f7619f5f1d7a71791df3e93cb61cdd5f4efa1a49e7a8": { "fr": { - "updatedAt": "2025-12-09T18:17:45.697Z", + "updatedAt": "2025-12-09T23:26:38.956Z", "postProcessHash": "60896f6123f2a4804458e79e2db3fad7f776186252a130553dc6ad22dd1e1e44" }, "es": { - "updatedAt": "2025-12-09T18:17:45.699Z", + "updatedAt": "2025-12-09T23:26:38.958Z", "postProcessHash": "d94bc7df19d521fbc5c43c567ee788bc635b8b6c208c98483330d9ce1a3d7a51" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.704Z", + "updatedAt": "2025-12-09T23:26:38.960Z", "postProcessHash": "6f065465e8d462d374a00f95654c7a9dbabbfb291c4daac02d10dbc2289947c0" } } @@ -4596,15 +4610,15 @@ }, "a36886f4bb4adc67e3f0f6784b450b2375adaa18049fbf2130e009b7e3e6b136": { "es": { - "updatedAt": "2025-12-09T18:17:45.801Z", + "updatedAt": "2025-12-09T23:26:39.010Z", "postProcessHash": "21e51ff7cc048a52da442b366a5f2a5c5734a924304df0d3ba6df9c0127277fc" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.803Z", + "updatedAt": "2025-12-09T23:26:39.011Z", "postProcessHash": "c341c7751529f0f05840a6fcce139c1e968d7e7c3321e239cc1156302bc08268" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.808Z", + "updatedAt": "2025-12-09T23:26:39.013Z", "postProcessHash": "a4f6eec5bf7b66e1894fd56f3e83bb4b725c0fc532cec374ca1e700c71379315" } } @@ -4656,15 +4670,15 @@ }, "7c9eafb4b7ad5727b7732528fc5845233eb0449cbf65f1045cb340c823cbdff2": { "zh": { - "updatedAt": "2025-12-09T18:17:45.934Z", + "updatedAt": "2025-12-09T23:26:39.071Z", "postProcessHash": "dc994883fee577bb57bfe868e2ff630a956ff8fd19ae775addb08b7a980cc6bf" }, "es": { - "updatedAt": "2025-12-09T18:17:45.933Z", + "updatedAt": "2025-12-09T23:26:39.070Z", "postProcessHash": "84d48c235c22730da3bb03faf5228991b7332e84ec25123278ab302156d2812e" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.938Z", + "updatedAt": "2025-12-09T23:26:39.073Z", "postProcessHash": "f0d4c2388941df409f92aad64c98e0fdab08e8be28373b0f526cade46fe999e5" } } @@ -4694,15 +4708,15 @@ }, "daac240f9481ada70f4ab82196cb275ec718d8c2d714eb60b5c567634c3e725a": { "fr": { - "updatedAt": "2025-12-09T18:17:45.873Z", + "updatedAt": "2025-12-09T23:26:39.044Z", "postProcessHash": "cef778ece2656866f974984362d25317410be8bdac20f55a8a8f3426ee3644a8" }, "es": { - "updatedAt": "2025-12-09T18:17:45.890Z", + "updatedAt": "2025-12-09T23:26:39.047Z", "postProcessHash": "3fb68cc6016006437b9b159efff45fa7d81eaf3924d82544042ea2e740009f34" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.892Z", + "updatedAt": "2025-12-09T23:26:39.048Z", "postProcessHash": "747a1a67ef6492bbff4d4659f4a1faa894e9830ee7b848803844019d038affe8" } } @@ -4743,15 +4757,15 @@ }, "5f164293a7b7d857847dd6724df827abe1235b34e02d3b3ff596ad6884d30fda": { "zh": { - "updatedAt": "2025-12-09T18:17:45.931Z", + "updatedAt": "2025-12-09T23:26:39.069Z", "postProcessHash": "5077d55dfb194414de3ccc6ad4fce47bcbb2b706604913baa4fd433cf0df42b7" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.893Z", + "updatedAt": "2025-12-09T23:26:39.048Z", "postProcessHash": "468c6b7cbad8a8a544c73a25e2be40efc8ac71b6a372eb982cb8e4bc9062588d" }, "es": { - "updatedAt": "2025-12-09T18:17:45.901Z", + "updatedAt": "2025-12-09T23:26:39.053Z", "postProcessHash": "15ccf30c58932162164363615489bfc2cc6a657bdd49f185ec2b7c96fa0cd1b6" } } @@ -4781,15 +4795,15 @@ }, "c0ecdfc77f161f9ec951eeea61e89d87be13c8dcbf63cc28240bc8e495f7e7f4": { "es": { - "updatedAt": "2025-12-09T18:17:45.782Z", + "updatedAt": "2025-12-09T23:26:38.992Z", "postProcessHash": "448ce5d2b5fbbd572a78038bf7132cff0e71ba1e347160ba1a7198576e2f6195" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.783Z", + "updatedAt": "2025-12-09T23:26:38.993Z", "postProcessHash": "d2820ec3ae42bd301ac2d90b8b9d73078a74b545ae61cce9372844fa64e22f1f" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.802Z", + "updatedAt": "2025-12-09T23:26:39.011Z", "postProcessHash": "1551047fa8b5fc350260b9cee71617212cf7eb90682fb3981d11a6659c6153f9" } } @@ -4846,15 +4860,15 @@ }, "a45a6dd4b1c9c8d543c6f5e73acbb7b6565f6f86085050f0a9bff17e2026d626": { "es": { - "updatedAt": "2025-12-09T18:17:45.941Z", + "updatedAt": "2025-12-09T23:26:39.075Z", "postProcessHash": "285b37a97f044c8c0e406af840bfaa9f0a7500f65c7a6504c7fa23c3fe10b6ac" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.942Z", + "updatedAt": "2025-12-09T23:26:39.075Z", "postProcessHash": "44b12f400f5bd4673a70276dc83eca1680dc6169de2524c29f9a36223d83df2c" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.942Z", + "updatedAt": "2025-12-09T23:26:39.076Z", "postProcessHash": "f2bf2a896296fa00ab960d420226acf234a1f2ecb485cf7bf34f3992d8a2c64c" } } @@ -4884,15 +4898,15 @@ }, "1c0a8202856d2630d58fdd9440e8b59dc16e2e0d0df716f94c1c61506b0abf73": { "fr": { - "updatedAt": "2025-12-09T18:17:45.790Z", + "updatedAt": "2025-12-09T23:26:38.997Z", "postProcessHash": "e891b940e13b1b63e6a49465d01a87aa7c328c45b63b3faa068131eabae9355f" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.793Z", + "updatedAt": "2025-12-09T23:26:39.005Z", "postProcessHash": "b832478040fa89fe4ef18efbc0acc74b6e85e26138aa62dfd861d9e6f517bb36" }, "es": { - "updatedAt": "2025-12-09T18:17:45.800Z", + "updatedAt": "2025-12-09T23:26:39.009Z", "postProcessHash": "d4198c527fc9951a00defec1cf841e763d9e88d137ab1415d478ea17dec82c2f" } } @@ -4922,15 +4936,15 @@ }, "2a0f0b7a4c2e97c104841a7ca775cb7ea2d904d3c58797b4df16f21bed656cbf": { "zh": { - "updatedAt": "2025-12-09T18:17:45.794Z", + "updatedAt": "2025-12-09T23:26:39.005Z", "postProcessHash": "4c51eeb094c01e18e658e0aa81d2a1b92a5571ef0d457cbddebceedcd29e9559" }, "es": { - "updatedAt": "2025-12-09T18:17:45.888Z", + "updatedAt": "2025-12-09T23:26:39.046Z", "postProcessHash": "fdfca5d48424f7e26c868ff031ddd100aca0b0b2b06b56c6d913ffed3564f324" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.894Z", + "updatedAt": "2025-12-09T23:26:39.049Z", "postProcessHash": "9558b0a06dfe4c8cd1da2a6b691060d876dedbff3c04057d522619fa4e173adb" } } @@ -4960,15 +4974,15 @@ }, "cc2a087cfe19f368db8940e1369be0e2b08997d401eb3bafcb63ce4b0c545328": { "zh": { - "updatedAt": "2025-12-09T18:17:45.839Z", + "updatedAt": "2025-12-09T23:26:39.027Z", "postProcessHash": "2d0814783035e4b89de5a957b8d1b41a27bb81f876e7e8b1a275b7a1bd3261af" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.851Z", + "updatedAt": "2025-12-09T23:26:39.031Z", "postProcessHash": "955a93f808a54b74246c778e1df735495c6ae9ee68e1b3030dfb508312d06e0a" }, "es": { - "updatedAt": "2025-12-09T18:17:45.796Z", + "updatedAt": "2025-12-09T23:26:39.007Z", "postProcessHash": "9be79651513924e3f0c5e17696f0e3097b8e51c4943f69fc32e586bfb3408044" } } @@ -5009,15 +5023,15 @@ }, "1e5e24c5831011296eb0d6e6dbb9c228554eb4545d985aa2aabfa4b2eb8010b6": { "es": { - "updatedAt": "2025-12-09T18:17:45.881Z", + "updatedAt": "2025-12-09T23:26:39.045Z", "postProcessHash": "ea641246293f4eec3bab002aa06c10563068b6cd2c1da2b85234f81d6287f545" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.899Z", + "updatedAt": "2025-12-09T23:26:39.052Z", "postProcessHash": "b2347b905781b2791126330873e2dced730a5a8fc4125ccb217f81918cd323a5" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.903Z", + "updatedAt": "2025-12-09T23:26:39.054Z", "postProcessHash": "1af0f69d927b2d1aa2a98fdd99bd69001706144f79cfdeaf1963d703ced347d9" } } @@ -5058,15 +5072,15 @@ }, "2202aa02e9ae341447ee588b80ce34cf38f9e450be559627fb28845418cd4906": { "zh": { - "updatedAt": "2025-12-09T18:17:45.896Z", + "updatedAt": "2025-12-09T23:26:39.050Z", "postProcessHash": "ddd5dca0075078e52e20d43c61eed52d651375256591c6042d8b20b558219273" }, "es": { - "updatedAt": "2025-12-09T18:17:45.889Z", + "updatedAt": "2025-12-09T23:26:39.046Z", "postProcessHash": "fd534b52300a6685457e2dd9e6563e7dfb52e5a84d8e2fc3dd6c8c6bec435eff" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.904Z", + "updatedAt": "2025-12-09T23:26:39.055Z", "postProcessHash": "62073aff38c1e8c02c4c9ecbe9fe9cbddccacb380883c754e298e9d9620296de" } } @@ -5096,15 +5110,15 @@ }, "8b3eb4d91a03437fdb577ff828b7858bed1d4efbac277fcc00b6de4d73556b7a": { "fr": { - "updatedAt": "2025-12-09T18:17:45.799Z", + "updatedAt": "2025-12-09T23:26:39.008Z", "postProcessHash": "828da7beeb813df86e4bb1e1292a4ef9236701f6ae35fdd2800bb1b1ea78a8fc" }, "es": { - "updatedAt": "2025-12-09T18:17:45.802Z", + "updatedAt": "2025-12-09T23:26:39.010Z", "postProcessHash": "880afc8d2f78c5306cb8defed9098c278ed7924d315bd61514b22186513912aa" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.813Z", + "updatedAt": "2025-12-09T23:26:39.016Z", "postProcessHash": "3d70cd16a3c92c4b3494a1c1c2a028c8874c74a64defafe3bf9a3957d136f57a" } } @@ -5134,15 +5148,15 @@ }, "717ba6ec955149d36b641a29e243d1a562bc0a4a45246ea8f00e97a12de033a2": { "es": { - "updatedAt": "2025-12-09T18:17:45.929Z", + "updatedAt": "2025-12-09T23:26:39.067Z", "postProcessHash": "bf21ae9fd3d5b766a06fb12a9cf16816ce273a35e9aa75c13938d0824ed0fee0" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.923Z", + "updatedAt": "2025-12-09T23:26:39.064Z", "postProcessHash": "ef9907be38c9bc93ad52723ed826bb9b8a417740689d459f6b42870a213d6002" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.906Z", + "updatedAt": "2025-12-09T23:26:39.055Z", "postProcessHash": "abd93d995fc73a033db16ab360f5dfdb5d301c2c82cb755a0aadbb26ac035203" } } @@ -5183,15 +5197,15 @@ }, "4933445bff862f003961a7d56f1c800fc218b7e831b9c7182f9698938ea39796": { "zh": { - "updatedAt": "2025-12-09T18:17:45.918Z", + "updatedAt": "2025-12-09T23:26:39.060Z", "postProcessHash": "6ede8ae21abf5012ddf1a4be44daabfc817bc6f9b9228c984afe5804279dab12" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.920Z", + "updatedAt": "2025-12-09T23:26:39.061Z", "postProcessHash": "bd1b8d353e3bfff4deb7697a910a657b194498896b1efbd5544d8a41ba96c418" }, "es": { - "updatedAt": "2025-12-09T18:17:45.925Z", + "updatedAt": "2025-12-09T23:26:39.064Z", "postProcessHash": "e6e0fb75fe3186975eb1f8dc9864659d7c5809da28c34479d5186509499e05a3" } } @@ -5221,15 +5235,15 @@ }, "490447ff6751bd36032615f87abdbbf88d8fbe2abb4e3a562a822148c6c24722": { "es": { - "updatedAt": "2025-12-09T18:17:45.785Z", + "updatedAt": "2025-12-09T23:26:38.994Z", "postProcessHash": "d7d3a81b544e7365c911dd73a60b7f318fd23ce51656e2faf7625cb5a03ef0ee" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.798Z", + "updatedAt": "2025-12-09T23:26:39.008Z", "postProcessHash": "dd06bc1acb52401b6f6ca746c2c1a92da627491828b629afcb2f33f426089294" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.799Z", + "updatedAt": "2025-12-09T23:26:39.009Z", "postProcessHash": "538b31c1f99fbe57cf6e6ede626c83d1def64cd5dc9b23ae567fc98077cd2117" } } @@ -5259,15 +5273,15 @@ }, "9e6bd9dddc84ee56ab61dd51d66778954d94835fa02e115422354fbc956a4a8d": { "zh": { - "updatedAt": "2025-12-09T18:17:45.930Z", + "updatedAt": "2025-12-09T23:26:39.068Z", "postProcessHash": "caa3e0316a4a3480a61d22d8cb5ebbab62d94b89282fb6bf718ae6d1ba46c992" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.924Z", + "updatedAt": "2025-12-09T23:26:39.064Z", "postProcessHash": "9718fb7d06f4c55a514dffa5450cfefd8c1d27ceb38178a3ef96f0a2ef42bd69" }, "es": { - "updatedAt": "2025-12-09T18:17:45.889Z", + "updatedAt": "2025-12-09T23:26:39.046Z", "postProcessHash": "aaaefa2927cd92debed8c8c6de6a5d4e5439e0c5b51b9a4217ce3367ef4249a4" } } @@ -5308,15 +5322,15 @@ }, "ce6876fe5f22e2c6437a4d497bad2b008231a76eb534358aeec83c667205144a": { "es": { - "updatedAt": "2025-12-09T18:17:45.826Z", + "updatedAt": "2025-12-09T23:26:39.025Z", "postProcessHash": "8227d59cca45c6364e78b3e8a5228f00c143c37612d56f3e2e4ce9c95c70f80b" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.827Z", + "updatedAt": "2025-12-09T23:26:39.026Z", "postProcessHash": "eb7b1485c64f6bc6a5a07c86f490de17cae3eb944fbb52484e1a5adc254e98bd" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.828Z", + "updatedAt": "2025-12-09T23:26:39.026Z", "postProcessHash": "d886c4d488c36fa262c26e6be5be60241c8783a105fdedbdae5a037b29de8da2" } } @@ -5346,15 +5360,15 @@ }, "f3c2f45fd08c00d6549d66c81c11f1b2851ec3db49e4c254e5b05f87b192bfa8": { "es": { - "updatedAt": "2025-12-09T18:17:45.784Z", + "updatedAt": "2025-12-09T23:26:38.994Z", "postProcessHash": "4f28eb2a016ab57d246d4c446dfb7fec3696124e40e398e34fb599576ac91c35" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.801Z", + "updatedAt": "2025-12-09T23:26:39.009Z", "postProcessHash": "0a464bc05af953102dc10645e49c5fc6f7315061203625db7fd68a62cd4f50f7" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.807Z", + "updatedAt": "2025-12-09T23:26:39.013Z", "postProcessHash": "5ba09ce062aa030f7301aeb199989b1d938ee279f6fc1040fd2fdbd681bf3824" } } @@ -5406,15 +5420,15 @@ }, "ee4f96bff0470723b7a10737aa848e0d3cdf797351ac32229d9d22a82ed34e59": { "es": { - "updatedAt": "2025-12-09T18:17:45.775Z", + "updatedAt": "2025-12-09T23:26:38.989Z", "postProcessHash": "943ad62ccf5e87246cbd8032a56ef87fac96dcf23591fc46e9c3b397f95dad53" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.776Z", + "updatedAt": "2025-12-09T23:26:38.990Z", "postProcessHash": "2ff0148d1a8d9be8b0b5a9c4d5d3f3a3dcef4d1189434a43373b809e4d43b30a" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.777Z", + "updatedAt": "2025-12-09T23:26:38.991Z", "postProcessHash": "e6f38994ff4810c823540cf2ce0102d796cdaf5590d8b6657eb370f19f07c40b" } } @@ -5455,15 +5469,15 @@ }, "ecf8a04b3e44574002cf2d4e9de7760b9f518ea76315815e9bba74ebf4f3e229": { "es": { - "updatedAt": "2025-12-09T18:17:45.917Z", + "updatedAt": "2025-12-09T23:26:39.059Z", "postProcessHash": "5bcb57afcbe6871695d33d23f38e742b95d4a3e07321b8c9925ebb858319e89a" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.919Z", + "updatedAt": "2025-12-09T23:26:39.061Z", "postProcessHash": "46e99f1e56f51f569eea9096876e68cffb39f3bc9e26b8a237554fbde4774693" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.920Z", + "updatedAt": "2025-12-09T23:26:39.061Z", "postProcessHash": "85a9a833133b6f290cbd3c9869b9e0d5f4f3e0601ea0a8a0e958dc058074c670" } } @@ -5507,16 +5521,16 @@ }, "18964c583c436757ada5f9e3e01597cd55e950732497275de082ca135f42022a": { "zh": { - "updatedAt": "2025-12-09T18:17:46.071Z", - "postProcessHash": "a0f51bb915690acc3445a83d01c92ffe3c1c3931eb76f4c6e903c4e19ae52d4d" + "updatedAt": "2025-12-09T23:26:39.035Z", + "postProcessHash": "e91529f8eeb8ca4b234331c7e2657bf8b44860d8a751bd9e48f2b8e16bff5ae4" }, "es": { - "updatedAt": "2025-12-09T18:17:46.072Z", - "postProcessHash": "711d3da2ad5b51d3b155812cc97368e6f213bb24e6a6179787793d3c700bc76f" + "updatedAt": "2025-12-09T23:26:39.035Z", + "postProcessHash": "ce65b171c54b8b178988d9e6bcf720f303cc7b8c626449cfb29b8cc04f8bf89a" }, "fr": { - "updatedAt": "2025-12-09T18:17:46.072Z", - "postProcessHash": "9ebe9b001aa76677504b3ceb1f39120d744f5be3824671587367d54621cc6b37" + "updatedAt": "2025-12-09T23:26:39.036Z", + "postProcessHash": "30b40f9ca9e205c9080f0b3e4fa5ad4a8099a95bb0f33caba04a9613e9e282db" } } }, @@ -5628,15 +5642,15 @@ }, "c2b0ec92dc6529a3942f720a9f35602a9e3552d599dd4e4aeaeb50eccc0a624a": { "es": { - "updatedAt": "2025-12-09T18:17:46.009Z", + "updatedAt": "2025-12-09T23:26:39.131Z", "postProcessHash": "6ebd7ca4d3b708e804b14e8ecba0fd5a44e0f5ca785489f3a3d5299d6edb5f3b" }, "fr": { - "updatedAt": "2025-12-09T18:17:46.011Z", + "updatedAt": "2025-12-09T23:26:39.132Z", "postProcessHash": "c073b0d9a8567169ae6f98397b7b0b492c958a74c91e03e26aaf83b0b50984c5" }, "zh": { - "updatedAt": "2025-12-09T18:17:46.012Z", + "updatedAt": "2025-12-09T23:26:39.133Z", "postProcessHash": "5538e2c5cfdf4f4ad7cab2898b2172faa9820634e4c0ee001df7023301bc1bf1" } } @@ -5644,15 +5658,15 @@ "53c3b9e499ef5bd5e368aa05a9a2484ab2e83e086a848e4dc65f744f4303c18f": { "fc7569e7101cf497720e212cf9526dfda81c1a7301c1866a84396fb6339961ed": { "zh": { - "updatedAt": "2025-12-09T18:17:46.016Z", + "updatedAt": "2025-12-09T23:26:39.135Z", "postProcessHash": "fc75c2d9938841194e2d671eef3d30c51041573d551759f489ffcb22eced7246" }, "es": { - "updatedAt": "2025-12-09T18:17:46.016Z", + "updatedAt": "2025-12-09T23:26:39.136Z", "postProcessHash": "10b19f2607796220023bffe69a09859b9214413133e5553d2e12a9329e0c3b30" }, "fr": { - "updatedAt": "2025-12-09T18:17:46.017Z", + "updatedAt": "2025-12-09T23:26:39.136Z", "postProcessHash": "6f470191e7ba5700ea93b6111e10536bd7763d866c23a98d3433de076a76deda" } } @@ -5693,15 +5707,15 @@ }, "86d5122da17807a0fa71ef1c13380126a4d638a2fa21a6b325cc13132e480681": { "zh": { - "updatedAt": "2025-12-09T18:17:45.926Z", + "updatedAt": "2025-12-09T23:26:39.065Z", "postProcessHash": "258af03eb7a52cba3490f2584bcc7f71eca53cb80d95dde9d1d83c35f06dd21a" }, "es": { - "updatedAt": "2025-12-09T18:17:45.926Z", + "updatedAt": "2025-12-09T23:26:39.066Z", "postProcessHash": "15862f6624698d445c51efb13211ebec4ff894f3769dddf4ab6b427bfa8a06df" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.927Z", + "updatedAt": "2025-12-09T23:26:39.066Z", "postProcessHash": "7bf48d9c603b8fee319e394f4e473b8accde60c47eb27d66da791d54b544eb6e" } } @@ -5731,15 +5745,15 @@ }, "0228942914d7754379a163a3e9fd8dbd1c314df31b406d2df877d274d0fb8282": { "zh": { - "updatedAt": "2025-12-09T18:17:45.882Z", + "updatedAt": "2025-12-09T23:26:39.045Z", "postProcessHash": "8c91e8fa4167ba210f3b2308851eb38c98c17189132ec7aa32b05083bb0237e0" }, "es": { - "updatedAt": "2025-12-09T18:17:45.901Z", + "updatedAt": "2025-12-09T23:26:39.053Z", "postProcessHash": "d3542f324dfd3a229718e408121faa79dafcecd08651a7b126d8ffa69cd4ce2e" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.933Z", + "updatedAt": "2025-12-09T23:26:39.070Z", "postProcessHash": "060b01f1938957d59bec7ad8776126885d294603716897fa8fd61202f2456945" } } @@ -5769,15 +5783,15 @@ }, "fa3c99c7b63408c3050a1074fce5edf8c4b0f834acd9219844bb6b030cfb03fd": { "es": { - "updatedAt": "2025-12-09T18:17:45.872Z", + "updatedAt": "2025-12-09T23:26:39.043Z", "postProcessHash": "b8bd6be1c7f2126cbdaeaceb27cd9d7acdad6e2284816c7b36d962908cddd443" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.873Z", + "updatedAt": "2025-12-09T23:26:39.044Z", "postProcessHash": "d422a254afeb71d677fcf8c567ffb783d97f2954e3235e158f5e8d8d33f09ba0" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.905Z", + "updatedAt": "2025-12-09T23:26:39.055Z", "postProcessHash": "1498da6b6d1ab7ee0eb15b95c959ce9d07442d8e567b35939e8585a4b706930f" } } @@ -5807,15 +5821,15 @@ }, "adbe9541002b1646c97b2808c84189ee9f023c72ad021051e865d9d5ef268ec9": { "es": { - "updatedAt": "2025-12-09T18:17:45.784Z", + "updatedAt": "2025-12-09T23:26:38.994Z", "postProcessHash": "4b0acbfe6598a091275b0e8bb0e204956606e3250e939e46c796cc67719609c4" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.787Z", + "updatedAt": "2025-12-09T23:26:38.996Z", "postProcessHash": "9db8494b6a5fc6f8d035c978771fda3d0f622d7365996b5086201f7cea7ba409" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.891Z", + "updatedAt": "2025-12-09T23:26:39.047Z", "postProcessHash": "113a8f8013e81920fc3346eb087306aefbe82ef33b8bc0648c4d0acf9bb7ce97" } } @@ -5900,6 +5914,20 @@ "updatedAt": "2025-12-09T18:17:45.998Z", "postProcessHash": "d85520c2a80d05c2e262bf7a104080da92c6f4094c7ec20ba9eb90ae4de6c349" } + }, + "f569468e88cb3be8bee1d9097f6a2f0e114340f05ef2f7660b2eab613c615e8f": { + "fr": { + "updatedAt": "2025-12-09T23:26:39.076Z", + "postProcessHash": "3116ad19edeb24299975e64fb4377d39363bd3e3935e29a09a167d3495b5619e" + }, + "zh": { + "updatedAt": "2025-12-09T23:26:39.135Z", + "postProcessHash": "776fe5b8d16024155657a0eec2cddd9bceafaa578415c400e8f198d1028484a4" + }, + "es": { + "updatedAt": "2025-12-09T23:26:39.135Z", + "postProcessHash": "a492be40675d72c724b4ed398656683441c3659697dc4cc601afe3ac97917293" + } } }, "1ffd061e06bf8e34e163efee4624c4b1ca6f314f949b634c3f4abceba4c13c0f": { @@ -5927,15 +5955,15 @@ }, "79ce9a01a754dff7caa2815c273adb26f9fa5e7a21f6e8e07fc94d1f85cdba74": { "es": { - "updatedAt": "2025-12-09T18:17:45.861Z", + "updatedAt": "2025-12-09T23:26:39.039Z", "postProcessHash": "4f3d9036b6c463c31d5d73da325be00fc2f397e1caacd8189f0ccc1ee8e14a33" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.870Z", + "updatedAt": "2025-12-09T23:26:39.043Z", "postProcessHash": "fa4b69feb4a7ff9a420eb06a60cf2ee33443e29243043d54a564a6b12a4228d3" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.902Z", + "updatedAt": "2025-12-09T23:26:39.053Z", "postProcessHash": "edb3a451e5f74672eb9931e14a85482d7ed3e838a1c45b58040fcdb8ca2a8243" } } @@ -5965,15 +5993,15 @@ }, "cb332adcfe09bedb087e499ecf60d6a233e8053ca49c78bb30ca1add261b4ea8": { "fr": { - "updatedAt": "2025-12-09T18:17:45.863Z", + "updatedAt": "2025-12-09T23:26:39.040Z", "postProcessHash": "d3f4ff69a82a65ed50e89bef979ce2e2a4177f6aecd78ed924d81542122e8812" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.868Z", + "updatedAt": "2025-12-09T23:26:39.042Z", "postProcessHash": "831df8b865aa0658cf5481cc3a6d40eb2d06d3ba5e4232130dbd8208ae905817" }, "es": { - "updatedAt": "2025-12-09T18:17:45.894Z", + "updatedAt": "2025-12-09T23:26:39.049Z", "postProcessHash": "154f89bdf5fd85627d81ad5d075da2c577fccb2126d8c2d2f87418b89ff5f52f" } } @@ -6003,15 +6031,15 @@ }, "0d47285825c7ae55984e6f9c3d7528dd673f95650add2cbb567f8c29315f01d5": { "es": { - "updatedAt": "2025-12-09T18:17:45.867Z", + "updatedAt": "2025-12-09T23:26:39.042Z", "postProcessHash": "7b1d3ca88d0e73f3be028e1fe38f0322a2efed3dcb2988bd5da04967bd3c2e05" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.880Z", + "updatedAt": "2025-12-09T23:26:39.044Z", "postProcessHash": "55880c10f3d37ee1d716a38031a483f2543afba521909dc4408c72579b11ba55" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.900Z", + "updatedAt": "2025-12-09T23:26:39.052Z", "postProcessHash": "099305d139ec4025d49c85572a0fcdf7aa05cb23992d78d03ffb3aed637b9d85" } } @@ -6041,15 +6069,15 @@ }, "9277c5d065b05d3f338e148bb8b9a7359baa986e51127a488155faacbc3c3a72": { "es": { - "updatedAt": "2025-12-09T18:17:45.862Z", + "updatedAt": "2025-12-09T23:26:39.040Z", "postProcessHash": "faee58249dd8a9113f3aba705d6dfaec41a3fe393600f29d7135705206db09fa" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.867Z", + "updatedAt": "2025-12-09T23:26:39.041Z", "postProcessHash": "a60b72007a91b910277cefb0cfa09e751a90eb2e5b663cb1a1047689c6c50cb4" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.897Z", + "updatedAt": "2025-12-09T23:26:39.051Z", "postProcessHash": "7f5ae4e82939f74154200b48db75a609911af14e320bcf71bdd1ed44ed4dffd7" } } @@ -6090,15 +6118,15 @@ }, "c957730742bfb92e2dc7fb525f717a4437abf5f9440efbbac1db614a1b98a392": { "es": { - "updatedAt": "2025-12-09T18:17:45.915Z", + "updatedAt": "2025-12-09T23:26:39.058Z", "postProcessHash": "cced41b6e6d7b9628f4573f9468ee1759122bb6f0570669d067a4873bdba1fa8" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.921Z", + "updatedAt": "2025-12-09T23:26:39.062Z", "postProcessHash": "08a684c08c6145f36f681fcdcd5a809e2241033d14484876bc1de355fe6294ff" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.922Z", + "updatedAt": "2025-12-09T23:26:39.063Z", "postProcessHash": "75f945df223e9bc12d4dfbe86962bd30eecc250670cd63a3cd480c403d07ce66" } } @@ -6128,15 +6156,15 @@ }, "ede4781ac253b215e63e85bc6df9f6b663c66406f6357aa7af4eeffb8d1a98cf": { "zh": { - "updatedAt": "2025-12-09T18:17:45.871Z", + "updatedAt": "2025-12-09T23:26:39.043Z", "postProcessHash": "37b2ffe2b7b48cd1f25fa55f91837972d06bf29bcbbd52dbd45abf29105f1e91" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.883Z", + "updatedAt": "2025-12-09T23:26:39.045Z", "postProcessHash": "c8fc5a4cc90098f978f22a3edcdbe727587c6e68fd2b83bf3ff21a1a76b80c58" }, "es": { - "updatedAt": "2025-12-09T18:17:45.898Z", + "updatedAt": "2025-12-09T23:26:39.051Z", "postProcessHash": "37253f6b18842eb86e4fd436766441ce9297e358f404a239c698562baa430714" } } @@ -6166,15 +6194,15 @@ }, "077aa8e71ac9b1ad9784f1fdb2f0f2272d89aef4e499c387a943a032aa224732": { "zh": { - "updatedAt": "2025-12-09T18:17:45.789Z", + "updatedAt": "2025-12-09T23:26:38.997Z", "postProcessHash": "f0b4564abe56b90d979fd97246c207ebd30c74de30f0e64b94824db60f7e60bb" }, "es": { - "updatedAt": "2025-12-09T18:17:45.895Z", + "updatedAt": "2025-12-09T23:26:39.049Z", "postProcessHash": "c481f3a0059f7ddc6e91388789cb8a9471ed02ad32e4ba9090b6b3fafc2ddb0c" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.906Z", + "updatedAt": "2025-12-09T23:26:39.056Z", "postProcessHash": "39d867622e218bdaa5d41f34fb9ebc79bd6cc4a3674aa92102c522722b3002b8" } } @@ -6215,15 +6243,15 @@ }, "55fa23acdb7de467734fe16b314362e832463f3c8bb6f5c6582d9160f35cea0e": { "es": { - "updatedAt": "2025-12-09T18:17:45.931Z", + "updatedAt": "2025-12-09T23:26:39.068Z", "postProcessHash": "341f9e89ea1dd3170301bc66c73f074807cc3bf5b7a6a80c292a6470e113d77c" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.988Z", + "updatedAt": "2025-12-09T23:26:39.122Z", "postProcessHash": "322945abb43c04f46c37350dc3427053ede6bc9c9f3e427f09dfa581accf402d" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.990Z", + "updatedAt": "2025-12-09T23:26:39.123Z", "postProcessHash": "d640fc4ec5920fbf22a781fa548f1e6c887a0171765fa56dbe77b952c576820a" } } @@ -6253,15 +6281,15 @@ }, "09e6faacedcffff953e51c59a6092cbbe84f4d0578d592bc9decaa2ea769e610": { "es": { - "updatedAt": "2025-12-09T18:17:45.786Z", + "updatedAt": "2025-12-09T23:26:38.995Z", "postProcessHash": "c254e7e62a9dae1516c69ed5ac715725f7fefa8cbf15a8ee661c0fac377564bd" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.896Z", + "updatedAt": "2025-12-09T23:26:39.050Z", "postProcessHash": "8b30533125ef020face675322f662b6d39aac227c7c0c01daf0f899b97deb185" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.904Z", + "updatedAt": "2025-12-09T23:26:39.054Z", "postProcessHash": "fc09af799d0e6a57696d98961e5f4cb4eb2bfdfc3318c3809a6e764c1b73229e" } } @@ -6302,15 +6330,15 @@ }, "932164e54df873e85483457879f18e64e32a0b2e369f5ac02f63fa24d0b597e8": { "es": { - "updatedAt": "2025-12-09T18:17:45.778Z", + "updatedAt": "2025-12-09T23:26:38.991Z", "postProcessHash": "056911e012472d793cdaba50a2c8ca12f4349eb3638a494c3b195b49d77a72e2" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.781Z", + "updatedAt": "2025-12-09T23:26:39.038Z", "postProcessHash": "7f0676d4ad461ace403c926ce54814362c763cd819d35541fca58540e71f867f" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.781Z", + "updatedAt": "2025-12-09T23:26:39.038Z", "postProcessHash": "0140c7068930261b4ca0c63f9afcf41fa317a62e0d09e283570ad12a6ada18db" } } @@ -6351,15 +6379,15 @@ }, "ec71bf3822a4c56c270e9b788ef048e6f9cee300afd195dca52467da091b89a9": { "fr": { - "updatedAt": "2025-12-09T18:17:45.936Z", + "updatedAt": "2025-12-09T23:26:39.072Z", "postProcessHash": "8aa134d755c87182a2a2c754987870ec6bef9069233c2afce67cf50dc6b0a46d" }, "es": { - "updatedAt": "2025-12-09T18:17:45.986Z", + "updatedAt": "2025-12-09T23:26:39.121Z", "postProcessHash": "bae6438ff1d33e4cfc1694d8f2c5084af8bce770aae84786a6f4d1870601acfd" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.987Z", + "updatedAt": "2025-12-09T23:26:39.121Z", "postProcessHash": "526616ad2a6ef4c92f94be4802a62f779caaf8ec5ce1aea6caef80fa78a19159" } } @@ -6389,15 +6417,15 @@ }, "160f5f116c9fa308d3ec6a5259bbd3981661441ed3005e4cecde5805eb67d49f": { "zh": { - "updatedAt": "2025-12-09T18:17:45.788Z", + "updatedAt": "2025-12-09T23:26:38.996Z", "postProcessHash": "b28d42a6f94c40653c2068e6658b348d192f91c3a4d711f865121c8cf9dd1130" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.789Z", + "updatedAt": "2025-12-09T23:26:38.996Z", "postProcessHash": "b296312f68f318d7230611776108eea87a4b53ed201c8aabe3ee79bfd290c562" }, "es": { - "updatedAt": "2025-12-09T18:17:45.793Z", + "updatedAt": "2025-12-09T23:26:39.004Z", "postProcessHash": "8510c54a3b69f2ef327f022a09fb5e0e960dbd13b0700a28548f682f8c98f3ec" } } @@ -6449,15 +6477,15 @@ }, "c9b2cc3264dd28035c31174a00e7a3504fa6b70444ad3e472634e138afa04319": { "fr": { - "updatedAt": "2025-12-09T18:17:45.934Z", + "updatedAt": "2025-12-09T23:26:39.071Z", "postProcessHash": "ea8bbcd89d42a8e2c0721a7ece139530b580b0c7cb371a1f34c26ded8e6d8813" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.937Z", + "updatedAt": "2025-12-09T23:26:39.072Z", "postProcessHash": "b22782c350becf853cf1dc0dd62c4856f03f686ef279eac76dab13a900f8c16f" }, "es": { - "updatedAt": "2025-12-09T18:17:45.937Z", + "updatedAt": "2025-12-09T23:26:39.073Z", "postProcessHash": "01a11811d746c3f84e24719f9c34d630e81333caa40a2d91251403b0c20ce425" } } @@ -6498,15 +6526,15 @@ }, "d5f72a1068546e50a8769f65162ffc337c9b76d937e24eaec2c75f7a648f9644": { "es": { - "updatedAt": "2025-12-09T18:17:45.913Z", + "updatedAt": "2025-12-09T23:26:39.057Z", "postProcessHash": "4b96a26b6a0d2408f284b7a0f8ec5f46297d6c78fb078d02bfd39f59611f2362" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.914Z", + "updatedAt": "2025-12-09T23:26:39.057Z", "postProcessHash": "24d1f539b7505c87d034f56f7ac314e41f8265813e2897b121a9db6a2bc2e42d" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.915Z", + "updatedAt": "2025-12-09T23:26:39.058Z", "postProcessHash": "4c350da45407f8e3c54b1c6f18383581434a8f9b13324e61d4c1de12a14cbbaa" } } @@ -6569,15 +6597,15 @@ }, "b2941acc9defbd3d9c3b300b73704cac0dd2fb86b77e667eb6cde4d0fa6c5495": { "es": { - "updatedAt": "2025-12-09T18:17:45.916Z", + "updatedAt": "2025-12-09T23:26:39.058Z", "postProcessHash": "c6f28bc8100939a6fbdeeaf3abddf03ffd521cac6a8f9a8c9ef27654ea4446c5" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.932Z", + "updatedAt": "2025-12-09T23:26:39.069Z", "postProcessHash": "b5baf0b834fa723f2343b63f5e321b8a30d7305b3e43b85726e6346a367df99d" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.917Z", + "updatedAt": "2025-12-09T23:26:39.059Z", "postProcessHash": "a4fa03f2c6225f764bb541f9b1b603f772d36521832551be5048899fd37222f7" } } @@ -6646,15 +6674,15 @@ }, "0d42b34b032d660a471eb899bc862c89483af7db4bcba5396865e5fbf8e2ae97": { "es": { - "updatedAt": "2025-12-09T18:17:46.008Z", + "updatedAt": "2025-12-09T23:26:39.130Z", "postProcessHash": "964e8d903c836590ddca3aac6af204bc9cfc5ed0d46386154308a45dc92feea5" }, "fr": { - "updatedAt": "2025-12-09T18:17:46.009Z", + "updatedAt": "2025-12-09T23:26:39.131Z", "postProcessHash": "76df176282efc75b4a19abe36c447d7528b827d40a8e46fad9e79f0cbc299527" }, "zh": { - "updatedAt": "2025-12-09T18:17:46.010Z", + "updatedAt": "2025-12-09T23:26:39.132Z", "postProcessHash": "8096eb57b9b5031d4166f2c671139a361c0d7ca31ddf219d4d766f8202649e82" } } @@ -6708,15 +6736,15 @@ }, "acfaa578e31469bba912c816947b7f178d4832f82c00d05c3e244edd94887e39": { "es": { - "updatedAt": "2025-12-09T18:17:46.033Z", + "updatedAt": "2025-12-09T23:26:39.146Z", "postProcessHash": "1bf805d28357fd4c6516184713411d605ca067fec74cc0d93dfe220ff49585bb" }, "fr": { - "updatedAt": "2025-12-09T18:17:46.035Z", + "updatedAt": "2025-12-09T23:26:39.147Z", "postProcessHash": "13005ac041b93bd857d8e59aaa93c6efd67ced33e802174e8b0d67f43e384265" }, "zh": { - "updatedAt": "2025-12-09T18:17:46.037Z", + "updatedAt": "2025-12-09T23:26:39.148Z", "postProcessHash": "792476f5828a03d073e4b19df36512d43f64747ae6d95f7ae3be63b9f4fec9e9" } } @@ -6724,15 +6752,15 @@ "d94f062276e8ad0d42732979d06ce717dd7311616fe48748e00dba55829e49e7": { "38383b08735a5cb0e05fd23251b27a3ee86198c1e15186670fc6283782cd16ac": { "fr": { - "updatedAt": "2025-12-09T18:17:46.023Z", + "updatedAt": "2025-12-09T23:26:39.138Z", "postProcessHash": "7be6faa4e42554befd520c19a6f3491993e94a21f662c1efdb2d40c9cedff8f9" }, "es": { - "updatedAt": "2025-12-09T18:17:46.024Z", + "updatedAt": "2025-12-09T23:26:39.139Z", "postProcessHash": "1b8a6318b0dfe185d0659617edc34dbca1e15a9c7c691840d2b863f61ecee115" }, "zh": { - "updatedAt": "2025-12-09T18:17:46.023Z", + "updatedAt": "2025-12-09T23:26:39.138Z", "postProcessHash": "61a8388dd04e334392c1787d6c488bdc84b7c6700c627791b00fb54d534be8d2" } } @@ -6740,15 +6768,15 @@ "b75acb2803501aae1bc445e5c4671f7a1cb79a55d21e1658ded84494ddd40dd7": { "2d3ea0369c9e0a1cae4d532293d6570f21f57b514c73f999de5c56c3a56fa419": { "fr": { - "updatedAt": "2025-12-09T18:17:46.025Z", + "updatedAt": "2025-12-09T23:26:39.139Z", "postProcessHash": "2d3ea0369c9e0a1cae4d532293d6570f21f57b514c73f999de5c56c3a56fa419" }, "zh": { - "updatedAt": "2025-12-09T18:17:46.025Z", + "updatedAt": "2025-12-09T23:26:39.140Z", "postProcessHash": "2d3ea0369c9e0a1cae4d532293d6570f21f57b514c73f999de5c56c3a56fa419" }, "es": { - "updatedAt": "2025-12-09T18:17:46.026Z", + "updatedAt": "2025-12-09T23:26:39.140Z", "postProcessHash": "2d3ea0369c9e0a1cae4d532293d6570f21f57b514c73f999de5c56c3a56fa419" } } @@ -6778,15 +6806,15 @@ }, "70ae68e58bd169fcaad5883e12866d9623dd08aeda647b33d080900e63da30ae": { "zh": { - "updatedAt": "2025-12-09T18:17:45.866Z", + "updatedAt": "2025-12-09T23:26:39.083Z", "postProcessHash": "f5f221ba2d8314ef1816a191296a593d06fd07914a257fd35677d80acbe77127" }, "es": { - "updatedAt": "2025-12-09T18:17:45.953Z", + "updatedAt": "2025-12-09T23:26:39.087Z", "postProcessHash": "e69840c0323e058adde26e5c16ba77be21fb16092c2b0486a533fd3a0a4533d6" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.972Z", + "updatedAt": "2025-12-09T23:26:39.111Z", "postProcessHash": "874e43e0aeff69d04c072315bd02c26fc170450ace3dfdfe271838a07640fdc3" } } @@ -6816,15 +6844,15 @@ }, "abd558ca5dff83fea0f652890cb390fbf5a7818d903e464a8407cbac75b6926b": { "fr": { - "updatedAt": "2025-12-09T18:17:45.983Z", + "updatedAt": "2025-12-09T23:26:39.120Z", "postProcessHash": "df401d1fb70452352dfd19f417d03ac67d4157ce1fb061c488118515f304fcc8" }, "es": { - "updatedAt": "2025-12-09T18:17:45.980Z", + "updatedAt": "2025-12-09T23:26:39.118Z", "postProcessHash": "e91542489d8909439b4f25d8d514c0b9eee432a9102578c35340641a1b995708" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.985Z", + "updatedAt": "2025-12-09T23:26:39.121Z", "postProcessHash": "e78b8df95f3554b1e5796fd4431fc6ceed73b4e2524ccbb6b815754d80243461" } } @@ -6843,15 +6871,15 @@ }, "14c735b1f5d231158fc82ee047c2c33adf31bf94b27796f516f1287a5bcec0be": { "zh": { - "updatedAt": "2025-12-09T18:17:45.982Z", + "updatedAt": "2025-12-09T23:26:39.119Z", "postProcessHash": "9c992242df738e1c797c2559c72263d523df37252b4bf886b45fa0e6d1982974" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.985Z", + "updatedAt": "2025-12-09T23:26:39.120Z", "postProcessHash": "272a49cce702d034dd784a972f2df536efad5e9666c3b2466a7df2a826b31ad7" }, "es": { - "updatedAt": "2025-12-09T18:17:45.984Z", + "updatedAt": "2025-12-09T23:26:39.120Z", "postProcessHash": "4f947e6f4c702c653ee263be612941c3c69378052b0a439e6d4508d3fe3293ab" } } @@ -6881,15 +6909,15 @@ }, "6b0824d08f834f9a5d538b3b8632f9b239036b14491d42acebef6408dc7ec637": { "zh": { - "updatedAt": "2025-12-09T18:17:45.864Z", + "updatedAt": "2025-12-09T23:26:39.082Z", "postProcessHash": "5658e43759591f4255778f584e2633d06428537642b0becca5cc0039082d5da3" }, "es": { - "updatedAt": "2025-12-09T18:17:45.963Z", + "updatedAt": "2025-12-09T23:26:39.092Z", "postProcessHash": "f7f3edda9e945c9383face672f3b3bea008ab3ee22fd84e4786e6d515542009a" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.977Z", + "updatedAt": "2025-12-09T23:26:39.112Z", "postProcessHash": "4940c7b39b10be524409a7d1f44a6cc1058cfd07aa078891bf9254c3fa86d446" } } @@ -6919,15 +6947,15 @@ }, "69541fe204b62627117cad380d521083fbbbf9f2aa883d6f7c32d9483e435d8a": { "es": { - "updatedAt": "2025-12-09T18:17:45.965Z", + "updatedAt": "2025-12-09T23:26:39.093Z", "postProcessHash": "163966cdd813c053854e23eca96d253b95b8ec1852b3193f9498bc05b0028c2e" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.970Z", + "updatedAt": "2025-12-09T23:26:39.109Z", "postProcessHash": "b7c9c61a568769b80300eda4b0ceb124c50e3a3be0d8be07e82f922b20c9dc84" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.971Z", + "updatedAt": "2025-12-09T23:26:39.110Z", "postProcessHash": "7621505108d9b738d7bf7c3a6515f392123fb3a4dddf8c01154854652f3daf67" } } @@ -6968,15 +6996,15 @@ }, "a579b00d949d1eb971a0e0020a4684cc68ba269d7c6744518b1e9d92ca3b0d2e": { "es": { - "updatedAt": "2025-12-09T18:17:45.978Z", + "updatedAt": "2025-12-09T23:26:39.116Z", "postProcessHash": "fb3463cd9ce35f6fb18b88fe91805d4af2adaa344784595f8f592e5cb695309a" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.979Z", + "updatedAt": "2025-12-09T23:26:39.117Z", "postProcessHash": "532554c45472aa32bcb040b2a711115e45015356dfec7bf617b709b03f4b5e8d" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.979Z", + "updatedAt": "2025-12-09T23:26:39.117Z", "postProcessHash": "e44dab06aba88fe749706641279540ebad36232963afe30bf6955db4fb39d642" } } @@ -7006,15 +7034,15 @@ }, "be04206c1c53f3a25f69fae280dd277b9bde36158b2e9b21967acc980f632e3e": { "es": { - "updatedAt": "2025-12-09T18:17:45.967Z", + "updatedAt": "2025-12-09T23:26:39.100Z", "postProcessHash": "79ef51c6c57e55473ba0b131d3879f4b9d5541022ae3d0e0c1d57568c8c5bef5" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.976Z", + "updatedAt": "2025-12-09T23:26:39.112Z", "postProcessHash": "7047d458b19d8113e9d1d25dbeb826f77cf1cde79a57df29c10f9cf50ff867e6" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.976Z", + "updatedAt": "2025-12-09T23:26:39.112Z", "postProcessHash": "64fa990fbb94a748c916d29b1cee65a46ab9cf1f20adedd4b3b4cbba07ea76c4" } } @@ -7044,15 +7072,15 @@ }, "072b9eebedb71c24eff9121c4c3df35b97b1ed50e4d085469528c9d2de05859f": { "es": { - "updatedAt": "2025-12-09T18:17:45.861Z", + "updatedAt": "2025-12-09T23:26:39.081Z", "postProcessHash": "ce43cffea176a18739de24137e8ba8b295ef20048cbd87f374f43c64fd61f9af" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.965Z", + "updatedAt": "2025-12-09T23:26:39.094Z", "postProcessHash": "1b7200c17e4a1a70668709828b6960c49d796b2e48aca1217fc3202d7cc8cb8f" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.967Z", + "updatedAt": "2025-12-09T23:26:39.098Z", "postProcessHash": "d5f4acd37da75353c4da7775bb4d6dee19433308a0fd075916c41abca972b311" } } @@ -7082,15 +7110,15 @@ }, "60410e8de452c7da325a02a1b113b5f41efda66701da3ba2c1c778a5bfcf1c6b": { "fr": { - "updatedAt": "2025-12-09T18:17:45.860Z", + "updatedAt": "2025-12-09T23:26:39.039Z", "postProcessHash": "c07eadec087884b8c15f2c85ff82af42cb2fdb230d500a5dc8838286b934344d" }, "es": { - "updatedAt": "2025-12-09T18:17:45.865Z", + "updatedAt": "2025-12-09T23:26:39.041Z", "postProcessHash": "df7ebd8d0dc810d993a8ec36837a627e2cd4f5155a567f52a32b301c2cc5c916" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.951Z", + "updatedAt": "2025-12-09T23:26:39.085Z", "postProcessHash": "2865c5a4d907fe77512ad9ca6f0c87933ff18542dd9d7cbf4aa1183d103cefb1" } } @@ -7142,15 +7170,15 @@ }, "4eae604426bf8aea4e211d29fbdb8293ad317b800322c61d893101024cdadff0": { "fr": { - "updatedAt": "2025-12-09T18:17:45.991Z", + "updatedAt": "2025-12-09T23:26:39.123Z", "postProcessHash": "d050cda4da0cd6807b3671ca7719f9e4a3d0592935b40fe0b6e5776c08314ac8" }, "es": { - "updatedAt": "2025-12-09T18:17:45.991Z", + "updatedAt": "2025-12-09T23:26:39.124Z", "postProcessHash": "74cd4f6452e34e9ff2ebedf20d2113f6b3e081a079084e5bc367a5a6ffc6d23a" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.994Z", + "updatedAt": "2025-12-09T23:26:39.125Z", "postProcessHash": "d181d20d3d4ad8e044f5e7ad78b356a816c999b73cd5a336403e87ceae9f02e8" } } @@ -7191,15 +7219,15 @@ }, "b50bec2f6fbc20f925edb6d286c9764aae8d9649421d2ee0556e6a4354954892": { "es": { - "updatedAt": "2025-12-09T18:17:45.992Z", + "updatedAt": "2025-12-09T23:26:39.124Z", "postProcessHash": "7c00710bb6230a11a5e4a58d7832cd1ac3a4880c965fc054693ba27f275a594d" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.993Z", + "updatedAt": "2025-12-09T23:26:39.124Z", "postProcessHash": "e3d8dc2fccf2b0e4df0e27bea8ed2f4158fad71db1bcc9f7f3fe9f9d896d6532" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.993Z", + "updatedAt": "2025-12-09T23:26:39.125Z", "postProcessHash": "268c9b1e68fd46219de27c7862aacdb2c2b9df92f8c7d05ecc8c5bfef95131e5" } } @@ -7240,15 +7268,15 @@ }, "0fc1c97ac1271e56711c24a8e174f746e5aba365ae68c766dfc386de28b68758": { "es": { - "updatedAt": "2025-12-09T18:17:45.928Z", + "updatedAt": "2025-12-09T23:26:39.067Z", "postProcessHash": "91eefb1610ac8a8e5960f09c348906baa3797d04bfebd24e3f93e69247182dd7" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.921Z", + "updatedAt": "2025-12-09T23:26:39.062Z", "postProcessHash": "f036c788e9536b57ba87e7da391cbc5dc3365f53da6a3bb0e3033e43faa0f15d" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.928Z", + "updatedAt": "2025-12-09T23:26:39.066Z", "postProcessHash": "54d380f074def6e5ae4cdba4c87608810d5345321934336421ca947f62fe9807" } } @@ -7278,15 +7306,15 @@ }, "61916a309506445f20e4979e2a04f18a825fc867a7af92e1e9f217840401ff61": { "es": { - "updatedAt": "2025-12-09T18:17:45.868Z", + "updatedAt": "2025-12-09T23:26:39.042Z", "postProcessHash": "55bd9d8bb428656557707f1916f8b20e7cea4717aaaf254752cbb6139f20f549" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.892Z", + "updatedAt": "2025-12-09T23:26:39.048Z", "postProcessHash": "1eeb6a01020112cb5f3193088e02387e8693dfa345669ce830ca209057eecce7" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.897Z", + "updatedAt": "2025-12-09T23:26:39.051Z", "postProcessHash": "cb46b2a05f3b5821f1eb86d50386fa52ef26b7e704c6e999898aa1c667398eb2" } } @@ -7327,15 +7355,15 @@ }, "f1af2ab84f3b9ec22c6360f04b3968b3a9d8ea06a5721d866d818246c596d5e6": { "zh": { - "updatedAt": "2025-12-09T18:17:45.779Z", + "updatedAt": "2025-12-09T23:26:38.992Z", "postProcessHash": "3f6b6dc923f6b148a20876a057a094e3a0024bf5feb23c9b8ee9c36b88ba97a0" }, "es": { - "updatedAt": "2025-12-09T18:17:45.779Z", + "updatedAt": "2025-12-09T23:26:38.992Z", "postProcessHash": "3bbc71829abcdf781e8dd2579101f3c2793fc25be406e9d3ee4aaec1ae43b72f" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.780Z", + "updatedAt": "2025-12-09T23:26:39.037Z", "postProcessHash": "027e94abfc1868d8857d0a2bc4df91dfdfa4b78893768e283ff9b653e9344ba3" } } @@ -7365,15 +7393,15 @@ }, "8868b228fc8a687b133035b70a0de2ce37b05bf402b2e01848c326ea1dea023f": { "fr": { - "updatedAt": "2025-12-09T18:17:45.950Z", + "updatedAt": "2025-12-09T23:26:39.084Z", "postProcessHash": "2dfa29d17529516813e4f9d5cac8869f0e8443242aed5f9e9c371ff3ea3935ea" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.955Z", + "updatedAt": "2025-12-09T23:26:39.088Z", "postProcessHash": "0df0fb5ee9eaeaf7bcbfac87a0997d52db99c11792c7b09d1d7df76d5be6b301" }, "es": { - "updatedAt": "2025-12-09T18:17:45.971Z", + "updatedAt": "2025-12-09T23:26:39.111Z", "postProcessHash": "15cd17e2ec537cafb081a4ef7d7dc769843a0815247a25db22c877b1a3bba11e" } } @@ -7425,15 +7453,15 @@ }, "e39e9caf29465b5d48d1d5115af5bc0b2609607382f1f48c6ff0b741fea2ed5c": { "es": { - "updatedAt": "2025-12-09T18:17:45.996Z", + "updatedAt": "2025-12-09T23:26:39.125Z", "postProcessHash": "571f4813c9c062f52e8e3413a3ef048b62a666a9d4619e7aed2f2d710fea5b30" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.996Z", + "updatedAt": "2025-12-09T23:26:39.126Z", "postProcessHash": "0d2981af9f19eff8e0dbbea0b6ecdf65b237ce12e25ddb25338168f5e8d4de15" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.997Z", + "updatedAt": "2025-12-09T23:26:39.126Z", "postProcessHash": "f6e80783266fb093cb61ef6c6d80af0b3184dce451a0b234d42757d843332668" } } @@ -7560,15 +7588,15 @@ }, "18c6f76978f988111060b4c5b40845e382c028d9d70e6a125aff6faad70bfab1": { "fr": { - "updatedAt": "2025-12-09T18:17:46.013Z", + "updatedAt": "2025-12-09T23:26:39.133Z", "postProcessHash": "27a1a116bb1857a10c178cb63c85202b9a470077c5eaf627d7db70bace938621" }, "zh": { - "updatedAt": "2025-12-09T18:17:46.014Z", + "updatedAt": "2025-12-09T23:26:39.134Z", "postProcessHash": "53101fb8f2e1d5c3367e2cfdee06202a8ded4eb4898f37ed0456145f10a430a2" }, "es": { - "updatedAt": "2025-12-09T18:17:46.015Z", + "updatedAt": "2025-12-09T23:26:39.134Z", "postProcessHash": "56f0ecd1bc865af80397d3ed1aa56994fd33f7bfed078cc8fe87af2d027027c9" } } @@ -7609,15 +7637,15 @@ }, "b45bae404e19ce4bf3d7eef53d482ed6ef014f4e3fa1a95ce29fa233498d3100": { "zh": { - "updatedAt": "2025-12-09T18:17:46.046Z", + "updatedAt": "2025-12-09T23:26:39.155Z", "postProcessHash": "2b8465c471635af256b417b092985b8426f4d03bda6389d054bc306a7a529a75" }, "fr": { - "updatedAt": "2025-12-09T18:17:46.047Z", + "updatedAt": "2025-12-09T23:26:39.155Z", "postProcessHash": "9a4e68881747a5c197e74cb9af2c1cfb5c064dffea87037221768b4dc4b37982" }, "es": { - "updatedAt": "2025-12-09T18:17:46.048Z", + "updatedAt": "2025-12-09T23:26:39.156Z", "postProcessHash": "ab75d9d838e3c216d891865945682e11b8c168bdd4c52b0878f15c1372736db3" } } @@ -7647,15 +7675,15 @@ }, "e5f66a275721a9cc17c973319dccecc1dac2ac8dee59f4ab039032125acac1a5": { "zh": { - "updatedAt": "2025-12-09T18:17:45.952Z", + "updatedAt": "2025-12-09T23:26:39.086Z", "postProcessHash": "957d17811fdc1a0a0bfefd536dc68c8a72663d76bf22cc3511d35a3c8684d9ef" }, "es": { - "updatedAt": "2025-12-09T18:17:45.947Z", + "updatedAt": "2025-12-09T23:26:39.080Z", "postProcessHash": "fe0dc117f70e9942557c15b5cee3f12455c69e421e062504d8016ae6923bce50" }, "fr": { - "updatedAt": "2025-12-09T18:17:46.036Z", + "updatedAt": "2025-12-09T23:26:39.148Z", "postProcessHash": "cc22fdbc75d6087d1c7fe491329801246f9629ebcab8e7e68b078a8559e584b4" } } @@ -7663,15 +7691,15 @@ "9f010ac20bb43e57e5a7e4090f5201d7cb2a2c159a75dcd9dc8c8fec762bdb2f": { "ddf56b843c9eb02243bfeecfd91aaaa2ec31066e8332e46c84e6e2e13605c21f": { "es": { - "updatedAt": "2025-12-09T18:17:46.021Z", + "updatedAt": "2025-12-09T23:26:39.137Z", "postProcessHash": "fc8c5f6931a05856947a7c265ddaf7929c81cff612c556e9c54ef5e822724b4b" }, "fr": { - "updatedAt": "2025-12-09T18:17:46.022Z", + "updatedAt": "2025-12-09T23:26:39.137Z", "postProcessHash": "69ea9648fcfcc4e18e11cf3cb45e3dc9d78736de44f9fdf2d53ad2e064dbaa32" }, "zh": { - "updatedAt": "2025-12-09T18:17:46.022Z", + "updatedAt": "2025-12-09T23:26:39.137Z", "postProcessHash": "d9b22ad706f80a611cfa3450fbd9322f3a5091e5089fd5fbfa313ef5f1ff79e4" } } @@ -7749,15 +7777,15 @@ }, "ddeb7f2354190cbc31ab09c6f70e517fff11b85b0d95e50c7db0f94bb98f084b": { "zh": { - "updatedAt": "2025-12-09T18:17:45.969Z", + "updatedAt": "2025-12-09T23:26:39.101Z", "postProcessHash": "caca14a7c8131127e6530e569eea0ea790aec3703ba1941af9282a54fa82f47c" }, "es": { - "updatedAt": "2025-12-09T18:17:46.032Z", + "updatedAt": "2025-12-09T23:26:39.145Z", "postProcessHash": "01eb4ba640b3f9904e85a6843a95902dc1066cff0458214269390403563839a5" }, "fr": { - "updatedAt": "2025-12-09T18:17:46.043Z", + "updatedAt": "2025-12-09T23:26:39.152Z", "postProcessHash": "8b3091ec7ab69e425ed7b4bbefc8f04ef65ef0d90f8a803b446ad272a9ac04e7" } } @@ -7787,15 +7815,15 @@ }, "f07a3c65b544b1b6c3631e472056dfd51f9fbc79e28fe7073271fa963f1355a2": { "zh": { - "updatedAt": "2025-12-09T18:17:45.949Z", + "updatedAt": "2025-12-09T23:26:39.082Z", "postProcessHash": "4496ca98a01e7502324d30bf0469b59ce40c1db2b03a86b44353ea82fd7ea120" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.964Z", + "updatedAt": "2025-12-09T23:26:39.093Z", "postProcessHash": "08ca06a1338ba7049b87366bddb334e923088a7206035d664245d22801820110" }, "es": { - "updatedAt": "2025-12-09T18:17:46.042Z", + "updatedAt": "2025-12-09T23:26:39.151Z", "postProcessHash": "b563eb2cea6afc1153afe426a3ac992bd028ce5fa354232e994b9a3a5d449291" } } @@ -7825,15 +7853,15 @@ }, "9af3d645babdeca987fedca80aae0b76816b37e30bf3a25fc1db00ead3f1bca8": { "es": { - "updatedAt": "2025-12-09T18:17:45.947Z", + "updatedAt": "2025-12-09T23:26:39.079Z", "postProcessHash": "33c20bd73a7a8748f16da13e403820f6f6966387d9cfea733ef5e68057ec6cc6" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.949Z", + "updatedAt": "2025-12-09T23:26:39.083Z", "postProcessHash": "c6c4a678806e221fab1713a0b18cf048bbf05300f7c6c9308b94c8c30c47d297" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.959Z", + "updatedAt": "2025-12-09T23:26:39.090Z", "postProcessHash": "fe0bdd6098714b57e215235c69b6041a271ff0bfd974868e95c18b57981c0836" } } @@ -7863,15 +7891,15 @@ }, "6958bd474f6a4553c34c8b0c0941dc296fda94522707820277c2a5d0c951d3d9": { "fr": { - "updatedAt": "2025-12-09T18:17:45.961Z", + "updatedAt": "2025-12-09T23:26:39.091Z", "postProcessHash": "9dab242a07567b150cbdce7d855a21d5ebbdde9ebbb61991d4d2d4e94dcdae59" }, "es": { - "updatedAt": "2025-12-09T18:17:45.969Z", + "updatedAt": "2025-12-09T23:26:39.106Z", "postProcessHash": "098c8d43ec5bc487807f87a1cd4206ec9c2d8e3c3067e471dc14d0326bc4c134" }, "zh": { - "updatedAt": "2025-12-09T18:17:46.029Z", + "updatedAt": "2025-12-09T23:26:39.143Z", "postProcessHash": "57a5c14521091112adecddb1fe39f246022dbfcbb42091857316c42cc6437584" } } @@ -7901,15 +7929,15 @@ }, "9a8eb49e54fa21c3ff613191e3d1b289989902d0fa2e4ba51397002c40e93870": { "zh": { - "updatedAt": "2025-12-09T18:17:46.032Z", + "updatedAt": "2025-12-09T23:26:39.145Z", "postProcessHash": "266d3597b0059ee6955b0d5a84ddb285c34240690f93ba963cb973e895b61350" }, "fr": { - "updatedAt": "2025-12-09T18:17:46.041Z", + "updatedAt": "2025-12-09T23:26:39.151Z", "postProcessHash": "bfaf25829776d4049319ebbabd5c6a3537254d6aaded2c22d0e680e9258b9144" }, "es": { - "updatedAt": "2025-12-09T18:17:46.043Z", + "updatedAt": "2025-12-09T23:26:39.152Z", "postProcessHash": "b1bd6004b9a39368ebbe1b63ed8f9eaaff34054d720e733d69021cbf3de77ce2" } } @@ -7939,15 +7967,15 @@ }, "1154edcbe3fdbda2eae42bc99ecc5bb63cae52c0474d507872da2f6dc8e7f297": { "fr": { - "updatedAt": "2025-12-09T18:17:46.036Z", + "updatedAt": "2025-12-09T23:26:39.147Z", "postProcessHash": "21b5b35c9c3d7707093d026952bafea8cc25dbf0bcff32e2aa86cb21e76afdec" }, "zh": { - "updatedAt": "2025-12-09T18:17:46.031Z", + "updatedAt": "2025-12-09T23:26:39.144Z", "postProcessHash": "5253edd586464bf07b7b09aac7caa2e58b0153736207e6f57a2100c7da6252cb" }, "es": { - "updatedAt": "2025-12-09T18:17:46.040Z", + "updatedAt": "2025-12-09T23:26:39.150Z", "postProcessHash": "425623b37f056b00d0ac9ed37f587ef02be5d38f06c26325833f28d0297440d6" } } @@ -8001,15 +8029,15 @@ }, "0ea9b1d6e66497b1210bfe5724c2f7510c6e6d56377ada39d875c6fcfe0f87c8": { "zh": { - "updatedAt": "2025-12-09T18:17:46.034Z", + "updatedAt": "2025-12-09T23:26:39.146Z", "postProcessHash": "24d9d322ff152b6781e9c20c39fa79706b3f966c971508286211d9548fe79d08" }, "fr": { - "updatedAt": "2025-12-09T18:17:46.035Z", + "updatedAt": "2025-12-09T23:26:39.147Z", "postProcessHash": "16136b9b1cf6ad2158710f24ff23c2d1f7f074dc7c545cc94ea5557715829b74" }, "es": { - "updatedAt": "2025-12-09T18:17:46.040Z", + "updatedAt": "2025-12-09T23:26:39.150Z", "postProcessHash": "495d3333856c47fbfe3df780982819aef2f34e47671004a21c7e95c4712473a1" } } @@ -8042,15 +8070,15 @@ }, "1ab8b9b2dd396f8535d042b00b5cec585a32c8af1e180b7335a5b527f301c014": { "es": { - "updatedAt": "2025-12-09T18:17:46.058Z", + "updatedAt": "2025-12-09T23:26:39.162Z", "postProcessHash": "cad9579300730c9dc42950672b1419b74be585c2172ae1e9b46761a667234a5f" }, "zh": { - "updatedAt": "2025-12-09T18:17:46.063Z", + "updatedAt": "2025-12-09T23:26:39.165Z", "postProcessHash": "f955fef90827d67c8a22958b8343c9c9f1dfe4d6b5b4a73d7fc4c040ee488991" }, "fr": { - "updatedAt": "2025-12-09T18:17:46.068Z", + "updatedAt": "2025-12-09T23:26:39.169Z", "postProcessHash": "6a24e0ac0570b7d077d243728e6e911c08112a51f3ddbbf22997a4b5cffb68e3" } } @@ -8083,15 +8111,15 @@ }, "9b2521d77dcb0f3a1b076db93f0fce6fa228d763d08823a4923240744a33b6e4": { "es": { - "updatedAt": "2025-12-09T18:17:46.060Z", + "updatedAt": "2025-12-09T23:26:39.163Z", "postProcessHash": "19cb440bb33042f18c726298f421e3819fa5b0ca02effb9d0d5be85cedc98a89" }, "zh": { - "updatedAt": "2025-12-09T18:17:46.063Z", + "updatedAt": "2025-12-09T23:26:39.165Z", "postProcessHash": "77901b25a20d95a27bcb867a38ef4a439703ca53fa9494b4c05e5867643b6320" }, "fr": { - "updatedAt": "2025-12-09T18:17:46.068Z", + "updatedAt": "2025-12-09T23:26:39.168Z", "postProcessHash": "35120c1e9cf62caebfce2e2bda8fae590f34a7eb6d3c526cbf7483ece98d2022" } } @@ -8124,15 +8152,15 @@ }, "3b4d746118c03d3f1689a6484a77b1123bdb898858cfb21d0c74f7c7530e5106": { "es": { - "updatedAt": "2025-12-09T18:17:46.062Z", + "updatedAt": "2025-12-09T23:26:39.164Z", "postProcessHash": "158a03497834c5483055cd5500cb606f423c04906604f6c74b2ef8f9148dcbb0" }, "zh": { - "updatedAt": "2025-12-09T18:17:46.065Z", + "updatedAt": "2025-12-09T23:26:39.167Z", "postProcessHash": "3c2b6dee76f34f1e2629226e79b5f14c0ab4c6d2e3e2d2b908c29d99db767e6a" }, "fr": { - "updatedAt": "2025-12-09T18:17:46.067Z", + "updatedAt": "2025-12-09T23:26:39.167Z", "postProcessHash": "6b6b920d5ecd82b7877a7dbe1681ab8266680167e0ad75ba6deb04edf83d4477" } } @@ -8165,15 +8193,15 @@ }, "1aa9d2a0f653714017d2595d9219aac463355da86f4c5a7d4c4696bbb1d4ae8b": { "zh": { - "updatedAt": "2025-12-09T18:17:46.058Z", + "updatedAt": "2025-12-09T23:26:39.162Z", "postProcessHash": "3f48bc4b124ed5e38bd6e4cf974f80212f3b88b9d6e5a94f865c683fcb02fb03" }, "es": { - "updatedAt": "2025-12-09T18:17:46.064Z", + "updatedAt": "2025-12-09T23:26:39.166Z", "postProcessHash": "f9c9a37d205e9ce823edc1797661247aba4f5671f1c2ca3abbca2854dd42d93a" }, "fr": { - "updatedAt": "2025-12-09T18:17:46.066Z", + "updatedAt": "2025-12-09T23:26:39.167Z", "postProcessHash": "70b7981c1bbd9db6da6a1d3373aa7a7cd5c2e77f7d949ca4e5da2b464597ee7d" } } @@ -8206,15 +8234,15 @@ }, "08f9dd3e813bd43ed49aaa064fdf92cb93b24e9b4681dbe1662083f135aa7a56": { "es": { - "updatedAt": "2025-12-09T18:17:46.059Z", + "updatedAt": "2025-12-09T23:26:39.162Z", "postProcessHash": "5dd24fae76476de9d20ca64a3f04352c0f7810de566260ee53744ae54e1830c5" }, "zh": { - "updatedAt": "2025-12-09T18:17:46.060Z", + "updatedAt": "2025-12-09T23:26:39.163Z", "postProcessHash": "a2f32cd38d1c834c2b4da83b5fc62eba6e058c030fb2f1b09d8657793d3b702b" }, "fr": { - "updatedAt": "2025-12-09T18:17:46.067Z", + "updatedAt": "2025-12-09T23:26:39.168Z", "postProcessHash": "98d91777bf0ccb78f4c52da809daa5d58b3429bec7e47528e745662cdab00a15" } } @@ -8261,15 +8289,15 @@ }, "a09d0a1e722492938d9985a7dafcbac1018303df26b2b14e58d6e331ac12d83a": { "es": { - "updatedAt": "2025-12-09T18:17:46.061Z", + "updatedAt": "2025-12-09T23:26:39.164Z", "postProcessHash": "544dd5f4200b70a1a9faffaf88ab001aef72abadccc1f942d5da1383e06bb58c" }, "zh": { - "updatedAt": "2025-12-09T18:17:46.061Z", + "updatedAt": "2025-12-09T23:26:39.164Z", "postProcessHash": "48c44a45ad6c6b96afc96eb3743d3c144fb8844b09bc89fcab0b3dbc71b8e544" }, "fr": { - "updatedAt": "2025-12-09T18:17:46.064Z", + "updatedAt": "2025-12-09T23:26:39.166Z", "postProcessHash": "1e0e3fe0cd240d987b48c2e297048e3e1331db5342a664ac82882f0e65daa4f3" } } @@ -8327,15 +8355,15 @@ }, "50adb9fb4a61ff6bc77074c24376d340648ad90b5030fbdfb04f1aee97236026": { "es": { - "updatedAt": "2025-12-09T18:17:46.069Z", + "updatedAt": "2025-12-09T23:26:39.169Z", "postProcessHash": "fdedd55a16063e5eaa6775f365c38139afebc14b52f32dabae0c426d0467636e" }, "zh": { - "updatedAt": "2025-12-09T18:17:46.069Z", + "updatedAt": "2025-12-09T23:26:39.169Z", "postProcessHash": "1b636b41c335a01e7fcf3deb65605fe10bc8f2e923850d3cc65080154ec3e30a" }, "fr": { - "updatedAt": "2025-12-09T18:17:46.070Z", + "updatedAt": "2025-12-09T23:26:39.170Z", "postProcessHash": "a3fce9cac94e4f43464bdb00ae1b1de39778d3fdc512d4db7c0cdd2b7792d024" } } @@ -8343,15 +8371,15 @@ "dc269fa38a9f70dcc0dcdd446172ce680441082b0cba035e0d7d22453651fb4c": { "841108bbf6e1733b36d68418b8096f6505ae3769ebe6bb0939b9862f7ee905ae": { "es": { - "updatedAt": "2025-12-09T18:17:46.027Z", + "updatedAt": "2025-12-09T23:26:39.140Z", "postProcessHash": "3c5202b0d2c541dbd05d52009c1c5de1b8db35f4d1341d2427d826b49271ac39" }, "fr": { - "updatedAt": "2025-12-09T18:17:46.028Z", + "updatedAt": "2025-12-09T23:26:39.141Z", "postProcessHash": "3c5202b0d2c541dbd05d52009c1c5de1b8db35f4d1341d2427d826b49271ac39" }, "zh": { - "updatedAt": "2025-12-09T18:17:46.028Z", + "updatedAt": "2025-12-09T23:26:39.141Z", "postProcessHash": "3c5202b0d2c541dbd05d52009c1c5de1b8db35f4d1341d2427d826b49271ac39" } } @@ -8406,15 +8434,15 @@ }, "9eb4b1c9fd2bfbc7a6af633185d350b7351f86a5af3afef2185bc98640b12c9c": { "fr": { - "updatedAt": "2025-12-09T18:17:45.854Z", + "updatedAt": "2025-12-09T23:26:39.033Z", "postProcessHash": "7269105a5a473d96105acf21079f97316a9b6860c63e3a32b5f2cfdc204db8d7" }, "es": { - "updatedAt": "2025-12-09T18:17:45.855Z", + "updatedAt": "2025-12-09T23:26:39.033Z", "postProcessHash": "62297e67780ea8029278b720cbda340eafe167025138ea9bfa59eca38575979f" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.855Z", + "updatedAt": "2025-12-09T23:26:39.034Z", "postProcessHash": "0665f9a804cb1ba298ea6933f67bb07bdf9c92042f5671c26d0c604f06d82b06" } } @@ -8455,15 +8483,15 @@ }, "eaf3b675306027bf04595dca52e74dd1614edc320fafff007530df01cbb22259": { "zh": { - "updatedAt": "2025-12-09T18:17:46.049Z", + "updatedAt": "2025-12-09T23:26:39.157Z", "postProcessHash": "a3587b20ebaaff884bc5a71b020088e7cef33d8b63b3bd39058bea7096fd54d8" }, "fr": { - "updatedAt": "2025-12-09T18:17:46.051Z", + "updatedAt": "2025-12-09T23:26:39.157Z", "postProcessHash": "4171929429febde0247535e00c036a61f0a1d8975ce6750b115cb3065f6a98a5" }, "es": { - "updatedAt": "2025-12-09T18:17:46.051Z", + "updatedAt": "2025-12-09T23:26:39.158Z", "postProcessHash": "1a90247d6776c6905777a0fadee52f8e5ba0dadaf221f8ec6bb0fe865ca109bd" } } @@ -8493,15 +8521,15 @@ }, "df2826252d76bef142551e69ee162b565fd37e0e63cdd9159fb925f1f911f524": { "es": { - "updatedAt": "2025-12-09T18:17:46.056Z", + "updatedAt": "2025-12-09T23:26:39.160Z", "postProcessHash": "adde6a2d0fb1ee3bca85e28e51569c0f94aab798902466f85edb4b009a7fd7df" }, "fr": { - "updatedAt": "2025-12-09T18:17:46.056Z", + "updatedAt": "2025-12-09T23:26:39.161Z", "postProcessHash": "aa37022925bf21be39c3527ab3027b797f5665fafa64c76b81afff460fcc0ff6" }, "zh": { - "updatedAt": "2025-12-09T18:17:46.053Z", + "updatedAt": "2025-12-09T23:26:39.158Z", "postProcessHash": "27f8ce2d73d590a03d8a02df646039b494324138621ea9a0f03c25c3d4448950" } } @@ -8531,15 +8559,15 @@ }, "3db39b6f8aead15f7b8dbe6824e173913fabaf7b510406e0124e1b2be61ca3de": { "fr": { - "updatedAt": "2025-12-09T18:17:46.057Z", + "updatedAt": "2025-12-09T23:26:39.161Z", "postProcessHash": "f06a5dd3558711f58c181082bf6c8676ac4e63d47e1cad464e487726526a86de" }, "zh": { - "updatedAt": "2025-12-09T18:17:46.053Z", + "updatedAt": "2025-12-09T23:26:39.159Z", "postProcessHash": "4d47fed93a4a8afac5bfdd3efd0d24555d43b456cb05c8fb5c218871a18828f2" }, "es": { - "updatedAt": "2025-12-09T18:17:46.054Z", + "updatedAt": "2025-12-09T23:26:39.159Z", "postProcessHash": "c68b1d083baeea6d45a83f3b2ea64f5bd398928876aec7641052ae88ee479622" } } @@ -8569,15 +8597,15 @@ }, "4bc387e1ff76fddd88238476d65b74ade4cc2f449ce36eb3bc8b85f770c3f490": { "es": { - "updatedAt": "2025-12-09T18:17:45.956Z", + "updatedAt": "2025-12-09T23:26:39.090Z", "postProcessHash": "052f957adbf550b514f0b00fb1c6ce4d1f05ee2a1e8c78c4450c7ef4515ce0c6" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.960Z", + "updatedAt": "2025-12-09T23:26:39.142Z", "postProcessHash": "890f0487febc4d3a384c1258113cff8ca9f4897a21aa5f02b498f09c3c436a91" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.961Z", + "updatedAt": "2025-12-09T23:26:39.142Z", "postProcessHash": "4c92ed5694ff42e4e0b3df5381b266d95cc2b19b95ff2b9ee323faed4f1b853b" } } @@ -8618,15 +8646,15 @@ }, "2e6a80a1a0b8e8424f493d4c864eb475de15f72d6014090c74d48ecd2104428c": { "zh": { - "updatedAt": "2025-12-09T18:17:46.048Z", + "updatedAt": "2025-12-09T23:26:39.156Z", "postProcessHash": "5ce156680db30f828548b0a9a8396e18e5a3af8bb9ff529252ac1fe1be223ce4" }, "es": { - "updatedAt": "2025-12-09T18:17:46.049Z", + "updatedAt": "2025-12-09T23:26:39.156Z", "postProcessHash": "ad231391fa7696cac3044bf4464023ffe8859f8bc46a24de55c6d25a4e495ce0" }, "fr": { - "updatedAt": "2025-12-09T18:17:46.050Z", + "updatedAt": "2025-12-09T23:26:39.157Z", "postProcessHash": "e1ec1af3e9ff1ce8f3858e2cdb4ecba29883568556230feb2676ae4fbb4eb1b1" } } @@ -8656,15 +8684,15 @@ }, "62faf6816da4cc899a87cf65d8cdedfb2984c52d91929ff74e1ff826d2f3edf2": { "fr": { - "updatedAt": "2025-12-09T18:17:45.951Z", + "updatedAt": "2025-12-09T23:26:39.085Z", "postProcessHash": "b1f670acba02bced80ecf8481bd5e6a406cc70e4ee79a7a5f7efc099100d922f" }, "zh": { - "updatedAt": "2025-12-09T18:17:46.030Z", + "updatedAt": "2025-12-09T23:26:39.144Z", "postProcessHash": "44ae5fefd7f32e159d738819b1eac4526220c2eb78652fabf17345e1b33b2883" }, "es": { - "updatedAt": "2025-12-09T18:17:46.041Z", + "updatedAt": "2025-12-09T23:26:39.151Z", "postProcessHash": "5fb3b415edf7b8e382ac7d393d5f3867c85e1adbd9ac9c6a29038ab969598edc" } } @@ -8694,15 +8722,15 @@ }, "ec813e998591f0d4114ebde9d66a49f01a39db4bc9c058a1340c41d38731a456": { "fr": { - "updatedAt": "2025-12-09T18:17:45.948Z", + "updatedAt": "2025-12-09T23:26:39.081Z", "postProcessHash": "79c7dd77372a39e9d196a3a3d40f9e8355b5def4f469e2919fb82965f86e63ce" }, "zh": { - "updatedAt": "2025-12-09T18:17:46.037Z", + "updatedAt": "2025-12-09T23:26:39.148Z", "postProcessHash": "53027cd6eda8c980f27d3105ee31e080fff8cf3e7c52f66c3cf8c698a6da648b" }, "es": { - "updatedAt": "2025-12-09T18:17:46.033Z", + "updatedAt": "2025-12-09T23:26:39.145Z", "postProcessHash": "4c93a613201a4ab30ddb7f265310a03f56e70b0cb53860b0cb31413b79f02b6d" } } @@ -8743,15 +8771,15 @@ }, "725c514c7f51a988e1a1f21ba6c44e514520aa57b3b2f7ba21b45751dcfac18d": { "es": { - "updatedAt": "2025-12-09T18:17:46.044Z", + "updatedAt": "2025-12-09T23:26:39.153Z", "postProcessHash": "40e11462937239fe1be662299aaf082d0eb693c84d4f87a1f7e93617b37d1ba4" }, "zh": { - "updatedAt": "2025-12-09T18:17:46.045Z", + "updatedAt": "2025-12-09T23:26:39.154Z", "postProcessHash": "8405da61923d3d0b0e0384ca625ed33901fb4282f909afad0a1f02c156f64188" }, "fr": { - "updatedAt": "2025-12-09T18:17:46.045Z", + "updatedAt": "2025-12-09T23:26:39.154Z", "postProcessHash": "82548bec5d746f41292cf2fc1449753856ce64e8ee5ab2186658edb2373af083" } } @@ -8781,15 +8809,15 @@ }, "02a3f8a9c2b7bed0ca12b135d6610f9dd0567e2045b9486068c3fcc46e5e7b9f": { "fr": { - "updatedAt": "2025-12-09T18:17:45.946Z", + "updatedAt": "2025-12-09T23:26:39.078Z", "postProcessHash": "9a95b5516fce01f14489a297d66bbca47b91f015d8332ce935f6e3302a3fbcd1" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.955Z", + "updatedAt": "2025-12-09T23:26:39.089Z", "postProcessHash": "00e8294e32af03a56d151ca0fc87fd279d476d3bcca0ce5c26d509ecedf60ce3" }, "es": { - "updatedAt": "2025-12-09T18:17:45.966Z", + "updatedAt": "2025-12-09T23:26:39.143Z", "postProcessHash": "bd2e02bcf312fa532b075d1b76a9166b8815072855d47d9d2ed6f8c440ce2227" } } @@ -8852,15 +8880,15 @@ }, "054f6571273d2558bdb64b68da5622eadbb8e039eb02cdf5f4f5e82f029dced1": { "fr": { - "updatedAt": "2025-12-09T18:17:45.944Z", + "updatedAt": "2025-12-09T23:26:39.077Z", "postProcessHash": "8c9ddc1a30ed54fef29b2ca9fbc8e5365815328ad6b7c9c54207e50071ff414c" }, "es": { - "updatedAt": "2025-12-09T18:17:46.055Z", + "updatedAt": "2025-12-09T23:26:39.160Z", "postProcessHash": "c32f9e858a250002b2696371dfa7b9bddc48f581f752de44b4f695e8291d958e" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.945Z", + "updatedAt": "2025-12-09T23:26:39.077Z", "postProcessHash": "43b7c01b940df37472bc4d43a35de48a66144221ae838ecdd887384d92cef02b" } } @@ -8890,15 +8918,15 @@ }, "da2fe203fd6263e2f728a6d0927c4acfae11b86bb47b86a53209988c7f12a9b8": { "fr": { - "updatedAt": "2025-12-09T18:17:45.962Z", + "updatedAt": "2025-12-09T23:26:39.091Z", "postProcessHash": "32f3ad405cd7459e8149922b09fd74e74d834e7e13d866fa33063a4dc6d70575" }, "es": { - "updatedAt": "2025-12-09T18:17:46.029Z", + "updatedAt": "2025-12-09T23:26:39.143Z", "postProcessHash": "9caa10688aa5994c81140eb47c9d8f380803fa3b8f822c89e5da869e8b325556" }, "zh": { - "updatedAt": "2025-12-09T18:17:46.044Z", + "updatedAt": "2025-12-09T23:26:39.153Z", "postProcessHash": "5a126cbd2dae3d1e80cf92fd32a2df9a7bedf18748725aea597b93a4f4945927" } } @@ -8928,15 +8956,15 @@ }, "d6087277997107007f0e8bb1fa131196a7db7e155e4fff201da51c38c12cdea4": { "es": { - "updatedAt": "2025-12-09T18:17:46.052Z", + "updatedAt": "2025-12-09T23:26:39.158Z", "postProcessHash": "691bf0ea140a4450f388147e38a4836c2e209f6cccfa6e7e9d681ec6f9b1e3c0" }, "fr": { - "updatedAt": "2025-12-09T18:17:46.055Z", + "updatedAt": "2025-12-09T23:26:39.160Z", "postProcessHash": "d6686de41fc374eb6f0fd40a27da93376cea048f4418896693752a77c0ed0c3b" }, "zh": { - "updatedAt": "2025-12-09T18:17:46.038Z", + "updatedAt": "2025-12-09T23:26:39.149Z", "postProcessHash": "d65a25d2af4c6a4b995a3a6b43f1b8a89e4a9cd54b8b761dd4be2cf10fd31bc3" } } @@ -8966,15 +8994,15 @@ }, "83bea4f26ff686307b770bfaca74faddccd854e05ce6462eefc4c2832e6d3813": { "zh": { - "updatedAt": "2025-12-09T18:17:45.865Z", + "updatedAt": "2025-12-09T23:26:39.041Z", "postProcessHash": "1fc910e784f8eac5ca0b6e74980cad294be1471507d8e86b2f5f3e384f4f78ec" }, "es": { - "updatedAt": "2025-12-09T18:17:45.925Z", + "updatedAt": "2025-12-09T23:26:39.065Z", "postProcessHash": "b4ca92a6e0ff425c2fad478d00c84f7eff45a90491cbffc1ccdfbf460e777ebd" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.899Z", + "updatedAt": "2025-12-09T23:26:39.052Z", "postProcessHash": "dcf869e1ec182af3cee022ce9c258145d03c984b211795432a58c1382662f7bb" } } @@ -9004,15 +9032,15 @@ }, "b72d2b9d9ef504cbfecd6422d202a23f54cb213b4a6c7fbe372d2fe6c315757d": { "fr": { - "updatedAt": "2025-12-09T18:17:45.963Z", + "updatedAt": "2025-12-09T23:26:39.092Z", "postProcessHash": "bbf4b3fc2fee65a6334d5b66c1603b7b6219e142b93e3db1fd55c60e81cc4fee" }, "es": { - "updatedAt": "2025-12-09T18:17:46.039Z", + "updatedAt": "2025-12-09T23:26:39.149Z", "postProcessHash": "a2d361d2756d7fe746e60b623d07c14d40ae7115aaed3744a6540574ec8c2427" }, "zh": { - "updatedAt": "2025-12-09T18:17:46.039Z", + "updatedAt": "2025-12-09T23:26:39.149Z", "postProcessHash": "45babf5a62e66b6b4e205ccf73a62e99a96ed2c5c3062e56c1a45a8ec803e8b0" } } @@ -9031,15 +9059,15 @@ }, "63edc9f8eced556d538a11fa6698380e9a743ce1de62b85c73cccb6a91d3af3e": { "fr": { - "updatedAt": "2025-12-09T18:17:45.848Z", + "updatedAt": "2025-12-09T23:26:39.030Z", "postProcessHash": "f6b3b322b5fdb3f5f42fb244a83b5c1713b8dacae61111c58d0f45f51b8d1660" }, "es": { - "updatedAt": "2025-12-09T18:17:45.845Z", + "updatedAt": "2025-12-09T23:26:39.029Z", "postProcessHash": "9b4b41a36b330048519b9cae3c7149b3ff0cb209ec9e496de1ab3c9ad6a62f98" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.838Z", + "updatedAt": "2025-12-09T23:26:39.027Z", "postProcessHash": "60eddc13f02dc931dd8882483efb23d075f7c147946508b72478b02f7fc73953" } } @@ -9047,15 +9075,15 @@ "39825e960dc329e7e701846853ea8b2c69eccee5c036c82edfdf9a06020a9fbb": { "c2e28964d6bf27dad509a1169a25e67dcb784e72bd2b52b810d9fba2f2c5a82b": { "zh": { - "updatedAt": "2025-12-09T18:17:45.853Z", + "updatedAt": "2025-12-09T23:26:39.033Z", "postProcessHash": "f688cc04db06e9e2a59dc6c3a693ec5de24fba98cd5ef1ef513fcec3458fc2fc" }, "es": { - "updatedAt": "2025-12-09T18:17:45.844Z", + "updatedAt": "2025-12-09T23:26:39.029Z", "postProcessHash": "8823956ec054d63943648e44dd31f7f4569163898db69a989699f350d9b6403d" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.844Z", + "updatedAt": "2025-12-09T23:26:39.028Z", "postProcessHash": "42f9abeb9495be51253b3c3ab6965f82645860859830f406d3b18b769d61663c" } } @@ -9063,15 +9091,15 @@ "5ee2c22c5f816bd2e9ccb18534d94c7d2d0d1fd48d15aea7d344871cc05d6b5d": { "ab26030a2677e7aee15a1962ed36cc8690f9395c1234a20e05071c72dccaff07": { "es": { - "updatedAt": "2025-12-09T18:17:45.709Z", + "updatedAt": "2025-12-09T23:26:38.963Z", "postProcessHash": "0e15065c7b17dd0473d4b62471e9b03f672d35c31958ff503b92faad6666bff8" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.710Z", + "updatedAt": "2025-12-09T23:26:38.964Z", "postProcessHash": "df09cadfdb7957655bab1c4ead21eead119120f5c00be55289bdd0365bfc4336" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.714Z", + "updatedAt": "2025-12-09T23:26:38.965Z", "postProcessHash": "43e517d5e0a0de32723b2715c99da4b2a3808a2d5691c6f2a806e89b47eb571c" } } @@ -9079,15 +9107,15 @@ "fd46ee9a7c4d77ed4c1a2b9efb3f8f7f2964363b03115970bf43dd58e197f08c": { "935322d7360b64d9326d5f92a1858bc47136cff17d63784a0d3cd82ba099c65a": { "zh": { - "updatedAt": "2025-12-09T18:17:45.849Z", + "updatedAt": "2025-12-09T23:26:39.030Z", "postProcessHash": "11bfe3d31f0a754a5975fb23e82f4b74dbd770db786f5e0099427d42ed454acd" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.817Z", + "updatedAt": "2025-12-09T23:26:39.019Z", "postProcessHash": "149fff8148852c2752b676dc32b93b386028084a16f78104c76b0609d6cf50d8" }, "es": { - "updatedAt": "2025-12-09T18:17:45.819Z", + "updatedAt": "2025-12-09T23:26:39.020Z", "postProcessHash": "21e719669400e770a974f7c222451548bacec3705c1e96273645d38c0df997e1" } } @@ -9106,15 +9134,15 @@ }, "ad85637acb660ea365744e7a0e4d5c9af14dd3d61d032245a55b39a025dc998b": { "fr": { - "updatedAt": "2025-12-09T18:17:45.824Z", + "updatedAt": "2025-12-09T23:26:39.024Z", "postProcessHash": "506d3775ab05180d214e1b5e68df61d13b9ed5535e611f67768174342a9f7d24" }, "es": { - "updatedAt": "2025-12-09T18:17:45.825Z", + "updatedAt": "2025-12-09T23:26:39.024Z", "postProcessHash": "e6737aab81793e80f4f020d394525c37393bd1a238333b47860214cc059263d0" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.826Z", + "updatedAt": "2025-12-09T23:26:39.025Z", "postProcessHash": "108c972a2b87e87349c9e9923f6a8faa88a8bfb0c609a4734249924ba89e35b2" } } @@ -9133,15 +9161,15 @@ }, "6f7ef54468b886002503e049fe014aeecf19dbca85d972b5cc1aeb4f5cbcd259": { "zh": { - "updatedAt": "2025-12-09T18:17:45.858Z", + "updatedAt": "2025-12-09T23:26:39.036Z", "postProcessHash": "bce9ca3d9a41150ad46e918a80a7256a50eaa19ccacd9694c94fe5df2247f408" }, "es": { - "updatedAt": "2025-12-09T18:17:45.858Z", + "updatedAt": "2025-12-09T23:26:39.037Z", "postProcessHash": "6b2e087de45b6e4d6f7c563db270e9ea76d5ba2d98a96f0b2c5aab17dbf9f94c" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.859Z", + "updatedAt": "2025-12-09T23:26:39.037Z", "postProcessHash": "88cdf8ccb3a9971a65a7449e35a0b4253033768eea0c85984e1982486b487797" } } @@ -9149,15 +9177,15 @@ "be5e892f6c4f67bd81fe0cb2eb2c6926b3e1aed86319263030ba6de5aef81643": { "2d45a98943adcf6323d8b9bd963e1a68b9c6d584fe97c7f01e9a6f37e4268f9c": { "zh": { - "updatedAt": "2025-12-09T18:17:45.981Z", + "updatedAt": "2025-12-09T23:26:39.118Z", "postProcessHash": "38d1c711bb53d9d53bb702884b3a89e217354af6ffa2a61b056144094b266019" }, "es": { - "updatedAt": "2025-12-09T18:17:45.980Z", + "updatedAt": "2025-12-09T23:26:39.118Z", "postProcessHash": "53d7fa6c39475cb74c45005d59a84607bcfa431872c4e186b32ed2e6e66c928a" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.982Z", + "updatedAt": "2025-12-09T23:26:39.119Z", "postProcessHash": "5e800c917820203f87bab698aa0de6ea1e81629b29396f6980397c7af109d0a3" } } @@ -9165,15 +9193,15 @@ "77ea8b1235af73346c74a76d9c806e3bb004764d3a0d8aa467b0cd38785523c1": { "11572668be0bfa5784f337f06ff8b84bd549b35ba8986840db7e54a31ffd864f": { "zh": { - "updatedAt": "2025-12-09T18:17:45.932Z", + "updatedAt": "2025-12-09T23:26:39.070Z", "postProcessHash": "d05b0d9edb9bedcbd421359ab56cc53319494a62c9916cc80ae3a2b7ddc4e3ee" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.923Z", + "updatedAt": "2025-12-09T23:26:39.063Z", "postProcessHash": "53c7d3a2be4e7df541d1a926eb5c244be312f0ecb9b2e93fc5490cfcf2fa1ff9" }, "es": { - "updatedAt": "2025-12-09T18:17:45.930Z", + "updatedAt": "2025-12-09T23:26:39.068Z", "postProcessHash": "a04e6aba520c93cb0f509c13137efe68b1ecd7415eaca5054638ffd74f9844c7" } } @@ -9181,15 +9209,15 @@ "855860e7e2c378e03eeadd8be43d2e9195684a4803997d926d976b0ca4a456f3": { "c8947be6ab36b3f78b0e6b92140f2cbbf957e4dda05b552df8d7a165e6c3943f": { "fr": { - "updatedAt": "2025-12-09T18:17:45.706Z", + "updatedAt": "2025-12-09T23:26:38.962Z", "postProcessHash": "b9e1c0ea328bc8007066439cda482c4a9afc5e311613da3a01c1aac272fa039b" }, "es": { - "updatedAt": "2025-12-09T18:17:45.707Z", + "updatedAt": "2025-12-09T23:26:38.962Z", "postProcessHash": "4d75060075656650e3912b90c0992b2dfb1127968f782c0577a593d9b4fce22e" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.708Z", + "updatedAt": "2025-12-09T23:26:38.963Z", "postProcessHash": "5f119e31ab9fa3f6bdac6775d876168bfc9d925e1820a1b31c660a192204c4e2" } } @@ -9225,15 +9253,15 @@ }, "cc77bc43455772442376eec0dfcf4ad87b875c1c053848a6a44735c676c26757": { "zh": { - "updatedAt": "2025-12-09T18:17:46.003Z", + "updatedAt": "2025-12-09T23:26:39.129Z", "postProcessHash": "56b11fe8e42a42387f76f57c0b91d8cd55733ae9e900d4b5a8119bd1f00464d2" }, "fr": { - "updatedAt": "2025-12-09T18:17:46.003Z", + "updatedAt": "2025-12-09T23:26:39.129Z", "postProcessHash": "e9f0d646e2713d6c2649d44df9f9dca159b62a69a762bbc865dd27b72d0fce92" }, "es": { - "updatedAt": "2025-12-09T18:17:46.007Z", + "updatedAt": "2025-12-09T23:26:39.130Z", "postProcessHash": "6e884ac1551e6b4d015896df163b034304d7c1209d0c86f740b6c86ad7ad440f" } } @@ -9266,15 +9294,15 @@ }, "9da429298db13c7a5d5e5785d737157adb7ceb8a8e62f690ce93d1276d0daf19": { "zh": { - "updatedAt": "2025-12-09T18:17:45.999Z", + "updatedAt": "2025-12-09T23:26:39.127Z", "postProcessHash": "f595ded82601ffbd66c2de293c879c5053d3682d709a52c1760b0613ab80a2c5" }, "es": { - "updatedAt": "2025-12-09T18:17:46.000Z", + "updatedAt": "2025-12-09T23:26:39.127Z", "postProcessHash": "f3dfe27159132fb19f4127e455136c9c6b514561ce522121657f57c99ff600c0" }, "fr": { - "updatedAt": "2025-12-09T18:17:46.000Z", + "updatedAt": "2025-12-09T23:26:39.127Z", "postProcessHash": "40a704607b5c1e09af3b9ba652c736a8f6565f62af969faa1bf59072734786e4" } } @@ -9282,15 +9310,15 @@ "c7e83e67760cb5f2f3d9f4a8e7b72602aab97864906ea048ef30a9c16dfbffdc": { "931983105b73997866b2002f4ce0a50227b0adc5d896f8d6ba8e5a2b07ea5178": { "es": { - "updatedAt": "2025-12-09T18:17:45.835Z", + "updatedAt": "2025-12-09T23:26:39.026Z", "postProcessHash": "5569249feecf5f833320e7c215bed46f337f5608d948f9e512e175b117aa19c2" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.776Z", + "updatedAt": "2025-12-09T23:26:38.990Z", "postProcessHash": "c670ec6fd4e041533cebdaeba8a177ba67164e58342d4ec52b8fc9df790b4f2f" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.850Z", + "updatedAt": "2025-12-09T23:26:39.031Z", "postProcessHash": "62e06d2d9dc861b6ea918bacac503c308328848b993141590b2292144171eff7" } } @@ -9298,15 +9326,15 @@ "9f724bcc4d486aa89f9c4e82c6e29422eb310398ae25cb142dacea64acf986b9": { "ec0fbd61c3b28b15222a91c56220501a2b86ef5978bfb81db7207e9ca891b07a": { "es": { - "updatedAt": "2025-12-09T18:17:45.935Z", + "updatedAt": "2025-12-09T23:26:39.072Z", "postProcessHash": "477b0b97f30cb4534c7bad2fc0eb393dc166eefdae7c063dca631434f81ce334" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.987Z", + "updatedAt": "2025-12-09T23:26:39.122Z", "postProcessHash": "852610162c25a79a86c3463eea02da8162bc0950da5c10e3a2ca5abbb4a3ce62" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.989Z", + "updatedAt": "2025-12-09T23:26:39.123Z", "postProcessHash": "666adb45cc1ef7701db118a622a04aa960d7c51d809a9c48cfa64ff331c93356" } } @@ -9314,15 +9342,15 @@ "cd145b894513f172f602f9d7fb60cbb0e24242dac2c6e9fb520e2c0fad69d912": { "aecab972d16e30d3a2bf061544b71e0967e1758562cfea07b94fbe6421fe1cc6": { "zh": { - "updatedAt": "2025-12-09T18:17:45.939Z", + "updatedAt": "2025-12-09T23:26:39.073Z", "postProcessHash": "ef409ac77bc940d8f60a573fbb9d68ee4261ffecb8f7eac55a1dc9c33571d5c6" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.939Z", + "updatedAt": "2025-12-09T23:26:39.074Z", "postProcessHash": "a386219adc4366f7a876057279dca6f3de29c718cb3923e1434c786067927507" }, "es": { - "updatedAt": "2025-12-09T18:17:45.940Z", + "updatedAt": "2025-12-09T23:26:39.074Z", "postProcessHash": "42f3c8ad2b4c5d749d5da224f9f6328f58871431e7d5651b74e5351b9811b385" } } @@ -9330,15 +9358,15 @@ "90116f4c19423dc1c2ee23a4b4cdd4eab43d59108594936e2ca27c10c36f9b46": { "506ac3fac34785b9baa5f33fa439d9ce30606533d1a2578634868a9a2428675a": { "zh": { - "updatedAt": "2025-12-09T18:17:46.001Z", + "updatedAt": "2025-12-09T23:26:39.128Z", "postProcessHash": "57a6507e4e841e67b60465bd799c353b60cae210a0c6a4f91d2cdfea65965895" }, "es": { - "updatedAt": "2025-12-09T18:17:46.001Z", + "updatedAt": "2025-12-09T23:26:39.128Z", "postProcessHash": "7b188bc418d92a862a71b09a37e020188a8aaab7300196a047e7b86626d2142a" }, "fr": { - "updatedAt": "2025-12-09T18:17:46.002Z", + "updatedAt": "2025-12-09T23:26:39.129Z", "postProcessHash": "e40be7d8033e5f394f367d7a3e1c2bb2dfd533e459a9004d627680eae8529df7" } } @@ -9346,15 +9374,15 @@ "a9865368a7fc7fa33065e35b2343f10d08fb79d65205435403d0a163a3044713": { "1c56f57c0f6b8d7b90f241db9e06021b4e478d16e1964f7da423eca5607f49ab": { "fr": { - "updatedAt": "2025-12-09T18:17:45.726Z", + "updatedAt": "2025-12-09T23:26:38.972Z", "postProcessHash": "f8950ed9763af98c37633d3f4c8053c6d7dd7cb9c813e71a3e34b1896826be83" }, "es": { - "updatedAt": "2025-12-09T18:17:45.728Z", + "updatedAt": "2025-12-09T23:26:38.973Z", "postProcessHash": "97b5fa380e09f9fcaf886daf65d8c81e1dd70381be8d74b827fb95da2f4c2f49" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.729Z", + "updatedAt": "2025-12-09T23:26:38.974Z", "postProcessHash": "49bba02fcbc3adbe95b13e3246d6d3be771bee716f7db0855564e990e43a1a76" } } @@ -9376,15 +9404,15 @@ }, "034c725ba425f8378b33c540a4abf452ad941befaa65e70e4f40ca6b621a02c3": { "zh": { - "updatedAt": "2025-12-09T18:17:45.760Z", + "updatedAt": "2025-12-09T23:26:38.980Z", "postProcessHash": "3247a7071b35858b0504fc6b597a7500ee81422c03921b32dec41b8a1d65d283" }, "es": { - "updatedAt": "2025-12-09T18:17:45.762Z", + "updatedAt": "2025-12-09T23:26:38.981Z", "postProcessHash": "45d4ef50c5b7e32cc444d848f1febcf1e3cefcd3b30dc6bd67a5854da53b778f" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.763Z", + "updatedAt": "2025-12-09T23:26:38.982Z", "postProcessHash": "a28ea269feefea7035a44e1a5520da8b9e862efdc1505537f06190c35f4fc1c9" } } @@ -9392,15 +9420,15 @@ "bb0a5cd4ee36a1ee81bf4dd654dd9db465af4300d728ba06783d5c00d02c2ca8": { "307a74bf3d3e5f91d795ccf57630bfcaa6fe5b8cc695289e0f4f32b53f1c43b4": { "zh": { - "updatedAt": "2025-12-09T18:17:45.732Z", + "updatedAt": "2025-12-09T23:26:38.975Z", "postProcessHash": "bd1d41dd2977931011011d3ad89a951bb03b851a3cbd506e73a5e98b7a61c29c" }, "es": { - "updatedAt": "2025-12-09T18:17:45.738Z", + "updatedAt": "2025-12-09T23:26:38.978Z", "postProcessHash": "bd1d41dd2977931011011d3ad89a951bb03b851a3cbd506e73a5e98b7a61c29c" }, "fr": { - "updatedAt": "2025-12-09T18:17:45.736Z", + "updatedAt": "2025-12-09T23:26:38.977Z", "postProcessHash": "bd1d41dd2977931011011d3ad89a951bb03b851a3cbd506e73a5e98b7a61c29c" } } @@ -9408,15 +9436,15 @@ "52e07bb9ba82459ac0aba263d4d9027e6a5063a9803b89d547dac21dee08e25e": { "cda14f556351ca927f5b2beee399ad2105150f7c70b03d84e59856cd231c8d7e": { "fr": { - "updatedAt": "2025-12-09T18:17:45.769Z", + "updatedAt": "2025-12-09T23:26:38.984Z", "postProcessHash": "e72c84e3d492ea23aee852888eb39a3f29ce7e248710ab860e794ff3af1c93c4" }, "es": { - "updatedAt": "2025-12-09T18:17:45.769Z", + "updatedAt": "2025-12-09T23:26:38.984Z", "postProcessHash": "8b97662b377e8457d94963051a251ccc513f35d0900e29796e9cdf4e8dafe659" }, "zh": { - "updatedAt": "2025-12-09T18:17:45.770Z", + "updatedAt": "2025-12-09T23:26:38.985Z", "postProcessHash": "d2855c68ee3259a3728f326558925b83d33b01f753c2b2510ef33f329659fc81" } } diff --git a/zh/changelog.mdx b/zh/changelog.mdx index e9423994c..4252fe99b 100644 --- a/zh/changelog.mdx +++ b/zh/changelog.mdx @@ -5,6 +5,17 @@ rss: true noindex: true --- + + ## 预览小组件 + + 预览部署现在包含一个交互式小组件,用于显示部署中所有有变更的文件。该小组件会以浮动按钮的形式出现在右下角,并提供: + + * 一键跳转到已更改的页面。 + * 可搜索的已更改文件列表,并带有状态标记(新增、已修改、已删除)。 + + 该小组件会在所有预览部署中自动启用,帮助审阅者快速定位和浏览已修改的内容。 + + ## 最近修改时间 diff --git a/zh/create/code.mdx b/zh/create/code.mdx index 8dc6c3a06..48a20be3b 100644 --- a/zh/create/code.mdx +++ b/zh/create/code.mdx @@ -1,6 +1,6 @@ --- title: "格式化代码" -description: "展示与样式化行内代码和代码块。" +description: "显示和自定义行内代码与代码块的样式。" keywords: ["代码块", "语法高亮", "代码样式"] --- @@ -8,25 +8,25 @@ keywords: ["代码块", "语法高亮", "代码样式"] ## 添加代码示例 -你可以添加行内代码片段或代码块。代码块支持用于语法高亮、行高亮、icon 等的元选项,以及更多功能。 +你可以添加行内代码片段或代码块。代码块支持用于语法高亮、title、行高亮、icon 等的元选项。
### 行内代码
-要将某个 `word` 或 `phrase` 标记为代码,请用反引号(`)将其包裹。 +要将某个 `word` 或 `phrase` 标记为代码,请用反引号 (`) 将其括起来。 ```mdx -要将`单词`或`短语`标记为代码,请用反引号(`)将其包围。 +要将 `word` 或 `phrase` 标记为代码,请用反引号(`)将其括起来。 ```
### 代码块
-使用[围栏代码块](https://www.markdownguide.org/extended-syntax/#fenced-code-blocks),将代码置于三个反引号内。代码块可复制;如果启用了 AI 助手,用户可以让 AI 解释代码。 +使用[围栏代码块](https://www.markdownguide.org/extended-syntax/#fenced-code-blocks):将代码包裹在三个反引号中。代码块支持复制,如果你启用了 AI 助手,用户可以让 AI 解释代码。 -为语法高亮和启用元选项指定编程语言。在语言标识后添加任意元选项,如 title 或 icon。 +指定编程语言,以启用语法高亮和元选项。在语言后添加任意元选项,比如 title 或 icon。 ```java HelloWorld.java example icon=java lines @@ -52,7 +52,7 @@ keywords: ["代码块", "语法高亮", "代码样式"] ## 代码块选项 -在代码块中添加元选项来自定义其展示效果。 +为代码块添加元选项以自定义其展示效果。 在添加任何其他元选项之前,必须先为代码块指定编程语言。 @@ -62,18 +62,18 @@ keywords: ["代码块", "语法高亮", "代码样式"] ### 选项语法 -* **字符串和布尔选项**:可以使用 `""`、`''`,或不加引号包裹。 -* **表达式选项**:可以使用 `{}`、`""`,或 `''` 包裹。 +* **字符串和布尔值选项**:可以使用 `""`、`''`,或不加引号括起来。 +* **表达式选项**:使用 `{}`、`""`,或 `''` 括起来。
### 语法高亮
-在代码块的起始反引号后指定编程语言即可启用语法高亮。 +通过在代码块起始反引号后添加编程语言来启用语法高亮。 -我们使用 [Shiki](https://shiki.style/) 实现语法高亮,支持所有可用语言。完整语言列表请参见 Shiki 文档中的[语言](https://shiki.style/languages)。 +我们使用 [Shiki](https://shiki.style/) 进行语法高亮,并支持所有可用语言。完整的 [语言](https://shiki.style/languages) 列表请参见 Shiki 文档。 -在 `docs.json` 中通过 `styling.codeblocks` 全局自定义代码块主题。可设置 `system` 或 `dark` 等简单主题,或为明暗模式配置自定义的 [Shiki 主题](https://shiki.style/themes)。配置项参见 [Settings](/zh/organize/settings#param-styling)。 +在 `docs.json` 文件中使用 `styling.codeblocks` 全局自定义代码块主题。可以设置 `system` 或 `dark` 等简单主题,或为浅色和深色模式配置自定义 [Shiki 主题](https://shiki.style/themes)。配置选项参见 [Settings](/zh/organize/settings#param-styling)。 ```java Syntax highlighting example @@ -96,16 +96,16 @@ keywords: ["代码块", "语法高亮", "代码样式"] - 如需自定义主题,请在 `docs.json` 中将主题设为 `"css-variables"`,并使用以 `--mint-` 为前缀的 CSS 变量覆盖语法高亮颜色。 + 对于自定义主题,在 `docs.json` 中将主题设置为 `"css-variables"`,并使用带有 `--mint-` 前缀的 CSS 变量覆盖语法高亮颜色。 - 可用变量如下: + 可用的变量如下: **基础颜色** * `--mint-color-text`: 默认文本颜色 * `--mint-color-background`: 背景颜色 - **Token 颜色** + **标记颜色** * `--mint-token-constant`: 常量和字面量 * `--mint-token-string`: 字符串值 @@ -138,7 +138,7 @@ keywords: ["代码块", "语法高亮", "代码样式"] **自定义语法高亮** - 通过提供自定义 TextMate 语法文件,为 Shiki 默认集合中未包含的语言添加语法高亮支持。创建一个遵循 [TextMate 语法格式](https://macromates.com/manual/en/language_grammars) 的 JSON 文件,然后在 `docs.json` 中引用它。你可以在数组中加入更多路径以添加多种自定义语言。 + 通过提供自定义 TextMate 语法文件,为 Shiki 默认集合中未包含的语言添加语法高亮。创建一个遵循 [TextMate 语法格式](https://macromates.com/manual/en/language_grammars) 的 JSON 文件,然后在 `docs.json` 中引用它。你可以在数组中添加更多路径,以支持多个自定义语言。 ```json docs.json { @@ -157,7 +157,7 @@ keywords: ["代码块", "语法高亮", "代码样式"] ### Twoslash -在 JavaScript 和 TypeScript 代码块中,使用 `twoslash` 可启用交互式类型信息。用户可以像在 IDE 中一样,将鼠标悬停在变量、函数和参数上以查看类型和错误。 +在 JavaScript 和 TypeScript 代码块中,使用 `twoslash` 来启用交互式类型信息。用户可以像在 IDE 中一样,将鼠标悬停在变量、函数和参数上查看类型和错误。 ```ts twoslash Twoslash example @@ -167,7 +167,7 @@ keywords: ["代码块", "语法高亮", "代码样式"] return `${name} the ${type} is now adopted!`; } - // Hover to see the inferred types + // 将鼠标悬停以查看推断类型 const message = adoptPet("Mintie", "cat"); ``` @@ -179,33 +179,35 @@ keywords: ["代码块", "语法高亮", "代码样式"] return `${name} the ${type} is now adopted!`; } - // Hover to see the inferred types + // 将鼠标悬停以查看推断类型 const message = adoptPet("Mintie", "cat"); ``` ```` -### +
+ ### 标题 +
-为你的代码示例添加一个标题。使用 `title="Your title"`,或在单独一行写入一个字符串。 +为你的代码示例添加一个标题说明。使用 `title="Your title"` 或在单独一行写入字符串。 - ```javascript Title example + ```javascript 标题示例 const hello = "world"; ``` - ````mdx Format - ```javascript Title example + ````mdx 格式 + ```javascript 标题示例 const hello = "world"; ``` ```` -
+
### 图标
-使用 `icon` 属性为代码块添加图标。参见 [图标](/zh/components/icons) 以查看所有可用选项。 +使用 `icon` 属性为代码块添加图标。所有可用选项请参见 [图标](/zh/components/icons)。 ```javascript Icon example icon=square-js @@ -219,14 +221,14 @@ keywords: ["代码块", "语法高亮", "代码样式"] ```` -
+
### 行高亮
-在代码块中,使用 `highlight` 并指定要高亮的行号或行范围来高亮特定行。 +在代码块中使用带有行号或范围的 `highlight` 来高亮特定行。 - ```javascript 行高亮示例 {1,2,5} + ```javascript Line highlighting example {1,2,5} const greeting = "Hello, World!"; function sayHello() { console.log(greeting); @@ -234,8 +236,8 @@ keywords: ["代码块", "语法高亮", "代码样式"] sayHello(); ``` - ````mdx 格式 - ```javascript 行高亮示例 highlight={1-2,5} + ````mdx Format + ```javascript Line highlighting example highlight={1-2,5} const greeting = "Hello, World!"; function sayHello() { console.log(greeting); @@ -245,14 +247,14 @@ keywords: ["代码块", "语法高亮", "代码样式"] ```` -
+
### 行聚焦
-在代码块中使用 `focus` 搭配行号或行范围来突出显示特定行。 +在代码块中使用带行号或行范围的 `focus` 来聚焦特定行。 - ```javascript Line focusing example focus=2,4,5 + ```javascript 行聚焦示例 focus=2,4,5 const greeting = "Hello, World!"; function sayHello() { console.log(greeting); @@ -260,8 +262,8 @@ keywords: ["代码块", "语法高亮", "代码样式"] sayHello(); ``` - ````mdx Format - ```javascript Line focusing example focus={2,4-5} + ````mdx 格式 + ```javascript 行聚焦示例 focus={2,4-5} const greeting = "Hello, World!"; function sayHello() { console.log(greeting); @@ -271,7 +273,7 @@ keywords: ["代码块", "语法高亮", "代码样式"] ```` -
+
### 显示行号
@@ -286,7 +288,7 @@ keywords: ["代码块", "语法高亮", "代码样式"] sayHello(); ``` - ````mdx Format + ````mdx 格式 ```javascript Show line numbers example lines const greeting = "Hello, World!"; function sayHello() { @@ -297,11 +299,11 @@ keywords: ["代码块", "语法高亮", "代码样式"] ```` -
+
### 可展开
-使用 `expandable` 让用户展开或折叠较长的代码块。 +允许用户使用 `expandable` 展开和折叠较长的代码块。 ```python Expandable example expandable @@ -320,7 +322,7 @@ keywords: ["代码块", "语法高亮", "代码样式"] class Library: def **init**(self): self.books: Dict[str, Book] = {} - self.checkouts: Dict[str, List[str]] = {} # patron -> list of ISBNs + self.checkouts: Dict[str, List[str]] = {} # 读者 -> ISBN 列表 def add_book(self, book: Book) -> None: if book.isbn in self.books: @@ -358,7 +360,7 @@ keywords: ["代码块", "语法高亮", "代码样式"] book.checked_out = False book.due_date = None - # Remove from patron's checkouts + # 从读者的借阅列表中移除 for patron, books in self.checkouts.items(): if isbn in books: books.remove(isbn) @@ -376,7 +378,7 @@ keywords: ["代码块", "语法高亮", "代码样式"] def main(): library = Library() - # Add some books + # 添加一些图书 books = [ Book("The Hobbit", "J.R.R. Tolkien", "978-0-261-10295-4"), Book("1984", "George Orwell", "978-0-452-28423-4"), @@ -385,7 +387,7 @@ keywords: ["代码块", "语法高亮", "代码样式"] for book in books: library.add_book(book) - # Checkout and return example + # 借阅和归还示例 library.checkout_book("978-0-261-10295-4", "patron123") late_fee = library.return_book("978-0-261-10295-4") print(f"Late fee: ${late_fee:.2f}") @@ -394,7 +396,7 @@ keywords: ["代码块", "语法高亮", "代码样式"] main() ``` - ````text Format + ````text 格式 ```python Expandable example expandable from datetime import datetime, timedelta from typing import Dict, List, Optional @@ -408,11 +410,11 @@ keywords: ["代码块", "语法高亮", "代码样式"] ```` -
- ### 换行 +
+ ### 自动换行
-使用 `wrap` 为长行启用换行。这样可避免水平滚动,并使长行更易读。 +使用 `wrap` 为长行文本启用自动换行。这样可以避免水平滚动,并让长行内容更易阅读。 ```javascript Wrap example wrap @@ -436,23 +438,23 @@ keywords: ["代码块", "语法高亮", "代码样式"] ```` -
- ### 差异 +
+ ### Diff
-在代码块中以可视化方式展示新增或删除的行。新增行以绿色高亮,删除行以红色高亮。 +在你的代码块中以可视化方式展示新增或删除的行。新增行会以绿色高亮,删除行会以红色高亮。 -要创建差异,请在代码块的行尾添加以下特殊注释: +要创建 diff,请在代码块中每行末尾添加这些特殊注释: * `// [!code ++]`:将该行标记为新增(绿色高亮)。 * `// [!code --]`:将该行标记为删除(红色高亮)。 -对于多行连续的情况,可在冒号后指定行数: +对于多行连续的情况,可以在冒号后指定行数: -* `// [!code ++:3]`:将当前行及其后两行标记为新增。 -* `// [!code --:5]`:将当前行及其后四行标记为删除。 +* `// [!code ++:3]`:将当前行和接下来的两行标记为新增。 +* `// [!code --:5]`:将当前行和接下来的四行标记为删除。 -注释语法必须与所用编程语言一致(例如,JavaScript 使用 `//`,Python 使用 `#`)。 +注释语法必须与你所使用的编程语言相匹配(例如,JavaScript 使用 `//`,Python 使用 `#`)。 ```js Diff example lines @@ -476,22 +478,26 @@ keywords: ["代码块", "语法高亮", "代码样式"] ```` -## CodeBlock 组件 +
+ ## CodeBlock 组件 +
-在自定义 React 组件中使用 ``,以编程方式渲染与 Markdown 代码块相同样式和功能的代码块。 +在自定义 React 组件中使用 `` 组件,以编程方式渲染代码块,使其具有与 Markdown 代码块相同的样式和功能。 -### 属性 +
+ ### Props +
用于语法高亮的编程语言。 - 显示在代码块标题中的文件名。 + 要在代码块标题中显示的文件名。 - 显示在代码块标题中的 icon。可用选项参见 [图标](/zh/components/icons)。 + 要在代码块标题中显示的 icon。可用选项请参见 [Icons](/zh/components/icons)。 @@ -499,22 +505,24 @@ keywords: ["代码块", "语法高亮", "代码样式"] - 是否对代码块进行换行显示。 + 是否对代码块内容进行换行显示。 - 是否可展开代码块。 + 代码块是否可展开。 - 需要高亮的行。提供数字的字符串化数组。示例:`"[1,3,4,5]"`。 + 需要高亮的行。请提供数字数组的字符串形式。例如: + `"[1,3,4,5]"`。 - 需要聚焦的行。提供数字的字符串化数组。示例:`"[1,3,4,5]"`。 + 需要聚焦的行。请提供数字数组的字符串形式。例如: + `"[1,3,4,5]"`。 -
+
### 示例
diff --git a/zh/deploy/preview-deployments.mdx b/zh/deploy/preview-deployments.mdx index d3b018853..37e67bd8c 100644 --- a/zh/deploy/preview-deployments.mdx +++ b/zh/deploy/preview-deployments.mdx @@ -23,10 +23,10 @@ keywords: ["preview URLs", "pull request previews", "branch previews", "staging
- 仅针对目标为你的[部署用分支](/zh/guides/git-concepts#deployment-branch)的拉取请求(PR),才会自动创建预览。 + 仅针对以你的[部署用分支](/zh/guides/git-concepts#deployment-branch)为目标的拉取请求(PR)创建自动预览。 -当你创建拉取请求时,Mintlify 机器人会自动在拉取请求中添加一个链接,供你查看预览部署。每次你向该分支推送新的提交时,预览都会更新。 +当你创建拉取请求(PR;亦称“合并请求”/Merge Request)时,Mintlify 机器人会在你的拉取请求中自动添加一个链接,用于查看预览部署。每次你向该 branch 推送新的提交时,预览都会更新。 在拉取请求时间线中查看部署的链接 @@ -61,6 +61,24 @@ keywords: ["preview URLs", "pull request previews", "branch previews", "staging “预览”菜单中,部署按钮被橙色矩形高亮显示。 +
+ ## 预览小部件 +
+ +预览小部件会出现在预览部署环境中,帮助你导航并查看更新后的页面。该小部件以一个浮动按钮的形式出现在预览部署页面的右下角。 + + + 展开的预览小部件,显示已更改文件列表。 + + 展开的预览小部件,显示已更改文件列表。 + + +1. 点击小部件以显示预览中所有新增、修改或移除的文件。 +2. 点击某个文件以在对应页面查看更改。 +3. 使用搜索栏筛选已更改文件列表。 + +小部件只会出现在预览部署中,不会显示在你的线上站点或本地预览中。 +
## 限制预览部署的访问权限
@@ -82,11 +100,11 @@ keywords: ["preview URLs", "pull request previews", "branch previews", "staging 如果预览部署失败,请尝试以下排查步骤。 -* **查看构建日志**:在你的[仪表盘](https://dashboard.mintlify.com/)中,进入 **Previews** 并点击失败的预览。部署日志会显示导致失败的错误。 +* **查看构建日志**:在你的[控制台](https://dashboard.mintlify.com/)中,进入 **Previews** 并点击失败的预览。部署日志会显示导致失败的错误。 * **检查配置**: * `docs.json` 语法无效 * 导航中引用的文件路径缺失或不正确 * MDX 文件中的 frontmatter 无效 * 图片链接损坏或图片文件缺失 -* **本地验证**:在本地运行 `mint dev`,在推送到代码仓库之前先发现构建错误。 +* **本地验证**:在本地运行 `mint dev`,在推送到存储库之前先发现构建错误。 * **检查最近变更**:查看分支中最近的提交,找出导致构建失败的变更。 \ No newline at end of file diff --git a/zh/editor.mdx b/zh/editor.mdx index a5172835f..6af5e5b84 100644 --- a/zh/editor.mdx +++ b/zh/editor.mdx @@ -370,4 +370,4 @@ Markdown 模式让你可以直接访问构成文档的文件。当你需要精
* 学习基础的 [Git 概念](/zh/guides/git-concepts) -* 学习在 [branch](/zh/guides/branches) 上协作的最佳实践 \ No newline at end of file +* 学习使用 [branch](/zh/guides/branches) 进行协作的最佳实践 \ No newline at end of file