From 394ca005dce743ce01f471e48811e3d59c1521d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Re=CC=81mi=20Be=CC=81tin?= Date: Tue, 16 Jan 2024 17:02:18 +0100 Subject: [PATCH 01/30] Add WCAG Translations Instructions --- _about/translating/guides.md | 1 + _about/translating/guides/wcag.md | 141 ++++++++++++++++++++++++++++++ 2 files changed, 142 insertions(+) create mode 100644 _about/translating/guides/wcag.md diff --git a/_about/translating/guides.md b/_about/translating/guides.md index 665c7e2e..391100bb 100644 --- a/_about/translating/guides.md +++ b/_about/translating/guides.md @@ -25,3 +25,4 @@ footer: | - [Reviewing a Translation](/about/translating/guides/review-translation/) - [Translation Guidance](/about/translating/guides/translation-guidance/) - [Using GitHub](/about/translating/guides/using-github/) +- [Translating WCAG](/about/translating/guides/wcag/) diff --git a/_about/translating/guides/wcag.md b/_about/translating/guides/wcag.md new file mode 100644 index 00000000..b28ea892 --- /dev/null +++ b/_about/translating/guides/wcag.md @@ -0,0 +1,141 @@ +--- +title: How to Translate WCAG 2 +nav_title: "How to Translate WCAG 2" +lang: en +last_updated: 2024-01-16 + +github: + repository: w3c/wai-about-wai + path: '_about/translating/guides/wcag.md' + +permalink: /about/translating/guides/wcag/ +ref: /about/translating/guides/wcag/ + +description: Technical instructions on translating WCAG +image: /content-images/wai-about-wai/social-translations.png + +feedbackmail: wai@w3.org +footer: | +

Date: Published 16 January 2024.

+

Editor: Rémi Bétin.

