Skip to content

Commit e59d862

Browse files
authored
Merge 0e58678 into 3f1a723
2 parents 3f1a723 + 0e58678 commit e59d862

4 files changed

Lines changed: 23 additions & 6 deletions

File tree

include/liblouis

Submodule liblouis updated 66 files

projectDocs/dev/createDevEnvironment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ For reference, the following run time dependencies are included in Git submodule
8080
* [eSpeak NG](https://github.com/espeak-ng/espeak-ng), version 1.52-dev commit `961454ffaa894d981526f4d424daef1d3bc4175f`
8181
* [Sonic](https://github.com/waywardgeek/sonic), commit `8694c596378c24e340c09ff2cd47c065494233f1`
8282
* [IAccessible2](https://wiki.linuxfoundation.org/accessibility/iaccessible2/start), commit `3d8c7f0b833453f761ded6b12d8be431507bfe0b`
83-
* [liblouis](http://www.liblouis.io/), version 3.30.0
83+
* [liblouis](http://www.liblouis.io/), version 3.31.0
8484
* [Unicode Common Locale Data Repository (CLDR)](http://cldr.unicode.org/), version 45.0
8585
* NVDA images and sounds
8686
* [Adobe Acrobat accessibility interface, version XI](https://download.macromedia.com/pub/developer/acrobat/AcrobatAccess.zip)

source/brailleTables.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,10 @@ def listTables() -> list[BrailleTable]:
359359
addTable("gu-in-g1.utb", _("Gujarati grade 1"))
360360
# Translators: The name of a braille table displayed in the
361361
# braille settings dialog.
362-
addTable("grc-international-en.utb", _("Greek international braille"))
362+
addTable("grc-international-en.utb", _("Greek international braille (2-cell accented letters)"))
363+
# Translators: The name of a braille table displayed in the
364+
# braille settings dialog.
365+
addTable("grc-international-en-composed.utb", _("Greek international braille (single-cell accented letters)"))
363366
# Translators: The name of a braille table displayed in the
364367
# braille settings dialog.
365368
addTable("grc-international-es.utb", _("Spanish for Greek text"))
@@ -626,7 +629,10 @@ def listTables() -> list[BrailleTable]:
626629
addTable("th-comp8-backward.utb", _("Thai 8 dot computer braille"), output=False)
627630
# Translators: The name of a braille table displayed in the
628631
# braille settings dialog.
629-
addTable("th-g0.utb", _("Thai 6 dot"), input=False)
632+
addTable("th-g0.utb", _("Thai grade 0"), input=False)
633+
# Translators: The name of a braille table displayed in the
634+
# braille settings dialog.
635+
addTable("th-g1.utb", _("Thai grade 1"), input=False, contracted=True)
630636
# Translators: The name of a braille table displayed in the
631637
# braille settings dialog.
632638
addTable("tr.ctb", _("Turkish grade 1"))

user_docs/en/changes.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,8 @@ The minimum required version of Poedit that works with NVDA is now version 3.5.
6262

6363
eSpeak NG has been updated, adding support for the Faroese and Xextan languages.
6464

65+
LibLouis has been updated, adding new Braille tables for Thai and Greek international braille with single-cell accented letters.
66+
6567
There have also been a number of fixes, including to mouse tracking in Firefox, and the on-demand speech mode.
6668

6769
### New Features
@@ -82,8 +84,17 @@ There have also been a number of fixes, including to mouse tracking in Firefox,
8284
### Changes
8385

8486
* The `-c`/`--config-path` and `--disable-addons` command line options are now respected when launching an update from within NVDA. (#16937)
85-
* eSpeak NG has been updated to 1.52-dev commit `961454ff`. (#16775)
86-
* Added new languages Faroese and Xextan.
87+
* Component updates:
88+
* Updated LibLouis Braille translator to [3.31.0](https://github.com/liblouis/liblouis/releases/tag/v3.31.0). (#17080, @LeonarddeR, @codeofdusk)
89+
* Fixed back-translation of numbers in Spanish Braille.
90+
* New Braille tables:
91+
* Thai grade 1
92+
* Greek international Braille (single-cell accented letters)
93+
* Renamed tables:
94+
* "Thai 6 dot" was renamed to "Thai grade 0" for consistency reasons.
95+
* The existing "Greek international braille" table was renamed to "Greek international braille (2-cell accented letters)" to clarify the distinction between the two Greek systems.
96+
* eSpeak NG has been updated to 1.52-dev commit `961454ff`. (#16775)
97+
* Added new languages Faroese and Xextan.
8798
* When using a multi-line braille display via the standard HID braille driver, all lines of cells will be used. (#16993, @alexmoon)
8899
* The stability of NVDA's Poedit support has been improved with the side effect that the minimum required version of Poedit is now version 3.5. (#16889, @LeonarddeR)
89100

0 commit comments

Comments
 (0)