From 9cac4cc8f8654bc967fa3e6dc41e6736f93f0b12 Mon Sep 17 00:00:00 2001 From: SBsudo Date: Wed, 14 Aug 2024 11:04:31 -0400 Subject: [PATCH] Content - Other -> page_group -> _data/i18n.yml (#2366) --- _data/i18n.yml | 2 + wet-boew/equalheight/index.json-ld | 68 ++++++++++++++++++++++++++++ wet-boew/filter/index.json-ld | 46 +++++++++++++++++++ wet-boew/lightbox/index.json-ld | 46 +++++++++++++++++++ wet-boew/stepsform/index.json-ld | 46 +++++++++++++++++++ wet-boew/tabs/index.json-ld | 56 +++++++++++++++++++++++ wet-boew/texthighlight/index.json-ld | 46 +++++++++++++++++++ wet-boew/twitter/index.json-ld | 46 +++++++++++++++++++ wet-boew/wb-randomize/index.json-ld | 46 +++++++++++++++++++ 9 files changed, 402 insertions(+) create mode 100644 wet-boew/equalheight/index.json-ld create mode 100644 wet-boew/filter/index.json-ld create mode 100644 wet-boew/lightbox/index.json-ld create mode 100644 wet-boew/stepsform/index.json-ld create mode 100644 wet-boew/tabs/index.json-ld create mode 100644 wet-boew/texthighlight/index.json-ld create mode 100644 wet-boew/twitter/index.json-ld create mode 100644 wet-boew/wb-randomize/index.json-ld diff --git a/_data/i18n.yml b/_data/i18n.yml index 0d7f6b3f82..e94453832d 100644 --- a/_data/i18n.yml +++ b/_data/i18n.yml @@ -8,6 +8,7 @@ page_group: spec: Specification test: Tests pages reports: Reports + other: Other fr: examples: Exemples docs: Documentations @@ -16,6 +17,7 @@ page_group: impl-ref: Référence d'implémentation spec: Spécification reports: Rapports + other: Autre # Status de component component_status: diff --git a/wet-boew/equalheight/index.json-ld b/wet-boew/equalheight/index.json-ld new file mode 100644 index 0000000000..f218239db8 --- /dev/null +++ b/wet-boew/equalheight/index.json-ld @@ -0,0 +1,68 @@ +{ + "@context": { + "@version": 1.1, + "dct": "http://purl.org/dc/terms/", + "title": { "@id": "dct:title", "@container": "@language" }, + "description": { "@id": "dct:description", "@container": "@language" }, + "modified": "dct:modified" + }, + "title": { + "en": "Equal height", + "fr": "Égalisation des hauteurs" + }, + "description": { + "en": "Equalises the height of elements that are on the same baseline", + "fr": "Égalise la hauteur d'éléments étant sur la même ligne de base" + }, + "modified": "2024-07-10", + "componentName": "equalheight", + "status": "stable", + "pages": { + "examples": [ + { + "title": "Equal height (pure CSS)", + "language": "en", + "url": "https://wet-boew.github.io/gcweb-compiled-demos/wetboew-demos/eqht-css/eqht-css-en.html" + }, + { + "title": "Égalisation des hauteurs (pure CSS)", + "language": "fr", + "url": "https://wet-boew.github.io/gcweb-compiled-demos/wetboew-demos/eqht-css/eqht-css-fr.html" + }, + { + "title": "Equal height", + "language": "en", + "url": "https://wet-boew.github.io/gcweb-compiled-demos/wetboew-demos/equalheight/equalheight-en.html" + }, + { + "title": "Égalisation des hauteurs", + "language": "fr", + "url": "https://wet-boew.github.io/gcweb-compiled-demos/wetboew-demos/equalheight/equalheight-fr.html" + } + ], + "docs": [ + { + "title": "Equal height", + "language": "en", + "url": "https://wet-boew.github.io/wet-boew/docs/ref/equalheight/equalheight-en.html" + }, + { + "title": "Égalisation des hauteurs", + "language": "fr", + "url": "https://wet-boew.github.io/wet-boew/docs/ref/equalheight/equalheight-fr.html" + } + ], + "other": [ + { + "title": "Equal height (pure CSS)", + "language": "en", + "url": "https://wet-boew.github.io/wet-boew/docs/ref/eqht-css/eqht-css-en.html" + }, + { + "title": "Égalisation des hauteurs (pure CSS)", + "language": "fr", + "url": "https://wet-boew.github.io/wet-boew/docs/ref/eqht-css/eqht-css-fr.html" + } + ] + } +} diff --git a/wet-boew/filter/index.json-ld b/wet-boew/filter/index.json-ld new file mode 100644 index 0000000000..ad427b028c --- /dev/null +++ b/wet-boew/filter/index.json-ld @@ -0,0 +1,46 @@ +{ + "@context": { + "@version": 1.1, + "dct": "http://purl.org/dc/terms/", + "title": { "@id": "dct:title", "@container": "@language" }, + "description": { "@id": "dct:description", "@container": "@language" }, + "modified": "dct:modified" + }, + "title": { + "en": "Filter", + "fr": "Filtre" + }, + "description": { + "en": "Filters through content and only show content that match a certain keyword", + "fr": "Filtre le contenu et affiche uniquement le contenu correspondant à un mot-clé spécifique" + }, + "modified": "2024-05-17", + "componentName": "filter", + "status": "stable", + "pages": { + "examples": [ + { + "title": "Filter", + "language": "en", + "url": "https://wet-boew.github.io/gcweb-compiled-demos/wetboew-demos/filter/filter-en.html" + }, + { + "title": "Filtre", + "language": "fr", + "url": "https://wet-boew.github.io/gcweb-compiled-demos/wetboew-demos/filter/filter-fr.html" + } + ], + "docs": [ + { + "title": "Filter", + "language": "en", + "url": "https://wet-boew.github.io/wet-boew/docs/ref/filter/filter-en.html" + }, + { + "title": "Filtre", + "language": "fr", + "url": "https://wet-boew.github.io/wet-boew/docs/ref/filter/filter-fr.html" + } + ] + } +} diff --git a/wet-boew/lightbox/index.json-ld b/wet-boew/lightbox/index.json-ld new file mode 100644 index 0000000000..1cd33f7688 --- /dev/null +++ b/wet-boew/lightbox/index.json-ld @@ -0,0 +1,46 @@ +{ + "@context": { + "@version": 1.1, + "dct": "http://purl.org/dc/terms/", + "title": { "@id": "dct:title", "@container": "@language" }, + "description": { "@id": "dct:description", "@container": "@language" }, + "modified": "dct:modified" + }, + "title": { + "en": "Lightbox", + "fr": "Lightbox" + }, + "description": { + "en": "Display images and other content in a dialog box, either individually or as part of a gallery. Implements the WAI-ARIA Dialog (Modal) design pattern", + "fr": "Afficher des images et d'autres contenus dans une boîte de dialogue, soit individuellement ou comme partie d'une galerie. Implémente le modèle de conception WAI-ARIA Dialog (Modal)" + }, + "modified": "2024-05-17", + "componentName": "lightbox", + "status": "stable", + "pages": { + "examples": [ + { + "title": "Lightbox", + "language": "en", + "url": "https://wet-boew.github.io/gcweb-compiled-demos/wetboew-demos/lightbox/lightbox-en.html" + }, + { + "title": "Lightbox", + "language": "fr", + "url": "https://wet-boew.github.io/gcweb-compiled-demos/wetboew-demos/lightbox/lightbox-fr.html" + } + ], + "docs": [ + { + "title": "Lightbox", + "language": "en", + "url": "https://wet-boew.github.io/wet-boew/docs/ref/lightbox/lightbox-en.html" + }, + { + "title": "Lightbox", + "language": "fr", + "url": "https://wet-boew.github.io/wet-boew/docs/ref/lightbox/lightbox-fr.html" + } + ] + } +} diff --git a/wet-boew/stepsform/index.json-ld b/wet-boew/stepsform/index.json-ld new file mode 100644 index 0000000000..4044d3003f --- /dev/null +++ b/wet-boew/stepsform/index.json-ld @@ -0,0 +1,46 @@ +{ + "@context": { + "@version": 1.1, + "dct": "http://purl.org/dc/terms/", + "title": { "@id": "dct:title", "@container": "@language" }, + "description": { "@id": "dct:description", "@container": "@language" }, + "modified": "dct:modified" + }, + "title": { + "en": "Steps Form", + "fr": "Formulaire à étapes" + }, + "description": { + "en": "This component provides the ability to break a form into steps", + "fr": "Offre la possibilité de diviser un formulaire en différentes étapes (sans ou avec validation de formulaire)" + }, + "modified": "2024-05-17", + "componentName": "stepsform", + "status": "provisional", + "pages": { + "examples": [ + { + "title": "Steps Form", + "language": "en", + "url": "https://wet-boew.github.io/gcweb-compiled-demos/wetboew-demos/stepsform/stepsform-en.html" + }, + { + "title": "Formulaire à étapes", + "language": "fr", + "url": "https://wet-boew.github.io/gcweb-compiled-demos/wetboew-demos/stepsform/stepsform-fr.html" + } + ], + "docs": [ + { + "title": "Steps Form", + "language": "en", + "url": "https://wet-boew.github.io/wet-boew/docs/ref/stepsform/stepsform-en.html" + }, + { + "title": "Formulaire à étapes", + "language": "fr", + "url": "https://wet-boew.github.io/wet-boew/docs/ref/stepsform/stepsform-fr.html" + } + ] + } +} diff --git a/wet-boew/tabs/index.json-ld b/wet-boew/tabs/index.json-ld new file mode 100644 index 0000000000..d14df9fb52 --- /dev/null +++ b/wet-boew/tabs/index.json-ld @@ -0,0 +1,56 @@ +{ + "@context": { + "@version": 1.1, + "dct": "http://purl.org/dc/terms/", + "title": { "@id": "dct:title", "@container": "@language" }, + "description": { "@id": "dct:description", "@container": "@language" }, + "modified": "dct:modified" + }, + "title": { + "en": "Tabbed Interface", + "fr": "Interface à onglets" + }, + "description": { + "en": "Dynamically stacks multiple sections of content, transforming them into a tabbed interface", + "fr": "Empile dynamiquement plusieurs sections de contenu, les transformant en une interface à onglets" + }, + "modified": "2024-05-17", + "componentName": "tabs", + "status": "stable", + "pages": { + "examples": [ + { + "title": "Tabbed Interface", + "language": "en", + "url": "https://wet-boew.github.io/gcweb-compiled-demos/wetboew-demos/tabs/tabs-en.html" + }, + { + "title": "Interface à onglets", + "language": "fr", + "url": "https://wet-boew.github.io/gcweb-compiled-demos/wetboew-demos/tabs/tabs-fr.html" + }, + { + "title": "Tabbed Interface - Carousel", + "language": "en", + "url": "https://wet-boew.github.io/gcweb-compiled-demos/wetboew-demos/tabs/tabs-carousel-en.html" + }, + { + "title": "Interface à onglets - Carrousel", + "language": "fr", + "url": "https://wet-boew.github.io/gcweb-compiled-demos/wetboew-demos/tabs/tabs-carousel-fr.html" + } + ], + "docs": [ + { + "title": "Tabbed Interface", + "language": "en", + "url": "https://wet-boew.github.io/wet-boew/docs/ref/tabs/tabs-en.html" + }, + { + "title": "Interface à onglets", + "language": "fr", + "url": "https://wet-boew.github.io/wet-boew/docs/ref/tabs/tabs-fr.html" + } + ] + } +} diff --git a/wet-boew/texthighlight/index.json-ld b/wet-boew/texthighlight/index.json-ld new file mode 100644 index 0000000000..5e736604f7 --- /dev/null +++ b/wet-boew/texthighlight/index.json-ld @@ -0,0 +1,46 @@ +{ + "@context": { + "@version": 1.1, + "dct": "http://purl.org/dc/terms/", + "title": { "@id": "dct:title", "@container": "@language" }, + "description": { "@id": "dct:description", "@container": "@language" }, + "modified": "dct:modified" + }, + "title": { + "en": "Text highlighting", + "fr": "Mise en surbrillance de texte" + }, + "description": { + "en": "Highlights any text within a pre-defined area that matches case-insensitive search criteria", + "fr": "Met en surbrillance n'importe quel texte dans un secteur pré-défini qui satisfait des critères de recherche" + }, + "modified": "2024-05-17", + "componentName": "texthighlight", + "status": "stable", + "pages": { + "examples": [ + { + "title": "Text highlighting", + "language": "en", + "url": "https://wet-boew.github.io/gcweb-compiled-demos/wetboew-demos/texthighlight/texthighlight-en.html" + }, + { + "title": "Mise en surbrillance de texte", + "language": "fr", + "url": "https://wet-boew.github.io/gcweb-compiled-demos/wetboew-demos/texthighlight/texthighlight-fr.html" + } + ], + "docs": [ + { + "title": "Text highlighting", + "language": "en", + "url": "https://wet-boew.github.io/wet-boew/docs/ref/texthighlight/texthighlight-en.html" + }, + { + "title": "Mise en surbrillance de texte", + "language": "fr", + "url": "https://wet-boew.github.io/wet-boew/docs/ref/texthighlight/texthighlight-fr.html" + } + ] + } +} diff --git a/wet-boew/twitter/index.json-ld b/wet-boew/twitter/index.json-ld new file mode 100644 index 0000000000..7e529ae484 --- /dev/null +++ b/wet-boew/twitter/index.json-ld @@ -0,0 +1,46 @@ +{ + "@context": { + "@version": 1.1, + "dct": "http://purl.org/dc/terms/", + "title": { "@id": "dct:title", "@container": "@language" }, + "description": { "@id": "dct:description", "@container": "@language" }, + "modified": "dct:modified" + }, + "title": { + "en": "X (Twitter)", + "fr": "X (Twitter)" + }, + "description": { + "en": "Helps with implementing Twitter embedded timelines", + "fr": "Aide à implémenter les timelines Twitter intégrées" + }, + "modified": "2024-05-17", + "componentName": "twitter", + "status": "stable", + "pages": { + "examples": [ + { + "title": "Twitter", + "language": "en", + "url": "https://wet-boew.github.io/gcweb-compiled-demos/wetboew-demos/twitter/twitter-en.html" + }, + { + "title": "Twitter", + "language": "fr", + "url": "https://wet-boew.github.io/gcweb-compiled-demos/wetboew-demos/twitter/twitter-fr.html" + } + ], + "docs": [ + { + "title": "Twitter", + "language": "en", + "url": "https://wet-boew.github.io/wet-boew/docs/ref/twitter/twitter-en.html" + }, + { + "title": "Twitter", + "language": "fr", + "url": "https://wet-boew.github.io/wet-boew/docs/ref/twitter/twitter-fr.html" + } + ] + } +} diff --git a/wet-boew/wb-randomize/index.json-ld b/wet-boew/wb-randomize/index.json-ld new file mode 100644 index 0000000000..463bf15de1 --- /dev/null +++ b/wet-boew/wb-randomize/index.json-ld @@ -0,0 +1,46 @@ +{ + "@context": { + "@version": 1.1, + "dct": "http://purl.org/dc/terms/", + "title": { "@id": "dct:title", "@container": "@language" }, + "description": { "@id": "dct:description", "@container": "@language" }, + "modified": "dct:modified" + }, + "title": { + "en": "Randomize", + "fr": "Aléatoire" + }, + "description": { + "en": "Randomly picks one of the child elements", + "fr": "Choisi un des éléments enfant aléatoirement" + }, + "modified": "2024-05-17", + "componentName": "wb-randomize", + "status": "stable", + "pages": { + "examples": [ + { + "title": "Randomize", + "language": "en", + "url": "https://wet-boew.github.io/gcweb-compiled-demos/wetboew-demos/wb-randomize/wb-randomize-en.html" + }, + { + "title": "Aléatoire", + "language": "fr", + "url": "https://wet-boew.github.io/gcweb-compiled-demos/wetboew-demos/wb-randomize/wb-randomize-fr.html" + } + ], + "docs": [ + { + "title": "Randomize", + "language": "en", + "url": "https://wet-boew.github.io/wet-boew/docs/ref/wb-randomize/wb-randomize-en.html" + }, + { + "title": "Aléatoire", + "language": "fr", + "url": "https://wet-boew.github.io/wet-boew/docs/ref/wb-randomize/wb-randomize-fr.html" + } + ] + } +}