+--- + +{::nomarkdown} +{% include box.html type="start" h="2" title="Summary" class="full" %} +{:/} + +This page guides you through the technical steps to translate the Web Content Accessibility Guidelines (WCAG) 2.2 and 2.1. + + +For information on WCAG Translations of WCAG 2, see [Contributing to W3C Translations {% include_cached external.html %} +](https://www.w3.org/Consortium/Translation/) and [Policy for Authorized W3C Translations {% include_cached external.html %}](https://www.w3.org/2005/02/TranslationPolicy.html). + + +{::nomarkdown} +{% include box.html type="end" %} +{:/} + +{::nomarkdown} +{% include_cached toc.html type="start" title="Page Contents" class="simple" %} +{:/} + +{::options toc_levels="2" /} + +- This text will be replaced by the TOC. +{:toc} + +{::nomarkdown} +{% include_cached toc.html type="end" %} +{:/} + +## Overview + +Web Content Accessibility Guidelines (WCAG) 2.1/2.2 are currently [available in more than 14 languages](/standards-guidelines/wcag/translations/)! + +There are 5 main steps to create a new translation: +1. Get the source files from [`w3c/wcag/` {% include_cached external.html %}](https://github.com/w3c/wcag/) repository +2. Translate WCAG source files +3. Export in HTML +4. Edit the HTML files to complete the translation +5. Deliver the final files to W3C + +## Step 1: Get the source files + +1. Clone [`w3c/wcag` {% include_cached external.html %}](https://github.com/w3c/wcag/) repository (you can [fork {% include_cached external.html %}](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/working-with-forks/fork-a-repo) it first) +2. Base your translation on the following branch: +- [`main` branch {% include_cached external.html %}](https://github.com/w3c/wcag/tree/main) to translate WCAG 2.2 +- [`WCAG-2.1` branch {% include_cached external.html %}](https://github.com/w3c/wcag/tree/WCAG-2.1) to translate WCAG 2.1 + +## Step 2: Translate WCAG source files + +The repository contains numerous folders and files. Only some of them are relevant to your WCAG translation. + +Translate user-oriented content in: +- `guidelines/index.html` +- All files in `guidelines/sc/` folder and subfolders +- All files in `guidelines/terms/` folder and subfolders +- `guidelines/input-purposes.html` +- `guidelines/relative-luminance.html` +- `guidelines/respect-config.js`: translate Editors list. +- `guidelines/wcag.json` +- All files in `acknowledgements/` folder + +Make sure to follow these translation guidelines: +- Update `lang` and `xml:lang` attributes in `index.html` and `relative-luminance.html`.\ + Use the appropriate language "subtag" from [Language Subtag Registry {% include_cached external.html %}](https://www.iana.org/assignments/language-subtag-registry/language-subtag-registry) +- Do not translate IDs +- Add `hreflang="en"` to links when needed, and `lang="en"` where needed. +- Follow the guidelines of the [W3C Internationalization Activity {% include_cached external.html %}](https://www.w3.org/International/): for example, the proper usage of language tags, encoding declarations, handling bidirectional text, etc. + +## Step 3: Preview your changes and export in HTML + +To preview your changes, open the `index.html` file in a modern browser, on a local server. Without a server, the success criteria and glossary terms will not be included. + +Allow the script to compile and format the content. + +1. If your document has "ReSpec" errors or warnings, they will shop up at the top of the page, next to the "ReSpec Menu" link. +- Check and resolve (potential) "ReSpec Errors". +- Check "ReSpec Warnings". The original document may contain some warnings. Make sure you do not introduce new ones. + +2. Export in HTML using ReSpec: +- Activate the "Respec Menu" link in the top right corner +- Choose "Export...", then the "HTML" option. + +## Step 4: Edit the resulting HTML file and complete the translation + +Rename the exported HTML file to `index.html` and make the following changes. + +### Add the translation header + +At the very start of your `body` element, add a [translation header, based on the provided boilerplate](https://www.w3.org/2005/02/TranslationPolicy#Disclamier). + +The text in this disclaimer must be in the target language, except for the original title and the reference to the Lead Translation Organization (LTO) at the top. + +### Make some edits + +- Translate the `.head` section +- In each `dfn-panel`, translate “Permalink” and “Referenced in:” +- Next to each Success Criterion, translate “Understanding” and “How to Meet” +- Change the ID of the ["5. Conformance"](https://www.w3.org/TR/WCAG22/#conformance) `
` to "`conformance`". + +Make sure to follow these translation guidelines: +- Add `hreflang="en"` to links when needed, and `lang="en"` where needed. +- Follow the guidelines of the [W3C Internationalization Activity](https://www.w3.org/International/): for example, the proper usage of language tags, encoding declarations, handling bidirectional text, etc. + +### Translate the text added by `fixup.js` + +The `fixup.js` file adds links that allow users to jump to the Table of contents, and to collapse/expand the sidebar. + +Download [`fixup.js` {% include_cached external.html %}](https://www.w3.org/scripts/TR/2021/fixup.js) and translate the following terms: +- "Collapse Sidebar" +- "Pop Out Sidebar" +- "Jump to Table of Contents” + +## Step 5: Deliver the final files to W3C + +In conformance with step 6.3 of the [Policy for Authorized W3C Translations {% include_cached external.html %}](https://www.w3.org/2005/02/TranslationPolicy.html), deliver the following files to W3C for publication: +- `index.html` +- `relative-luminance.html` +- `fixup.js` + +Make sure these are valid (X)HTML documents with UTF-8 encoding. \ No newline at end of file From a400552d5e746edd4206dfe5cc9ef3a65f92b225 Mon Sep 17 00:00:00 2001 From: Shawn Lawton Henry Date: Thu, 1 Feb 2024 10:24:38 -0600 Subject: [PATCH 02/30] Update update.md - for February --- _about/update.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/_about/update.md b/_about/update.md index c95dc223..72479433 100644 --- a/_about/update.md +++ b/_about/update.md @@ -1,6 +1,6 @@ --- title: "What We're Working On" -title_html: "What We're Working On
Accessibility Activities and Publications, January 2024" +title_html: "What We're Working On
Accessibility Activities and Publications, February 2024" # nav_title: "Short Title" # NEW: (I think not used yet, but in place for possible future use.) lang: en @@ -24,7 +24,7 @@ feedbackmail: wai@w3.org # Translate the Working Group name. Leave the Working Group acronym in English. # Do not change the dates in the footer below. footer: > -

Date: Updated 22 December 2023. First published March 2022.

+

Date: Updated 1 February 2024. First published March 2022.

Editor: Shawn Lawton Henry. Contributors: Participants of the EOWG and others working on accessibility at W3C.

Developed with the Accessibility Education and Outreach Working Group (EOWG).

@@ -110,7 +110,6 @@ We plan to publish the following documents in Q1 2024, which is January, Februar * More [WAI Translations](/translations/) * [Guidance on Applying WCAG 2.2 to Non-Web Information and Communications Technologies (WCAG2ICT) Draft](https://www.w3.org/TR/2023/DNOTE-wcag2ict-20230815/) updates -* [ARIA](/standards-guidelines/aria/) 1.3 as a First Public Working Draft * [Core Accessibility API Mappings 1.2](https://www.w3.org/TR/core-aam-1.2/) as an updated CR * and some updated educational resources @@ -207,6 +206,8 @@ _W3C WAI Team photos:_ {% include_cached excol.html type="middle" %} +* 1 February 2024 + * Removed ARIA 1.3 from [Upcoming Publications list](https://www.w3.org/WAI/update/#upcoming-publications) since we published it in January * 22 December 2023 * Just updated the dates in [Upcoming Publications list](https://www.w3.org/WAI/update/#upcoming-publications) * 30 November 2023 From 14b402ec915fc6be7740032b2e5e37851026062f Mon Sep 17 00:00:00 2001 From: Kevin White Date: Mon, 12 Feb 2024 11:36:41 +0000 Subject: [PATCH 03/30] Updates to include all project deliverables --- _about/projects/wai-coop/index.md | 93 ++++++++++++++----------------- 1 file changed, 41 insertions(+), 52 deletions(-) diff --git a/_about/projects/wai-coop/index.md b/_about/projects/wai-coop/index.md index fa02e9a4..6b3e8502 100644 --- a/_about/projects/wai-coop/index.md +++ b/_about/projects/wai-coop/index.md @@ -31,66 +31,57 @@ This page provides information on the Web Accessibility Initiative - Communities {% include toc.html type="end" %} {:/} -## Current Announcements -{:#announcements} - -- [WAI-CooP open online meeting, 14 November 2023](https://www.edf-feph.org/events-slug/wai-coop-open-meeting-14-november-2023/) -- [Evaluating Accessibility: Meeting Key Challenges - Online Research Symposium, 16 November 2023](https://www.w3.org/WAI/about/projects/wai-coop/symposium3/) -- **Sign-Up:** to [receive WAI-CooP Project Updates by e-mail](https://www.w3.org/2002/09/wbs/1/WAI-CooP_newsletter/) - ## Project Results {:#results} -Current project activities include: +**[List of Courses on Digital Accessibility](https://www.w3.org/WAI/courses/list/)** +: Includes developing a user interface with filtering functionality, a taxonomy to describe courses and certification on digital accessibility with mapping to the [WAI Curricula](https://www.w3.org/WAI/curricula/), and promoting and gathering list entries. In addition to the List of Courses, a [Course submission form](https://www.w3.org/WAI/courses/submission/) is available. -**[Web Accessibility Directive: Frequently Asked Questions](https://web-directive.eu/)** -: Provides responses to frequently asked questions (FAQ) on implementing the EU Web Accessibility Directive (WAD). Stakeholders can ask new questions from the "Contact our help desk" link. +**[List of Web Accessibility Evaluation Tools](https://www.w3.org/WAI/test-evaluate/tools/list/)** +: Includes updating the user interface with filtering functionality, reviewing tools features to capture, and promoting and gathering list entries. In addition to the List of Evaluation Tools, a [Tool submission form](https://www.w3.org/WAI/test-evaluate/tools/submit-a-tool/) is available. -**[List of Courses on Digital Accessibility](https://www.w3.org/WAI/courses/list/)** -: Includes developing a user interface with filtering functionality, a taxonomy to describe courses and certification on digital accessibility with mapping to the [WAI Curricula](https://www.w3.org/WAI/curricula/), and promoting and gathering list entries. In addition to the List of Courses, a [Course submission form](https://www.w3.org/WAI/courses/submission/) is available. This work is being carried out in the [W3C Accessibility Education and Outreach Working Group (EOWG)](https://www.w3.org/WAI/about/groups/eowg/). +**[List of Policies and Practices Internationally](https://www.w3.org/WAI/policies/)** +: Extensive updates to existing policies and the addition of new information for 22 additional countries. **[Accessibility Conformance Testing (ACT) Rules](https://www.w3.org/WAI/standards-guidelines/act/rules/)** -: Includes promoting, tracking, and validating implementations of "Accessibility Conformance Testing (ACT) Rules" in automated testing tools and manual testing methodologies. This includes completed [redesign of the user interface](https://www.w3.org/WAI/standards-guidelines/act/rules/about/) to better integrate implementation reports submitted by different vendors. This work is being carried out in the [ACT Task Force](https://www.w3.org/WAI/GL/task-forces/conformance-testing/) of the W3C Accessibility Guidelines Working Group (AGWG). - -Completed project deliverables include: -* [Artificial Intelligence and Accessibility Research Symposium, 10-11 January 2023](https://www.w3.org/WAI/about/projects/wai-coop/symposium2/) -* [Online Research Symposium "Shape the Future", 10 November 2021](https://www.w3.org/WAI/about/projects/wai-coop/symposium1/) -* [WAI-CooP Open Online Meeting, 7 March 2023](https://www.edf-feph.org/events-slug/wai-coop-open-meeting-7-march-2023) -* [WAI-CooP Open Online Meeting, 19 April 2022](https://www.edf-feph.org/events-slug/wai-coop-online-meeting/) -* [Open Meeting on EU Web Accessibility Directive (WAD), 28 September 2021](https://www.edf-feph.org/events-slug/wai-coop-open-meeting2/) -* [WAI-CooP Open Online Meeting, 23 June 2021](https://www.edf-feph.org/events-slug/wai-coop-first-open-meeting/) - -## Project Deliverables -{:#deliverables} - -Technical deliverables planned: - -- **Monitor Market Developments** - - **Accessibility Training and Certification** — establish a W3C List of Web Accessibility Training and Certification with mappings to the [WAI Curricula](https://www.w3.org/WAI/curricula/) - - **Web Accessibility Evaluation Tools** — revise and expand the [W3C List of Web Accessibility Evaluation Tools](https://www.w3.org/WAI/ER/tools/) with focus on large-scale monitoring - - **Policies and Practices Internationally** — revise and expand the [W3C List of International Policies on Web Accessibility](https://www.w3.org/WAI/policies/) with focus on Europe -- **Monitor Technology Developments** - - **Support Harmonized Accessibility Testing** — monitor, promote, and document implementation of [W3C Accessibility Conformance Testing (ACT) Rules](https://www.w3.org/WAI/standards-guidelines/act/) - - **Analyze Gaps in Digital Technologies** — analyze potential support and gaps for accessibility in evolving and emerging technologies - - **Advancements in Research and Development** — hold open research symposia to explore research questions on accessibility implementation -- **Promote and Exchange Best Practices** - - **Hold Regular Open Meetings** — hold open meetings to promote the involvement of people with disabilities in implementation and monitoring efforts - - **Provide Help Desk Support** — respond to questions from all stakeholders on implementing the EU Web Accessibility Directive (WAD) - - **Frequently Asked Questions (FAQs)** — establish a curated collection of frequently asked questions on the EU Web Accessibility Directive (WAD) - - **Revise Key WAI Resources** — revise WAI resources that are relevant to implementation of the EU Web Accessibility Directive (WAD) - -These deliverables are complemented by project management, dissemination, and engagement efforts. - -## How To Participate -{:#participate} +: Includes promoting, tracking, and validating implementations of "Accessibility Conformance Testing (ACT) Rules" in automated testing tools and manual testing methodologies. This includes completed [redesign of the user interface](https://www.w3.org/WAI/standards-guidelines/act/rules/about/) to better integrate implementation reports submitted by different vendors. + +**Analysis of Support and Gaps in Technologies** +: Carried out an extensive review of literature to identify relevant accessibility related gaps in digital technologies which helped identify topics that were explored further as part of the Research Symposia. + +**Research Symposia on Digital Accessibility** +: Organised and ran three online research symposia based on topics identified in previous analysis: + * [Shape the Future: Research and Development Questions in Digital Accessibility](https://www.w3.org/WAI/about/projects/wai-coop/symposium1/) + * [Artificial Intelligence (AI) and Accessibility](https://www.w3.org/WAI/research/ai2023/) + * [Evaluating Accessibility: Meeting Key Challenges](https://www.w3.org/WAI/about/projects/wai-coop/symposium3/) + +**Regular Open Meetings** +: Organised and ran six open meetings to exchange best practices and discuss specific topics around implementing and monitoring accessibility. + * [WAI-CooP introductory meeting](https://www.edf-feph.org/events-slug/wai-coop-first-open-meeting/) + * [Implementation of the EU Web Accessibility Directive](https://www.edf-feph.org/events-slug/wai-coop-open-meeting2/) + * [Monitoring of the EU Web Accessibility Directive](https://www.edf-feph.org/events-slug/wai-coop-online-meeting/) + * [What can be done to improve supply of and access to digital accessibility expertise](https://www.edf-feph.org/events-slug/wai-coop-open-meeting-11-october-2022/) + * [Exploring the feedback mechanism and complaints procedure of the Web Accessibility Directive](https://www.edf-feph.org/events-slug/wai-coop-open-meeting-7-march-2023/) + * [Review of WAI CooP activities and the future of accessibility](https://www.edf-feph.org/events-slug/wai-coop-open-meeting-14-november-2023/) -Most of the project work listed above is developed through or in coordination with: +**[Web Accessibility Directive: Frequently Asked Questions](https://web-directive.eu/)** +: Provides responses to frequently asked questions (FAQ) on implementing the EU Web Accessibility Directive (WAD). Stakeholders can ask new questions from the "Contact our help desk" link. + +**[EM Report Tool](https://www.w3.org/WAI/eval/report-tool/)** +: Updated functionality, improved user interface, improved translation options and updates to include new WCAG 2.1 and 2.2 success criteria. +EM Report Tool + +**[Easy Checks - A First Review of Web Accessibility](https://www.w3.org/WAI/test-evaluate/easy-checks/)** +: Updates to the resource to simplify the presentation of each check, reduce the reliance on third-party tools and improve the readability of the content. This aims to make it easier to be used as a learning resource for people new to accessibility and a set of tools to perform some basic accessibility checks. -- [W3C Accessibility Education and Outreach Working Group (EOWG)](https://www.w3.org/WAI/EO/) -- [W3C Accessibility Conformance Testing (ACT) Task Force](https://www.w3.org/wai/gl/task-forces/conformance-testing/) -- [W3C Research Questions Task Force (RQTF)](https://www.w3.org/WAI/APA/task-forces/research-questions/) +## Participation +{:#participate} + +Most of the project work listed above was developed through or in coordination with: -We invite participation, comments, and contributions by anyone interested. This includes reviewing drafts of these resources and actively participating in the relevant groups to help develop these resources. All project results will be provided openly on royalty-free basis, and will be linked from this page. +- [Accessibility Education and Outreach Working Group (EOWG)](https://www.w3.org/WAI/EO/) +- [Accessibility Conformance Testing (ACT) Task Force](https://www.w3.org/wai/gl/task-forces/conformance-testing/) +- [Research Questions Task Force (RQTF)](https://www.w3.org/WAI/APA/task-forces/research-questions/) See also [Participating in WAI](http://www.w3.org/WAI/participation). If you have any questions, contact [Kevin White](https://www.w3.org/staff/#kevin). @@ -105,8 +96,6 @@ WAI-CooP, Communities of Practice, is a Coordination and Support Action project, WAI-CooP achieves this by building on the existing wealth of authoritative guidance available from the W3C Web Accessibility Initiative (WAI), to provide a one-stop shop for the broad spectrum of key stakeholders involved in the implementation of digital accessibility. This includes public bodies and private entities; organisations representing people with disabilities; product, service, and training providers; researchers; and policy makers. -See [project deliverables, above](#deliverables). - ## Project Partners {:#partners} From 94805cbbe412342e0d4697f6a1834094e830ea95 Mon Sep 17 00:00:00 2001 From: Shawn Lawton Henry Date: Wed, 14 Feb 2024 21:33:55 -0600 Subject: [PATCH 04/30] Update update.md --- _about/update.md | 37 +++++++++++++++++++------------------ 1 file changed, 19 insertions(+), 18 deletions(-) diff --git a/_about/update.md b/_about/update.md index 72479433..4bf4f729 100644 --- a/_about/update.md +++ b/_about/update.md @@ -24,9 +24,8 @@ feedbackmail: wai@w3.org # Translate the Working Group name. Leave the Working Group acronym in English. # Do not change the dates in the footer below. footer: > -

Date: Updated 1 February 2024. First published March 2022.

+

Date: Updated 14 February 2024. First published March 2022.

Editor: Shawn Lawton Henry. Contributors: Participants of the EOWG and others working on accessibility at W3C.

-

Developed with the Accessibility Education and Outreach Working Group (EOWG).

inline_css: | h1 { @@ -78,8 +77,7 @@ We hope you'll find accessibility work on this page that you are interested in c * **Cognitive Accessibility** — We're updating several documents to better address the needs of people with cognitive and learning disabilities. A current topic is mental health. [[Cognitive Accessibility at W3C]](/cognitive/). _[AG WG, COGA TF]_ +* **Low Vision Accessibility** — We're writing guidance that goes beyond the minimums required by WCAG. It is called "supplemental guidance". Current topics cover proximity, printing, and alternative themes such as high contrast and dark mode. _[AG WG, Low Vision TF]_ --> * **Mobile Accessibility** work includes supporting on-going standards development, including supporting WCAG 3 exploration. [[Mobile Accessibility at W3C]](/standards-guidelines/mobile/) _[AG WG, Mobile TF]_ @@ -97,20 +95,26 @@ Documenting the user needs of people with disabilities helps develop standards t * **Collaboration Tools Accessibility User Requirements ("CTAUR")** is a Working Draft. It describes user needs in tools that provide support for one or more specific collaborative features. These features include real-time editing of content by multiple authors, the use of comments or annotations, and revision control. [CTAUR Editor's Draft](https://w3c.github.io/ctaur/) _[APA WG, Research TF]_ -* **How People with Disabilities Use the Web** helps you understand user needs broadly. We're updating this resource and publishing new videos to go along with it. Previous version: [[How People with Disabilities Use the Web]](/people-use-web/) _[EOWG]_ +* **How People with Disabilities Use the Web** helps you understand user needs broadly. We're updating this resource and publishing new videos to go along with it. Previous version: [[How People with Disabilities Use the Web]](/people-use-web/) ### Testing Accessibility, Evaluation Tools +* **[Easy Checks – A First Review of Web Accessibility](/test-evaluate/preliminary/)** helps you start to assess the accessibility of a web page. We are polishing up a new iteration of this popular resource. [Draft Easy Checks new version](/easy-checks/) + * **ACT Rules** (Accessibility Conformance Testing (ACT), also known as "WCAG 2 Test Rules") describe ways to test conformance to WCAG success criteria. They are primarily for developers of evaluation tools and test methodologies. We're documenting more. [[About WCAG 2 Test Rules]](/standards-guidelines/act/rules/about/) _[AG WG, ACT TF]_ * ACT Rules implementation reports list how test tools or methodologies address test examples in ACT Rules. We invite evaluation tool developers to [submit implementation reports](https://act-rules.github.io/pages/implementations/reporting/). _[AG WG, ACT TF]_ +### Translating Resources + +Existing translations of W3C accessibility resources are listed in [All WAI Transations](/translations/). We are currently working with volunteer translators to translate more resources and update existing translations, including translations of WCAG and of educational resources. See [Translating WAI resources](/about/translating/). + ## Upcoming Publications We plan to publish the following documents in Q1 2024, which is January, February, March. To learn about "Candidate Recommendation" (**CR**) and other stages, see [How WAI Develops Accessibility Standards through the W3C Process: **Milestones** and Opportunities to Contribute](https://www.w3.org/WAI/standards-guidelines/w3c-process/). -* More [WAI Translations](/translations/) -* [Guidance on Applying WCAG 2.2 to Non-Web Information and Communications Technologies (WCAG2ICT) Draft](https://www.w3.org/TR/2023/DNOTE-wcag2ict-20230815/) updates -* [Core Accessibility API Mappings 1.2](https://www.w3.org/TR/core-aam-1.2/) as an updated CR +* More [WAI Translations](/translations/) monthly +* [Core Accessibility API Mappings 1.2](https://www.w3.org/TR/core-aam-1.2/) as an updated CR in Q1 +* [Guidance on Applying WCAG 2.2 to Non-Web Information and Communications Technologies (WCAG2ICT) Draft](https://www.w3.org/TR/2023/DNOTE-wcag2ict-20230815/) updates in Q2 * and some updated educational resources Recent publications and other announcements are listed on the **[News page](/news/)**. @@ -125,14 +129,14 @@ This page _only lists about half_ of the active work on accessibility at W3C. Mu To learn more about what the Working Groups are working on right now, see: -* [EOWG Current Work](https://www.w3.org/WAI/EO/wiki/EOWG_Current_Projects) - lists over 20 current and upcoming projects of the Accessibility Education and Outreach (EO) Working Group + * [APA Current Work](https://www.w3.org/WAI/APA/#work) - Accessible Platform Architectures (APA) Working Group * ARIA - Accessible Rich Internet Applications (ARIA) Working Group * [ARIA Working Drafts](https://www.w3.org/groups/wg/aria/publications#WD) * [ARIA Authoring Practices Guide (APG)](https://www.w3.org/WAI/ARIA/apg/) * [AG WG Current Work](https://www.w3.org/WAI/GL/#work) - Accessibility Guidelines (AG) Working Group * [COGA Current Work](https://www.w3.org/WAI/GL/task-forces/coga/wiki/Main_Page) - Cognitive and Learning Disabilities Accessibility Task Force (COGA) - * [LVTF Current Work](https://www.w3.org/WAI/GL/low-vision-a11y-tf/wiki/Main_Page) - Low Vision Accessibility Task Force (LVTF) + * [Mobile Current Work](https://www.w3.org/WAI/GL/mobile-a11y-tf/wiki/Main_Page) - Mobile Accessibility Task Force * [EPUB 3 Working Group document publication status and milestones](https://www.w3.org/publishing/groups/epub-wg/PublStatus) @@ -150,17 +154,10 @@ Links to each Working Group's "How to Participate" page are in the [Participatin We also offer ideas for [Promoting and Implementing Web Accessibility](https://www.w3.org/WAI/about/participating/#promoting-and-implementing-web-accessibility). -We welcome translations! If you might want to volunteer to contribute to translations, please see [Translating WAI resources](/about/translating/). +**Translations:** If you might want to volunteer to contribute to translations, please see [Translating WAI resources](/about/translating/). You can send questions via e-mail to [group-wai-translations@w3.org](group-wai-translations@w3.org) We are currently seeking translators in all languages and reviewers for draft translations in German and Japanese. **We look forward to your contributions to making the web more accessible to people with disabilities!** - -_If you heard about W3C WAI strategic plannning, you can get more info from:_ -* **[Draft W3C Accessibility Mission, Vision, Objectives](https://wai-mission.netlify.app/draft/)** -* **[Discussion topics in GitHub](https://github.com/w3c/wai-mission/discussions)** -* Background: [Draft W3C Accessibility 2023 Context](https://wai-mission.netlify.app/2023/) -* [Presentation to W3C Members September 2023](https://www.w3.org/2023/09/TPAC/ac-activities-wai.html) - video, slides with links, transcript - ### Who is We "We" is: @@ -206,6 +203,10 @@ _W3C WAI Team photos:_ {% include_cached excol.html type="middle" %} +* 14 February 2024 + * Added [translations information](https://www.w3.org/WAI/update/#translating-resources). + * Added Easy Checks under the [Testing Accessibility section](https://www.w3.org/WAI/update/#testing-accessibility-evaluation-tools) + * Removed inactive work. * 1 February 2024 * Removed ARIA 1.3 from [Upcoming Publications list](https://www.w3.org/WAI/update/#upcoming-publications) since we published it in January * 22 December 2023 From f8da2193977768e7499db7b2f8f3ed67e5c7d0a0 Mon Sep 17 00:00:00 2001 From: Shawn Lawton Henry Date: Wed, 14 Feb 2024 21:46:46 -0600 Subject: [PATCH 05/30] Update update.md --- _about/update.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/_about/update.md b/_about/update.md index 4bf4f729..71bcabf4 100644 --- a/_about/update.md +++ b/_about/update.md @@ -95,12 +95,11 @@ Documenting the user needs of people with disabilities helps develop standards t * **Collaboration Tools Accessibility User Requirements ("CTAUR")** is a Working Draft. It describes user needs in tools that provide support for one or more specific collaborative features. These features include real-time editing of content by multiple authors, the use of comments or annotations, and revision control. [CTAUR Editor's Draft](https://w3c.github.io/ctaur/) _[APA WG, Research TF]_ -* **How People with Disabilities Use the Web** helps you understand user needs broadly. We're updating this resource and publishing new videos to go along with it. Previous version: [[How People with Disabilities Use the Web]](/people-use-web/) +* **How People with Disabilities Use the Web** helps you understand user needs broadly. We're updating this resource and publishing new videos to go along with it. [[How People with Disabilities Use the Web - previous version]](/people-use-web/), [in-progress update of How People with Disabilities Use the Web]https://deploy-preview-113--wai-people-use-web.netlify.app/people-use-web/) ### Testing Accessibility, Evaluation Tools -* **[Easy Checks – A First Review of Web Accessibility](/test-evaluate/preliminary/)** helps you start to assess the accessibility of a web page. We are polishing up a new iteration of this popular resource. [Draft Easy Checks new version](/easy-checks/) - +* **Easy Checks – A First Review of Web Accessibility** helps you start to assess the accessibility of a web page. We are polishing up a new iteration of this popular resource. [Easy Checks - previous version](/test-evaluate/preliminary/), [draft new version of Easy Checks](/easy-checks/) * **ACT Rules** (Accessibility Conformance Testing (ACT), also known as "WCAG 2 Test Rules") describe ways to test conformance to WCAG success criteria. They are primarily for developers of evaluation tools and test methodologies. We're documenting more. [[About WCAG 2 Test Rules]](/standards-guidelines/act/rules/about/) _[AG WG, ACT TF]_ * ACT Rules implementation reports list how test tools or methodologies address test examples in ACT Rules. We invite evaluation tool developers to [submit implementation reports](https://act-rules.github.io/pages/implementations/reporting/). _[AG WG, ACT TF]_ @@ -204,8 +203,8 @@ _W3C WAI Team photos:_ {% include_cached excol.html type="middle" %} * 14 February 2024 - * Added [translations information](https://www.w3.org/WAI/update/#translating-resources). - * Added Easy Checks under the [Testing Accessibility section](https://www.w3.org/WAI/update/#testing-accessibility-evaluation-tools) + * Added [Translating Resources section](https://www.w3.org/WAI/update/#translating-resources) and more about translations under [How to Get Involved](https://www.w3.org/WAI/update/##participate). + * Added Easy Checks under the [Testing Accessibility section](https://www.w3.org/WAI/update/#testing-accessibility-evaluation-tools). * Removed inactive work. * 1 February 2024 * Removed ARIA 1.3 from [Upcoming Publications list](https://www.w3.org/WAI/update/#upcoming-publications) since we published it in January From ce845a578e6defa9168b1cbc9973fd8471d60ef6 Mon Sep 17 00:00:00 2001 From: Shawn Lawton Henry Date: Wed, 14 Feb 2024 21:50:45 -0600 Subject: [PATCH 06/30] Update update.md --- _about/update.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_about/update.md b/_about/update.md index 71bcabf4..3f2123fd 100644 --- a/_about/update.md +++ b/_about/update.md @@ -95,7 +95,7 @@ Documenting the user needs of people with disabilities helps develop standards t * **Collaboration Tools Accessibility User Requirements ("CTAUR")** is a Working Draft. It describes user needs in tools that provide support for one or more specific collaborative features. These features include real-time editing of content by multiple authors, the use of comments or annotations, and revision control. [CTAUR Editor's Draft](https://w3c.github.io/ctaur/) _[APA WG, Research TF]_ -* **How People with Disabilities Use the Web** helps you understand user needs broadly. We're updating this resource and publishing new videos to go along with it. [[How People with Disabilities Use the Web - previous version]](/people-use-web/), [in-progress update of How People with Disabilities Use the Web]https://deploy-preview-113--wai-people-use-web.netlify.app/people-use-web/) +* **How People with Disabilities Use the Web** helps you understand user needs broadly. We're updating this resource and publishing new videos to go along with it. [[How People with Disabilities Use the Web - previous version]](/people-use-web/), [in-progress update of How People with Disabilities Use the Web](https://deploy-preview-113--wai-people-use-web.netlify.app/people-use-web/) ### Testing Accessibility, Evaluation Tools From c5e84e5afeb379428f89e50649bca4c6f7e30d77 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Re=CC=81mi=20Be=CC=81tin?= Date: Thu, 22 Feb 2024 15:42:43 +0100 Subject: [PATCH 07/30] Add Korean sitemap --- _about/translating/sitemaps/sitemap-ko.md | 84 +++++++++++++++++++++ _about/translating/translations-sitemaps.md | 1 + 2 files changed, 85 insertions(+) create mode 100644 _about/translating/sitemaps/sitemap-ko.md diff --git a/_about/translating/sitemaps/sitemap-ko.md b/_about/translating/sitemaps/sitemap-ko.md new file mode 100644 index 00000000..72b5fe2a --- /dev/null +++ b/_about/translating/sitemaps/sitemap-ko.md @@ -0,0 +1,84 @@ +--- +title: "Korean Translations Progress" +nav_title: Korean Translations Progress +github: + repository: w3c/wai-about-wai + path: '_about/sitemaps/sitemap-ko.md' +permalink: /about/translating/sitemaps/sitemap-ko/ +ref: /about/translating/sitemaps/sitemap-ko/ +lang: en +last_updated: 2024-02-22 + +description: Help make the Web accessible to people with disabilities around the world. We appreciate your contributions to translating W3C WAI accessibility resources. +image: /content-images/wai-about-wai/social-translations.png + +feedbackmail: wai@w3.org +footer: | +

Developed as part of the WAI-CooP project, co-funded by the European Commission.

+ +#Custom frontmatter for this page +tlang: fr +--- +{% assign tlangname=site.data.lang[page.tlang].name %} +{% assign alldocs=site.documents | concat: site.pages %} + +{::nomarkdown} +{% include box.html type="start" h="2" title="Summary" class="full" %} +{:/} + +This page lists the status of {{ tlangname }} translations for most pages on the WAI website. + +{::nomarkdown} +{% include box.html type="end" %} +{:/} + +{% include excol.html type="all" %} + +{% include excol.html type="start" %} + +## Priorities Status + +{% include excol.html type="middle" %} + +{::nomarkdown} +{% if site.data.translations-priorities %} + {%- for prio in site.data.translations-priorities -%} + {%- include t-status.html page=prio h="3" -%} + {%- for priosub in prio.pages -%} + {%- include t-status.html page=priosub h="3" -%} + {% include box.html type="end" %} + {%- endfor -%} + {% include box.html type="end" %} + {%- endfor -%} +{% endif %} +{:/} + +{% include excol.html type="end" %} + +## Sitemap + +{::nomarkdown} +{% assign sections=site.data.navigation | where_exp:"item", "item.mainnav != false and item.hide != true" -%} +{%- for section in sections -%} + {% include excol.html type="start" %} +

+ {%- if section.name.en -%} + {{ section.name.en }} + {%- else -%} + {{ section.name }} + {%- endif -%} +

+ {% include excol.html type="middle" %} + {% assign pages=section.pages | where_exp:"item", "item.mainnav != false and item.hide != true" -%} + {%- for p in pages -%} + {%- include t-status.html page=p h="4" -%} + {% assign subpages=p.pages | where_exp:"item", "item.mainnav != false and item.hide != true" -%} + {%- for subpage in subpages -%} + {%- include t-status.html page=subpage h="5" -%} + {% include box.html type="end" %} + {% endfor %} + {% include box.html type="end" %} + {% endfor %} +{% include excol.html type="end" %} +{% endfor %} +{:/} \ No newline at end of file diff --git a/_about/translating/translations-sitemaps.md b/_about/translating/translations-sitemaps.md index 87002600..d79879aa 100644 --- a/_about/translating/translations-sitemaps.md +++ b/_about/translating/translations-sitemaps.md @@ -30,5 +30,6 @@ Translation sitemaps display the structure of WAI website, and indicate for each - [German (de)](/about/translating/sitemaps/sitemap-de/) - [Greek (el)](/about/translating/sitemaps/sitemap-el/) - [Indonesian (id)](/about/translating/sitemaps/sitemap-id/) + - [Korean (ko)](/about/translating/sitemaps/sitemap-ko/) - [Russian (ru)](/about/translating/sitemaps/sitemap-ru/) - [Spanish (es)](/about/translating/sitemaps/sitemap-es/) \ No newline at end of file From 3e5f0e8844b1d8f3741056ad3083b04be150675d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Re=CC=81mi=20Be=CC=81tin?= Date: Thu, 22 Feb 2024 16:01:18 +0100 Subject: [PATCH 08/30] Add language code to Korean sitemap --- _about/translating/sitemaps/sitemap-ko.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_about/translating/sitemaps/sitemap-ko.md b/_about/translating/sitemaps/sitemap-ko.md index 72b5fe2a..90e0080c 100644 --- a/_about/translating/sitemaps/sitemap-ko.md +++ b/_about/translating/sitemaps/sitemap-ko.md @@ -17,7 +17,7 @@ footer: |

Developed as part of the WAI-CooP project, co-funded by the European Commission.

#Custom frontmatter for this page -tlang: fr +tlang: ko --- {% assign tlangname=site.data.lang[page.tlang].name %} {% assign alldocs=site.documents | concat: site.pages %} From 0fab7aa89da915dbee1340fd54350c3a38b05ec3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Re=CC=81mi=20Be=CC=81tin?= Date: Tue, 27 Feb 2024 10:59:41 +0100 Subject: [PATCH 09/30] Add Japanese & Polish sitemaps --- _about/translating/sitemaps/sitemap-ja.md | 84 +++++++++++++++++++++++ _about/translating/sitemaps/sitemap-pl.md | 84 +++++++++++++++++++++++ 2 files changed, 168 insertions(+) create mode 100644 _about/translating/sitemaps/sitemap-ja.md create mode 100644 _about/translating/sitemaps/sitemap-pl.md diff --git a/_about/translating/sitemaps/sitemap-ja.md b/_about/translating/sitemaps/sitemap-ja.md new file mode 100644 index 00000000..eeae027f --- /dev/null +++ b/_about/translating/sitemaps/sitemap-ja.md @@ -0,0 +1,84 @@ +--- +title: "Japanese Translations Progress" +nav_title: Japanese Translations Progress +github: + repository: w3c/wai-about-wai + path: '_about/sitemaps/sitemap-ja.md' +permalink: /about/translating/sitemaps/sitemap-ja/ +ref: /about/translating/sitemaps/sitemap-ja/ +lang: en +last_updated: 2024-02-27 + +description: Help make the Web accessible to people with disabilities around the world. We appreciate your contributions to translating W3C WAI accessibility resources. +image: /content-images/wai-about-wai/social-translations.png + +feedbackmail: wai@w3.org +footer: | +

Developed as part of the WAI-CooP project, co-funded by the European Commission.

+ +#Custom frontmatter for this page +tlang: ja +--- +{% assign tlangname=site.data.lang[page.tlang].name %} +{% assign alldocs=site.documents | concat: site.pages %} + +{::nomarkdown} +{% include box.html type="start" h="2" title="Summary" class="full" %} +{:/} + +This page lists the status of {{ tlangname }} translations for most pages on the WAI website. + +{::nomarkdown} +{% include box.html type="end" %} +{:/} + +{% include excol.html type="all" %} + +{% include excol.html type="start" %} + +## Priorities Status + +{% include excol.html type="middle" %} + +{::nomarkdown} +{% if site.data.translations-priorities %} + {%- for prio in site.data.translations-priorities -%} + {%- include t-status.html page=prio h="3" -%} + {%- for priosub in prio.pages -%} + {%- include t-status.html page=priosub h="3" -%} + {% include box.html type="end" %} + {%- endfor -%} + {% include box.html type="end" %} + {%- endfor -%} +{% endif %} +{:/} + +{% include excol.html type="end" %} + +## Sitemap + +{::nomarkdown} +{% assign sections=site.data.navigation | where_exp:"item", "item.mainnav != false and item.hide != true" -%} +{%- for section in sections -%} + {% include excol.html type="start" %} +

+ {%- if section.name.en -%} + {{ section.name.en }} + {%- else -%} + {{ section.name }} + {%- endif -%} +

+ {% include excol.html type="middle" %} + {% assign pages=section.pages | where_exp:"item", "item.mainnav != false and item.hide != true" -%} + {%- for p in pages -%} + {%- include t-status.html page=p h="4" -%} + {% assign subpages=p.pages | where_exp:"item", "item.mainnav != false and item.hide != true" -%} + {%- for subpage in subpages -%} + {%- include t-status.html page=subpage h="5" -%} + {% include box.html type="end" %} + {% endfor %} + {% include box.html type="end" %} + {% endfor %} +{% include excol.html type="end" %} +{% endfor %} +{:/} \ No newline at end of file diff --git a/_about/translating/sitemaps/sitemap-pl.md b/_about/translating/sitemaps/sitemap-pl.md new file mode 100644 index 00000000..0eded03a --- /dev/null +++ b/_about/translating/sitemaps/sitemap-pl.md @@ -0,0 +1,84 @@ +--- +title: "Polish Translations Progress" +nav_title: Polish Translations Progress +github: + repository: w3c/wai-about-wai + path: '_about/sitemaps/sitemap-pl.md' +permalink: /about/translating/sitemaps/sitemap-pl/ +ref: /about/translating/sitemaps/sitemap-pl/ +lang: en +last_updated: 2024-02-27 + +description: Help make the Web accessible to people with disabilities around the world. We appreciate your contributions to translating W3C WAI accessibility resources. +image: /content-images/wai-about-wai/social-translations.png + +feedbackmail: wai@w3.org +footer: | +

Developed as part of the WAI-CooP project, co-funded by the European Commission.

+ +#Custom frontmatter for this page +tlang: pl +--- +{% assign tlangname=site.data.lang[page.tlang].name %} +{% assign alldocs=site.documents | concat: site.pages %} + +{::nomarkdown} +{% include box.html type="start" h="2" title="Summary" class="full" %} +{:/} + +This page lists the status of {{ tlangname }} translations for most pages on the WAI website. + +{::nomarkdown} +{% include box.html type="end" %} +{:/} + +{% include excol.html type="all" %} + +{% include excol.html type="start" %} + +## Priorities Status + +{% include excol.html type="middle" %} + +{::nomarkdown} +{% if site.data.translations-priorities %} + {%- for prio in site.data.translations-priorities -%} + {%- include t-status.html page=prio h="3" -%} + {%- for priosub in prio.pages -%} + {%- include t-status.html page=priosub h="3" -%} + {% include box.html type="end" %} + {%- endfor -%} + {% include box.html type="end" %} + {%- endfor -%} +{% endif %} +{:/} + +{% include excol.html type="end" %} + +## Sitemap + +{::nomarkdown} +{% assign sections=site.data.navigation | where_exp:"item", "item.mainnav != false and item.hide != true" -%} +{%- for section in sections -%} + {% include excol.html type="start" %} +

+ {%- if section.name.en -%} + {{ section.name.en }} + {%- else -%} + {{ section.name }} + {%- endif -%} +

+ {% include excol.html type="middle" %} + {% assign pages=section.pages | where_exp:"item", "item.mainnav != false and item.hide != true" -%} + {%- for p in pages -%} + {%- include t-status.html page=p h="4" -%} + {% assign subpages=p.pages | where_exp:"item", "item.mainnav != false and item.hide != true" -%} + {%- for subpage in subpages -%} + {%- include t-status.html page=subpage h="5" -%} + {% include box.html type="end" %} + {% endfor %} + {% include box.html type="end" %} + {% endfor %} +{% include excol.html type="end" %} +{% endfor %} +{:/} \ No newline at end of file From 0b5a204e8a6dbdeb3213f275f5892be7aba704a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Re=CC=81mi=20Be=CC=81tin?= Date: Tue, 27 Feb 2024 11:01:44 +0100 Subject: [PATCH 10/30] Add new sitemaps to the list --- _about/translating/translations-sitemaps.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/_about/translating/translations-sitemaps.md b/_about/translating/translations-sitemaps.md index d79879aa..24008480 100644 --- a/_about/translating/translations-sitemaps.md +++ b/_about/translating/translations-sitemaps.md @@ -30,6 +30,8 @@ Translation sitemaps display the structure of WAI website, and indicate for each - [German (de)](/about/translating/sitemaps/sitemap-de/) - [Greek (el)](/about/translating/sitemaps/sitemap-el/) - [Indonesian (id)](/about/translating/sitemaps/sitemap-id/) + - [Japanese (ja)](/about/translating/sitemaps/sitemap-ja/) - [Korean (ko)](/about/translating/sitemaps/sitemap-ko/) + - [Polish (pl)](/about/translating/sitemaps/sitemap-pl/) - [Russian (ru)](/about/translating/sitemaps/sitemap-ru/) - [Spanish (es)](/about/translating/sitemaps/sitemap-es/) \ No newline at end of file From 1cc61c1f8ed419eedd71d7f13faa8c50bd40e9c5 Mon Sep 17 00:00:00 2001 From: Shawn Lawton Henry Date: Tue, 27 Feb 2024 08:07:35 -0600 Subject: [PATCH 11/30] Update update.md --- _about/update.md | 32 +++++++++++++------------------- 1 file changed, 13 insertions(+), 19 deletions(-) diff --git a/_about/update.md b/_about/update.md index 3f2123fd..bc78c423 100644 --- a/_about/update.md +++ b/_about/update.md @@ -1,6 +1,6 @@ --- title: "What We're Working On" -title_html: "What We're Working On
Accessibility Activities and Publications, February 2024" +title_html: "What We're Working On
Accessibility Activities and Publications, March 2024" # nav_title: "Short Title" # NEW: (I think not used yet, but in place for possible future use.) lang: en @@ -24,8 +24,8 @@ feedbackmail: wai@w3.org # Translate the Working Group name. Leave the Working Group acronym in English. # Do not change the dates in the footer below. footer: > -

Date: Updated 14 February 2024. First published March 2022.

-

Editor: Shawn Lawton Henry. Contributors: Participants of the EOWG and others working on accessibility at W3C.

+

Date: Updated 27 February 2024. First published March 2022.

+

Editor: Shawn Lawton Henry. Contributors: WAI staff, Working Group Co-Chairs, and others working on accessibility at W3C.

inline_css: | h1 { @@ -81,12 +81,12 @@ We hope you'll find accessibility work on this page that you are interested in c * **Mobile Accessibility** work includes supporting on-going standards development, including supporting WCAG 3 exploration. [[Mobile Accessibility at W3C]](/standards-guidelines/mobile/) _[AG WG, Mobile TF]_ -### Updating Guidance on EPUB Accessibility and on Applying WCAG to ICT - -* **EPUB Fixed Layout Accessibility** aims to help publishers address challenges for people with cognitive disabilities and low vision. [EPUB Fixed Layout Accessibility Editor's Draft](https://w3c.github.io/epub-specs/epub33/fxl-a11y/) _[EPUB3 WG, FXL A11y TF]_ +### Updating Guidance on Applying WCAG to ICT and on EPUB Accessibility * **WCAG2ICT** describes how Web Content Accessibility Guidelines (WCAG) 2 can be applied to non-web information and communications technologies (ICT). We are updating it to include WCAG 2.1 and WCAG 2.2. [[WCAG2ICT Overview]](/standards-guidelines/wcag/non-web-ict/) _[AG WG, WCAG2ICT TF]_ +* **EPUB Fixed Layout Accessibility** aims to help publishers address challenges for people with cognitive disabilities and low vision. [EPUB Fixed Layout Accessibility Editor's Draft](https://w3c.github.io/epub-specs/epub33/fxl-a11y/) _[EPUB3 WG, FXL A11y TF]_ + ### Defining User Requirements (AUR) and Exploring Emerging Technologies Documenting the user needs of people with disabilities helps develop standards to meet those needs. It also helps designers, developers, and others better understand and meet user needs in order to support accessibility. XR Accessibility User Requirements and more listed at [Digital Accessibility User Requirements](https://www.w3.org/WAI/research/user-requirements/). @@ -109,10 +109,9 @@ Existing translations of W3C accessibility resources are listed in [All WAI Tran ## Upcoming Publications -We plan to publish the following documents in Q1 2024, which is January, February, March. To learn about "Candidate Recommendation" (**CR**) and other stages, see [How WAI Develops Accessibility Standards through the W3C Process: **Milestones** and Opportunities to Contribute](https://www.w3.org/WAI/standards-guidelines/w3c-process/). +We plan to publish the following documents in Q1 2024 (January, February, March) and Q2 (March, April, May). -* More [WAI Translations](/translations/) monthly -* [Core Accessibility API Mappings 1.2](https://www.w3.org/TR/core-aam-1.2/) as an updated CR in Q1 +* More [WAI Translations](/translations/) - usually some each week * [Guidance on Applying WCAG 2.2 to Non-Web Information and Communications Technologies (WCAG2ICT) Draft](https://www.w3.org/TR/2023/DNOTE-wcag2ict-20230815/) updates in Q2 * and some updated educational resources @@ -167,12 +166,8 @@ We also offer ideas for [Promoting and Implementing Web Accessibility](https://w * [Kevin White](https://www.w3.org/staff/#kevin) is Accessibility Technical Lead and supports the Accessibility Guidelines Working Group that develops Web Content Accessibility Guidelines (WCAG). * [Roy Ruoxi Ran (冉若曦)](https://www.w3.org/staff/#ran) supports accessibility Working Groups and accessibility in China. * [Daniel Montalvo](https://www.w3.org/staff/#dmontalvo) supports accessibility Working Groups and standards harmonization in Europe. - * [Akosua “Kosi” Asabere](https://www.w3.org/staff/#kosi) joined the W3C Team in November 2023 and brings first-hand experience with mobile accessibility in Africa. * Participants of: [AG](https://www.w3.org/groups/wg/ag/participants), [APA](https://www.w3.org/groups/wg/apa/participants), [ARIA](https://www.w3.org/groups/wg/aria/participants), [EPUB](https://www.w3.org/groups/wg/epub/participants), [EO](https://www.w3.org/groups/wg/eowg/participants), and other [W3C groups](https://www.w3.org/groups/) -_W3C WAI Team photos:_ -Collage of WAI Team photos. Shawn Henry, Kevin White, Roy Ran, Daniel Montalvo, Kosi Asabere -

@@ -202,6 +197,10 @@ _W3C WAI Team photos:_ {% include_cached excol.html type="middle" %} +* 27 February 2024 + * Removed [Digital Publishing WAI-ARIA Module 1.1](https://www.w3.org/TR/dpub-aria-1.1/) and [Digital Publishing Accessibility API Mappings 1.1](https://www.w3.org/TR/dpub-aam-1.1/) from [Upcoming Publications list](https://www.w3.org/WAI/update/#upcoming-publications) since we published them today as "Candidate Recommendations" + * Updated W3C WAI Staff listing + * Swapped order of "Applying WCAG to ICT" and "EPUB Accessibility" * 14 February 2024 * Added [Translating Resources section](https://www.w3.org/WAI/update/#translating-resources) and more about translations under [How to Get Involved](https://www.w3.org/WAI/update/##participate). * Added Easy Checks under the [Testing Accessibility section](https://www.w3.org/WAI/update/#testing-accessibility-evaluation-tools). @@ -214,12 +213,7 @@ _W3C WAI Team photos:_ * Updated [Upcoming Publications list](https://www.w3.org/WAI/update/#upcoming-publications) * To [Get Updated](https://www.w3.org/WAI/update/#get-updated) section: deleted Twitter; added Mastodon and LinkedIn * To [How to Get Involved](https://www.w3.org/WAI/update/#participate) section, added: We welcome translations! If you might want to volunteer to contribute to translations, please see [Translating WAI resources](/about/translating/) - * Updated W3C WAI Staff listing: - * [Shawn Lawton Henry](https://www.w3.org/staff/#shawn) is Web Accessibility Initiative (WAI) Program Lead; Accessibility Education and Communications Lead. - * [Kevin White](https://www.w3.org/staff/#kevin) is Accessibility Technical Lead and supports the Accessibility Guidelines Working Group that develops Web Content Accessibility Guidelines (WCAG). - * [Roy Ruoxi Ran (冉若曦)](https://www.w3.org/staff/#ran) supports accessibility Working Groups and accessibility in China. - * [Daniel Montalvo](https://www.w3.org/staff/#dmontalvo) supports accessibility Working Groups and standards harmonization in Europe. - * [Akosua “Kosi” Asabere](https://www.w3.org/staff/#kosi) joined the W3C Team in November 2023 and brings first-hand experience with mobile accessibility in Africa. + * Updated W3C WAI Staff listing * 30 October 2023 - no changes * 5 October 2023 * Removed WCAG 2.2 from Current Work Highlights and Upcoming Publications, because we published it today. From 809636a3235c28ede26e9ca0904395a9429e6dfc Mon Sep 17 00:00:00 2001 From: Shawn Lawton Henry Date: Tue, 27 Feb 2024 12:20:17 -0600 Subject: [PATCH 12/30] updated staff --- _about/index.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/_about/index.md b/_about/index.md index 03f34099..c44375f7 100644 --- a/_about/index.md +++ b/_about/index.md @@ -6,7 +6,7 @@ lang: en feedbackmail: wai@w3.org class: tight-page footer: > # Text in footer in HTML -

Date: Updated 1 August 2023.

+

Date: Updated 27 February 2023.

Editor: Shawn Lawton Henry.

Developed with input from the Education and Outreach Working Group (EOWG).

github: @@ -97,6 +97,3 @@ To reach all WAI staff, you can e-mail * [Kevin White](https://www.w3.org/staff/#kevin) is Accessibility Technical Lead and supports the Accessibility Guidelines Working Group that develops Web Content Accessibility Guidelines (WCAG). * [Roy Ruoxi Ran (冉若曦)](https://www.w3.org/staff/#ran) supports accessibility Working Groups and accessibility in China. * [Daniel Montalvo](https://www.w3.org/staff/#dmontalvo) supports accessibility Working Groups and standards harmonization in Europe. -* [Akosua “Kosi” Asabere](https://www.w3.org/staff/#kosi) joined the W3C Team in November 2023 and brings first-hand experience with mobile accessibility in Africa. - -Collage of WAI Team photos. Shawn Henry, Kevin White, Roy Ran, Daniel Montalvo, Kosi Asabere From 305820e788e938a3389efaffda039b5ec032d5ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Re=CC=81mi=20Be=CC=81tin?= Date: Thu, 7 Mar 2024 16:23:33 +0100 Subject: [PATCH 13/30] Update Reviewing a Translation guide --- .../translating/guides/review-translation.md | 188 +++++++++++------- 1 file changed, 113 insertions(+), 75 deletions(-) diff --git a/_about/translating/guides/review-translation.md b/_about/translating/guides/review-translation.md index b7ac193e..ef9c042e 100644 --- a/_about/translating/guides/review-translation.md +++ b/_about/translating/guides/review-translation.md @@ -1,8 +1,8 @@ --- -title: "Reviewing a Translation" -nav_title: Reviewing a translation +title: "Reviewing a WAI Translation" +nav_title: Reviewing a Translation lang: en -last_updated: 2023-11-09 +last_updated: 2024-03-07 # Do not delete the following translators/contributors lines, used to display an example in the page. translators: @@ -24,14 +24,23 @@ image: /content-images/wai-about-wai/social-translations.png feedbackmail: wai@w3.org footer: | -

Date: Updated 9 November 2023.

+

Date: Updated 7 March 2024.

Editors: Shawn Lawton Henry and Rémi Bétin.

Developed as part of the WAI-CooP project, co-funded by the European Commission.

--- +{::nomarkdown} +{% include box.html type="start" h="2" title="Summary" class="full" %} +{:/} + +This page explains how you can participate in reviewing translations of Web Accessibility Initiative (WAI) resources. + +{::nomarkdown} +{% include box.html type="end" %} +{:/} -{::options toc_levels="2,3" /} +{::options toc_levels="2" /} {::nomarkdown} -{% include toc.html type="start" title="Page Contents" %} +{% include_cached toc.html type="start" title="Page Contents" class="simple" %} {:/} - TOC is created automatically. @@ -41,14 +50,95 @@ footer: | {% include toc.html type="end" %} {:/} -## Initial things to check +## Overview + +The W3C Web Accessibility Initiative (WAI) welcomes contributions to review volunteer translations, before they are published on the WAI website. + +There are 3 steps to contribute as a reviewer: + +1. **[Find a translation](#find)** ready for review + +2. **[Declare your intent](#volunteer)** to review the translation by a date. + +3. **[Review the translation](#review)** and work together with the translator(s) and other reviewer(s). + +## Step 1: How to find a translation ready for review? {#find} + +You can find translations to review in the [GitHub project {% include_cached external.html %}](https://github.com/orgs/w3c/projects/46/views/2) we use to track translations: +- Filter the view by clicking on your language in the "Language" sidebar. +- Look into the "Review" column of the board: this lists the translations that are ready for review. + +If you have trouble using this _board_ view, you can look at the [equivalent table view {% include_cached external.html %}](https://github.com/orgs/w3c/projects/46/views/3), or you can contact us at [group-wai-translations@w3.org](mailto:group-wai-translations@w3.org)[^1]. + +## Step 2: How to volunteer? {#volunteer} + +### New volunteers: + +Please send an email to [group-wai-translations@w3.org](mailto:group-wai-translations@w3.org)[^1], expressing your interest in joining the WAI translator volunteers community. We will guide you through the next steps. + +### Regular volunteers: + +Indicate in the GitHub issue related to this translation that you are volunteering to review the translation, **and please always indicate the date by which you plan to review the translation.** + +This way, we can ask other volunteers if you are unable to complete the review by this date. + +## Step 3: How to review a translation? {#review} + +Review discussions take place directly in the Pull Request(s) opened by the translator. These are listed in the GitHub issue about the translation. + +We encourage you to respectfully share your comments, suggested changes, spotted issues; and to work together with the translator(s) and other reviewer(s) to improve the translation. + +The most important things for review are: +- **helping accurately convey the meaning from the English version** in the translated language. Translations must not change or adapt or add to the meaning of the English version in their translation. +- **using respectful disability terminology** in the target language and region. + +For that, you will need to read the English version and compare it to the translation. Often, it is best to have them open in side-by-side windows. A preview is included in most Pull Requests to see the rendered page. + +{::nomarkdown} +{% include box.html type="start" title="Helpful tip" %} +{:/} + +A technique for proof-reading is to listen to the translation being read aloud, for example with a screen reader or text-to-speech in the operating system. + +{::nomarkdown} +{% include box.html type="end" %} +{:/} + +### Specific wording {#specific-wording} +- Check [other translations in your language](/translations) to see how similar words and concepts have been translated. In particular, [Authorized Translations](https://www.w3.org/Translations/authorized.html) have had significant review and input. +- Consider different dialects. Where possible, the translation should use words and phrases that will be best understood across different areas. +- The translator and reviewer(s) might want to work together to consider different options for some wording. +- When you decide on translation of unclear words and phrases that will likely be in other resources, feel free to add them to the [Glossary for your language {% include_cached external.html %}](https://github.com/w3c/translation-glossaries). + +{::nomarkdown} +{% include box.html type="start" title="We are here to help" %} +{:/} + +If you have any questions for us about the wording, you can report them in the GitHub issue or send email to [group-wai-translations@w3.org](mailto:group-wai-translations@w3.org)[^1]. + +We are happy to help you decide on the best translated wording by sharing the considerations and nuances that went into choosing the wording for the English page. + +{::nomarkdown} +{% include box.html type="end" %} +{:/} + +### Things to check {#initial-things-to-check} + +#### For all translations + +1. There is no code showing in the rendered page. +2. All of the text that should be translated, is actually translated. +3. The links work. +4. In the raw file, all alternative texts and other not-visible content are translated. + +#### For most resources on WAI website {::nomarkdown}
  1. {:/} -The language codes are correct, per [frontmatter](/about/translating/guides/new-translation/#frontmatter). +The language codes in the [frontmatter](/about/translating/guides/new-translation/#frontmatter) are correct. {::nomarkdown}
  2. @@ -78,7 +168,7 @@ The information in the "About this translation" box is correct. {% include box.html type="end" %} {:/} -- If translator or contributor names are missing, it's because they are still commented out.\ +- If translator or contributor names are missing, it is because they are still commented out.\ Delete the hashmark and space (`# `) before the lines. - Check the dates: one is the date of the translation; the other should usually match the date in the footer. @@ -94,56 +184,8 @@ In the footer, the dates are the same in the English version and the translated
  3. {:/} -There is no code showing in the rendered page. - -{::nomarkdown} -
  4. -
  5. -{:/} - -All of the text that should be translated, is actually translated. - -{::nomarkdown} -
  6. -
  7. -{:/} - -The links work. - -{::nomarkdown} -
  8. -
  9. -{:/} - -Check the raw file to see if all alternative texts and other not-visible content are translated. - -{::nomarkdown} -
  10. -
  11. -{:/} - -In the "Help improve this page" box near the bottom, the "Fork and Edit" button works. - -If not, the fix is probably adding "content/" to the path in the front matter. - -For example: - -{::nomarkdown} -{% include box.html type="start" %} -{:/} -```yaml - path: content/index.es.md -``` -{::nomarkdown} -{% include box.html type="end" %} -{:/} - -{::nomarkdown} -
  12. -
  13. -{:/} - -For any videos on the page, the `[CC]` defaults to the translated language. +For any videos on the page, the `[CC]` icon of the video player defaults to the translated language.\ +See for example [_Keyboard Compatibility_ video in French](/perspective-videos/keyboard/fr). If not, some [video subtitles steps](/about/translating/guides/video-subtitles/) are probably missing. @@ -152,22 +194,9 @@ If not, some [video subtitles steps](/about/translating/guides/video-subtitles/)
{:/} -## For people who know the translated language - -The most important thing for review is helping accurately convey the meaning from the English version in the translated language. For that, you will need to read the English version and compare it to the translation. Often is best to have them open in side-by-side windows. +## I do _not_ know the translated language, can I help? -A technique for proof-reading is to listen to the translation being read aloud, for example with a screen reader or text-to-speech in the operating system. - -**Specific wording:** -- Consider different dialects. Where possible, the translation should use words and phrases that will be best understood across different areas. -- The translator and reviewer(s) might want to work together to consider different options for some wording.\ -If you have any questions about the wording, please report them in the GitHub issue so that WAI team and other volunteers can help.\ -Alternatively, send email to the publicly-archived [public-wai-translations@w3.org](mailto:public-wai-translations@w3.org) mailing-list. We are happy to help you decide on the best translated wording by sharing the considerations and nuances that went into choosing the wording for the English page. -- When you decide on translation of unclear words and phrases that will likely be in other resources, feel free to add them to the [Glossary for your language {% include_cached external.html %}](https://github.com/w3c/translation-glossaries). - -## For people who do _not_ know the translated language - -You can still help with reviews by looking for things like: +Yes, you can still help with reviews by looking for things like: - English text that is not translated (like alt text) - Link accuracy, - Formatting issues, @@ -175,7 +204,16 @@ You can still help with reviews by looking for things like: You can also help find missing content or potential issues with the specific wording. -**Suggestion: Compare three versions side-by-side:** +{::nomarkdown} +{% include box.html type="start" title="Suggestion: Compare three versions side-by-side" %} +{:/} + - The English original - The translation for review - A machine translation of the translation back into English (of course, this will be very inaccurate, yet sometimes it still works to spot issues) + +{::nomarkdown} +{% include box.html type="end" %} +{:/} + +[^1]: Emails sent to `group-wai-translations@w3.org` are not publicly visible. \ No newline at end of file From fe0a7b52401631a02f1b14f40149cc0d58e8ba45 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Re=CC=81mi=20Be=CC=81tin?= Date: Thu, 7 Mar 2024 16:30:45 +0100 Subject: [PATCH 14/30] Update review translation guide --- _about/translating/guides/review-translation.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/_about/translating/guides/review-translation.md b/_about/translating/guides/review-translation.md index ef9c042e..8b0be612 100644 --- a/_about/translating/guides/review-translation.md +++ b/_about/translating/guides/review-translation.md @@ -78,13 +78,13 @@ Please send an email to [group-wai-translations@w3.org](mailto:group-wai-transla ### Regular volunteers: -Indicate in the GitHub issue related to this translation that you are volunteering to review the translation, **and please always indicate the date by which you plan to review the translation.** +Indicate that you are volunteering to review the translation in the related GitHub issue. -This way, we can ask other volunteers if you are unable to complete the review by this date. +**Please always indicate the date by which you plan to review the translation.** This way, we can ask other volunteers if you are unable to complete the review by this date. ## Step 3: How to review a translation? {#review} -Review discussions take place directly in the Pull Request(s) opened by the translator. These are listed in the GitHub issue about the translation. +Review discussions take place directly in the Pull Request(s) opened by the translator. These are listed in the GitHub issue related to the translation. We encourage you to respectfully share your comments, suggested changes, spotted issues; and to work together with the translator(s) and other reviewer(s) to improve the translation. @@ -92,7 +92,7 @@ The most important things for review are: - **helping accurately convey the meaning from the English version** in the translated language. Translations must not change or adapt or add to the meaning of the English version in their translation. - **using respectful disability terminology** in the target language and region. -For that, you will need to read the English version and compare it to the translation. Often, it is best to have them open in side-by-side windows. A preview is included in most Pull Requests to see the rendered page. +For that, you will need to read the English version and compare it to the translation. Often, it is best to have them open in side-by-side windows. A preview is included in most Pull Requests, to see the rendered page. {::nomarkdown} {% include box.html type="start" title="Helpful tip" %} From 36cb3db09f114219eb75723f964b0e15a075c743 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Re=CC=81mi=20Be=CC=81tin?= Date: Thu, 7 Mar 2024 19:44:34 +0100 Subject: [PATCH 15/30] Fix link to french keyboard page --- _about/translating/guides/review-translation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_about/translating/guides/review-translation.md b/_about/translating/guides/review-translation.md index 8b0be612..89587cd7 100644 --- a/_about/translating/guides/review-translation.md +++ b/_about/translating/guides/review-translation.md @@ -185,7 +185,7 @@ In the footer, the dates are the same in the English version and the translated {:/} For any videos on the page, the `[CC]` icon of the video player defaults to the translated language.\ -See for example [_Keyboard Compatibility_ video in French](/perspective-videos/keyboard/fr). +See for example [_Keyboard Compatibility_ video in French](https://www.w3.org/WAI/perspective-videos/keyboard/fr). If not, some [video subtitles steps](/about/translating/guides/video-subtitles/) are probably missing. From 4f2d847d00d914f181e4cefe446b5ff134e26dbe Mon Sep 17 00:00:00 2001 From: Shawn Lawton Henry Date: Wed, 13 Mar 2024 23:18:42 -0500 Subject: [PATCH 16/30] Update index.md --- _about/index.md | 103 ++++++++++++++++++++++++++++++++++-------------- 1 file changed, 73 insertions(+), 30 deletions(-) diff --git a/_about/index.md b/_about/index.md index c44375f7..8bf3b0f7 100644 --- a/_about/index.md +++ b/_about/index.md @@ -6,7 +6,7 @@ lang: en feedbackmail: wai@w3.org class: tight-page footer: > # Text in footer in HTML -

Date: Updated 27 February 2023.

+

Date: Updated 13 March 2024.

Editor: Shawn Lawton Henry.

Developed with input from the Education and Outreach Working Group (EOWG).

github: @@ -18,11 +18,11 @@ github: {% include box.html type="start" h="2" title="Brief" class="full" %} {:/} -**[WAI develops…](https://www.w3.org/WAI/Resources/Overview)** +**[WAI develops…](/resources/)** -- guidelines which are widely regarded as the international standard for web accessibility +- guidelines that are widely regarded as the international standard for web accessibility - support materials to help understand and implement web accessibility -- resources, through international collaboration +- free online resources, through international collaboration **[WAI welcomes…](/about/participating/)** @@ -48,52 +48,95 @@ github: {% include_cached toc.html type="end" %} {:/} -## World Wide Web Consortium (W3C) Web Accessibility Initiative (WAI) +## W3C WAI -The World Wide Web Consortium's (W3C) commitment to lead the web to its full potential includes promoting a high degree of usability for people with disabilities. The Web Accessibility Initiative (WAI) is an initiative of the W3C. +The World Wide Web Consortium ([W3C](https://www.w3.org/about/) is an international [public-interest non-profit organization[(https://www.w3.org/news/2022/w3c-to-become-a-public-interest-non-profit-organization/) where Member organizations, a full-time staff, and the public work together to develop Web standards. Web Accessibility Initiative (WAI) is a key aspect of W3C's work for the benefit of humanity. -WAI develops its work through W3C's consensus-based process, involving different stakeholders in web accessibility. These include industry, disability organizations, government, accessibility research organizations, and more. +The information below extends the [W3C Mission](https://www.w3.org/mission/) (vision, identity, design principles, strategic goals) to address accessibility specifics. -WAI, in partnership with organizations around the world, pursues accessibility of the web through these primary activities: +## Mission -* ensuring that W3C standards support accessibility -* developing accessibility guidelines for web content and applications, browsers, and authoring tools -* developing resources to improve web accessibility evaluation processes and tools -* supporting education and outreach on web accessibility -* coordinating with research and development that may impact future accessibility of the web -* promoting harmonized international uptake of web accessibility standards +W3C's Web Accessibility Initiative (WAI) develops strategies, standards, and supporting resources to make the web accessible to people with disabilities. -Learn more about [How WAI Develops Accessibility Standards through the W3C Process: Milestones and Opportunities to Contribute](https://www.w3.org/WAI/standards-guidelines/w3c-process/). +See [Introduction to Web Accessibility](https://www.w3.org/WAI/fundamentals/accessibility-intro/) and [WAI Resources](https://www.w3.org/WAI/resources/). -## WAI Groups + +


+

+

+

+

+

+

+ +
+


+

+

+

+

+ +
-WAI includes the following Working Groups and Interest Group: +## Vision -- [Accessibility Guidelines Working Group (AG WG)](/GL/) (formerly the Web Content Accessibility Guidelines Working Group) -- [Accessible Platform Architectures (APA) Working Group](/APA/) -- [Accessible Rich Internet Applications (ARIA) Working Group](/ARIA/) -- [Education and Outreach Working Group (EOWG)](/about/groups/eowg/) -- [WAI Interest Group (WAI IG)](/about/groups/waiig/) +The W3C vision is that the Web and related technologies are accessible so that all people with disabilities around the globe can **participate equally** in the digital world. That includes: +* Accessibility standards/guidelines are harmonized globally. +* All technical standards and specifications support accessibility. +* Tools that create and deliver digital content support accessibility. +* Everyone who creates or manages digital products has relevant accessibility knowledge. +* New technologies, digital products, and content addresses accessibility from inception (“born accessible”). -Within the Working Groups, there are also [Task Forces](/about/groups/taskforces/). +## High-Level Objectives -Learn more about [Participating in WAI](https://www.w3.org/WAI/about/participating/). +To contribute to realizing the vision, W3C addresses the following areas: -## WAI News +1. **Specifications, standards, and technologies support accessibility:** + - Ensure that W3C specifications support accessibility. + - Provide guidance on accessibility in other specifications and technologies. -New WAI publications, draft documents for review, and other WAI announcements are listed on the [News page](https://www.w3.org/WAI/news/). +2. **International accessibility standards:** + - Facilitate international multi-stakeholder development and communication so the standards can be adopted and implemented internationally. + - Develop technical specifications to support accessibility, such as [WAI-ARIA](https://www.w3.org/WAI/standards-guidelines/aria/) and accessibility API mappings. + - Develop accessibility standards/guidelines for relevant tools and content. + - Provide guidance beyond what can be included in these standards, such as [WCAG Supplemental Guidance](https://www.w3.org/WAI/WCAG2/supplemental/about/). + +3. **Support understanding, adopting, and implementing accessibility:** + - Facilitate and promote translations of W3C accessibility standards and supporting resources. + - Provide documentation on understanding and implementing accessibility standards. + - Provide awareness and education resources, such as many listed in [WAI Resources](https://www.w3.org/WAI/resources/). -You can subscribe to get news announcements via e-mail, Atom/RSS feed, or Twitter from [Get WAI News](https://www.w3.org/WAI/news/subscribe/). +4. **Accessibility research**: + - Encourage effective international research to provide a solid basis for accessibility standards. + - Conduct horizon scanning. -## Current Work +## Current Work and News Current work is introduced in [What We're Working On - Accessibility Activities and Publications](https://www.w3.org/WAI/update/). -## WAI Staff +New WAI publications, draft documents for review, and other WAI announcements are listed on the [News page](https://www.w3.org/WAI/news/). -To reach all WAI staff, you can e-mail +You can subscribe to get news announcements via e-mail, Atom/RSS feed, and social media from [Get WAI News](https://www.w3.org/WAI/news/subscribe/). + +## WAI Staff * [Shawn Lawton Henry](https://www.w3.org/staff/#shawn) is Web Accessibility Initiative (WAI) Program Lead; Accessibility Education and Communications Lead. * [Kevin White](https://www.w3.org/staff/#kevin) is Accessibility Technical Lead and supports the Accessibility Guidelines Working Group that develops Web Content Accessibility Guidelines (WCAG). * [Roy Ruoxi Ran (冉若曦)](https://www.w3.org/staff/#ran) supports accessibility Working Groups and accessibility in China. * [Daniel Montalvo](https://www.w3.org/staff/#dmontalvo) supports accessibility Working Groups and standards harmonization in Europe. + +To reach all WAI staff, you can e-mail + +## WAI Groups + +WAI includes the following Working Groups and Interest Group: + +- [Accessibility Guidelines Working Group (AG WG)](/GL/) (formerly the Web Content Accessibility Guidelines Working Group) +- [Accessible Platform Architectures (APA) Working Group](/APA/) +- [Accessible Rich Internet Applications (ARIA) Working Group](/ARIA/) +- [Education and Outreach Working Group (EOWG)](/about/groups/eowg/) +- [WAI Interest Group (WAI IG)](/about/groups/waiig/) + +Within the Working Groups, there are also [Task Forces](/about/groups/taskforces/). + +Learn more about [Participating in WAI](https://www.w3.org/WAI/about/participating/). From af4afc1061a7069c645c754c45edc8018a7f4f6a Mon Sep 17 00:00:00 2001 From: Shawn Lawton Henry Date: Wed, 13 Mar 2024 23:28:19 -0500 Subject: [PATCH 17/30] Update index.md --- _about/index.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/_about/index.md b/_about/index.md index 8bf3b0f7..18ba3590 100644 --- a/_about/index.md +++ b/_about/index.md @@ -50,15 +50,9 @@ github: ## W3C WAI -The World Wide Web Consortium ([W3C](https://www.w3.org/about/) is an international [public-interest non-profit organization[(https://www.w3.org/news/2022/w3c-to-become-a-public-interest-non-profit-organization/) where Member organizations, a full-time staff, and the public work together to develop Web standards. Web Accessibility Initiative (WAI) is a key aspect of W3C's work for the benefit of humanity. +The World Wide Web Consortium ([W3C](https://www.w3.org/about/)) is an international [public-interest non-profit organization](https://www.w3.org/news/2022/w3c-to-become-a-public-interest-non-profit-organization/) where Member organizations, a full-time staff, and the public work together to develop Web standards. Web Accessibility Initiative (WAI) is a key aspect of W3C's work for the benefit of humanity. -The information below extends the [W3C Mission](https://www.w3.org/mission/) (vision, identity, design principles, strategic goals) to address accessibility specifics. - -## Mission - -W3C's Web Accessibility Initiative (WAI) develops strategies, standards, and supporting resources to make the web accessible to people with disabilities. - -See [Introduction to Web Accessibility](https://www.w3.org/WAI/fundamentals/accessibility-intro/) and [WAI Resources](https://www.w3.org/WAI/resources/). +This information extends the [W3C Mission](https://www.w3.org/mission/) (vision, identity, design principles, strategic goals) to address accessibility specifics.


@@ -78,7 +72,13 @@ See [Introduction to Web Accessibility](https://www.w3.org/WAI/fundamentals/acce
-## Vision +### Mission + +W3C's Web Accessibility Initiative (WAI) develops strategies, standards, and supporting resources to make the web accessible to people with disabilities. + +See [Introduction to Web Accessibility](https://www.w3.org/WAI/fundamentals/accessibility-intro/) and [WAI Resources](https://www.w3.org/WAI/resources/). + +### Vision The W3C vision is that the Web and related technologies are accessible so that all people with disabilities around the globe can **participate equally** in the digital world. That includes: * Accessibility standards/guidelines are harmonized globally. @@ -87,7 +87,7 @@ The W3C vision is that the Web and related technologies are accessible so that a * Everyone who creates or manages digital products has relevant accessibility knowledge. * New technologies, digital products, and content addresses accessibility from inception (“born accessible”). -## High-Level Objectives +### High-Level Objectives To contribute to realizing the vision, W3C addresses the following areas: @@ -127,7 +127,7 @@ You can subscribe to get news announcements via e-mail, Atom/RSS feed, and socia To reach all WAI staff, you can e-mail -## WAI Groups +## WAI Working Groups WAI includes the following Working Groups and Interest Group: @@ -135,7 +135,7 @@ WAI includes the following Working Groups and Interest Group: - [Accessible Platform Architectures (APA) Working Group](/APA/) - [Accessible Rich Internet Applications (ARIA) Working Group](/ARIA/) - [Education and Outreach Working Group (EOWG)](/about/groups/eowg/) -- [WAI Interest Group (WAI IG)](/about/groups/waiig/) +- [WAI Interest Group (WAI IG)](/about/groups/waiig/) is an e-mail discussion list that is open to anyone Within the Working Groups, there are also [Task Forces](/about/groups/taskforces/). From 6fae913a398d1a3ade925761cf7890d4746f9c1e Mon Sep 17 00:00:00 2001 From: Shawn Lawton Henry Date: Wed, 13 Mar 2024 23:36:12 -0500 Subject: [PATCH 18/30] Update index.md --- _about/index.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/_about/index.md b/_about/index.md index 18ba3590..8579e726 100644 --- a/_about/index.md +++ b/_about/index.md @@ -7,8 +7,7 @@ feedbackmail: wai@w3.org class: tight-page footer: > # Text in footer in HTML

Date: Updated 13 March 2024.

-

Editor: Shawn Lawton Henry.

-

Developed with input from the Education and Outreach Working Group (EOWG).

+

Editor: Shawn Lawton Henry. Contributors include: Kevin White, Ruoxi Ran, and Daniel Montalvo.

github: repository: w3c/wai-about-wai path: '_about/index.md' From 819d9c7ae474ed561299fee3281321787a716e01 Mon Sep 17 00:00:00 2001 From: Shawn Lawton Henry Date: Wed, 13 Mar 2024 23:42:55 -0500 Subject: [PATCH 19/30] Update index.md --- _about/index.md | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/_about/index.md b/_about/index.md index 8579e726..c5ab4223 100644 --- a/_about/index.md +++ b/_about/index.md @@ -13,6 +13,16 @@ github: path: '_about/index.md' --- +{::nomarkdown} +{% include box.html type="start" class="" %} +{:/} + +**Accessibility: Essential for some, useful for all.** + +{::nomarkdown} +{% include box.html type="end" %} +{:/} + {::nomarkdown} {% include box.html type="start" h="2" title="Brief" class="full" %} {:/} @@ -29,12 +39,11 @@ github: - volunteers to review, implement, and promote guidelines - dedicated participants in Working Groups - {::nomarkdown} {% include box.html type="end" %} {:/} -{::options toc_levels="2" /} +{::options toc_levels="3" /} {::nomarkdown} {% include_cached toc.html type="start" title="Page Contents" %} From 1c635ef94564adc54bf988740a78041cb418c761 Mon Sep 17 00:00:00 2001 From: Shawn Lawton Henry Date: Wed, 13 Mar 2024 23:58:30 -0500 Subject: [PATCH 20/30] Update index.md --- _about/index.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/_about/index.md b/_about/index.md index c5ab4223..c0020664 100644 --- a/_about/index.md +++ b/_about/index.md @@ -7,7 +7,6 @@ feedbackmail: wai@w3.org class: tight-page footer: > # Text in footer in HTML

Date: Updated 13 March 2024.

-

Editor: Shawn Lawton Henry. Contributors include: Kevin White, Ruoxi Ran, and Daniel Montalvo.

github: repository: w3c/wai-about-wai path: '_about/index.md' @@ -43,8 +42,6 @@ github: {% include box.html type="end" %} {:/} -{::options toc_levels="3" /} - {::nomarkdown} {% include_cached toc.html type="start" title="Page Contents" %} {:/} From 51a843aff977554d5d69a1c27e83fa7409c25a45 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Re=CC=81mi=20Be=CC=81tin?= Date: Tue, 19 Mar 2024 18:08:29 +0100 Subject: [PATCH 21/30] Add guide about translating images --- _about/translating/guides/images.md | 163 ++++++++++++++++++ .../translating/inkscape-export-png.jpg | Bin 0 -> 44253 bytes .../translating/inkscape-language-subtag.jpg | Bin 0 -> 90783 bytes .../translating/inkscape-text-tool.jpg | Bin 0 -> 11181 bytes 4 files changed, 163 insertions(+) create mode 100644 _about/translating/guides/images.md create mode 100644 content-images/wai-about-wai/translating/inkscape-export-png.jpg create mode 100644 content-images/wai-about-wai/translating/inkscape-language-subtag.jpg create mode 100644 content-images/wai-about-wai/translating/inkscape-text-tool.jpg diff --git a/_about/translating/guides/images.md b/_about/translating/guides/images.md new file mode 100644 index 00000000..085af9b9 --- /dev/null +++ b/_about/translating/guides/images.md @@ -0,0 +1,163 @@ +--- +title: "Translating Images" +nav_title: Translating Images +github: + repository: w3c/wai-about-wai + path: '_about/translating/guides/images.md' +permalink: /about/translating/guides/images/ +ref: /about/translating/guides/images/ +lang: en +last_updated: 2024-03-19 + +description: Help make the Web accessible to people with disabilities around the world. We appreciate your contributions to translating W3C WAI accessibility resources. +image: /content-images/wai-about-wai/social-translations.png + +feedbackmail: wai@w3.org +footer: | +

Date: Updated 19 March 2024.

+

Editor: Rémi Bétin.

+--- + +{::nomarkdown} +{% include box.html type="start" h="2" title="Summary" class="full" %} +{:/} + +This page guides you through the technical steps to translate images from the Web Accessibility Initiative (WAI) website. + +{::nomarkdown} +{% include box.html type="end" %} +{:/} + +{::options toc_levels="2" /} +{::nomarkdown} +{% include_cached toc.html type="start" title="Page Contents" class="simple" %} +{:/} + +- TOC is created automatically. +{:toc} + +{::nomarkdown} +{% include toc.html type="end" %} +{:/} + +## Overview + +There are 3 steps to create translated versions of our resources' images: + +1. **[Translate the SVG source file](#translate-svg)** + +2. **[Export the translated image as a PNG](#export-png)** + +3. **[Commit your changes and open a Pull Request](#commit-changes)** + +## Initial step: Declare your intent + +In accordance with the WAI Translations process, please always [declare your intent](/about/translating/step-by-step/#intent) and wait for reply from WAI team _before_ starting a translation. + +## Step 1: Translate the SVG source file {#translate-svg} + +When an image from our website can be translated, it is usually provided with an SVG source file. + +In general: +- PNG images are located in the `content-images/` folder ot the repository +- SVG source files are located in the `content-images/source/` folder of the repository. + +**What you will need:** +- An SVG editor. The following instructions apply to the [Inkscape](https://inkscape.org/) editor that have been used by some volunteers. +- The ["Noto Sans" font family](https://fonts.google.com/noto/specimen/Noto+Sans), including the _Regular_ and _Bold_ weights, installed on your computer. + +**Translating the SVG source file:** + +{::nomarkdown} +
    +
  1. +{:/} + +Duplicate the SVG file and add your language subtag in the filename. Example: `bridge.fr.svg` + +{::nomarkdown} +
  2. +
  3. +{:/} + +Open the SVG file in your SVG editor. + +{::nomarkdown} +
  4. +
  5. +{:/} + +In Inkscape, select the "Text Tool" on the lateral toolbar (or use the keyboard shortcut T) + +{% include showhidebutton.html showtext="Show screenshot" hidetext="Hide screenshot" target=".text-tool" %} +
    + {% include image.html src="translating/inkscape-text-tool.jpg" alt="" %} +
    + +{::nomarkdown} +
  6. +
  7. +{:/} + +Select the text objects and translate them. If necessary, you can slightly adjust the font size to prevent the text from going beyond the frame. + +{::nomarkdown} +
  8. +
  9. +{:/} + +Change the language (`dc:language`) value of the file, with your language subtag. For example: `fr` instead of `en`. + +In Inkscape, you can go to `File > Document Properties…`. Then, in the "Metadata" tab, change the value of the "Language" field. + +{% include showhidebutton.html showtext="Show screenshot" hidetext="Hide screenshot" target=".language-subtag" %} +
    + {% include image.html src="translating/inkscape-language-subtag.jpg" alt="" %} +
    + +{::nomarkdown} +
  10. +
  11. +{:/} + +Save the SVG file. + +{::nomarkdown} +
  12. +
+{:/} + +## Step 2: Export the translated image as a PNG {#export-png} + +{::nomarkdown} +
    +
  1. +{:/} +Export the file as a PNG image, with your language subtag in the middle. Example: `bridge.fr.png`.\ + +In Inkscape, go to `File > Export…` and make sure: +- the Export area is "Page" (not "Document") +- "PNG" is the selected export format. + +Then click on the "Export" button. + +{% include showhidebutton.html showtext="Show screenshot" hidetext="Hide screenshot" target=".export-png" %} +
    + {% include image.html src="translating/inkscape-export-png.jpg" alt="" %} +
    + +{::nomarkdown} +
  2. +
  3. +{:/} + +Move the PNG file in the same location as the English version of the PNG file (generally at the root of the `content-images/` folder) + +{::nomarkdown} +
  4. +
+{:/} + +## Step 3: Commit your changes and open a Pull Request {#commit-changes} + +Include the PNG and the SVG source file. \ No newline at end of file diff --git a/content-images/wai-about-wai/translating/inkscape-export-png.jpg b/content-images/wai-about-wai/translating/inkscape-export-png.jpg new file mode 100644 index 0000000000000000000000000000000000000000..07c33d4bba2537c18594054713bda254cd60d4a2 GIT binary patch literal 44253 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 R;rTC4iW7i9h56Uy{{nO~+mHYN literal 0 HcmV?d00001 diff --git a/content-images/wai-about-wai/translating/inkscape-language-subtag.jpg b/content-images/wai-about-wai/translating/inkscape-language-subtag.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d7fdcd6b4a68e5195fdf15465d5849391c0ef0f1 GIT binary patch literal 90783 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 literal 0 HcmV?d00001 diff --git a/content-images/wai-about-wai/translating/inkscape-text-tool.jpg b/content-images/wai-about-wai/translating/inkscape-text-tool.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e8fa90f2b56572b4b699a93cb1fc29beb1177715 GIT binary patch literal 11181 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 Date: Tue, 19 Mar 2024 18:10:41 +0100 Subject: [PATCH 22/30] Add link to Images guidance --- _about/translating/guides.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/_about/translating/guides.md b/_about/translating/guides.md index 391100bb..f5ea5a39 100644 --- a/_about/translating/guides.md +++ b/_about/translating/guides.md @@ -7,13 +7,13 @@ github: permalink: /about/translating/guides/ ref: /about/translating/guides/ lang: en -last_updated: 2023-11-09 +last_updated: 2024-03-19 description: Help make the Web accessible to people with disabilities around the world. We appreciate your contributions to translating W3C WAI accessibility resources. image: /content-images/wai-about-wai/social-translations.png feedbackmail: wai@w3.org footer: | -

Date: Updated 9 November 2023.

+

Date: Updated 19 March 2024.

Editors: Shawn Lawton Henry and Rémi Bétin.

Developed as part of the WAI-CooP project, co-funded by the European Commission.

--- @@ -21,7 +21,8 @@ footer: | ## Guides - [Creating a Translation](/about/translating/guides/new-translation/) -- [Translating Subtitiles/Descriptions](/about/translating/guides/video-subtitles/) +- [Translating Subtitles/Descriptions](/about/translating/guides/video-subtitles/) +- [Translating Images](/about/translating/guides/images/) - [Reviewing a Translation](/about/translating/guides/review-translation/) - [Translation Guidance](/about/translating/guides/translation-guidance/) - [Using GitHub](/about/translating/guides/using-github/) From eaded6457e063004c6d04e6b332537b047fe0ff8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Re=CC=81mi=20Be=CC=81tin?= Date: Tue, 19 Mar 2024 18:14:59 +0100 Subject: [PATCH 23/30] Small updates --- _about/translating/guides/images.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_about/translating/guides/images.md b/_about/translating/guides/images.md index 085af9b9..fab42c24 100644 --- a/_about/translating/guides/images.md +++ b/_about/translating/guides/images.md @@ -59,7 +59,7 @@ In accordance with the WAI Translations process, please always [declare your int When an image from our website can be translated, it is usually provided with an SVG source file. In general: -- PNG images are located in the `content-images/` folder ot the repository +- PNG images are located in the `content-images/` folder of the repository - SVG source files are located in the `content-images/source/` folder of the repository. **What you will need:** @@ -151,7 +151,7 @@ Then click on the "Export" button.
  • {:/} -Move the PNG file in the same location as the English version of the PNG file (generally at the root of the `content-images/` folder) +Move the PNG file in the same location as the English version (generally at the root of the `content-images/` folder) {::nomarkdown}
  • From 78682aa33d2e5b13a673be7de2f8ed8b81f11621 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Re=CC=81mi=20Be=CC=81tin?= Date: Tue, 26 Mar 2024 14:14:45 +0100 Subject: [PATCH 24/30] Seeking reviewers --- _about/update.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_about/update.md b/_about/update.md index bc78c423..dc13d189 100644 --- a/_about/update.md +++ b/_about/update.md @@ -152,7 +152,7 @@ Links to each Working Group's "How to Participate" page are in the [Participatin We also offer ideas for [Promoting and Implementing Web Accessibility](https://www.w3.org/WAI/about/participating/#promoting-and-implementing-web-accessibility). -**Translations:** If you might want to volunteer to contribute to translations, please see [Translating WAI resources](/about/translating/). You can send questions via e-mail to [group-wai-translations@w3.org](group-wai-translations@w3.org) We are currently seeking translators in all languages and reviewers for draft translations in German and Japanese. +**Translations:** If you might want to volunteer to contribute to translations, please see [Translating WAI resources](/about/translating/). You can send questions via e-mail to [group-wai-translations@w3.org](group-wai-translations@w3.org) We are currently seeking translators in all languages and reviewers for draft translations in Czech, Greek, Indonesian and Korean. **We look forward to your contributions to making the web more accessible to people with disabilities!** From 648b8c7d982cc5a4aa52f43e85500c7ef7f46d83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Re=CC=81mi=20Be=CC=81tin?= Date: Tue, 26 Mar 2024 17:11:04 +0100 Subject: [PATCH 25/30] Add products disclaimer in "Translating Images" guide --- _about/translating/guides/images.md | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/_about/translating/guides/images.md b/_about/translating/guides/images.md index fab42c24..8be58b51 100644 --- a/_about/translating/guides/images.md +++ b/_about/translating/guides/images.md @@ -7,14 +7,14 @@ github: permalink: /about/translating/guides/images/ ref: /about/translating/guides/images/ lang: en -last_updated: 2024-03-19 +last_updated: 2024-03-26 description: Help make the Web accessible to people with disabilities around the world. We appreciate your contributions to translating W3C WAI accessibility resources. image: /content-images/wai-about-wai/social-translations.png feedbackmail: wai@w3.org footer: | -

    Date: Updated 19 March 2024.

    +

    Date: Updated 26 March 2024.

    Editor: Rémi Bétin.

    --- @@ -160,4 +160,15 @@ Move the PNG file in the same location as the English version (generally at the ## Step 3: Commit your changes and open a Pull Request {#commit-changes} -Include the PNG and the SVG source file. \ No newline at end of file +Include the PNG and the SVG source file. + + +{::nomarkdown} +{% include box.html type="start" title="Disclaimer" %} +{:/} + +W3C does not endorse specific products. Inclusion of products in this resource does not indicate endorsement by W3C. + +{::nomarkdown} +{% include box.html type="end" title="Disclaimer" %} +{:/} \ No newline at end of file From 523cf985aed4df3e318ae3b67d2039a3acfc6f7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Re=CC=81mi=20Be=CC=81tin?= Date: Tue, 26 Mar 2024 17:15:48 +0100 Subject: [PATCH 26/30] Update changelog --- _about/update.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/_about/update.md b/_about/update.md index dc13d189..7aa2db8e 100644 --- a/_about/update.md +++ b/_about/update.md @@ -197,6 +197,8 @@ We also offer ideas for [Promoting and Implementing Web Accessibility](https://w {% include_cached excol.html type="middle" %} +* @@ March 2024 + * Updated call for volunteer reviewers in [How to Get Involved](https://www.w3.org/WAI/update/##participate). * 27 February 2024 * Removed [Digital Publishing WAI-ARIA Module 1.1](https://www.w3.org/TR/dpub-aria-1.1/) and [Digital Publishing Accessibility API Mappings 1.1](https://www.w3.org/TR/dpub-aam-1.1/) from [Upcoming Publications list](https://www.w3.org/WAI/update/#upcoming-publications) since we published them today as "Candidate Recommendations" * Updated W3C WAI Staff listing From 5707bb3a5c9617668b4c24d4f11d5b6384396dce Mon Sep 17 00:00:00 2001 From: Shawn Lawton Henry Date: Tue, 26 Mar 2024 20:49:23 -0500 Subject: [PATCH 27/30] Update update.md --- _about/update.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/_about/update.md b/_about/update.md index 7aa2db8e..667b35d9 100644 --- a/_about/update.md +++ b/_about/update.md @@ -1,6 +1,6 @@ --- title: "What We're Working On" -title_html: "What We're Working On
    Accessibility Activities and Publications, March 2024" +title_html: "What We're Working On
    Accessibility Activities and Publications, April 2024" # nav_title: "Short Title" # NEW: (I think not used yet, but in place for possible future use.) lang: en @@ -24,7 +24,7 @@ feedbackmail: wai@w3.org # Translate the Working Group name. Leave the Working Group acronym in English. # Do not change the dates in the footer below. footer: > -

    Date: Updated 27 February 2024. First published March 2022.

    +

    Date: Updated 26 March 2024. First published March 2022.

    Editor: Shawn Lawton Henry. Contributors: WAI staff, Working Group Co-Chairs, and others working on accessibility at W3C.

    inline_css: | @@ -109,7 +109,7 @@ Existing translations of W3C accessibility resources are listed in [All WAI Tran ## Upcoming Publications -We plan to publish the following documents in Q1 2024 (January, February, March) and Q2 (March, April, May). +We plan to publish the following documents in Q2 (March, April, May) 2024. * More [WAI Translations](/translations/) - usually some each week * [Guidance on Applying WCAG 2.2 to Non-Web Information and Communications Technologies (WCAG2ICT) Draft](https://www.w3.org/TR/2023/DNOTE-wcag2ict-20230815/) updates in Q2 @@ -197,7 +197,7 @@ We also offer ideas for [Promoting and Implementing Web Accessibility](https://w {% include_cached excol.html type="middle" %} -* @@ March 2024 +* 26 March 2024 * Updated call for volunteer reviewers in [How to Get Involved](https://www.w3.org/WAI/update/##participate). * 27 February 2024 * Removed [Digital Publishing WAI-ARIA Module 1.1](https://www.w3.org/TR/dpub-aria-1.1/) and [Digital Publishing Accessibility API Mappings 1.1](https://www.w3.org/TR/dpub-aam-1.1/) from [Upcoming Publications list](https://www.w3.org/WAI/update/#upcoming-publications) since we published them today as "Candidate Recommendations" From f971f4e686bf1342e697de6fcb84aa75cf816029 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Re=CC=81mi=20Be=CC=81tin?= Date: Thu, 7 Mar 2024 18:04:41 +0100 Subject: [PATCH 28/30] Update translation guidance --- _about/translating.md | 9 +- _about/translating/guides/images.md | 8 +- _about/translating/guides/new-translation.md | 149 ++++++++++++++-- .../translating/guides/review-translation.md | 2 +- .../guides/translation-guidance.md | 168 ------------------ _about/translating/guides/using-github.md | 31 ++-- _about/translating/guides/video-subtitles.md | 42 ++++- _about/translating/guides/wcag.md | 26 +-- _about/translating/step-by-step.md | 102 ++++------- 9 files changed, 251 insertions(+), 286 deletions(-) delete mode 100644 _about/translating/guides/translation-guidance.md diff --git a/_about/translating.md b/_about/translating.md index 1eec86e3..699f944d 100644 --- a/_about/translating.md +++ b/_about/translating.md @@ -7,14 +7,14 @@ github: permalink: /about/translating/ ref: /about/translating/ -last_updated: 2023-11-09 +last_updated: 2024-04-09 lang: en description: Help make the Web accessible to people with disabilities around the world. We appreciate your contributions to translating W3C WAI accessibility resources. image: /content-images/wai-about-wai/social-translations.png feedbackmail: wai@w3.org footer: | -

    Date: Updated 9 November 2023.

    +

    Date: Updated 9 April 2024.

    Editors: Shawn Lawton Henry and Rémi Bétin.

    Developed with input from the Education and Outreach Working Group (EOWG). Developed with support from the WAI Expanding Access project, funded by the Ford Foundation. Updated as part of the WAI-CooP project, co-funded by the European Commission.

    --- @@ -66,7 +66,10 @@ To avoid overlapping work: ### If you want to translate a WAI resource: - Follow instructions in [[Step-by-Step Guide to Translating WAI Resources]](/about/translating/step-by-step/). -- You will find more detailed guidance in [[Translations Guides]](/about/translating/guides/). + +### If you want to volunteer to review a translation: + +- Follow instructions in [[Reviewing a Translation]](/about/translating/guides/review-translation/). We encourage you to keep up on related translations work by [subscribing to the WAI Translations mailing list](mailto:public-wai-translations-request@w3.org?subject=subscribe). diff --git a/_about/translating/guides/images.md b/_about/translating/guides/images.md index 8be58b51..0a79a970 100644 --- a/_about/translating/guides/images.md +++ b/_about/translating/guides/images.md @@ -1,20 +1,20 @@ --- -title: "Translating Images" -nav_title: Translating Images +title: "How to Translate Images" +nav_title: Images github: repository: w3c/wai-about-wai path: '_about/translating/guides/images.md' permalink: /about/translating/guides/images/ ref: /about/translating/guides/images/ lang: en -last_updated: 2024-03-26 +last_updated: 2024-04-09 description: Help make the Web accessible to people with disabilities around the world. We appreciate your contributions to translating W3C WAI accessibility resources. image: /content-images/wai-about-wai/social-translations.png feedbackmail: wai@w3.org footer: | -

    Date: Updated 26 March 2024.

    +

    Date: Updated 9 April 2024.

    Editor: Rémi Bétin.

    --- diff --git a/_about/translating/guides/new-translation.md b/_about/translating/guides/new-translation.md index 4369b5e6..0599dcca 100644 --- a/_about/translating/guides/new-translation.md +++ b/_about/translating/guides/new-translation.md @@ -1,5 +1,5 @@ --- -title: "Creating a New Translation" +title: "How to Translate a WAI Resource" nav_title: New translation github: repository: w3c/wai-about-wai @@ -7,21 +7,34 @@ github: permalink: /about/translating/guides/new-translation/ ref: /about/translating/guides/new-translation/ lang: en -last_updated: 2023-11-09 - +last_updated: 2024-04-09 +redirect_from: + - /about/translating/guides/translation-guidance/ description: Help make the Web accessible to people with disabilities around the world. We appreciate your contributions to translating W3C WAI accessibility resources. image: /content-images/wai-about-wai/social-translations.png feedbackmail: wai@w3.org footer: | -

    Date: Updated 9 November 2023.

    +

    Date: Updated 9 April 2024.

    Editors: Shawn Lawton Henry and Rémi Bétin.

    Developed as part of the WAI-CooP project, co-funded by the European Commission.

    --- -{::options toc_levels="2,3" /} {::nomarkdown} -{% include toc.html type="start" title="Page Contents" %} +{% include box.html type="start" h="2" title="Summary" class="full" %} +{:/} + +This page guides you through the technical steps to translate Web Accessibility Initiative (WAI) resources, and provides other important guidance. + +For instructions on translating the Web Content Accessibility Guidelines (WCAG), see [[How to Translate WCAG 2]](/about/translating/guides/wcag/). + +{::nomarkdown} +{% include box.html type="end" %} +{:/} + +{::options toc_levels="2" /} +{::nomarkdown} +{% include_cached toc.html type="start" title="Page Contents" class="simple" %} {:/} - TOC is created automatically. @@ -31,10 +44,30 @@ footer: | {% include toc.html type="end" %} {:/} -## Initial steps +## Overview + +There are 4 main technical steps to create a new WAI resource translation: + +1. **[Create a new file](#create-file)** + +2. **[Update the "front matter" metadata](#frontmatter)** + +3. **[Translate the main content](#main-content)** + +4. **[Commit your changes and open a Pull Request](#commit-changes)** + +## General guidance + +- **Do not change or adapt or add to the meaning of the English version** in your translation.\ +If you have suggestions for changes to the English version, submit them via GitHub or e-mail using the links in the “Help improve this page” box near the bottom of the page. +- **Before starting, find the language short code "subtag"** from [Language Subtag Registry {% include_cached external.html %}](https://www.iana.org/assignments/language-subtag-registry/language-subtag-registry). You will use it at multiple times during the translation. +- The markdown files are very sensitive to indentation, commas, quotes, and special characters. **We recommend that you use a markdown editor or a simple text editor** (including GitHub interface) — and not a document editor like Microsoft Word that often changes quotes and indentation. +- **Some resources have specific Translations notes.** If you see a comment such as "Read Translations Notes at" in the ["front matter" metadata](/about/translating/guides/new-translation/#frontmatter), follow the link and read the specific guidance.\ +If you wish to translate the [WCAG-EM Report Tool](https://www.w3.org/WAI/eval/report-tool/), please read [this specific guidance {% include_cached external.html %}](https://github.com/w3c/wai-wcag-em-report-tool/wiki/How-to-add-a-language), as different steps have to be followed. + +## Initial step: Declare your intent -Before starting: -- Find the language short code "subtag" from [Language Subtag Registry {% include_cached external.html %}](https://www.iana.org/assignments/language-subtag-registry/language-subtag-registry). You will use it at multiple times during the translation. +In accordance with the WAI Translations process, please always [declare your intent](/about/translating/step-by-step/#intent) and wait for reply from WAI team _before_ starting a translation. ## Step 1: Create a new file {#create-file} @@ -51,7 +84,7 @@ Duplicate the file used by the original version, with the language shortcode add {% include box.html type="end" %} {:/} -## Step 2: Update "front matter" metadata {#frontmatter} +## Step 2: Update the "front matter" metadata {#frontmatter} {::nomarkdown} {% include box.html type="start" class="highlighted" %} @@ -184,6 +217,98 @@ Many resources have inline instructions in the front matter (after the "`#`" cha Please follow these instructions. It will help you know what to translate/update and what to not change. -## Step 3: Translate main content +## Step 3: Translate main content {#main-content} + +### Markdown/Code + +Please leave the code, HTML, and markdown as is without changing it. + +Make sure to: + +{::nomarkdown} +
      +
    • +{:/} + +Translate titles in the markdown, such as "Summary" in: + +{::nomarkdown} +{% include box.html type="start" %} +{:/} +```liquid +{% raw %}{% include box.html type="start" title="Summary" class="" %}{% endraw %} +``` +{::nomarkdown} +{% include box.html type="end" %} +{:/} + +{::nomarkdown} +
    • +
    • +{:/} + +Translate image alternative text, such as “mouse crossed out” in: + +{::nomarkdown} +{% include box.html type="start" %} +{:/} + +- in Markdown: `![mouse crossed out](https://www.w3.org/WAI/intro/no-mouse.png)` +- in HTML: `mouse crossed out` + +{::nomarkdown} +{% include box.html type="end" %} +{:/} + +{::nomarkdown} +
    • +
    • +{:/} + +Make sure that the quote marks stay as is, and are not converted to "smart quotes" by word processing software. + +{::nomarkdown} +
    • +
    +{:/} + +### Links + +Most links are formatted with single or double brackets and parentheses; for example: + +{::nomarkdown} +{% include box.html type="start" %} +{:/} +```markdown +[Text that is linked]({%raw%}/{%endraw%}path/to/filename/) +[[Title of WAI Page]]({%raw%}/{%endraw%}path/to/filename/) +``` +{::nomarkdown} +{% include box.html type="end" %} +{:/} + +Make sure to: +- Keep brackets and parentheses together, with no space between the closing `]` and the opening `(`. +- Keep double `[[` or single brackets `[` as they are. +- Translate the text in the links, including document titles. +- Do not manually add `(in English)`, even for external links. + +### Specific wording {#specific-wording} +- Check [other translations in your language](/translations) to see how similar words and concepts have been translated. In particular, [Authorized Translations](https://www.w3.org/Translations/authorized.html) have had significant review and input. +- Read the [General Translation Glossary {% include_cached external.html %}](https://github.com/w3c/wai-translations/blob/main/glossaries/general.md) and see if there is a [glossary for your language {% include_cached external.html %}](https://github.com/w3c/wai-translations#list-of-glossaries). +- Consider different dialects. Where possible, the translation should use words and phrases that will be best understood across different areas. + +### Videos & Images + +- If the page has videos, refer to [[How to Create Translated Video Subtitles and Descriptions]](/about/translating/guides/video-subtitles/) +- If the page has images with text, refer to [[How to Translate Images]](/about/translating/guides/images/) + +## Step 4: Commit your changes and open a Pull Request {#commit-changes} + +Commit your changes and follow instructions in [[Step-by-Step Guide to Translating WAI Resources]](/about/translating/step-by-step/#preview). + +## We are here to help + +If you have any questions about the translation, please report them in the related GitHub issue so that WAI team and other volunteers can help. Alternatively, send an e-mail to the publicly-archived [public-wai-translations@w3.org](mailto:public-wai-translations@w3.org) mailing-list. -Follow [Translation guidance]({{ "/about/translating/guides/translation-guidance/" | relative_url }}) to translate the main content of the page. +We are happy to help you decide on the best translated wording by sharing the considerations and nuances that went into choosing the wording for the English page. \ No newline at end of file diff --git a/_about/translating/guides/review-translation.md b/_about/translating/guides/review-translation.md index 89587cd7..5a4e4071 100644 --- a/_about/translating/guides/review-translation.md +++ b/_about/translating/guides/review-translation.md @@ -4,7 +4,7 @@ nav_title: Reviewing a Translation lang: en last_updated: 2024-03-07 -# Do not delete the following translators/contributors lines, used to display an example in the page. +# Do not delete the following translators/contributors lines: they are used to display an example in the page. translators: - name: Translator 1 - name: Translator 2 diff --git a/_about/translating/guides/translation-guidance.md b/_about/translating/guides/translation-guidance.md deleted file mode 100644 index 34d23810..00000000 --- a/_about/translating/guides/translation-guidance.md +++ /dev/null @@ -1,168 +0,0 @@ ---- -title: "Translation Guidance" -nav_title: Translation Guidance -github: - repository: w3c/wai-about-wai - path: '_about/translating/guides/translation-guidance.md' -permalink: /about/translating/guides/translation-guidance/ -ref: /about/translating/guides/translation-guidance/ -lang: en -last_updated: 2023-11-09 -description: Help make the Web accessible to people with disabilities around the world. We appreciate your contributions to translating W3C WAI accessibility resources. -image: /content-images/wai-about-wai/social-translations.png - -feedbackmail: wai@w3.org -footer: | -

    Date: Updated 9 November 2023.

    -

    Editors: Shawn Lawton Henry and Rémi Bétin.

    -

    Developed as part of the WAI-CooP project, co-funded by the European Commission.

    ---- - -{::options toc_levels="2" /} -{::nomarkdown} -{% include toc.html type="start" title="Page Contents" %} -{:/} - -- TOC is created automatically. -{:toc} - -{::nomarkdown} -{% include toc.html type="end" %} -{:/} - -## General guidance - -- Do not change or adapt or add to the meaning of the English version in your translation. -- If you have suggestions for changes to the English version, submit them via GitHub or e-mail using the links in the “Help improve this page” box near the bottom of the page. - -## Markdown/Code - -Please leave the code, HTML, and markdown as is without changing it. - -Make sure to: - -{::nomarkdown} -
      -
    • -{:/} - -Translate titles in the markdown, such as "Summary" in: - -{::nomarkdown} -{% include box.html type="start" %} -{:/} -```liquid -{% raw %}{% include box.html type="start" title="Summary" class="" %}{% endraw %} -``` -{::nomarkdown} -{% include box.html type="end" %} -{:/} - -{::nomarkdown} -
    • -
    • -{:/} - -Translate image alternative text, such as “mouse crossed out” in: - -{::nomarkdown} -{% include box.html type="start" %} -{:/} - -- in Markdown: `![mouse crossed out](https://www.w3.org/WAI/intro/no-mouse.png)` -- in HTML: `mouse crossed out` - -{::nomarkdown} -{% include box.html type="end" %} -{:/} - -{::nomarkdown} -
    • -
    • -{:/} - -Make sure that the quote marks stay as is, and are not converted to "smart quotes" by word processing software. - -{::nomarkdown} -
    • -
    -{:/} - -### Links - -Most links are formatted with single or double brackets and parentheses; for example: - -{::nomarkdown} -{% include box.html type="start" %} -{:/} -```markdown -[Text that is linked]({%raw%}/{%endraw%}path/to/filename/) -[[Title of WAI Page]]({%raw%}/{%endraw%}path/to/filename/) -``` -{::nomarkdown} -{% include box.html type="end" %} -{:/} - -Just so you know: -- When we want the system to use the title of the linked-to page as link text, we use `[[double brackets]]`. - - That way, when the linked-to page is translated, the system will use the translated page's title. - - If the linked-to page is not translated, the system will use your translated text between the brackets, and add `(in English)` in the translated language at the end of the link. -- When we want to use custom link text, we use `[single brackets]`. - -Make sure to: -- Keep brackets and parentheses together, with no space between the closing `]` and the opening `(`. -- Keep double `[[` or single brackets `[` as they are. -- Translate the text in the links, including document titles. -- Do not manually add `(in English)`, even for external links. - -## Text Editor - -The markdown files are very sensitive to indentation, commas, quotes, and special characters. - -We recommend that you use a markdown editor or a simple text editor (including GitHub interface) — and not a document editor like Microsoft Word that often changes quotes and indentation. - -## Glossaries - -- Read the [General Translation Glossary {% include_cached external.html %}](https://github.com/w3c/translation-glossaries/blob/main/general.md). -- See if there is a [glossary for your language {% include_cached external.html %}](https://github.com/w3c/translation-glossaries#readme). - -## Resource-Specific Information - -Some resources have specific Translations notes. - -{::nomarkdown} -
      -
    • -{:/} - -At the top of the resource file (in the ["front matter" metadata](/about/translating/guides/new-translation/#frontmatter)), see if there is a comment like this one: - -{::nomarkdown} -{% include box.html type="start" %} -{:/} -``` -# Read Translations Notes at https://github.com/w3c/path-to-repository#readme -``` -{::nomarkdown} -{% include box.html type="end" %} -{:/} - -In that case, follow the link and read the specific guidance. - -{::nomarkdown} -
    • -
    • -{:/} - -If you wish to translate the [WCAG-EM Report Tool](https://www.w3.org/WAI/eval/report-tool/), please read [this specific guidance {% include_cached external.html %}](https://github.com/w3c/wai-wcag-em-report-tool/wiki/How-to-add-a-language), as different steps have to be followed. - -{::nomarkdown} -
    • -
    -{:/} - -## We are here to help - -If you have any questions about the translation, please report them in the related GitHub issue so that WAI team and other volunteers can help. Alternatively, send an e-mail to the publicly-archived [public-wai-translations@w3.org](mailto:public-wai-translations@w3.org) mailing-list. - -We are happy to help you decide on the best translated wording by sharing the considerations and nuances that went into choosing the wording for the English page. \ No newline at end of file diff --git a/_about/translating/guides/using-github.md b/_about/translating/guides/using-github.md index 6750b552..5c2e7a97 100644 --- a/_about/translating/guides/using-github.md +++ b/_about/translating/guides/using-github.md @@ -1,5 +1,5 @@ --- -title: "Using GitHub" +title: "How to Use GitHub to Translate WAI Resources" nav_title: Using GitHub github: repository: w3c/wai-about-wai @@ -7,14 +7,14 @@ github: permalink: /about/translating/guides/using-github/ ref: /about/translating/guides/using-github/ lang: en -last_updated: 2023-11-09 +last_updated: 2024-04-09 description: Help make the Web accessible to people with disabilities around the world. We appreciate your contributions to translating W3C WAI accessibility resources. image: /content-images/wai-about-wai/social-translations.png feedbackmail: wai@w3.org footer: | -

    Date: Updated 9 November 2023.

    +

    Date: Updated 9 April 2024.

    Editors: Rémi Bétin and Shawn Lawton Henry.

    Developed as part of the WAI-CooP project, co-funded by the European Commission.

    @@ -28,6 +28,15 @@ inline_css: | } --- +{::nomarkdown} +{% include box.html type="start" h="2" title="Summary" class="full" %} +{:/} + +This page guide you through the steps to translate WAI resources using GitHub. + +{::nomarkdown} +{% include box.html type="end" %} +{:/} {::options toc_levels="2,3" /} {::nomarkdown} @@ -41,11 +50,13 @@ inline_css: | {% include toc.html type="end" %} {:/} -## Creating a translation in GitHub - A step by step guide - {% include showhidebutton.html showtext="Show all screenshots" hidetext="Hide all screenshots" target=".screenshot" %} -### Create the translation file +## Initial step: Declare your intent + +In accordance with the WAI Translations process, please always [declare your intent](/about/translating/step-by-step/#intent) and wait for reply from WAI team _before_ starting a translation. + +## Create the translation file
    1. @@ -92,7 +103,7 @@ inline_css: |
    -### Work on your translation +## Work on your translation
    1. @@ -115,7 +126,7 @@ inline_css: |
    -### Prepare your draft Pull Request +## Prepare your draft Pull Request
    1. @@ -141,7 +152,7 @@ inline_css: |
    -### Preview your changes +## Preview your changes
    1. After you submit the pull request, it will create a preview so you can check your file and make edits. At first, a notification comment will say "👷 Deploy Preview for wai-repo-name processing." @@ -158,7 +169,7 @@ inline_css: |
    -### Mark your Pull request as ready for review +## Mark your Pull request as ready for review
    1. When you have done all your checks and edits, click on the "Edit" button at the top of the Pull request view, to change the title prefix "[IN-PROGRESS]" to "[Ready for Review]"

      diff --git a/_about/translating/guides/video-subtitles.md b/_about/translating/guides/video-subtitles.md index 140cecab..759077a8 100644 --- a/_about/translating/guides/video-subtitles.md +++ b/_about/translating/guides/video-subtitles.md @@ -1,27 +1,37 @@ --- -title: "Translating Video Subtitles and Descriptions" -nav_title: Video Subtitles/Descriptions +title: "How to Create Translated Video Subtitles and Descriptions" +nav_title: Subtitles/Descriptions github: repository: w3c/wai-about-wai path: '_about/translating/guides/video-subtitles.md' permalink: /about/translating/guides/video-subtitles/ ref: /about/translating/guides/video-subtitles/ lang: en -last_updated: 2023-12-06 +last_updated: 2024-03-07 description: Help make the Web accessible to people with disabilities around the world. We appreciate your contributions to translating W3C WAI accessibility resources. image: /content-images/wai-about-wai/social-translations.png feedbackmail: wai@w3.org footer: | -

      Date: Updated 6 December 2023.

      +

      Date: Updated 7 March 2024.

      Editors: Shawn Lawton Henry and Rémi Bétin.

      Developed as part of the WAI-CooP project, co-funded by the European Commission.

      --- +{::nomarkdown} +{% include box.html type="start" h="2" title="Summary" class="full" %} +{:/} + +This page guides you through the technical steps to create new subtitles and translated descriptions for Web Accessibility Initiative (WAI) videos. + +{::nomarkdown} +{% include box.html type="end" %} +{:/} + {::options toc_levels="2" /} {::nomarkdown} -{% include toc.html type="start" title="Page Contents" %} +{% include_cached toc.html type="start" title="Page Contents" class="simple" %} {:/} - TOC is created automatically. @@ -31,6 +41,24 @@ footer: | {% include toc.html type="end" %} {:/} +## Overview + +There are 4 steps to create new subtitles or video descriptions in a new language: + +1. **[Find the related video identifier](#find-video-id)** + +2. **[Edit the video-metadata.yml file](#video-metadata)** + +3. **[Create the subtitles/descriptions file(s)](#create-vtt)** + +4. **[Translate the VTT file(s)](#translate-vtt)** + +5. **[Commit your changes and open a Pull Request](#commit-changes)** + +## Initial step: Declare your intent + +In accordance with the WAI Translations process, please always [declare your intent](/about/translating/step-by-step/#intent) and wait for reply from WAI team _before_ starting a translation. + ## Step 1: Find the related video identifier {#find-video-id} If you want to create new subtitles/translated descriptions for a video, you have probably seen the video in a W3C WAI resource. @@ -202,7 +230,7 @@ If files are stored into lang subfolders, create a subfolder for your language.
    {:/} -## Step 3: Translate the VTT file(s) {#translate-vtt} +## Step 4: Translate the VTT file(s) {#translate-vtt} 1. Translate all text segments 2. Keep the first line (`WEBVTT`) @@ -234,6 +262,6 @@ new accessibility barriers. {% include box.html type="end" %} {:/} -## Step 4: Commit your changes {#commit-changes} +## Step 5: Commit your changes and open a Pull Request {#commit-changes} Include the updated "video-metadata.yml" and the new translated VTT files. \ No newline at end of file diff --git a/_about/translating/guides/wcag.md b/_about/translating/guides/wcag.md index b28ea892..6d8ec90b 100644 --- a/_about/translating/guides/wcag.md +++ b/_about/translating/guides/wcag.md @@ -2,7 +2,7 @@ title: How to Translate WCAG 2 nav_title: "How to Translate WCAG 2" lang: en -last_updated: 2024-01-16 +last_updated: 2024-04-09 github: repository: w3c/wai-about-wai @@ -16,7 +16,7 @@ image: /content-images/wai-about-wai/social-translations.png feedbackmail: wai@w3.org footer: | -

    Date: Published 16 January 2024.

    +

    Date: Updated 9 April 2024.

    Editor: Rémi Bétin.

    --- @@ -27,7 +27,7 @@ footer: | This page guides you through the technical steps to translate the Web Content Accessibility Guidelines (WCAG) 2.2 and 2.1. -For information on WCAG Translations of WCAG 2, see [Contributing to W3C Translations {% include_cached external.html %} +For general information on WCAG 2 Translations, see [Contributing to W3C Translations {% include_cached external.html %} ](https://www.w3.org/Consortium/Translation/) and [Policy for Authorized W3C Translations {% include_cached external.html %}](https://www.w3.org/2005/02/TranslationPolicy.html). @@ -53,20 +53,20 @@ For information on WCAG Translations of WCAG 2, see [Contributing to W3C Transla Web Content Accessibility Guidelines (WCAG) 2.1/2.2 are currently [available in more than 14 languages](/standards-guidelines/wcag/translations/)! There are 5 main steps to create a new translation: -1. Get the source files from [`w3c/wcag/` {% include_cached external.html %}](https://github.com/w3c/wcag/) repository -2. Translate WCAG source files -3. Export in HTML -4. Edit the HTML files to complete the translation -5. Deliver the final files to W3C +1. **[Get the source files](#get-source-files)** from [`w3c/wcag/` {% include_cached external.html %}](https://github.com/w3c/wcag/) repository +2. **[Translate WCAG source files](#translate-source-files)** +3. **[Export in HTML](#preview-export)** +4. **[Edit the HTML files](#edit-html)** to complete the translation +5. **[Deliver the final files to W3C](#deliver-files)** -## Step 1: Get the source files +## Step 1: Get the source files {#get-source-files} 1. Clone [`w3c/wcag` {% include_cached external.html %}](https://github.com/w3c/wcag/) repository (you can [fork {% include_cached external.html %}](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/working-with-forks/fork-a-repo) it first) 2. Base your translation on the following branch: - [`main` branch {% include_cached external.html %}](https://github.com/w3c/wcag/tree/main) to translate WCAG 2.2 - [`WCAG-2.1` branch {% include_cached external.html %}](https://github.com/w3c/wcag/tree/WCAG-2.1) to translate WCAG 2.1 -## Step 2: Translate WCAG source files +## Step 2: Translate WCAG source files {#translate-source-files} The repository contains numerous folders and files. Only some of them are relevant to your WCAG translation. @@ -87,7 +87,7 @@ Make sure to follow these translation guidelines: - Add `hreflang="en"` to links when needed, and `lang="en"` where needed. - Follow the guidelines of the [W3C Internationalization Activity {% include_cached external.html %}](https://www.w3.org/International/): for example, the proper usage of language tags, encoding declarations, handling bidirectional text, etc. -## Step 3: Preview your changes and export in HTML +## Step 3: Preview your changes and export in HTML {#preview-export} To preview your changes, open the `index.html` file in a modern browser, on a local server. Without a server, the success criteria and glossary terms will not be included. @@ -101,7 +101,7 @@ Allow the script to compile and format the content. - Activate the "Respec Menu" link in the top right corner - Choose "Export...", then the "HTML" option. -## Step 4: Edit the resulting HTML file and complete the translation +## Step 4: Edit the resulting HTML file and complete the translation {#edit-html} Rename the exported HTML file to `index.html` and make the following changes. @@ -131,7 +131,7 @@ Download [`fixup.js` {% include_cached external.html %}](https://www.w3.org/scr - "Pop Out Sidebar" - "Jump to Table of Contents” -## Step 5: Deliver the final files to W3C +## Step 5: Deliver the final files to W3C {#deliver-files} In conformance with step 6.3 of the [Policy for Authorized W3C Translations {% include_cached external.html %}](https://www.w3.org/2005/02/TranslationPolicy.html), deliver the following files to W3C for publication: - `index.html` diff --git a/_about/translating/step-by-step.md b/_about/translating/step-by-step.md index 94e68f3e..cf5017d3 100644 --- a/_about/translating/step-by-step.md +++ b/_about/translating/step-by-step.md @@ -1,11 +1,11 @@ --- title: "Step-by-Step Guide to Translating WAI Resources" -nav_title: Step-by-Step +nav_title: Translating WAI Resources github: repository: w3c/wai-about-wai path: '_about/translating/step-by-step.md' permalink: /about/translating/step-by-step/ -last_updated: 2023-11-09 +last_updated: 2024-04-09 ref: /about/translating/step-by-step/ lang: en @@ -14,7 +14,7 @@ image: /content-images/wai-about-wai/social-translations.png feedbackmail: wai@w3.org footer: | -

    Date: Updated 9 November 2023.

    +

    Date: Updated 9 April 2024.

    Editors: Shawn Lawton Henry and Rémi Bétin.

    Developed as part of the WAI-CooP project, co-funded by the European Commission.

    --- @@ -33,7 +33,7 @@ To get announcements related to WAI translations, subscribe to the WAI Translati {% include box.html type="end" %} {:/} -{::options toc_levels="2,3" /} +{::options toc_levels="2" /} {::nomarkdown} {% include_cached toc.html type="start" title="Page Contents" %} {:/} @@ -45,9 +45,21 @@ To get announcements related to WAI translations, subscribe to the WAI Translati {% include_cached toc.html type="end" %} {:/} -Thank you for taking the time to contribute to WAI accessibility resources translations! +## Overview -This resource will guide you through the important steps to creating and reviewing translations. +There are 6 steps to contribute as a volunteer translator: + +1. **[Find a resource to translate](#find-resource)** + +2. **[Inform us of your intent to translate a resource](#intent)** + +3. **[Translate the resource](#start-translation)** + +4. **[Preview and check your translation](#preview)** + +5. **[Ask for reviews](#review)** + +6. **[Wait for publication](#publication)** Before starting your work, please take the time to read the information in [[Translating WAI Resources]](/about/translating/), and verify that you are willing to contribute under these policies. @@ -60,7 +72,7 @@ Discussions, collaboration with reviewers and progress tracking are more easily - If you do not already have a GitHub Account, [sign up {% include_cached external.html %}](https://github.com/signup) for an account; - If you are new to GitHub, we recommend that you follow this interactive free course:\ [Introduction to GitHub {% include_cached external.html %}](https://github.com/skills/introduction-to-github); -- Then, for more specific guidance during the translation process, you can deep dive with our [[Using Github]](/about/translating/guides/using-github/) guide. +- For more specific guidance during the translation process, you can deep dive with our [[Using Github]](/about/translating/guides/using-github/) guide. {::nomarkdown} {% include box.html type="start" title="Important Note" class="simple" %} @@ -74,20 +86,18 @@ If you are unsure how to proceed and need guidance; or if you are not comfortabl {% include box.html type="end" %} {:/} -## Translating Resources {#translating} - {% include excol.html type="all" %} {% include excol.html type="start" %} -### Step 1: Find a resource to translate {#find-resource} +## Step 1: Find a resource to translate {#find-resource} {% include excol.html type="middle" %} -#### Have a look at our priorities +### Have a look at our priorities For suggestions on which to translate first, see [Priorities for Translations](#priorities). -#### Or pick a resource according to your preference +### Or pick a resource according to your preference You are welcome to translate any current WAI resource that you think would be useful in your language. @@ -101,7 +111,7 @@ Translations sitemaps display the structure of WAI website, and indicate for eac {% include excol.html type="start" %} -### Step 2: Inform us of your intent to translate a resource {#intent} +## Step 2: Inform us of your intent to translate a resource {#intent} {% include excol.html type="middle" %} @@ -120,13 +130,13 @@ When you have found a resource to translate, you must indicate your interest, an Please wait for reply from WAI team before starting a translation. -#### Recommended / quickest way {#translation-issue} +### Recommended / quickest way {#translation-issue} 1. From the [translations sitemap](/about/translating/sitemaps/) for your language, click on the "Volunteer to translate this page" link, displayed next to the resource you intend to translate. 2. It will automatically pre-fill a GitHub issue with some useful information. 3. Read and submit the issue. -#### Alternatives: +### Alternatives: - [Create an Issue in the dedicated "WAI Translations" repository](https://github.com/w3c/wai-translations/issues/new). - If you are not comfortable with GitHub, send e-mail to the publicly-archived WAI translations list using [this e-mail template](mailto:public-wai-translations@w3.org?subject=%5Blang%5D%20Intent%20to%20Translate%3A%20%5Btitle%5D&body=I%20would%20like%20to%20translate%20into%20%5Blanguage%5D%20the%20following%20resource%3A%0A%5BEnglish%20title%5D%0A%5BURI%5D%0A%0AI%20have%20read%20the%20information%20on%20Translating%20WAI%20Documents%20at%20https%3A%2F%2Fwww.w3.org%2FWAI%2Fabout%2Ftranslating%2F%0A%0AI%20will%20wait%20for%20confirmation%20that%20the%20resource%20is%20ready%20for%20translation.). @@ -134,11 +144,11 @@ Please wait for reply from WAI team before starting a translation. {% include excol.html type="start" %} -### Step 3: Start translating {#start-translation} +## Step 3: Start translating {#start-translation} {% include excol.html type="middle" %} -#### Initial setup +### Initial setup 1. Log in to your existing GitHub account, or [create one {% include_cached external.html %}](https://github.com/signup). 2. Get to the repository of the resource you will translate. @@ -148,26 +158,24 @@ Please wait for reply from WAI team before starting a translation. For further guidance on using GitHub to translate a WAI resource, follow the [dedicated guide](/about/translating/guides/using-github/). -#### Translate the resource +### Translate the resource - Refer to [[Creating a Translation]](/about/translating/guides/new-translation/) guide -- If the page you are translating has videos, also refer to [[Creating Video Subtitles/Descriptions]](/about/translating/guides/video-subtitles/) -- Read the [[Translating Guidance]](/about/translating/guides/translation-guidance/). +- If the page you are translating has videos, also refer to [[How to Create Translated Video Subtitles and Descriptions]](/about/translating/guides/video-subtitles/) +- If the page you are translating has images with text, also refer to [[How to Translate Images]](/about/translating/guides/video-subtitles/) - Commit your changes. {% include excol.html type="end" %} {% include excol.html type="start" %} -### Step 4: Preview and check your translation {#preview} +## Step 4: Preview and check your translation {#preview} {% include excol.html type="middle" %} -We have enabled a preview with Netlify so you can check your file and make edits. - 1. Open a [draft Pull Request {% include_cached external.html %}](https://docs.github.com/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request-from-a-fork) in the GitHub repository of the resource, with `[IN-PROGRESS]` at the beginning of the title. -2. After you submit the pull request, a preview will be generated. +2. After you submit the pull request, a Netlify preview will be generated so you can check your file and make edits. - At first it will say **"👷 Deploy Preview for _wai-repo-name_ processing."**. - When done, it will say **"✅ Deploy Preview for _wai-repo-name_ ready!"** and a "Deploy Preview" link will appear. @@ -182,7 +190,7 @@ We have enabled a preview with Netlify so you can check your file and make edits {% include excol.html type="start" %} -### Step 5: Ask for reviews {#review} +## Step 5: Ask for reviews {#review} {% include excol.html type="middle" %} @@ -201,7 +209,7 @@ If you have any questions about the wording, please report them in the GitHub is {% include excol.html type="start" %} -### Step 6: Wait for publication {#publication} +## Step 6: Wait for publication {#publication} {% include excol.html type="middle" %} @@ -264,46 +272,4 @@ Please note these steps may take some time depending on other ongoing priorities {%- endif -%} -## Reviewing Translations {#reviewing} - -Translations are reviewed by volunteers and WAI team before they are published. - -{% include excol.html type="all" %} - -{% include excol.html type="start" %} - -### Step 1: Find translations ready for review - -{% include excol.html type="middle" %} - -{::nomarkdown} -{% include box.html type="start" title="New volunteer?" class="highlighted" %} -{:/} -Thank you so much for your interest in reviewing W3C WAI Resources! - -First and foremost, send an email to [group-wai-translations@w3.org](group-wai-translations@w3.org) (not publicly archived [^1]) to express your interest in joining the WAI translator volunteers community. - -{::nomarkdown} -{% include box.html type="end" %} -{:/} - -1. Explore the [WAI Translations GitHub project {% include_cached external.html %}](https://github.com/orgs/w3c/projects/46/views/2) - - Look into the "Ready for review" column to find translations ready for review. - - You can filter the view by clicking on your language in the "Language" column. - - If you have trouble using this _board_ view, you can look at the [equivalent table view {% include_cached external.html %}](https://github.com/orgs/w3c/projects/46/views/3) - -2. Communicate you are volunteering to review, by leaving a comment in the corresponding issue. - -{% include excol.html type="end" %} - -{% include excol.html type="start" %} - -### Step 2: Review the translation - -{% include excol.html type="middle" %} - -Follow [Reviewing translations](/about/translating/guides/review-translation/) step-by-step guide. - -{% include excol.html type="end" %} - [^1]: Emails sent to `group-wai-translations@w3.org` are not publicly visible. \ No newline at end of file From 573cd9412d18f887ef32f05b62e8bfd585b95416 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Re=CC=81mi=20Be=CC=81tin?= Date: Fri, 12 Apr 2024 09:50:57 +0200 Subject: [PATCH 29/30] Update Subtitles Guidance --- _about/translating/guides/video-subtitles.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/_about/translating/guides/video-subtitles.md b/_about/translating/guides/video-subtitles.md index 759077a8..018bdab5 100644 --- a/_about/translating/guides/video-subtitles.md +++ b/_about/translating/guides/video-subtitles.md @@ -7,14 +7,14 @@ github: permalink: /about/translating/guides/video-subtitles/ ref: /about/translating/guides/video-subtitles/ lang: en -last_updated: 2024-03-07 +last_updated: 2024-04-12 description: Help make the Web accessible to people with disabilities around the world. We appreciate your contributions to translating W3C WAI accessibility resources. image: /content-images/wai-about-wai/social-translations.png feedbackmail: wai@w3.org footer: | -

    Date: Updated 7 March 2024.

    +

    Date: Updated 12 April 2024.

    Editors: Shawn Lawton Henry and Rémi Bétin.

    Developed as part of the WAI-CooP project, co-funded by the European Commission.

    --- @@ -188,7 +188,7 @@ To find the path to the VTT files to translate, look at `path` and `lang-folder` {::nomarkdown} {% include box.html type="start" title="Example" %} {:/} -In this example, English VTT files are located into "/wai-folders/perspective-videos/en/" +In this example, English VTT files are located into "/wai-videos/perspective-videos/en/" ```yaml - id: keyboard From 1513957e193781cd506ac98eafad00905c5da464 Mon Sep 17 00:00:00 2001 From: Shawn Lawton Henry Date: Mon, 29 Apr 2024 12:18:11 -0500 Subject: [PATCH 30/30] Simplify sending questions by email (#187) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Rémi Bétin --- _about/participating.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_about/participating.md b/_about/participating.md index cdc52e33..b07a6a7b 100644 --- a/_about/participating.md +++ b/_about/participating.md @@ -9,7 +9,7 @@ ref: /about/participating/ lang: en footer: > -

    Date: Updated 24 March 2022.

    +

    Date: Updated 29 April 2024.

    Editor: Shawn Lawton Henry.

    Developed with the Education and Outreach Working Group (EOWG).

    @@ -50,7 +50,7 @@ accessibility. We encourage individuals and organizations around the world to participate in activities that help improve accessibility of the web. -**_After you read this page_, if you have any questions about getting involved with WAI or would like more information, please send specific questions to Shawn at and CC .** +_After you read this page_, if you have any questions about getting involved with WAI or would like more information, please send specific questions to [Shawn@w3.org with CC to wai@w3.org](mailto:shawn@w3.org?cc=wai@w3.org&subject=Participating%20in%20WAI). ## Getting News of Drafts for Review {#news}