[orca] Ensure that > and horizontal ellipsis are spoken in MathML content



commit ea38c82fc46cae4ef09462c502542fb90f1a56b5
Author: Joanmarie Diggs <jdiggs igalia com>
Date:   Fri Jul 3 19:39:13 2015 -0400

    Ensure that > and horizontal ellipsis are spoken in MathML content

 src/orca/mathsymbols.py |    7 +++++++
 1 files changed, 7 insertions(+), 0 deletions(-)
---
diff --git a/src/orca/mathsymbols.py b/src/orca/mathsymbols.py
index 9133cfe..5e48a74 100644
--- a/src/orca/mathsymbols.py
+++ b/src/orca/mathsymbols.py
@@ -1268,6 +1268,13 @@ _operators["\u002d"] = C_('math symbol', 'minus')
 # as a MathML operator.
 _operators["\u003c"] = C_('math symbol', 'less than')
 
+# Translators: this is the spoken word for the character '>' (U+003e) when used
+# as a MathML operator.
+_operators["\u003e"] = C_('math symbol', 'greater than')
+
+# Translators: this is the spoken representation for the character '…' (U+2026)
+_operators['\u2026'] = C_('math symbol', 'horizontal ellipsis')
+
 # Translators: this is the spoken representation for the character '∀' (U+2200)
 _operators['\u2200'] = C_('math symbol', 'for all')
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]