Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions news/changelog-1.9.md
Original file line number Diff line number Diff line change
Expand Up @@ -170,3 +170,4 @@ All changes included in 1.9:
- ([#13992](https://github.com/quarto-dev/quarto-cli/issues/13992)): Fix crash when rendering div with both cross-reference ID and conditional visibility to PDF.
- ([#13997](https://github.com/quarto-dev/quarto-cli/issues/13997)): Fix Windows dart-sass theme compilation failing when Quarto is installed in a path with spaces (e.g., `C:\Program Files\`) and the project path also contains spaces.
- ([#13998](https://github.com/quarto-dev/quarto-cli/issues/13998)): Fix YAML validation error with CR-only line terminators (old Mac format). Documents using `\r` line endings no longer fail with "Expected YAML front matter to contain at least 2 lines".
- ([#14012](https://github.com/quarto-dev/quarto-cli/issues/14012)): Add `fr-CA` language translation for Quebec French inclusive writing conventions, using parenthetical forms instead of middle dots for author labels. (author: @tdhock)
3 changes: 3 additions & 0 deletions src/resources/language/_language-fr-CA.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
title-block-author-single: "Auteur(-trice)"
title-block-author-plural: "Auteures(-trices)"
listing-page-field-author: "Auteur(-trice)"
15 changes: 15 additions & 0 deletions tests/docs/smoke-all/2026/02/11/14014.qmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
title: "French Canadian language variant"
lang: fr-CA
author: Jean Tremblay
date: 2026-02-11
format: html
_quarto:
tests:
html:
ensureFileRegexMatches:
- ['Auteur\(-trice\)', 'Date de publication']
- ['Auteur·rice']
---

Content to verify `lang: fr-CA` applies regional French translations, while still using main `lang: fr` translation.
Loading