Skip to content
Open
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
575 changes: 341 additions & 234 deletions Rules/Languages/el/ClearSpeak_Rules.yaml

Large diffs are not rendered by default.

56 changes: 56 additions & 0 deletions Rules/Languages/el/SharedRules/calculus.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
---

- name: laplacian
tag: laplacian
match: "count(*) <= 1" # can be on ∇^2 or on enclosing mrow
replace:
- t: "Λαπλασιανή" # phrase('laplacian' of x) -- "LahPlahsian" sounds better with speech engines tested
- test:
if: "count(*) = 1"
then:
- test:
if: "$Verbosity!='Terse'"
then: [t: "του"] # phrase(function 'of' one variable) -- note OneCore voices spell out "div"
- test:
if: "not(IsNode(*[1], 'leaf'))"
then: [pause: short]
- x: "*[1]"

- name: divergence
tag: divergence
match: "count(*) = 1"
replace:
- test:
if: "$Verbosity='Terse'"
then: [t: "ντιβ"] # phrase('div' is short for divergence) -- note OneCore voices spell out "div"
else: [t: "απόκλιση του"] # phrase('divergence of' this function from the mean)
- test:
if: "not(IsNode(*[1], 'leaf'))"
then: [pause: short]
- x: "*[1]"

- name: curl
tag: curl
match: "count(*) = 1"
replace:
- t: "στροβιλισμός" # phrase(the 'curl of' a field)
- test:
if: "$Verbosity!='Terse'"
then: [t: ""] # phrase(function 'of' one variable) -- note OneCore voices spell out "div"
- test:
if: "not(IsNode(*[1], 'leaf'))"
then: [pause: short]
- x: "*[1]"

- name: gradient
tag: gradient
match: "count(*) = 1"
replace:
- test:
if: "$Verbosity!='Terse'"
then: [t: "κλίση"] # phrase(the hill has a 'gradient of' five percent)
else: [t: "ανάδελτα"] # phrase(the delete key is labeled 'del') ???????????????????????????
- test:
if: "not(IsNode(*[1], 'leaf'))"
then: [pause: short]
- x: "*[1]"
Loading