Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
2894695
added missing rules from en to default.yaml
olivierthiffault Apr 24, 2026
5060b1b
added missing rules from en to general.yaml
olivierthiffault Apr 24, 2026
4c9fc2b
minor corrections to definitions.yaml
olivierthiffault Apr 25, 2026
b80ce11
added comment to overview.yaml
olivierthiffault Apr 25, 2026
1ee0736
first pass in unicode.yaml
olivierthiffault May 7, 2026
788a748
modifications to unicode.yaml
olivierthiffault May 8, 2026
fb34d78
started test adjustments for functions.rs
olivierthiffault May 8, 2026
70d9289
added ClearSpeak_Rules.yaml
olivierthiffault May 11, 2026
5889a02
fixed rules and tests for intervals
olivierthiffault May 11, 2026
ba7088d
added SimpleSpeak/geometry.rs tests
olivierthiffault May 14, 2026
af3ea06
completed changes and tests for large_ops
olivierthiffault May 14, 2026
d00ec64
fixed grammar rule, majuscule a -> a majuscule
olivierthiffault May 14, 2026
5663cd6
completed changes and tests for linear_algebra
olivierthiffault May 14, 2026
15ec997
added tests mfrac.rs
olivierthiffault May 15, 2026
7fea11a
added tests and corrections for msup.rs
olivierthiffault May 15, 2026
8f990a5
added tests and corrections for multiline.rs
olivierthiffault May 15, 2026
61f6db0
draft sets.rs
olivierthiffault May 15, 2026
1f73276
completed sets.rs
olivierthiffault May 20, 2026
2093e98
added subscripts.rs tests
olivierthiffault May 20, 2026
83cda50
added test file and modifs for alphabets.rs
olivierthiffault May 20, 2026
41f7d3d
wip chemistry.rs
olivierthiffault May 21, 2026
4f0d7f7
completed corrections for chemistry.rs
olivierthiffault May 21, 2026
1f45cc0
added tests intent.rs
olivierthiffault May 21, 2026
42b2c7d
modified rules and completed tests for mtable.rs
olivierthiffault May 25, 2026
85b6ed8
corrections for tests shared.rs
olivierthiffault May 25, 2026
c7aaa5b
corrections to units.rs
olivierthiffault May 25, 2026
14e4fcc
fixed all unit tests
olivierthiffault Jun 3, 2026
730285b
cleanup
olivierthiffault Jun 3, 2026
16ddbc5
more cleanup
olivierthiffault Jun 3, 2026
8be4ab1
finalized rules, replaced t: -> T:, ct: -> CT:, ot: -> OT, spell: -> …
olivierthiffault Jun 4, 2026
b268810
removed AI generated comments
olivierthiffault Jun 4, 2026
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
766 changes: 766 additions & 0 deletions Rules/Languages/fr/ClearSpeak_Rules.yaml

Large diffs are not rendered by default.

16 changes: 8 additions & 8 deletions Rules/Languages/fr/SharedRules/calculus.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
tag: laplacian
match: "count(*) <= 1"
replace:
- t: "laplacien"
- T: "laplacien"
- test:
if: "count(*) = 1"
then:
- test:
if: "$Verbosity!='Terse'"
then: [t: "de"]
then: [T: "de"]
- test:
if: "not(IsNode(*[1], 'leaf'))"
then: [pause: short]
Expand All @@ -22,8 +22,8 @@
replace:
- test:
if: "$Verbosity='Terse'"
then: [t: "div"]
else: [t: "divergence de"]
then: [T: "div"]
else: [T: "divergence de"]
- test:
if: "not(IsNode(*[1], 'leaf'))"
then: [pause: short]
Expand All @@ -33,10 +33,10 @@
tag: curl
match: "count(*) = 1"
replace:
- t: "rotationnel"
- T: "rotationnel"
- test:
if: "$Verbosity!='Terse'"
then: [t: "de"]
then: [T: "de"]
- test:
if: "not(IsNode(*[1], 'leaf'))"
then: [pause: short]
Expand All @@ -48,8 +48,8 @@
replace:
- test:
if: "$Verbosity!='Terse'"
then: [t: "gradient de"]
else: [t: "del"]
then: [T: "gradient de"]
else: [T: "grad"]
- test:
if: "not(IsNode(*[1], 'leaf'))"
then: [pause: short]
Expand Down
Loading