-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: improvements to localization, rebase conflicting changes
- Loading branch information
1 parent
1f8d710
commit dd8c85f
Showing
16 changed files
with
129 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
module.exports = { | ||
config: require("./node_modules/markdownlint-config-fluid/.markdownlintrc.json"), | ||
ignores: ["node_modules", "src/collections", "CHANGELOG.md"] | ||
ignores: ["node_modules", "src/collections/**/*.md", "CHANGELOG.md"] | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
--- | ||
permalink: '/admin/index.html' | ||
eleventyExcludeFromCollections: true | ||
locale: en | ||
--- | ||
<!doctype html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Content Manager</title> | ||
</head> | ||
<body> | ||
<script src="https://unpkg.com/@sveltia/cms/dist/sveltia-cms.js"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
backend: | ||
name: github | ||
branch: main | ||
repo: inclusive-design/standards.inclusivedesign.ca | ||
base_url: https://auth.incd.ca | ||
media_folder: src/assets/uploads | ||
public_folder: /assets/uploads | ||
|
||
editor: | ||
preview: false | ||
i18n: | ||
locales: [en, fr] | ||
default_locale: en | ||
|
||
collections: | ||
- label: Pages | ||
label_singular: Page | ||
name: pages | ||
icon: article | ||
i18n: | ||
structure: multiple_folders | ||
folder: src/collections/pages/ | ||
extension: md | ||
create: true | ||
fields: | ||
- { label: Title, name: title, widget: string, i18n: true } | ||
- { label: Navigation Order, name: order, widget: number, i18n: copy } | ||
- { label: "Has Banner?", name: hasBanner, widget: boolean, i18n: copy } | ||
- label: "Banner Background" | ||
name: bannerBgColor | ||
widget: select | ||
options: | ||
- label: Dark Grey | ||
value: dark-grey | ||
- label: Indigo 700 | ||
value: indigo-700 | ||
i18n: copy | ||
required: false | ||
- { | ||
label: "Banner Title", | ||
name: bannerTitle, | ||
widget: string, | ||
i18n: true, | ||
required: false, | ||
} | ||
- { | ||
label: "Banner Body", | ||
name: bannerBody, | ||
widget: string, | ||
i18n: true, | ||
required: false, | ||
} | ||
- { label: Body, name: body, widget: markdown, i18n: true } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
{ | ||
"lang": "en", | ||
"locale": "en-CA" | ||
"lang": "en" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,11 @@ | ||
--- | ||
title: Inclusive Standards | ||
layout: layouts/home | ||
order: 0 | ||
hasBanner: true | ||
bannerBgColor: indigo-700 | ||
bannerTitle: <b>Inclusive</b> Standards | ||
bannerTitle: "**Inclusive** Standards" | ||
bannerBody: Inclusive Standards is a project led by the Inclusive Design Centre, dedicated to creating guidelines that ensure products, services, and environments are accessible and usable by everyone. We focus on promoting equity, diversity, and inclusion by developing standards that meet the needs of all individuals, including people with disabilities and marginalized communities. | ||
layout: layouts/base | ||
--- | ||
Not applicable. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,10 @@ | ||
--- | ||
title: Projects | ||
eleventyNavigation: | ||
locale: en-CA | ||
key: Projects | ||
order: 1 | ||
layout: layouts/projects | ||
order: 2 | ||
hasBanner: true | ||
bannerBgColor: dark-grey | ||
bannerTitle: Projects | ||
bannerBody: Projects showcase all the Inclusive Standards Projects currently being investigated by IDRC | ||
--- | ||
layout: layouts/projects | ||
--- | ||
Not applicable. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,15 @@ | ||
--- | ||
title: À propos | ||
eleventyNavigation: | ||
locale: fr-CA | ||
key: À propos | ||
order: 1 | ||
layout: layouts/about | ||
hasBanner: true | ||
bannerBgColor: dark-grey | ||
bannerTitle: About | ||
bannerBody: Learn more about Inclusive standards | ||
bannerTitle: À propos | ||
bannerBody: En savoir plus sur les normes inclusives | ||
--- | ||
## Making Standards Accessible | ||
## Rendre les normes accessibles | ||
|
||
Lorem ipsum dolor sit amet. Ea galisum quisquam aut galisum aperiam eum dolores consequuntur et fugit rerum ut | ||
necessitatibus eligendi aut corrupti nisi quo voluptatum impedit. Nam dolor delectus non sapiente vero sit sint esse | ||
cum libero provident est Quis voluptatem non ipsa ullam vel iure autem. Quo facilis reprehenderit in atque deleniti | ||
qui facilis vitae sit officia galisum. Quo laboriosam consequatur sed fugit voluptas id quibusdam galisum sit | ||
explicabo modi sit mollitia placeat hic laboriosam omnis. | ||
Lorem ipsum dolor sit amet. Ea galisum quisquam aut galisum aperiam eum dolores consequuntur et fugit rerum ut necessitatibus eligendi aut corrupti nisi quo voluptatum impedit. Nam dolor delectus non sapiente vero sit sint esse cum libero provident est Quis voluptatem non ipsa ullam vel iure autem. Quo facilis reprehenderit in atque deleniti qui facilis vitae sit officia galisum. Quo laboriosam consequatur sed fugit voluptas id quibusdam galisum sit explicabo modi sit mollitia placeat hic laboriosam omnis. | ||
|
||
## What do we do? | ||
## Ce que nous faisons | ||
|
||
Lorem ipsum dolor sit amet. Ea galisum quisquam aut galisum aperiam eum dolores consequuntur et fugit rerum ut | ||
necessitatibus eligendi aut corrupti nisi quo voluptatum impedit. Nam dolor delectus non sapiente vero sit sint esse | ||
cum libero provident est Quis voluptatem non ipsa ullam vel iure autem. Quo facilis reprehenderit in atque deleniti | ||
qui facilis vitae sit officia galisum. Quo laboriosam consequatur sed fugit voluptas id quibusdam galisum sit | ||
explicabo modi sit mollitia placeat hic laboriosam omnis. | ||
Lorem ipsum dolor sit amet. Ea galisum quisquam aut galisum aperiam eum dolores consequuntur et fugit rerum ut necessitatibus eligendi aut corrupti nisi quo voluptatum impedit. Nam dolor delectus non sapiente vero sit sint esse cum libero provident est Quis voluptatem non ipsa ullam vel iure autem. Quo facilis reprehenderit in atque deleniti qui facilis vitae sit officia galisum. Quo laboriosam consequatur sed fugit voluptas id quibusdam galisum sit explicabo modi sit mollitia placeat hic laboriosam omnis. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
{ | ||
"lang": "fr", | ||
"locale": "fr-CA" | ||
"lang": "fr" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,8 @@ | ||
--- | ||
title: Inclusive Standards | ||
title: Normes inclusives | ||
bannerTitle: Normes inclusives | ||
bannerBody: Normes inclusives est un projet mené par la Centre de Recherche pour une Conception Inclusive, qui se consacre à l'élaboration de lignes directrices garantissant que les produits, les services et les environnements sont accessibles et utilisables par tous. Nous nous attachons à promouvoir l'équité, la diversité et l'inclusion en élaborant des normes qui répondent aux besoins de tous les individus, y compris les personnes handicapées et les communautés marginalisées. | ||
layout: layouts/home | ||
--- | ||
order: 0 | ||
--- | ||
Not applicable. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,9 @@ | ||
--- | ||
title: Projets | ||
eleventyNavigation: | ||
locale: fr-CA | ||
key: Projets | ||
order: 1 | ||
layout: layouts/projects | ||
hasBanner: true | ||
bannerBgColor: dark-grey | ||
bannerTitle: Projects | ||
bannerBody: Projects showcase all the Inclusive Standards Projects currently being investigated by IDRC | ||
--- | ||
bannerTitle: Projets | ||
bannerBody: Les projets présentent tous les projets de normes inclusives actuellement étudiés par le CRDI. | ||
layout: layouts/projects | ||
--- | ||
Not applicable. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters