diff --git a/es/deploy/ci.mdx b/es/deploy/ci.mdx index 82d2bac75..b1568ac43 100644 --- a/es/deploy/ci.mdx +++ b/es/deploy/ci.mdx @@ -45,15 +45,15 @@ Para ver los resultados de esta verificación, visita la página de resultados d ### Vale -[Vale](https://vale.sh/) es un linter de prosa de código abierto basado en reglas que admite una variedad de tipos de documentos, incluidos Markdown y MDX. +[Vale](https://vale.sh/) es un linter de prosa de código abierto basado en reglas que admite una variedad de tipos de documentos, incluidos Markdown y MDX. Usa Vale para comprobar la coherencia del estilo y el tono en tu documentación. -Mintlify permite ejecutar Vale automáticamente en una verificación de CI y mostrar los resultados como un estado de comprobación. +Mintlify admite ejecutar Vale automáticamente en una comprobación de CI y mostrar los resultados como un estado de comprobación.
#### Configuración
-Si tienes un archivo `.vale.ini` en el directorio raíz de contenido de tu implementación, la verificación de Vale CI utiliza ese archivo de configuración y cualquier archivo de configuración en el `stylesPath` que especifiques. +Si tienes un archivo `.vale.ini` en el directorio raíz de contenido de tu implementación, la verificación de Vale CI usa ese archivo de configuración y cualquier archivo de configuración en el `stylesPath` que especifiques. Si no tienes un archivo de configuración de Vale, se cargará automáticamente la configuración predeterminada. @@ -61,21 +61,22 @@ Si no tienes un archivo de configuración de Vale, se cargará automáticamente # Estilos de nivel superior StylesPath = /app/styles MinAlertLevel = suggestion +# Etiquetas HTML en línea a ignorar (code/tt para fragmentos de código, img/url para enlaces/imágenes, a para etiquetas ancla) IgnoredScopes = code, tt, img, url, a -SkippedScopes = script, style, pre, figure, code +SkippedScopes = script, style, pre, figure # Vocabularios Vocab = Mintlify -# Esto es necesario ya que Vale no soporta oficialmente MDX -[formats] -mdx = md +# Paquetes +Packages = MDX -# Soporte para MDX +# Coincidir solo con MDX [*.mdx] BasedOnStyles = Vale Vale.Terms = NO # Aplica reglas de mayúsculas muy estrictas, mantener desactivado +# Ignorar patrones de sintaxis específicos de JSX/MDX # `import ...`, `export ...` # `` # `...` @@ -84,14 +85,14 @@ TokenIgnores = (?sm)((?:import|export) .+?$), \ (?)(?!`), \ (<[A-Z]\w+>.+?<\/[A-Z]\w+>) -# Excluir: +# Excluir JSX multilínea y llaves # `` BlockIgnores = (?sm)^(<\w+\n .*\s\/>)$, \ (?sm)^({.+.*}) - -CommentDelimiters = {/*, */} ``` +El vocabulario predeterminado de Vale incluye las siguientes palabras. + ```text Default Vale vocabulary expandable Mintlify mintlify @@ -362,64 +363,67 @@ next toc ``` +Para agregar tu propio vocabulario a la configuración predeterminada, crea un directorio `styles/config/vocabularies/Mintlify` con los archivos `accept.txt` y `reject.txt`. + +* `accept.txt`: Palabras que deben ser ignoradas por el linter Vale. Por ejemplo, nombres de productos o términos poco comunes. +* `reject.txt`: Palabras que deben marcarse como errores. Por ejemplo, jerga o palabras que no son apropiadas para el tono de tu documentación. + ```text Example Vale file structure - - docs.json - - .vale.ini - - styles/... - - text.md +/your-project + |- docs.json + |- .vale.ini + |- styles/ + |- config/ + |- vocabularies/ + |- Mintlify/ + |- accept.txt + |- reject.txt + |- example-page.mdx ``` ```text Example monorepo Vale file structure - - main.ts - - docs/ - - docs.json - - .vale.ini - - styles/... - - text.md - - test/ +/your-monorepo + |- main.ts + |- docs/ + |- docs.json + |- .vale.ini + |- styles/ + |- config/ + |- vocabularies/ + |- Mintlify/ + |- accept.txt + |- reject.txt + |- example-page.mdx + |- test/ ``` - Ten en cuenta que, por razones de seguridad, no se admiten `stylesPath` absolutos ni `stylesPath` que incluyan `..`. Usa rutas relativas e incluye el `stylesPath` en tu repositorio. + Por razones de seguridad, no se admite el uso de un `stylesPath` absoluto ni de un `stylesPath` que incluya `..`. + + Usa rutas relativas e incluye el `stylesPath` en tu repositorio.
#### Paquetes
-Vale admite una variedad de [paquetes](https://vale.sh/docs/keys/packages) que se pueden usar para detectar errores ortográficos y de estilo. -Cualquier paquete que incluyas en tu repositorio dentro del `stylesPath` correcto se instalará automáticamente y se usará en tu configuración de Vale. +Vale es compatible con una variedad de [paquetes](https://vale.sh/docs/keys/packages), que puedes usar para detectar errores ortográficos y de estilo. Cualquier paquete que incluyas en tu repositorio bajo el `stylesPath` correcto se instala automáticamente y se utiliza en tu configuración de Vale. -Para los paquetes que no estén incluidos en tu repositorio, puedes especificar cualquiera del [registro de paquetes de Vale](https://vale.sh/explorer); se descargarán automáticamente y se usarán en tu configuración de Vale. +Para los paquetes que no estén incluidos en tu repositorio, puedes especificar cualquiera del [registro de paquetes de Vale](https://vale.sh/explorer); se descargarán automáticamente y se utilizarán en tu configuración de Vale. - Ten en cuenta que, por razones de seguridad, no se admite la descarga automática de paquetes que no provengan del [registro de paquetes de Vale](https://vale.sh/explorer). + Por motivos de seguridad, **no** se admite la descarga automática de paquetes que no provengan del [registro de paquetes de Vale](https://vale.sh/explorer).
#### Vale con `MDX`
-Vale no admite `MDX` de forma nativa, pero el autor de Vale ha proporcionado una [extensión personalizada](https://github.com/errata-ai/MDX) para darle soporte. - -Si prefieres no usar esta extensión, puedes agregar las siguientes líneas al archivo `.vale.ini` configurado: - -```ini -[formats] -mdx = md - -[*.mdx] -CommentDelimiters = {/*, */} - -TokenIgnores = (?sm)((?:import|export) .+?$), \ -(?)(?!`), \ -(<[A-Z]\w+>.+?<\/[A-Z]\w+>) - -BlockIgnores = (?sm)^(<\w+\n .*\s\/>)$, \ -(?sm)^({.+.*}) -``` + + La compatibilidad nativa con MDX requiere Vale 3.10.0 o posterior. Comprueba tu versión de Vale con `vale --version`. + -Para usar los comentarios en el documento de Vale, utiliza comentarios con estilo MDX `{/* ... */}`. Si en tu configuración usas el [ajuste](https://vale.sh/docs/keys/commentdelimiters) `CommentDelimiters = {/*, */}`, Vale interpretará automáticamente estos comentarios durante el análisis. Esto significa que puedes aprovechar fácilmente las funciones integradas de Vale, como omitir líneas o secciones. +Para usar los comentarios dentro del documento de Vale en archivos MDX, utiliza comentarios al estilo MDX `{/* ... */}`: ```mdx {/* vale off */} @@ -429,14 +433,4 @@ Este texto es ignorado por Vale {/* vale on */} ``` -Si decides no usar `CommentDelimiters` pero aun así usar los comentarios de Vale, debes envolver cualquier comentario de Vale en comentarios de MDX `{/* ... */}`. Por ejemplo: - -```mdx -{/* */} - -Este texto es ignorado por Vale - -{/* */} -``` - -Estas etiquetas de comentario no son compatibles dentro de los componentes de Mintlify, pero funcionan correctamente en cualquier lugar del nivel base de un documento. +Vale reconoce y respeta automáticamente estos comentarios en los archivos MDX sin necesidad de configuración adicional. Usa los comentarios para omitir líneas o secciones que el linter deba ignorar. diff --git a/fr/deploy/ci.mdx b/fr/deploy/ci.mdx index 9ff5a03b2..96b82247b 100644 --- a/fr/deploy/ci.mdx +++ b/fr/deploy/ci.mdx @@ -45,37 +45,38 @@ Pour consulter les résultats de cette vérification, rendez-vous sur la page de ### Vale -[Vale](https://vale.sh/) est un linter de prose open source basé sur des règles, compatible avec divers types de documents, dont Markdown et MDX. +[Vale](https://vale.sh/) est un linter de prose open source basé sur des règles qui prend en charge un large éventail de types de documents, y compris Markdown et MDX. Utilisez Vale pour vérifier la cohérence du style et du ton de votre documentation. -Mintlify prend en charge l’exécution automatique de Vale dans une vérification CI et l’affichage des résultats sous forme d’état de vérification. +Mintlify permet d’exécuter automatiquement Vale dans un contrôle CI et d’afficher les résultats comme statut de contrôle.
#### Configuration
-Si vous avez un fichier `.vale.ini` à la racine du répertoire content de votre déploiement, le contrôle Vale CI utilise ce fichier de configuration ainsi que tout fichier de configuration présent dans le `stylesPath` que vous avez spécifié. +Si vous avez un fichier `.vale.ini` à la racine du répertoire de contenu de votre déploiement, la vérification Vale CI utilise ce fichier de configuration ainsi que tous les fichiers de configuration présents dans le `stylesPath` que vous avez spécifié. -Si vous n’avez pas de fichier de configuration Vale, la configuration par défaut est chargée automatiquement. +Si vous n’avez pas de fichier de configuration Vale, la configuration par défaut est automatiquement chargée. ```mdx Default vale.ini configuration expandable # Styles de niveau supérieur StylesPath = /app/styles MinAlertLevel = suggestion +# Balises HTML en ligne à ignorer (code/tt pour les extraits de code, img/url pour les liens/images, a pour les balises d'ancrage) IgnoredScopes = code, tt, img, url, a -SkippedScopes = script, style, pre, figure, code +SkippedScopes = script, style, pre, figure # Vocabulaires Vocab = Mintlify -# Requis car Vale ne prend pas officiellement en charge MDX -[formats] -mdx = md +# Packages +Packages = MDX -# Prise en charge de MDX +# Correspondre uniquement aux fichiers MDX [*.mdx] BasedOnStyles = Vale Vale.Terms = NO # Applique des règles de capitalisation très strictes, laisser désactivé +# Ignorer les motifs de syntaxe spécifiques à JSX/MDX # `import ...`, `export ...` # `` # `...` @@ -84,14 +85,14 @@ TokenIgnores = (?sm)((?:import|export) .+?$), \ (?)(?!`), \ (<[A-Z]\w+>.+?<\/[A-Z]\w+>) -# Exclure : +# Exclure le JSX multiligne et les accolades # `` BlockIgnores = (?sm)^(<\w+\n .*\s\/>)$, \ (?sm)^({.+.*}) - -CommentDelimiters = {/*, */} ``` +Le vocabulaire par défaut de Vale comprend les mots suivants. + ```text Default Vale vocabulary expandable Mintlify mintlify @@ -362,64 +363,67 @@ next toc ``` +Pour ajouter votre propre vocabulaire à la configuration par défaut, créez un répertoire `styles/config/vocabularies/Mintlify` contenant les fichiers `accept.txt` et `reject.txt`. + +* `accept.txt` : Mots à ignorer par le linter Vale. Par exemple, des noms de produits ou des termes peu courants. +* `reject.txt` : Mots qui doivent être signalés comme des erreurs. Par exemple, du jargon ou des mots qui ne sont pas appropriés au ton de votre documentation. + ```text Example Vale file structure - - docs.json - - .vale.ini - - styles/... - - text.md +/votre-projet + |- docs.json + |- .vale.ini + |- styles/ + |- config/ + |- vocabularies/ + |- Mintlify/ + |- accept.txt + |- reject.txt + |- page-exemple.mdx ``` ```text Example monorepo Vale file structure - - main.ts - - docs/ - - docs.json - - .vale.ini - - styles/... - - text.md - - test/ +/your-monorepo + |- main.ts + |- docs/ + |- docs.json + |- .vale.ini + |- styles/ + |- config/ + |- vocabularies/ + |- Mintlify/ + |- accept.txt + |- reject.txt + |- example-page.mdx + |- test/ ``` - Pour des raisons de sécurité, les `stylesPath` absolus ou contenant `..` ne sont pas pris en charge. Utilisez des chemins relatifs et incluez le `stylesPath` dans votre référentiel. + Pour des raisons de sécurité, les `stylesPath` absolus ou les `stylesPath` contenant `..` ne sont pas pris en charge. + + Utilisez des chemins relatifs et incluez le `stylesPath` dans votre référentiel.
#### Packages
-Vale prend en charge un éventail de [packages](https://vale.sh/docs/keys/packages), qui peuvent être utilisés pour détecter les fautes d’orthographe et les erreurs de style. -Tous les packages que vous incluez dans votre référentiel sous le `stylesPath` approprié sont automatiquement installés et pris en compte dans votre configuration Vale. +Vale prend en charge une gamme de [packages](https://vale.sh/docs/keys/packages), qui peuvent être utilisés pour détecter les fautes d’orthographe et les erreurs de style. Tous les packages que vous ajoutez à votre référentiel sous le `stylesPath` approprié sont automatiquement installés et utilisés dans votre configuration Vale. -Pour les packages qui ne figurent pas dans votre référentiel, vous pouvez spécifier n’importe quels packages depuis le [registre de packages Vale](https://vale.sh/explorer) ; ils sont alors automatiquement téléchargés et utilisés dans votre configuration Vale. +Pour les packages qui ne sont pas inclus dans votre référentiel, vous pouvez spécifier n’importe quel package du [registre de packages Vale](https://vale.sh/explorer), qui sera automatiquement téléchargé et utilisé dans votre configuration Vale. - Veuillez noter que, pour des raisons de sécurité, le téléchargement automatique de packages ne provenant pas du [registre de packages Vale](https://vale.sh/explorer) n’est pas pris en charge. + Pour des raisons de sécurité, le téléchargement automatique de packages qui ne proviennent pas du [registre de packages Vale](https://vale.sh/explorer) n’est **pas** pris en charge.
#### Vale avec `MDX`
-Vale ne prend pas en charge `MDX` nativement, mais l’auteur de Vale a fourni une [extension personnalisée](https://github.com/errata-ai/MDX) pour l’ajouter. - -Si vous préférez ne pas utiliser cette extension, vous pouvez ajouter les lignes suivantes au fichier `.vale.ini` configuré : - -```ini -[formats] -mdx = md - -[*.mdx] -CommentDelimiters = {/*, */} - -TokenIgnores = (?sm)((?:import|export) .+?$), \ -(?)(?!`), \ -(<[A-Z]\w+>.+?<\/[A-Z]\w+>) - -BlockIgnores = (?sm)^(<\w+\n .*\s\/>)$, \ -(?sm)^({.+.*}) -``` + + La prise en charge native de MDX nécessite Vale 3.10.0 ou une version ultérieure. Vérifiez votre version de Vale avec `vale --version`. + -Pour utiliser les commentaires dans le document de Vale, utilisez des commentaires au format MDX `{/* ... */}`. Si vous utilisez le [paramètre](https://vale.sh/docs/keys/commentdelimiters) `CommentDelimiters = {/*, */}` dans votre configuration, Vale interprétera automatiquement ces commentaires lors de l’analyse. Cela signifie que vous pouvez facilement utiliser les fonctionnalités intégrées de Vale, comme ignorer des lignes ou des sections. +Pour utiliser les commentaires intégrés de Vale dans les fichiers MDX, utilisez les commentaires au format MDX `{/* ... */}` : ```mdx {/* vale off */} @@ -429,14 +433,4 @@ Ce texte est ignoré par Vale {/* vale on */} ``` -Si vous choisissez de ne pas utiliser `CommentDelimiters` tout en utilisant les commentaires de Vale, vous devez entourer tous les commentaires de Vale de commentaires MDX `{/* ... */}`. Par exemple : - -```mdx -{/* */} - -Ce texte est ignoré par Vale - -{/* */} -``` - -Ces balises de commentaire ne sont pas prises en charge dans les composants Mintlify, mais elles fonctionneront correctement partout au niveau de base d’un document. +Vale reconnaît et respecte automatiquement ces commentaires dans les fichiers MDX sans configuration supplémentaire. Utilisez les commentaires pour ignorer les lignes ou sections qui doivent être ignorées par le linter. diff --git a/gt-lock.json b/gt-lock.json index 793556529..696d507ad 100644 --- a/gt-lock.json +++ b/gt-lock.json @@ -2565,13 +2565,13 @@ }, "e1245d1e4e59db779cbdcf29d3bb3fab791f1bcdc251feaa8d73f8bd2299d0f7": { "fr": { - "updatedAt": "2025-11-26T01:17:16.499Z" + "updatedAt": "2025-11-26T02:52:20.888Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.504Z" + "updatedAt": "2025-11-26T02:52:20.894Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.504Z" + "updatedAt": "2025-11-26T02:52:20.894Z" } } }, @@ -2600,26 +2600,26 @@ }, "d2c25bcfded41a5d23f177481940cde0a5f87bd602952ec47faf7deb1bbfdd7c": { "zh": { - "updatedAt": "2025-11-26T01:17:16.496Z" + "updatedAt": "2025-11-26T02:52:20.885Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.499Z" + "updatedAt": "2025-11-26T02:52:20.889Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.502Z" + "updatedAt": "2025-11-26T02:52:20.892Z" } } }, "23468f0552fb3e6e3e07f5ccc3f3267c1f9e3dde0f865e866f185cb2947d3700": { "cf671b42a22bf53b553d52737aa0ebd2832efeeb3c4329997d454109b44b2d0b": { "zh": { - "updatedAt": "2025-11-26T01:17:16.514Z" + "updatedAt": "2025-11-26T02:52:20.903Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.514Z" + "updatedAt": "2025-11-26T02:52:20.904Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.515Z" + "updatedAt": "2025-11-26T02:52:20.904Z" } } }, @@ -2637,13 +2637,13 @@ }, "33b27f6424e49160a6a8f7ca639a6ecabe4ccb6c81e109c16357715ed5705d59": { "zh": { - "updatedAt": "2025-11-26T01:17:16.494Z" + "updatedAt": "2025-11-26T02:52:20.883Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.495Z" + "updatedAt": "2025-11-26T02:52:20.884Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.495Z" + "updatedAt": "2025-11-26T02:52:20.884Z" } } }, @@ -2694,13 +2694,13 @@ }, "27f53cd80f1d9d96ab5f1d15c7d4143a1faa63b80e35b5f57fa79bf4da0eaea4": { "zh": { - "updatedAt": "2025-11-26T01:17:16.512Z" + "updatedAt": "2025-11-26T02:52:20.901Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.512Z" + "updatedAt": "2025-11-26T02:52:20.901Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.513Z" + "updatedAt": "2025-11-26T02:52:20.903Z" } } }, @@ -2729,13 +2729,13 @@ }, "4bbec825257b2e44662cece56ea8f6d2a270af8295558ba8c49333d01f531512": { "fr": { - "updatedAt": "2025-11-26T01:17:16.501Z" + "updatedAt": "2025-11-26T02:52:20.890Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.501Z" + "updatedAt": "2025-11-26T02:52:20.891Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.501Z" + "updatedAt": "2025-11-26T02:52:20.891Z" } } }, @@ -2764,13 +2764,13 @@ }, "64a3699238f7091a57f32a304d4d6ea95e7b276b252acad469433afd381059d3": { "fr": { - "updatedAt": "2025-11-26T01:17:16.497Z" + "updatedAt": "2025-11-26T02:52:20.886Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.550Z" + "updatedAt": "2025-11-26T02:52:20.912Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.551Z" + "updatedAt": "2025-11-26T02:52:20.913Z" } } }, @@ -2799,13 +2799,13 @@ }, "91728bc6b9b8b6139a0dd62305e5baa3b279f2b75c5da5884361f1d6921cd5a0": { "zh": { - "updatedAt": "2025-11-26T01:17:16.496Z" + "updatedAt": "2025-11-26T02:52:20.886Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.498Z" + "updatedAt": "2025-11-26T02:52:20.887Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.499Z" + "updatedAt": "2025-11-26T02:52:20.889Z" } } }, @@ -2845,13 +2845,13 @@ }, "e6a344d226f71ec9d74b139ad033dcf67bc7845e173faafb769737d5a53e20e0": { "fr": { - "updatedAt": "2025-11-26T01:17:16.509Z" + "updatedAt": "2025-11-26T02:52:20.898Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.509Z" + "updatedAt": "2025-11-26T02:52:20.898Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.510Z" + "updatedAt": "2025-11-26T02:52:20.899Z" } } }, @@ -2891,13 +2891,13 @@ }, "9242b786b93718623d525ba9255744e28d36cba2b1a87db50bc7d4c700693c27": { "es": { - "updatedAt": "2025-11-26T01:17:16.559Z" + "updatedAt": "2025-11-26T02:52:20.922Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.559Z" + "updatedAt": "2025-11-26T02:52:20.923Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.562Z" + "updatedAt": "2025-11-26T02:52:20.928Z" } } }, @@ -2915,13 +2915,13 @@ }, "1b5192704d8c87b7157e3ffb37e67740bf4db60592047855671eaa0de99fce67": { "fr": { - "updatedAt": "2025-11-26T01:17:16.500Z" + "updatedAt": "2025-11-26T02:52:20.889Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.503Z" + "updatedAt": "2025-11-26T02:52:20.893Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.505Z" + "updatedAt": "2025-11-26T02:52:20.894Z" } } }, @@ -2939,13 +2939,13 @@ }, "7df72a5c83b1558be5c0fa2deec46e528d5f4d2df119cca457c97ad94568dafd": { "zh": { - "updatedAt": "2025-11-26T01:17:16.498Z" + "updatedAt": "2025-11-26T02:52:20.887Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.498Z" + "updatedAt": "2025-11-26T02:52:20.888Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.500Z" + "updatedAt": "2025-11-26T02:52:20.890Z" } } }, @@ -2974,13 +2974,13 @@ }, "e71844c012c9eba781ce344458c88e183151a3faef835f82596821c65ff82f74": { "zh": { - "updatedAt": "2025-11-26T01:17:16.496Z" + "updatedAt": "2025-11-26T02:52:20.885Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.500Z" + "updatedAt": "2025-11-26T02:52:20.890Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.501Z" + "updatedAt": "2025-11-26T02:52:20.891Z" } } }, @@ -2998,13 +2998,13 @@ }, "4ba815c35fc1d6ae05c075a25e63c14bb4f99030f6269e2e624b6a6cf7b40e43": { "es": { - "updatedAt": "2025-11-26T01:17:16.494Z" + "updatedAt": "2025-11-26T02:52:20.882Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.494Z" + "updatedAt": "2025-11-26T02:52:20.883Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.495Z" + "updatedAt": "2025-11-26T02:52:20.884Z" } } }, @@ -3033,13 +3033,13 @@ }, "eb20f767427fb4ce5134a35c35949a707ee0443db110d0b9778a731d5cfc0e82": { "es": { - "updatedAt": "2025-11-26T01:17:16.496Z" + "updatedAt": "2025-11-26T02:52:20.885Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.502Z" + "updatedAt": "2025-11-26T02:52:20.892Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.503Z" + "updatedAt": "2025-11-26T02:52:20.893Z" } } }, @@ -3079,13 +3079,13 @@ }, "10a59bda6699d8eb5eca9032bc6c595093420adb0a0f239d74a34a81616a3df3": { "zh": { - "updatedAt": "2025-11-26T01:17:16.491Z" + "updatedAt": "2025-11-26T02:52:20.879Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.492Z" + "updatedAt": "2025-11-26T02:52:20.880Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.492Z" + "updatedAt": "2025-11-26T02:52:20.880Z" } } }, @@ -3160,13 +3160,13 @@ }, "f2d2eba18f2d99a846a22e37f08013200d0d53bea29eed47e8ab65c63ea495d2": { "fr": { - "updatedAt": "2025-11-26T01:17:16.497Z" + "updatedAt": "2025-11-26T02:52:20.887Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.502Z" + "updatedAt": "2025-11-26T02:52:20.892Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.506Z" + "updatedAt": "2025-11-26T02:52:20.895Z" } } }, @@ -3228,13 +3228,13 @@ }, "4b73e5b999837e785d4851e9a4713727aa81fdcf0df3810ce0200908c539c2e8": { "es": { - "updatedAt": "2025-11-26T01:17:16.493Z" + "updatedAt": "2025-11-26T02:52:20.881Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.493Z" + "updatedAt": "2025-11-26T02:52:20.881Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.493Z" + "updatedAt": "2025-11-26T02:52:20.882Z" } } }, @@ -3274,13 +3274,13 @@ }, "5a3ddc06ea2c383cda4a5676b6c1f6a0b9bb56f8c7869284740bcd8b011f472e": { "fr": { - "updatedAt": "2025-11-26T01:17:16.513Z" + "updatedAt": "2025-11-26T02:52:20.902Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.513Z" + "updatedAt": "2025-11-26T02:52:20.902Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.514Z" + "updatedAt": "2025-11-26T02:52:20.903Z" } } }, @@ -3331,13 +3331,13 @@ }, "64ed0a926f09e6af14bb8836c73e12fb76fd1d85d058feee1dc2bdd25825a3aa": { "zh": { - "updatedAt": "2025-11-26T01:17:16.661Z" + "updatedAt": "2025-11-26T02:52:20.895Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.661Z" + "updatedAt": "2025-11-26T02:52:20.896Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.662Z" + "updatedAt": "2025-11-26T02:52:20.897Z" } } }, @@ -3377,13 +3377,13 @@ }, "2ffaf84018cb11556557799aa88cbfa6bfd45b853412a098492763d087f46bc0": { "es": { - "updatedAt": "2025-11-26T01:17:16.511Z" + "updatedAt": "2025-11-26T02:52:20.900Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.511Z" + "updatedAt": "2025-11-26T02:52:20.900Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.511Z" + "updatedAt": "2025-11-26T02:52:20.900Z" } } }, @@ -3412,13 +3412,13 @@ }, "239feca6504164e8bcbd82b2524a752018ed7a39e7c99c5bd82283b05ad42419": { "es": { - "updatedAt": "2025-11-26T01:17:16.572Z" + "updatedAt": "2025-11-26T02:52:20.940Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.575Z" + "updatedAt": "2025-11-26T02:52:20.942Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.577Z" + "updatedAt": "2025-11-26T02:52:20.944Z" } } }, @@ -3447,13 +3447,13 @@ }, "6b6eb89e73eae4cff9d6413f91f2f4ce27e6b47013fb676bde0cdced959047d5": { "fr": { - "updatedAt": "2025-11-26T01:17:16.548Z" + "updatedAt": "2025-11-26T02:52:20.910Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.548Z" + "updatedAt": "2025-11-26T02:52:20.910Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.548Z" + "updatedAt": "2025-11-26T02:52:20.911Z" } } }, @@ -3493,13 +3493,13 @@ }, "2142b34f605ba6b02fc694f8930d1d6a0068a69bd4e2f55d94bb3b33512bc21b": { "zh": { - "updatedAt": "2025-11-26T01:17:16.564Z" + "updatedAt": "2025-11-26T02:52:20.931Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.565Z" + "updatedAt": "2025-11-26T02:52:20.932Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.564Z" + "updatedAt": "2025-11-26T02:52:20.931Z" } } }, @@ -3517,13 +3517,13 @@ }, "9b746c5834165dc199fdd794e1657e4116749bcc2ce014fa6bc5e7a59751e5e0": { "fr": { - "updatedAt": "2025-11-26T01:17:16.515Z" + "updatedAt": "2025-11-26T02:52:20.906Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.516Z" + "updatedAt": "2025-11-26T02:52:20.907Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.516Z" + "updatedAt": "2025-11-26T02:52:20.907Z" } } }, @@ -3552,13 +3552,13 @@ }, "1579230cd266b076718d44b00c6f2b14c604bd1468d47abd65c5b3f284ee238b": { "fr": { - "updatedAt": "2025-11-26T01:17:16.547Z" + "updatedAt": "2025-11-26T02:52:20.909Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.548Z" + "updatedAt": "2025-11-26T02:52:20.910Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.551Z" + "updatedAt": "2025-11-26T02:52:20.913Z" } } }, @@ -3576,13 +3576,13 @@ }, "84e1f1ee89d0e933d7883bd51c19cc1497abc66ebb4cfc68cb7f690d71de87f5": { "es": { - "updatedAt": "2025-11-26T01:17:16.554Z" + "updatedAt": "2025-11-26T02:52:20.916Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.554Z" + "updatedAt": "2025-11-26T02:52:20.917Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.555Z" + "updatedAt": "2025-11-26T02:52:20.917Z" } } }, @@ -3611,13 +3611,13 @@ }, "b0fc3fe18db44f5d5e3138970ce56042937cae027c36a20826e5e83b18448c2c": { "es": { - "updatedAt": "2025-11-26T01:17:16.547Z" + "updatedAt": "2025-11-26T02:52:20.909Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.553Z" + "updatedAt": "2025-11-26T02:52:20.915Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.555Z" + "updatedAt": "2025-11-26T02:52:20.918Z" } } }, @@ -3646,13 +3646,13 @@ }, "f6377bf2dbd5497b12e74eecdf1c1400c517c2aec35e1ac91f461cd4769214b4": { "fr": { - "updatedAt": "2025-11-26T01:17:16.576Z" + "updatedAt": "2025-11-26T02:52:20.943Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.581Z" + "updatedAt": "2025-11-26T02:52:20.949Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.582Z" + "updatedAt": "2025-11-26T02:52:20.950Z" } } }, @@ -3681,13 +3681,13 @@ }, "bc8397cc9a6ce325952185bd403e7322c795c94318958e9c38b0cbea30872f53": { "es": { - "updatedAt": "2025-11-26T01:17:16.546Z" + "updatedAt": "2025-11-26T02:52:20.909Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.549Z" + "updatedAt": "2025-11-26T02:52:20.912Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.553Z" + "updatedAt": "2025-11-26T02:52:20.916Z" } } }, @@ -3705,13 +3705,13 @@ }, "53d7697aa5f590afda9685f76f9b36753da2903b860d4c937c9a58e10cac4877": { "fr": { - "updatedAt": "2025-11-26T01:17:16.547Z" + "updatedAt": "2025-11-26T02:52:20.909Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.550Z" + "updatedAt": "2025-11-26T02:52:20.913Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.555Z" + "updatedAt": "2025-11-26T02:52:20.918Z" } } }, @@ -3740,13 +3740,13 @@ }, "6065a4c2de7e7a039acb75fd86ac55270b68e0a1c50cce78c38218d7e17332be": { "es": { - "updatedAt": "2025-11-26T01:17:16.568Z" + "updatedAt": "2025-11-26T02:52:20.935Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.581Z" + "updatedAt": "2025-11-26T02:52:20.948Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.580Z" + "updatedAt": "2025-11-26T02:52:20.948Z" } } }, @@ -3786,13 +3786,13 @@ }, "58530194580e1f232e86282b69ce2eca0690f31f7c0d6cace4af03fc68418734": { "zh": { - "updatedAt": "2025-11-26T01:17:16.489Z" + "updatedAt": "2025-11-26T02:52:20.905Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.490Z" + "updatedAt": "2025-11-26T02:52:20.905Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.491Z" + "updatedAt": "2025-11-26T02:52:20.906Z" } } }, @@ -3810,13 +3810,13 @@ }, "fa529df5efd3bbc04a1b2491b1b102472a547fa0543ac8eb62229ff695e1e2b8": { "zh": { - "updatedAt": "2025-11-26T01:17:16.545Z" + "updatedAt": "2025-11-26T02:52:20.908Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.546Z" + "updatedAt": "2025-11-26T02:52:20.908Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.552Z" + "updatedAt": "2025-11-26T02:52:20.914Z" } } }, @@ -3845,13 +3845,13 @@ }, "7af7098ed0591bb1b52aeda833b7c793c648c594ddc27001cc458732beb61d42": { "fr": { - "updatedAt": "2025-11-26T01:17:16.549Z" + "updatedAt": "2025-11-26T02:52:20.911Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.549Z" + "updatedAt": "2025-11-26T02:52:20.912Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.552Z" + "updatedAt": "2025-11-26T02:52:20.915Z" } } }, @@ -3880,13 +3880,13 @@ }, "ff6db2e1d92370a81059bfc2de4d5a8e1f57d0325aba414f0579b5874c2f211c": { "fr": { - "updatedAt": "2025-11-26T01:17:16.575Z" + "updatedAt": "2025-11-26T02:52:20.942Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.581Z" + "updatedAt": "2025-11-26T02:52:20.949Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.580Z" + "updatedAt": "2025-11-26T02:52:20.948Z" } } }, @@ -3915,13 +3915,13 @@ }, "d6a5a6940e86056dceb450ae7e7d83a0ff1ae53e967a7386f2ee6e1a51cb1919": { "fr": { - "updatedAt": "2025-11-26T01:17:16.573Z" + "updatedAt": "2025-11-26T02:52:20.941Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.573Z" + "updatedAt": "2025-11-26T02:52:20.941Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.582Z" + "updatedAt": "2025-11-26T02:52:20.950Z" } } }, @@ -3961,13 +3961,13 @@ }, "7b5e31679e6dc64290dcbaf7ebdc38d509f113fac1106932fc5c382eae0f70f2": { "fr": { - "updatedAt": "2025-11-26T01:17:16.558Z" + "updatedAt": "2025-11-26T02:52:20.921Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.559Z" + "updatedAt": "2025-11-26T02:52:20.922Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.563Z" + "updatedAt": "2025-11-26T02:52:20.929Z" } } }, @@ -4018,13 +4018,13 @@ }, "c267f27f72ca38bf57a908e09cd9f0ebd44ae0a830ecedfa36f20cc1ebc8192a": { "es": { - "updatedAt": "2025-11-26T01:17:16.563Z" + "updatedAt": "2025-11-26T02:52:20.930Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.563Z" + "updatedAt": "2025-11-26T02:52:20.930Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.564Z" + "updatedAt": "2025-11-26T02:52:20.930Z" } } }, @@ -4075,13 +4075,13 @@ }, "15dcc5bf8fe3a6cc2d7be853f5ea3001fbd0a4390995b0d89c4688a863d93554": { "fr": { - "updatedAt": "2025-11-26T01:17:16.561Z" + "updatedAt": "2025-11-26T02:52:20.924Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.561Z" + "updatedAt": "2025-11-26T02:52:20.928Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.562Z" + "updatedAt": "2025-11-26T02:52:20.929Z" } } }, @@ -4110,13 +4110,13 @@ }, "4b669eac3d8af5dba744f7619f5f1d7a71791df3e93cb61cdd5f4efa1a49e7a8": { "fr": { - "updatedAt": "2025-11-26T01:17:16.550Z" + "updatedAt": "2025-11-26T02:52:20.913Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.551Z" + "updatedAt": "2025-11-26T02:52:20.914Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.554Z" + "updatedAt": "2025-11-26T02:52:20.917Z" } } }, @@ -4156,13 +4156,13 @@ }, "a36886f4bb4adc67e3f0f6784b450b2375adaa18049fbf2130e009b7e3e6b136": { "es": { - "updatedAt": "2025-11-26T01:17:16.552Z" + "updatedAt": "2025-11-26T02:52:20.915Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.580Z" + "updatedAt": "2025-11-26T02:52:20.947Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.553Z" + "updatedAt": "2025-11-26T02:52:20.916Z" } } }, @@ -4202,13 +4202,13 @@ }, "3d8750f3f03847c95da6a8d5db91c3f2794f77900d3f5bbdb91dac2adf0a13e6": { "es": { - "updatedAt": "2025-11-26T01:17:16.517Z" + "updatedAt": "2025-11-26T02:52:20.932Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.517Z" + "updatedAt": "2025-11-26T02:52:20.933Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.545Z" + "updatedAt": "2025-11-26T02:52:20.933Z" } } }, @@ -4237,13 +4237,13 @@ }, "daac240f9481ada70f4ab82196cb275ec718d8c2d714eb60b5c567634c3e725a": { "fr": { - "updatedAt": "2025-11-26T01:17:16.595Z" + "updatedAt": "2025-11-26T02:52:20.962Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.619Z" + "updatedAt": "2025-11-26T02:52:20.987Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.619Z" + "updatedAt": "2025-11-26T02:52:20.988Z" } } }, @@ -4283,13 +4283,13 @@ }, "5f164293a7b7d857847dd6724df827abe1235b34e02d3b3ff596ad6884d30fda": { "zh": { - "updatedAt": "2025-11-26T01:17:16.586Z" + "updatedAt": "2025-11-26T02:52:20.957Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.599Z" + "updatedAt": "2025-11-26T02:52:20.967Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.602Z" + "updatedAt": "2025-11-26T02:52:20.970Z" } } }, @@ -4318,13 +4318,13 @@ }, "c0ecdfc77f161f9ec951eeea61e89d87be13c8dcbf63cc28240bc8e495f7e7f4": { "es": { - "updatedAt": "2025-11-26T01:17:16.567Z" + "updatedAt": "2025-11-26T02:52:20.934Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.568Z" + "updatedAt": "2025-11-26T02:52:20.936Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.579Z" + "updatedAt": "2025-11-26T02:52:20.947Z" } } }, @@ -4366,13 +4366,13 @@ }, "b40c60718a227589b2b21319224942654b402d349ebeb430217cefce50203dd1": { "es": { - "updatedAt": "2025-11-26T01:17:16.572Z" + "updatedAt": "2025-11-26T02:52:20.941Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.578Z" + "updatedAt": "2025-11-26T02:52:20.946Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.579Z" + "updatedAt": "2025-11-26T02:52:20.946Z" } } }, @@ -4401,13 +4401,13 @@ }, "1c0a8202856d2630d58fdd9440e8b59dc16e2e0d0df716f94c1c61506b0abf73": { "fr": { - "updatedAt": "2025-11-26T01:17:16.572Z" + "updatedAt": "2025-11-26T02:52:20.940Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.574Z" + "updatedAt": "2025-11-26T02:52:20.942Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.578Z" + "updatedAt": "2025-11-26T02:52:20.945Z" } } }, @@ -4436,13 +4436,13 @@ }, "2a0f0b7a4c2e97c104841a7ca775cb7ea2d904d3c58797b4df16f21bed656cbf": { "zh": { - "updatedAt": "2025-11-26T01:17:16.596Z" + "updatedAt": "2025-11-26T02:52:20.964Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.597Z" + "updatedAt": "2025-11-26T02:52:20.966Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.599Z" + "updatedAt": "2025-11-26T02:52:20.968Z" } } }, @@ -4471,13 +4471,13 @@ }, "cc2a087cfe19f368db8940e1369be0e2b08997d401eb3bafcb63ce4b0c545328": { "zh": { - "updatedAt": "2025-11-26T01:17:16.571Z" + "updatedAt": "2025-11-26T02:52:20.939Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.577Z" + "updatedAt": "2025-11-26T02:52:20.944Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.575Z" + "updatedAt": "2025-11-26T02:52:20.943Z" } } }, @@ -4517,13 +4517,13 @@ }, "1e5e24c5831011296eb0d6e6dbb9c228554eb4545d985aa2aabfa4b2eb8010b6": { "es": { - "updatedAt": "2025-11-26T01:17:16.596Z" + "updatedAt": "2025-11-26T02:52:20.965Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.601Z" + "updatedAt": "2025-11-26T02:52:20.969Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.602Z" + "updatedAt": "2025-11-26T02:52:20.970Z" } } }, @@ -4563,13 +4563,13 @@ }, "2202aa02e9ae341447ee588b80ce34cf38f9e450be559627fb28845418cd4906": { "zh": { - "updatedAt": "2025-11-26T01:17:16.600Z" + "updatedAt": "2025-11-26T02:52:20.968Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.598Z" + "updatedAt": "2025-11-26T02:52:20.967Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.603Z" + "updatedAt": "2025-11-26T02:52:20.971Z" } } }, @@ -4598,13 +4598,13 @@ }, "8b3eb4d91a03437fdb577ff828b7858bed1d4efbac277fcc00b6de4d73556b7a": { "fr": { - "updatedAt": "2025-11-26T01:17:16.577Z" + "updatedAt": "2025-11-26T02:52:20.944Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.579Z" + "updatedAt": "2025-11-26T02:52:20.947Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.582Z" + "updatedAt": "2025-11-26T02:52:20.949Z" } } }, @@ -4633,13 +4633,13 @@ }, "717ba6ec955149d36b641a29e243d1a562bc0a4a45246ea8f00e97a12de033a2": { "es": { - "updatedAt": "2025-11-26T01:17:16.597Z" + "updatedAt": "2025-11-26T02:52:20.965Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.603Z" + "updatedAt": "2025-11-26T02:52:20.971Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.603Z" + "updatedAt": "2025-11-26T02:52:20.971Z" } } }, @@ -4668,13 +4668,13 @@ }, "0fa10cf016a982a519972a78c99929f4394257ce24c2e155eaefec0ef1e96c64": { "es": { - "updatedAt": "2025-11-26T01:17:16.570Z" + "updatedAt": "2025-11-26T02:52:20.938Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.571Z" + "updatedAt": "2025-11-26T02:52:20.939Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.579Z" + "updatedAt": "2025-11-26T02:52:20.946Z" } } }, @@ -4703,13 +4703,13 @@ }, "490447ff6751bd36032615f87abdbbf88d8fbe2abb4e3a562a822148c6c24722": { "es": { - "updatedAt": "2025-11-26T01:17:16.570Z" + "updatedAt": "2025-11-26T02:52:20.938Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.577Z" + "updatedAt": "2025-11-26T02:52:20.944Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.577Z" + "updatedAt": "2025-11-26T02:52:20.945Z" } } }, @@ -4738,13 +4738,13 @@ }, "9e6bd9dddc84ee56ab61dd51d66778954d94835fa02e115422354fbc956a4a8d": { "zh": { - "updatedAt": "2025-11-26T01:17:16.567Z" + "updatedAt": "2025-11-26T02:52:20.935Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.567Z" + "updatedAt": "2025-11-26T02:52:20.935Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.576Z" + "updatedAt": "2025-11-26T02:52:20.943Z" } } }, @@ -4784,13 +4784,13 @@ }, "ce6876fe5f22e2c6437a4d497bad2b008231a76eb534358aeec83c667205144a": { "es": { - "updatedAt": "2025-11-26T01:17:16.583Z" + "updatedAt": "2025-11-26T02:52:20.951Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.584Z" + "updatedAt": "2025-11-26T02:52:20.952Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.584Z" + "updatedAt": "2025-11-26T02:52:20.952Z" } } }, @@ -4819,13 +4819,13 @@ }, "f3c2f45fd08c00d6549d66c81c11f1b2851ec3db49e4c254e5b05f87b192bfa8": { "es": { - "updatedAt": "2025-11-26T01:17:16.569Z" + "updatedAt": "2025-11-26T02:52:20.937Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.578Z" + "updatedAt": "2025-11-26T02:52:20.945Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.581Z" + "updatedAt": "2025-11-26T02:52:20.948Z" } } }, @@ -4865,13 +4865,13 @@ }, "b256b87b867d66b2e8ce15ea04a50b663764eaa4205962c11ff9132e72c4daee": { "fr": { - "updatedAt": "2025-11-26T01:17:16.583Z" + "updatedAt": "2025-11-26T02:52:20.950Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.583Z" + "updatedAt": "2025-11-26T02:52:20.951Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.583Z" + "updatedAt": "2025-11-26T02:52:20.951Z" } } }, @@ -4900,13 +4900,13 @@ }, "077114eba2d6fea49eae5779c9f6728252b23400d3610ae1df75331aa21e6063": { "es": { - "updatedAt": "2025-11-26T01:17:16.568Z" + "updatedAt": "2025-11-26T02:52:20.936Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.574Z" + "updatedAt": "2025-11-26T02:52:20.942Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.576Z" + "updatedAt": "2025-11-26T02:52:20.943Z" } } }, @@ -4935,13 +4935,13 @@ }, "f8b9a9d106b121e6ddbc9bb70445ad03bea3db43afdce8ba3db21e5f8bb27def": { "zh": { - "updatedAt": "2025-11-26T01:17:16.571Z" + "updatedAt": "2025-11-26T02:52:20.939Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.578Z" + "updatedAt": "2025-11-26T02:52:20.945Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.580Z" + "updatedAt": "2025-11-26T02:52:20.947Z" } } }, @@ -4981,26 +4981,26 @@ }, "a6669a0b13b142f6e837b626982c42ed54f0044447985c7650aa239dec9fd968": { "zh": { - "updatedAt": "2025-11-26T01:17:16.645Z" + "updatedAt": "2025-11-26T02:52:21.005Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.646Z" + "updatedAt": "2025-11-26T02:52:21.006Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.646Z" + "updatedAt": "2025-11-26T02:52:21.006Z" } } }, "53c3b9e499ef5bd5e368aa05a9a2484ab2e83e086a848e4dc65f744f4303c18f": { "fc7569e7101cf497720e212cf9526dfda81c1a7301c1866a84396fb6339961ed": { "zh": { - "updatedAt": "2025-11-26T01:17:16.647Z" + "updatedAt": "2025-11-26T02:52:21.007Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.647Z" + "updatedAt": "2025-11-26T02:52:21.008Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.647Z" + "updatedAt": "2025-11-26T02:52:21.008Z" } } }, @@ -5029,13 +5029,13 @@ }, "9aae22f3f7200ef0bfedfcf0f68534a5899dfeca3533861b826b08df4f7c4601": { "es": { - "updatedAt": "2025-11-26T01:17:16.588Z" + "updatedAt": "2025-11-26T02:52:20.959Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.589Z" + "updatedAt": "2025-11-26T02:52:20.960Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.586Z" + "updatedAt": "2025-11-26T02:52:20.957Z" } } }, @@ -5064,13 +5064,13 @@ }, "0228942914d7754379a163a3e9fd8dbd1c314df31b406d2df877d274d0fb8282": { "zh": { - "updatedAt": "2025-11-26T01:17:16.597Z" + "updatedAt": "2025-11-26T02:52:20.965Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.601Z" + "updatedAt": "2025-11-26T02:52:20.970Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.603Z" + "updatedAt": "2025-11-26T02:52:20.972Z" } } }, @@ -5099,13 +5099,13 @@ }, "fa3c99c7b63408c3050a1074fce5edf8c4b0f834acd9219844bb6b030cfb03fd": { "es": { - "updatedAt": "2025-11-26T01:17:16.616Z" + "updatedAt": "2025-11-26T02:52:20.983Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.616Z" + "updatedAt": "2025-11-26T02:52:20.984Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.622Z" + "updatedAt": "2025-11-26T02:52:20.991Z" } } }, @@ -5134,13 +5134,13 @@ }, "adbe9541002b1646c97b2808c84189ee9f023c72ad021051e865d9d5ef268ec9": { "es": { - "updatedAt": "2025-11-26T01:17:16.588Z" + "updatedAt": "2025-11-26T02:52:20.959Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.589Z" + "updatedAt": "2025-11-26T02:52:20.960Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.598Z" + "updatedAt": "2025-11-26T02:52:20.967Z" } } }, @@ -5202,13 +5202,13 @@ }, "2702dc29268a55216eb689e28babe1a4e0ec75fdf1c5bc35380277b1324fac22": { "zh": { - "updatedAt": "2025-11-26T01:17:16.606Z" + "updatedAt": "2025-11-26T02:52:20.973Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.606Z" + "updatedAt": "2025-11-26T02:52:20.974Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.606Z" + "updatedAt": "2025-11-26T02:52:20.974Z" } } }, @@ -5237,13 +5237,13 @@ }, "79ce9a01a754dff7caa2815c273adb26f9fa5e7a21f6e8e07fc94d1f85cdba74": { "es": { - "updatedAt": "2025-11-26T01:17:16.609Z" + "updatedAt": "2025-11-26T02:52:20.977Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.614Z" + "updatedAt": "2025-11-26T02:52:20.982Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.622Z" + "updatedAt": "2025-11-26T02:52:20.991Z" } } }, @@ -5272,13 +5272,13 @@ }, "cb332adcfe09bedb087e499ecf60d6a233e8053ca49c78bb30ca1add261b4ea8": { "fr": { - "updatedAt": "2025-11-26T01:17:16.610Z" + "updatedAt": "2025-11-26T02:52:20.978Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.614Z" + "updatedAt": "2025-11-26T02:52:20.981Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.619Z" + "updatedAt": "2025-11-26T02:52:20.988Z" } } }, @@ -5307,13 +5307,13 @@ }, "0d47285825c7ae55984e6f9c3d7528dd673f95650add2cbb567f8c29315f01d5": { "es": { - "updatedAt": "2025-11-26T01:17:16.588Z" + "updatedAt": "2025-11-26T02:52:20.960Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.596Z" + "updatedAt": "2025-11-26T02:52:20.963Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.601Z" + "updatedAt": "2025-11-26T02:52:20.970Z" } } }, @@ -5342,13 +5342,13 @@ }, "9277c5d065b05d3f338e148bb8b9a7359baa986e51127a488155faacbc3c3a72": { "es": { - "updatedAt": "2025-11-26T01:17:16.609Z" + "updatedAt": "2025-11-26T02:52:20.977Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.611Z" + "updatedAt": "2025-11-26T02:52:20.979Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.621Z" + "updatedAt": "2025-11-26T02:52:20.990Z" } } }, @@ -5377,13 +5377,13 @@ }, "a3d9f36e26be8d1d749fa658d2834e0b0c0316225d4a12f6fe599f481eb68175": { "zh": { - "updatedAt": "2025-11-26T01:17:16.587Z" + "updatedAt": "2025-11-26T02:52:20.958Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.598Z" + "updatedAt": "2025-11-26T02:52:20.966Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.600Z" + "updatedAt": "2025-11-26T02:52:20.969Z" } } }, @@ -5412,13 +5412,13 @@ }, "ede4781ac253b215e63e85bc6df9f6b663c66406f6357aa7af4eeffb8d1a98cf": { "zh": { - "updatedAt": "2025-11-26T01:17:16.615Z" + "updatedAt": "2025-11-26T02:52:20.983Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.617Z" + "updatedAt": "2025-11-26T02:52:20.985Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.621Z" + "updatedAt": "2025-11-26T02:52:20.990Z" } } }, @@ -5447,13 +5447,13 @@ }, "077aa8e71ac9b1ad9784f1fdb2f0f2272d89aef4e499c387a943a032aa224732": { "zh": { - "updatedAt": "2025-11-26T01:17:16.590Z" + "updatedAt": "2025-11-26T02:52:20.961Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.599Z" + "updatedAt": "2025-11-26T02:52:20.968Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.603Z" + "updatedAt": "2025-11-26T02:52:20.971Z" } } }, @@ -5482,13 +5482,13 @@ }, "da016517371e5e7db181469b550eca247e51f3bf4b86713715fc068a333414c0": { "fr": { - "updatedAt": "2025-11-26T01:17:16.590Z" + "updatedAt": "2025-11-26T02:52:20.962Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.595Z" + "updatedAt": "2025-11-26T02:52:20.962Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.598Z" + "updatedAt": "2025-11-26T02:52:20.966Z" } } }, @@ -5517,13 +5517,13 @@ }, "09e6faacedcffff953e51c59a6092cbbe84f4d0578d592bc9decaa2ea769e610": { "es": { - "updatedAt": "2025-11-26T01:17:16.588Z" + "updatedAt": "2025-11-26T02:52:20.959Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.600Z" + "updatedAt": "2025-11-26T02:52:20.969Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.602Z" + "updatedAt": "2025-11-26T02:52:20.970Z" } } }, @@ -5552,13 +5552,13 @@ }, "920a037cf6ef3d11b598424d40e30e4fb7ed552c10735b7bd0019d1f3fec22ed": { "fr": { - "updatedAt": "2025-11-26T01:17:16.613Z" + "updatedAt": "2025-11-26T02:52:20.981Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.613Z" + "updatedAt": "2025-11-26T02:52:20.981Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.618Z" + "updatedAt": "2025-11-26T02:52:20.986Z" } } }, @@ -5587,13 +5587,13 @@ }, "73e97e9550aca0ead247a8d29bb6dac2a50383ac82c0b2865048005b70d66c61": { "fr": { - "updatedAt": "2025-11-26T01:17:16.587Z" + "updatedAt": "2025-11-26T02:52:20.958Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.597Z" + "updatedAt": "2025-11-26T02:52:20.966Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.599Z" + "updatedAt": "2025-11-26T02:52:20.968Z" } } }, @@ -5622,13 +5622,13 @@ }, "160f5f116c9fa308d3ec6a5259bbd3981661441ed3005e4cecde5805eb67d49f": { "zh": { - "updatedAt": "2025-11-26T01:17:16.589Z" + "updatedAt": "2025-11-26T02:52:20.961Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.590Z" + "updatedAt": "2025-11-26T02:52:20.961Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.595Z" + "updatedAt": "2025-11-26T02:52:20.962Z" } } }, @@ -5668,13 +5668,13 @@ }, "3a6e4acbcd42d698efb48d6af496659276249a22773b9cb50fd36f7d928647d0": { "zh": { - "updatedAt": "2025-11-26T01:17:16.565Z" + "updatedAt": "2025-11-26T02:52:20.954Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.565Z" + "updatedAt": "2025-11-26T02:52:20.954Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.566Z" + "updatedAt": "2025-11-26T02:52:20.955Z" } } }, @@ -5714,13 +5714,13 @@ }, "d5f72a1068546e50a8769f65162ffc337c9b76d937e24eaec2c75f7a648f9644": { "es": { - "updatedAt": "2025-11-26T01:17:16.604Z" + "updatedAt": "2025-11-26T02:52:20.972Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.604Z" + "updatedAt": "2025-11-26T02:52:20.972Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.604Z" + "updatedAt": "2025-11-26T02:52:20.972Z" } } }, @@ -5779,6 +5779,17 @@ "fr": { "updatedAt": "2025-11-26T01:17:16.600Z" } + }, + "b2941acc9defbd3d9c3b300b73704cac0dd2fb86b77e667eb6cde4d0fa6c5495": { + "es": { + "updatedAt": "2025-11-26T02:52:21.054Z" + }, + "fr": { + "updatedAt": "2025-11-26T02:52:21.054Z" + }, + "zh": { + "updatedAt": "2025-11-26T02:52:21.054Z" + } } }, "44c31b0e87eb3f5827bc84bcb16d57dfc76423a199c8e786dde38ca3a8827006": { @@ -5817,13 +5828,13 @@ }, "8eb623e940a3abc55e0cc140c54772a2a4b80f55ad501dc7ccd26ebad8a88170": { "es": { - "updatedAt": "2025-11-26T01:17:16.608Z" + "updatedAt": "2025-11-26T02:52:20.976Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.608Z" + "updatedAt": "2025-11-26T02:52:20.976Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.608Z" + "updatedAt": "2025-11-26T02:52:20.976Z" } } }, @@ -5876,39 +5887,39 @@ }, "acfaa578e31469bba912c816947b7f178d4832f82c00d05c3e244edd94887e39": { "es": { - "updatedAt": "2025-11-26T01:17:16.656Z" + "updatedAt": "2025-11-26T02:52:21.047Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.657Z" + "updatedAt": "2025-11-26T02:52:21.048Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.659Z" + "updatedAt": "2025-11-26T02:52:21.051Z" } } }, "d94f062276e8ad0d42732979d06ce717dd7311616fe48748e00dba55829e49e7": { "38383b08735a5cb0e05fd23251b27a3ee86198c1e15186670fc6283782cd16ac": { "fr": { - "updatedAt": "2025-11-26T01:17:16.648Z" + "updatedAt": "2025-11-26T02:52:21.009Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.649Z" + "updatedAt": "2025-11-26T02:52:21.009Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.648Z" + "updatedAt": "2025-11-26T02:52:21.009Z" } } }, "b75acb2803501aae1bc445e5c4671f7a1cb79a55d21e1658ded84494ddd40dd7": { "2d3ea0369c9e0a1cae4d532293d6570f21f57b514c73f999de5c56c3a56fa419": { "fr": { - "updatedAt": "2025-11-26T01:17:16.649Z" + "updatedAt": "2025-11-26T02:52:21.010Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.649Z" + "updatedAt": "2025-11-26T02:52:21.010Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.649Z" + "updatedAt": "2025-11-26T02:52:21.010Z" } } }, @@ -5937,13 +5948,13 @@ }, "70ae68e58bd169fcaad5883e12866d9623dd08aeda647b33d080900e63da30ae": { "zh": { - "updatedAt": "2025-11-26T01:17:16.625Z" + "updatedAt": "2025-11-26T02:52:20.994Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.612Z" + "updatedAt": "2025-11-26T02:52:20.979Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.620Z" + "updatedAt": "2025-11-26T02:52:20.989Z" } } }, @@ -5972,13 +5983,13 @@ }, "abd558ca5dff83fea0f652890cb390fbf5a7818d903e464a8407cbac75b6926b": { "fr": { - "updatedAt": "2025-11-26T01:17:16.627Z" + "updatedAt": "2025-11-26T02:52:20.996Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.628Z" + "updatedAt": "2025-11-26T02:52:20.997Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.632Z" + "updatedAt": "2025-11-26T02:52:21.004Z" } } }, @@ -5996,13 +6007,13 @@ }, "14c735b1f5d231158fc82ee047c2c33adf31bf94b27796f516f1287a5bcec0be": { "zh": { - "updatedAt": "2025-11-26T01:17:16.623Z" + "updatedAt": "2025-11-26T02:52:20.992Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.623Z" + "updatedAt": "2025-11-26T02:52:20.992Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.623Z" + "updatedAt": "2025-11-26T02:52:20.992Z" } } }, @@ -6031,13 +6042,13 @@ }, "6b0824d08f834f9a5d538b3b8632f9b239036b14491d42acebef6408dc7ec637": { "zh": { - "updatedAt": "2025-11-26T01:17:16.610Z" + "updatedAt": "2025-11-26T02:52:20.978Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.615Z" + "updatedAt": "2025-11-26T02:52:20.982Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.621Z" + "updatedAt": "2025-11-26T02:52:20.990Z" } } }, @@ -6066,13 +6077,13 @@ }, "69541fe204b62627117cad380d521083fbbbf9f2aa883d6f7c32d9483e435d8a": { "es": { - "updatedAt": "2025-11-26T01:17:16.615Z" + "updatedAt": "2025-11-26T02:52:20.983Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.618Z" + "updatedAt": "2025-11-26T02:52:20.987Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.620Z" + "updatedAt": "2025-11-26T02:52:20.988Z" } } }, @@ -6101,13 +6112,13 @@ }, "a9933108d32793185c40702c6218e974c4ccb76eabbe428ce3ea89856a73eaca": { "es": { - "updatedAt": "2025-11-26T01:17:16.629Z" + "updatedAt": "2025-11-26T02:52:20.998Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.631Z" + "updatedAt": "2025-11-26T02:52:21.003Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.632Z" + "updatedAt": "2025-11-26T02:52:21.004Z" } } }, @@ -6136,13 +6147,13 @@ }, "be04206c1c53f3a25f69fae280dd277b9bde36158b2e9b21967acc980f632e3e": { "es": { - "updatedAt": "2025-11-26T01:17:16.617Z" + "updatedAt": "2025-11-26T02:52:20.985Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.621Z" + "updatedAt": "2025-11-26T02:52:20.989Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.621Z" + "updatedAt": "2025-11-26T02:52:20.990Z" } } }, @@ -6171,13 +6182,13 @@ }, "072b9eebedb71c24eff9121c4c3df35b97b1ed50e4d085469528c9d2de05859f": { "es": { - "updatedAt": "2025-11-26T01:17:16.609Z" + "updatedAt": "2025-11-26T02:52:20.977Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.616Z" + "updatedAt": "2025-11-26T02:52:20.984Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.616Z" + "updatedAt": "2025-11-26T02:52:20.984Z" } } }, @@ -6206,13 +6217,13 @@ }, "60410e8de452c7da325a02a1b113b5f41efda66701da3ba2c1c778a5bfcf1c6b": { "fr": { - "updatedAt": "2025-11-26T01:17:16.609Z" + "updatedAt": "2025-11-26T02:52:20.976Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.610Z" + "updatedAt": "2025-11-26T02:52:20.978Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.611Z" + "updatedAt": "2025-11-26T02:52:20.979Z" } } }, @@ -6241,13 +6252,13 @@ }, "dde578357b2aa8dc9ec91b7416fd9f8749254ddcf457dc7de9da32aa6e56b9c8": { "es": { - "updatedAt": "2025-11-26T01:17:16.617Z" + "updatedAt": "2025-11-26T02:52:20.984Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.618Z" + "updatedAt": "2025-11-26T02:52:20.987Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.618Z" + "updatedAt": "2025-11-26T02:52:20.987Z" } } }, @@ -6276,13 +6287,13 @@ }, "d17d77e9a77034275d7299a408936de7d84a9217ba3d17dc5229aa6378688f5b": { "zh": { - "updatedAt": "2025-11-26T01:17:16.612Z" + "updatedAt": "2025-11-26T02:52:20.980Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.609Z" + "updatedAt": "2025-11-26T02:52:20.977Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.616Z" + "updatedAt": "2025-11-26T02:52:20.984Z" } } }, @@ -6311,13 +6322,13 @@ }, "ed94ad0529b64d45d1957c423606fe64b44d4d6e64b8c759f8c651e1eeeab6d2": { "es": { - "updatedAt": "2025-11-26T01:17:16.612Z" + "updatedAt": "2025-11-26T02:52:20.980Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.613Z" + "updatedAt": "2025-11-26T02:52:20.980Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.615Z" + "updatedAt": "2025-11-26T02:52:20.983Z" } } }, @@ -6346,13 +6357,13 @@ }, "61916a309506445f20e4979e2a04f18a825fc867a7af92e1e9f217840401ff61": { "es": { - "updatedAt": "2025-11-26T01:17:16.614Z" + "updatedAt": "2025-11-26T02:52:20.982Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.619Z" + "updatedAt": "2025-11-26T02:52:20.988Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.620Z" + "updatedAt": "2025-11-26T02:52:20.989Z" } } }, @@ -6381,13 +6392,13 @@ }, "2a73cd0326763c7348f44dc1cc2e1d20ce60a6c28804faf8200b562081183243": { "es": { - "updatedAt": "2025-11-26T01:17:16.613Z" + "updatedAt": "2025-11-26T02:52:20.981Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.614Z" + "updatedAt": "2025-11-26T02:52:20.982Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.617Z" + "updatedAt": "2025-11-26T02:52:20.985Z" } } }, @@ -6416,13 +6427,13 @@ }, "8868b228fc8a687b133035b70a0de2ce37b05bf402b2e01848c326ea1dea023f": { "fr": { - "updatedAt": "2025-11-26T01:17:16.611Z" + "updatedAt": "2025-11-26T02:52:20.979Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.612Z" + "updatedAt": "2025-11-26T02:52:20.980Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.620Z" + "updatedAt": "2025-11-26T02:52:20.989Z" } } }, @@ -6462,13 +6473,13 @@ }, "bfac87d61aea2f8e15396ac217d71bbe13d58d2b1fb4788051f80b104c12dcfb": { "fr": { - "updatedAt": "2025-11-26T01:17:16.646Z" + "updatedAt": "2025-11-26T02:52:21.006Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.646Z" + "updatedAt": "2025-11-26T02:52:21.007Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.647Z" + "updatedAt": "2025-11-26T02:52:21.007Z" } } }, @@ -6519,13 +6530,13 @@ }, "7f0d8cddadfdb2ca808b07fb66039922c5d030793314e3486f536b24db4343dc": { "es": { - "updatedAt": "2025-11-26T01:17:16.606Z" + "updatedAt": "2025-11-26T02:52:20.974Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.607Z" + "updatedAt": "2025-11-26T02:52:20.975Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.607Z" + "updatedAt": "2025-11-26T02:52:20.975Z" } } }, @@ -6565,13 +6576,13 @@ }, "b45bae404e19ce4bf3d7eef53d482ed6ef014f4e3fa1a95ce29fa233498d3100": { "zh": { - "updatedAt": "2025-11-26T01:17:16.662Z" + "updatedAt": "2025-11-26T02:52:21.055Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.662Z" + "updatedAt": "2025-11-26T02:52:21.056Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.663Z" + "updatedAt": "2025-11-26T02:52:21.056Z" } } }, @@ -6600,26 +6611,26 @@ }, "e5f66a275721a9cc17c973319dccecc1dac2ac8dee59f4ab039032125acac1a5": { "zh": { - "updatedAt": "2025-11-26T01:17:16.651Z" + "updatedAt": "2025-11-26T02:52:21.013Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.624Z" + "updatedAt": "2025-11-26T02:52:20.993Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.658Z" + "updatedAt": "2025-11-26T02:52:21.050Z" } } }, "9f010ac20bb43e57e5a7e4090f5201d7cb2a2c159a75dcd9dc8c8fec762bdb2f": { "ddf56b843c9eb02243bfeecfd91aaaa2ec31066e8332e46c84e6e2e13605c21f": { "es": { - "updatedAt": "2025-11-26T01:17:16.648Z" + "updatedAt": "2025-11-26T02:52:21.008Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.648Z" + "updatedAt": "2025-11-26T02:52:21.008Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.648Z" + "updatedAt": "2025-11-26T02:52:21.009Z" } } }, @@ -6696,13 +6707,13 @@ }, "ddeb7f2354190cbc31ab09c6f70e517fff11b85b0d95e50c7db0f94bb98f084b": { "zh": { - "updatedAt": "2025-11-26T01:17:16.631Z" + "updatedAt": "2025-11-26T02:52:21.002Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.631Z" + "updatedAt": "2025-11-26T02:52:21.003Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.645Z" + "updatedAt": "2025-11-26T02:52:21.005Z" } } }, @@ -6731,13 +6742,13 @@ }, "f07a3c65b544b1b6c3631e472056dfd51f9fbc79e28fe7073271fa963f1355a2": { "zh": { - "updatedAt": "2025-11-26T01:17:16.625Z" + "updatedAt": "2025-11-26T02:52:20.994Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.628Z" + "updatedAt": "2025-11-26T02:52:20.998Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.645Z" + "updatedAt": "2025-11-26T02:52:21.005Z" } } }, @@ -6766,13 +6777,13 @@ }, "9af3d645babdeca987fedca80aae0b76816b37e30bf3a25fc1db00ead3f1bca8": { "es": { - "updatedAt": "2025-11-26T01:17:16.624Z" + "updatedAt": "2025-11-26T02:52:20.993Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.651Z" + "updatedAt": "2025-11-26T02:52:21.012Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.652Z" + "updatedAt": "2025-11-26T02:52:21.014Z" } } }, @@ -6801,13 +6812,13 @@ }, "6958bd474f6a4553c34c8b0c0941dc296fda94522707820277c2a5d0c951d3d9": { "fr": { - "updatedAt": "2025-11-26T01:17:16.653Z" + "updatedAt": "2025-11-26T02:52:21.015Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.654Z" + "updatedAt": "2025-11-26T02:52:21.044Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.655Z" + "updatedAt": "2025-11-26T02:52:21.044Z" } } }, @@ -6836,13 +6847,13 @@ }, "9a8eb49e54fa21c3ff613191e3d1b289989902d0fa2e4ba51397002c40e93870": { "zh": { - "updatedAt": "2025-11-26T01:17:16.656Z" + "updatedAt": "2025-11-26T02:52:21.046Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.660Z" + "updatedAt": "2025-11-26T02:52:21.052Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.660Z" + "updatedAt": "2025-11-26T02:52:21.053Z" } } }, @@ -6871,13 +6882,13 @@ }, "1154edcbe3fdbda2eae42bc99ecc5bb63cae52c0474d507872da2f6dc8e7f297": { "fr": { - "updatedAt": "2025-11-26T01:17:16.658Z" + "updatedAt": "2025-11-26T02:52:21.049Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.655Z" + "updatedAt": "2025-11-26T02:52:21.045Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.659Z" + "updatedAt": "2025-11-26T02:52:21.052Z" } } }, @@ -6930,13 +6941,13 @@ }, "0ea9b1d6e66497b1210bfe5724c2f7510c6e6d56377ada39d875c6fcfe0f87c8": { "zh": { - "updatedAt": "2025-11-26T01:17:16.657Z" + "updatedAt": "2025-11-26T02:52:21.047Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.658Z" + "updatedAt": "2025-11-26T02:52:21.049Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.660Z" + "updatedAt": "2025-11-26T02:52:21.052Z" } } }, @@ -6954,13 +6965,13 @@ }, "a4977444f0f815bce050c7b0c40b95d2b90dad17b3590fe6a21f53bc81615877": { "fr": { - "updatedAt": "2025-11-26T01:17:16.625Z" + "updatedAt": "2025-11-26T02:52:20.994Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.628Z" + "updatedAt": "2025-11-26T02:52:20.997Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.631Z" + "updatedAt": "2025-11-26T02:52:21.003Z" } } }, @@ -6978,13 +6989,13 @@ }, "431c7d877cd968680654f3ba3199018c65f3067f181556f6c17cb6fc23a09b95": { "es": { - "updatedAt": "2025-11-26T01:17:16.627Z" + "updatedAt": "2025-11-26T02:52:20.997Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.630Z" + "updatedAt": "2025-11-26T02:52:20.999Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.630Z" + "updatedAt": "2025-11-26T02:52:21.002Z" } } }, @@ -7002,13 +7013,13 @@ }, "6271866faf9d02d817186ae34b2d3eab2cf36cf06b76aef6099a4b150a1b7a29": { "fr": { - "updatedAt": "2025-11-26T01:17:16.630Z" + "updatedAt": "2025-11-26T02:52:20.999Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.631Z" + "updatedAt": "2025-11-26T02:52:21.002Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.632Z" + "updatedAt": "2025-11-26T02:52:21.003Z" } } }, @@ -7026,13 +7037,13 @@ }, "2b5cfbd867ca905528ea813143cb7cd4d779ff3e6af7fc85478477cde375d7b4": { "es": { - "updatedAt": "2025-11-26T01:17:16.626Z" + "updatedAt": "2025-11-26T02:52:20.995Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.626Z" + "updatedAt": "2025-11-26T02:52:20.995Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.629Z" + "updatedAt": "2025-11-26T02:52:20.998Z" } } }, @@ -7050,13 +7061,13 @@ }, "81dc63a56ed47eb6d5074a9077653870c724bb93134e76ca204752ffda496a52": { "fr": { - "updatedAt": "2025-11-26T01:17:16.626Z" + "updatedAt": "2025-11-26T02:52:20.995Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.627Z" + "updatedAt": "2025-11-26T02:52:20.996Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.632Z" + "updatedAt": "2025-11-26T02:52:21.004Z" } } }, @@ -7074,13 +7085,13 @@ }, "12bcbe0047512bda33bb98c07f650993bb355469a42885552917c1f1369c09a6": { "fr": { - "updatedAt": "2025-11-26T01:17:16.626Z" + "updatedAt": "2025-11-26T02:52:20.995Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.629Z" + "updatedAt": "2025-11-26T02:52:20.998Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.630Z" + "updatedAt": "2025-11-26T02:52:20.999Z" } } }, @@ -7109,26 +7120,26 @@ }, "03347655354b5e353b408c7a4beb3218145489a16062547e3b6ae4ca52dab02f": { "zh": { - "updatedAt": "2025-11-26T01:17:16.627Z" + "updatedAt": "2025-11-26T02:52:20.996Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.629Z" + "updatedAt": "2025-11-26T02:52:20.998Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.629Z" + "updatedAt": "2025-11-26T02:52:20.999Z" } } }, "dc269fa38a9f70dcc0dcdd446172ce680441082b0cba035e0d7d22453651fb4c": { "841108bbf6e1733b36d68418b8096f6505ae3769ebe6bb0939b9862f7ee905ae": { "es": { - "updatedAt": "2025-11-26T01:17:16.649Z" + "updatedAt": "2025-11-26T02:52:21.011Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.650Z" + "updatedAt": "2025-11-26T02:52:21.011Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.650Z" + "updatedAt": "2025-11-26T02:52:21.011Z" } } }, @@ -7157,13 +7168,13 @@ }, "1a8ae0e522de475d50ceb2c3d930ab75e0a9c7cb448a33d5a9aafaa5717b2770": { "zh": { - "updatedAt": "2025-11-26T01:17:16.566Z" + "updatedAt": "2025-11-26T02:52:20.934Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.569Z" + "updatedAt": "2025-11-26T02:52:20.937Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.582Z" + "updatedAt": "2025-11-26T02:52:20.949Z" } } }, @@ -7203,13 +7214,13 @@ }, "eaf3b675306027bf04595dca52e74dd1614edc320fafff007530df01cbb22259": { "zh": { - "updatedAt": "2025-11-26T01:17:16.663Z" + "updatedAt": "2025-11-26T02:52:21.057Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.664Z" + "updatedAt": "2025-11-26T02:52:21.057Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.664Z" + "updatedAt": "2025-11-26T02:52:21.058Z" } } }, @@ -7238,13 +7249,13 @@ }, "df2826252d76bef142551e69ee162b565fd37e0e63cdd9159fb925f1f911f524": { "es": { - "updatedAt": "2025-11-26T01:17:16.650Z" + "updatedAt": "2025-11-26T02:52:21.012Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.654Z" + "updatedAt": "2025-11-26T02:52:21.043Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.655Z" + "updatedAt": "2025-11-26T02:52:21.045Z" } } }, @@ -7273,13 +7284,13 @@ }, "3db39b6f8aead15f7b8dbe6824e173913fabaf7b510406e0124e1b2be61ca3de": { "fr": { - "updatedAt": "2025-11-26T01:17:16.653Z" + "updatedAt": "2025-11-26T02:52:21.043Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.655Z" + "updatedAt": "2025-11-26T02:52:21.046Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.657Z" + "updatedAt": "2025-11-26T02:52:21.048Z" } } }, @@ -7308,13 +7319,13 @@ }, "4bc387e1ff76fddd88238476d65b74ade4cc2f449ce36eb3bc8b85f770c3f490": { "es": { - "updatedAt": "2025-11-26T01:17:16.652Z" + "updatedAt": "2025-11-26T02:52:21.014Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.652Z" + "updatedAt": "2025-11-26T02:52:21.015Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.652Z" + "updatedAt": "2025-11-26T02:52:21.015Z" } } }, @@ -7354,13 +7365,13 @@ }, "2e6a80a1a0b8e8424f493d4c864eb475de15f72d6014090c74d48ecd2104428c": { "zh": { - "updatedAt": "2025-11-26T01:17:16.663Z" + "updatedAt": "2025-11-26T02:52:21.056Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.663Z" + "updatedAt": "2025-11-26T02:52:21.056Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.663Z" + "updatedAt": "2025-11-26T02:52:21.057Z" } } }, @@ -7389,13 +7400,13 @@ }, "62faf6816da4cc899a87cf65d8cdedfb2984c52d91929ff74e1ff826d2f3edf2": { "fr": { - "updatedAt": "2025-11-26T01:17:16.651Z" + "updatedAt": "2025-11-26T02:52:21.012Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.655Z" + "updatedAt": "2025-11-26T02:52:21.045Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.660Z" + "updatedAt": "2025-11-26T02:52:21.053Z" } } }, @@ -7424,13 +7435,13 @@ }, "ec813e998591f0d4114ebde9d66a49f01a39db4bc9c058a1340c41d38731a456": { "fr": { - "updatedAt": "2025-11-26T01:17:16.650Z" + "updatedAt": "2025-11-26T02:52:21.011Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.659Z" + "updatedAt": "2025-11-26T02:52:21.050Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.656Z" + "updatedAt": "2025-11-26T02:52:21.046Z" } } }, @@ -7470,13 +7481,13 @@ }, "725c514c7f51a988e1a1f21ba6c44e514520aa57b3b2f7ba21b45751dcfac18d": { "es": { - "updatedAt": "2025-11-26T01:17:16.662Z" + "updatedAt": "2025-11-26T02:52:21.055Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.662Z" + "updatedAt": "2025-11-26T02:52:21.055Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.662Z" + "updatedAt": "2025-11-26T02:52:21.055Z" } } }, @@ -7505,13 +7516,13 @@ }, "02a3f8a9c2b7bed0ca12b135d6610f9dd0567e2045b9486068c3fcc46e5e7b9f": { "fr": { - "updatedAt": "2025-11-26T01:17:16.624Z" + "updatedAt": "2025-11-26T02:52:20.993Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.651Z" + "updatedAt": "2025-11-26T02:52:21.013Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.653Z" + "updatedAt": "2025-11-26T02:52:21.042Z" } } }, @@ -7562,13 +7573,13 @@ }, "6c9af69e973b5a013910ef259a5a71e1aae045fac921a68550ae739aa1e0aaed": { "fr": { - "updatedAt": "2025-11-26T01:17:16.651Z" + "updatedAt": "2025-11-26T02:52:21.013Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.656Z" + "updatedAt": "2025-11-26T02:52:21.047Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.658Z" + "updatedAt": "2025-11-26T02:52:21.049Z" } } }, @@ -7597,13 +7608,13 @@ }, "da2fe203fd6263e2f728a6d0927c4acfae11b86bb47b86a53209988c7f12a9b8": { "fr": { - "updatedAt": "2025-11-26T01:17:16.653Z" + "updatedAt": "2025-11-26T02:52:21.042Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.654Z" + "updatedAt": "2025-11-26T02:52:21.044Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.660Z" + "updatedAt": "2025-11-26T02:52:21.053Z" } } }, @@ -7632,13 +7643,13 @@ }, "d6087277997107007f0e8bb1fa131196a7db7e155e4fff201da51c38c12cdea4": { "es": { - "updatedAt": "2025-11-26T01:17:16.654Z" + "updatedAt": "2025-11-26T02:52:21.043Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.659Z" + "updatedAt": "2025-11-26T02:52:21.051Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.659Z" + "updatedAt": "2025-11-26T02:52:21.051Z" } } }, @@ -7667,13 +7678,13 @@ }, "83bea4f26ff686307b770bfaca74faddccd854e05ce6462eefc4c2832e6d3813": { "zh": { - "updatedAt": "2025-11-26T01:17:16.586Z" + "updatedAt": "2025-11-26T02:52:20.958Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.587Z" + "updatedAt": "2025-11-26T02:52:20.959Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.601Z" + "updatedAt": "2025-11-26T02:52:20.969Z" } } }, @@ -7702,13 +7713,13 @@ }, "b72d2b9d9ef504cbfecd6422d202a23f54cb213b4a6c7fbe372d2fe6c315757d": { "fr": { - "updatedAt": "2025-11-26T01:17:16.628Z" + "updatedAt": "2025-11-26T02:52:20.997Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.633Z" + "updatedAt": "2025-11-26T02:52:21.005Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.633Z" + "updatedAt": "2025-11-26T02:52:21.004Z" } } }, @@ -7726,65 +7737,65 @@ }, "63edc9f8eced556d538a11fa6698380e9a743ce1de62b85c73cccb6a91d3af3e": { "fr": { - "updatedAt": "2025-11-26T01:17:16.569Z" + "updatedAt": "2025-11-26T02:52:20.937Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.573Z" + "updatedAt": "2025-11-26T02:52:20.941Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.571Z" + "updatedAt": "2025-11-26T02:52:20.940Z" } } }, "39825e960dc329e7e701846853ea8b2c69eccee5c036c82edfdf9a06020a9fbb": { "c2e28964d6bf27dad509a1169a25e67dcb784e72bd2b52b810d9fba2f2c5a82b": { "zh": { - "updatedAt": "2025-11-26T01:17:16.556Z" + "updatedAt": "2025-11-26T02:52:20.919Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.556Z" + "updatedAt": "2025-11-26T02:52:20.919Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.556Z" + "updatedAt": "2025-11-26T02:52:20.919Z" } } }, "5ee2c22c5f816bd2e9ccb18534d94c7d2d0d1fd48d15aea7d344871cc05d6b5d": { "ab26030a2677e7aee15a1962ed36cc8690f9395c1234a20e05071c72dccaff07": { "es": { - "updatedAt": "2025-11-26T01:17:16.558Z" + "updatedAt": "2025-11-26T02:52:20.921Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.558Z" + "updatedAt": "2025-11-26T02:52:20.921Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.560Z" + "updatedAt": "2025-11-26T02:52:20.923Z" } } }, "fd46ee9a7c4d77ed4c1a2b9efb3f8f7f2964363b03115970bf43dd58e197f08c": { "935322d7360b64d9326d5f92a1858bc47136cff17d63784a0d3cd82ba099c65a": { "zh": { - "updatedAt": "2025-11-26T01:17:16.506Z" + "updatedAt": "2025-11-26T02:52:20.897Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.509Z" + "updatedAt": "2025-11-26T02:52:20.899Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.510Z" + "updatedAt": "2025-11-26T02:52:20.899Z" } } }, "ae682ad0c390ee5d2a787779b0781d8ba9aa7e9facf958bd2d07b2d1e6a5a8fd": { "014f00ea40cd4b853d8f1d7402a3b61cd123492b45eaa0e06f5415df5b236234": { "es": { - "updatedAt": "2025-11-26T01:17:16.560Z" + "updatedAt": "2025-11-26T02:52:20.923Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.561Z" + "updatedAt": "2025-11-26T02:52:20.924Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.562Z" + "updatedAt": "2025-11-26T02:52:20.929Z" } } }, @@ -7802,52 +7813,52 @@ }, "6f7ef54468b886002503e049fe014aeecf19dbca85d972b5cc1aeb4f5cbcd259": { "zh": { - "updatedAt": "2025-11-26T01:17:16.585Z" + "updatedAt": "2025-11-26T02:52:20.952Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.585Z" + "updatedAt": "2025-11-26T02:52:20.953Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.585Z" + "updatedAt": "2025-11-26T02:52:20.953Z" } } }, "be5e892f6c4f67bd81fe0cb2eb2c6926b3e1aed86319263030ba6de5aef81643": { "2d45a98943adcf6323d8b9bd963e1a68b9c6d584fe97c7f01e9a6f37e4268f9c": { "zh": { - "updatedAt": "2025-11-26T01:17:16.622Z" + "updatedAt": "2025-11-26T02:52:20.991Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.622Z" + "updatedAt": "2025-11-26T02:52:20.991Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.623Z" + "updatedAt": "2025-11-26T02:52:20.992Z" } } }, "77ea8b1235af73346c74a76d9c806e3bb004764d3a0d8aa467b0cd38785523c1": { "11572668be0bfa5784f337f06ff8b84bd549b35ba8986840db7e54a31ffd864f": { "zh": { - "updatedAt": "2025-11-26T01:17:16.605Z" + "updatedAt": "2025-11-26T02:52:20.973Z" }, "fr": { - "updatedAt": "2025-11-26T01:17:16.605Z" + "updatedAt": "2025-11-26T02:52:20.973Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.605Z" + "updatedAt": "2025-11-26T02:52:20.973Z" } } }, "855860e7e2c378e03eeadd8be43d2e9195684a4803997d926d976b0ca4a456f3": { "c8947be6ab36b3f78b0e6b92140f2cbbf957e4dda05b552df8d7a165e6c3943f": { "fr": { - "updatedAt": "2025-11-26T01:17:16.557Z" + "updatedAt": "2025-11-26T02:52:20.920Z" }, "es": { - "updatedAt": "2025-11-26T01:17:16.557Z" + "updatedAt": "2025-11-26T02:52:20.920Z" }, "zh": { - "updatedAt": "2025-11-26T01:17:16.557Z" + "updatedAt": "2025-11-26T02:52:20.920Z" } } } diff --git a/zh/deploy/ci.mdx b/zh/deploy/ci.mdx index 004474c2e..622c3ed0a 100644 --- a/zh/deploy/ci.mdx +++ b/zh/deploy/ci.mdx @@ -45,7 +45,7 @@ keywords: ["continuous integration", "CI/CD", "checks", "Vale", "linter"] ### Vale -[Vale](https://vale.sh/) 是一款开源的规则驱动型文本风格检查器,支持包括 Markdown 和 MDX 在内的多种文档类型。 +[Vale](https://vale.sh/) 是一款开源的、基于规则的文本风格检查工具(prose linter),支持多种文档类型,包括 Markdown 和 MDX。使用 Vale 可以检查文档中的写作风格和语气是否一致。 Mintlify 支持在 CI 检查中自动运行 Vale,并将结果显示为检查状态。 @@ -53,29 +53,30 @@ Mintlify 支持在 CI 检查中自动运行 Vale,并将结果显示为检查 #### 配置 -如果在你的部署的根 content 目录下有 `.vale.ini` 文件,Vale CI 检查将使用该配置文件,以及你在 `stylesPath` 中指定的任何其他配置文件。 +如果在你的部署的内容根目录中有一个 `.vale.ini` 文件,那么 Vale CI 检查会使用该配置文件以及你在 `stylesPath` 中指定的任何配置文件。 -如果没有 Vale 配置文件,则会自动加载默认配置。 +如果你没有 Vale 配置文件,则会自动加载默认配置。 ```mdx Default vale.ini configuration expandable # 顶层样式 StylesPath = /app/styles MinAlertLevel = suggestion +# 要忽略的内联 HTML 标签(code/tt 用于代码片段,img/url 用于链接/图像,a 用于锚标签) IgnoredScopes = code, tt, img, url, a -SkippedScopes = script, style, pre, figure, code +SkippedScopes = script, style, pre, figure # 词汇表 Vocab = Mintlify -# 由于 Vale 官方不支持 MDX,此配置为必填项 -[formats] -mdx = md +# 包 +Packages = MDX -# MDX 支持 +# 仅匹配 MDX [*.mdx] BasedOnStyles = Vale -Vale.Terms = NO # 强制执行严格的大写规则,建议保持关闭 +Vale.Terms = NO # 强制执行非常严格的大写规则,保持关闭状态 +# 忽略 JSX/MDX 特定语法模式 # `import ...`, `export ...` # `` # `...` @@ -84,26 +85,26 @@ TokenIgnores = (?sm)((?:import|export) .+?$), \ (?)(?!`), \ (<[A-Z]\w+>.+?<\/[A-Z]\w+>) -# 排除: +# 排除多行 JSX 和花括号 # `` BlockIgnores = (?sm)^(<\w+\n .*\s\/>)$, \ (?sm)^({.+.*}) - -CommentDelimiters = {/*, */} ``` +默认的 Vale 词汇列表包含以下词汇。 + ```text Default Vale vocabulary expandable Mintlify mintlify VSCode openapi OpenAPI -Github -APIs +GitHub +API -repo +仓库 npm -dev +开发 Lorem ipsum @@ -124,14 +125,14 @@ ModeToggle isHidden autoplay -_italic_ -Strikethrough -Blockquotes -Blockquote -Singleline -Multiline +_斜体_ +删除线 +块引用 +块引用 +单行 +多行 -onboarding +入门引导 async await @@ -165,8 +166,8 @@ jwt oauth websocket localhost -middleware -runtime +中间件 +运行时 webhook stdin stdout @@ -353,73 +354,76 @@ tmp val vars -todo +待办 href lang nav -prev -next -toc +上一页 +下一页 +目录 ``` +要在默认配置中添加你自己的词表,请创建一个 `styles/config/vocabularies/Mintlify` 目录,并在其中添加 `accept.txt` 和 `reject.txt` 文件。 + +* `accept.txt`: 应由 Vale linter 忽略的词语,例如产品名称或不常见的术语。 +* `reject.txt`: 应被标记为错误的词语,例如与你文档语气不相符的行话或用词。 + ```text Example Vale file structure - - docs.json - - .vale.ini - - styles/... - - text.md +/your-project + |- docs.json + |- .vale.ini + |- styles/ + |- config/ + |- vocabularies/ + |- Mintlify/ + |- accept.txt + |- reject.txt + |- example-page.mdx ``` ```text Example monorepo Vale file structure - - main.ts - - docs/ - - docs.json - - .vale.ini - - styles/... - - text.md - - test/ +/your-monorepo + |- main.ts + |- docs/ + |- docs.json + |- .vale.ini + |- styles/ + |- config/ + |- vocabularies/ + |- Mintlify/ + |- accept.txt + |- reject.txt + |- example-page.mdx + |- test/ ``` - 请注意,出于安全原因,不支持绝对路径的 `stylesPath`,或包含 `..` 的 `stylesPath`。请使用相对路径,并将该 `stylesPath` 提交到你的存储库中。 + 出于安全原因,不支持使用绝对路径形式的 `stylesPath`,也不支持包含 `..` 的 `stylesPath`。 + + 请使用相对路径,并在你的存储库中包含该 `stylesPath`。
- #### 包 + #### 软件包
-Vale 支持一系列[包](https://vale.sh/docs/keys/packages),可用于检查拼写和写作风格错误。 -任何你在存储库中按正确的 `stylesPath` 添加的包,都会在你的 Vale 配置中自动安装并使用。 +Vale 支持一系列[软件包](https://vale.sh/docs/keys/packages),可用于检查拼写和写作风格错误。任何你在存储库中放在正确 `stylesPath` 下的软件包,都会被自动安装并在你的 Vale 配置中使用。 -对于未包含在存储库中的包,你可以从 [Vale package registry](https://vale.sh/explorer) 指定任意包,它们会自动下载并在你的 Vale 配置中使用。 +对于未包含在存储库中的软件包,你可以指定来自 [Vale package registry](https://vale.sh/explorer) 的任意软件包,它们会被自动下载并在你的 Vale 配置中使用。 - 请注意,出于安全考虑,不支持自动下载不来自 [Vale package registry](https://vale.sh/explorer) 的包。 + 出于安全原因,**不**支持自动下载不来自 [Vale package registry](https://vale.sh/explorer) 的软件包。
- #### 在 `MDX` 中使用 Vale + #### 将 Vale 与 `MDX` 搭配使用
-Vale 并不原生支持 `MDX`,但其作者提供了一个[自定义扩展](https://github.com/errata-ai/MDX)以实现支持。 - -如果你不想使用该扩展,可以在已配置的 `.vale.ini` 文件中添加以下内容: - -```ini -[formats] -mdx = md - -[*.mdx] -CommentDelimiters = {/*, */} - -TokenIgnores = (?sm)((?:import|export) .+?$), \ -(?)(?!`), \ -(<[A-Z]\w+>.+?<\/[A-Z]\w+>) - -BlockIgnores = (?sm)^(<\w+\n .*\s\/>)$, \ -(?sm)^({.+.*}) -``` + + 对 MDX 的原生支持需要 Vale 3.10.0 或更高版本。使用 `vale --version` 来检查你的 Vale 版本。 + -要在文档中使用 Vale 的文内注释,请采用 MDX 风格的注释 `{/* ... */}`。如果你在配置中启用 `CommentDelimiters = {/*, */}` [设置](https://vale.sh/docs/keys/commentdelimiters),Vale 会在检查时自动识别这些注释。这样你就可以轻松使用 Vale 的内置功能,例如跳过指定的行或段落。 +要在 MDX 文件中使用 Vale 的文内注释,请使用 MDX 风格的注释 `{/* ... */}`: ```mdx {/* vale off */} @@ -429,14 +433,4 @@ BlockIgnores = (?sm)^(<\w+\n .*\s\/>)$, \ {/* vale on */} ``` -如果你不使用 `CommentDelimiters`,但仍要使用 Vale 的注释,则必须将所有 Vale 注释包裹在 MDX 注释 `{/* ... */}` 中。例如: - -```mdx -{/* */} - -此文本将被 Vale 忽略 - -{/* */} -``` - -这些注释标签在 Mintlify 组件内不受支持,但在文档的顶层任意位置都能正常工作。 +Vale 会在 MDX 文件中自动识别并遵守这些注释,无需额外配置。使用注释来跳过需要被 linter 忽略的行或片段。