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
4 changes: 1 addition & 3 deletions source/nvda.pyw
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,8 @@ import ctypes
import locale
import gettext

#Localization settings
locale.setlocale(locale.LC_ALL,'')
try:
gettext.translation('nvda',localedir='locale',languages=[locale.getlocale()[0]]).install(True)
gettext.translation('nvda',localedir='locale',languages=[locale.getdefaultlocale()[0]]).install(True)
except:
gettext.install('nvda',unicode=True)

Expand Down
3 changes: 1 addition & 2 deletions source/nvda_slave.pyw
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,8 @@ Performs miscellaneous tasks which need to be performed in a separate process.
import gettext
import locale
#Localization settings
locale.setlocale(locale.LC_ALL,'')
try:
gettext.translation('nvda',localedir='locale',languages=[locale.getlocale()[0]]).install(True)
gettext.translation('nvda',localedir='locale',languages=[locale.getdefaultlocale()[0]]).install(True)
except:
gettext.install('nvda',unicode=True)

Expand Down
1 change: 1 addition & 0 deletions user_docs/en/changes.t2t
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ What's New in NVDA
- LTR and RTL marks are no longer reported in Braille or per-character speech when accessing the properties window. (#8361)
- When jumping to form fields with Browse Mode quick navigation, the entire form field is now announced rather than just the first line. (#9388)
- NVDA will no longer become silent after exiting the Windows 10 Mail app. (#9341)
- NVDA no longer fails to start when the users regional settings are set to a locale unknown to NVDA, such as English (Netherlands). (#8726)


= 2019.1 =
Expand Down