commit 6545652f5153bdb8f03f2eacea5b737eea0d961b
Author: Reef Turner <reef@nvaccess.org>
Date:   Mon Nov 8 22:24:21 2021 +0800

    Handle failure of malloc
    Make logic for return value more direct,
    no longer compare address of freed memory.

commit b2f48442a3b4edbbbb4e0fff9454e247183b338c
Author: Reef Turner <reef@nvaccess.org>
Date:   Mon Nov 8 22:21:35 2021 +0800

    Ensure reg_path is null terminated

commit c33e37c91525f958123fa02275e05902d068c136
Author: Reef Turner <reef@nvaccess.org>
Date:   Mon Nov 15 11:40:01 2021 +0800

    Ensure textBuf is null terminated

commit 6121fb85c7f7c4bfc18b7b293aecbe3908437da5
Author: Reef Turner <reef@nvaccess.org>
Date:   Mon Nov 8 22:20:17 2021 +0800

    Ensure dwFlags is zero
    
    Neither GetFileVersionInfoW nor GetFileVersionInfoSizeW require
    ver_handle.
    The dwFlags param in GetFileVersionInfoW is reserved and must
    be zero.

commit 5ee27aa2d46228e2a5fba4844392e167c35f757e
Author: Reef Turner <reef@nvaccess.org>
Date:   Wed Nov 10 16:20:48 2021 +0800

    Initialize MshtmlVBufStorage_controlFieldNode_t members
    
    Separate declarations of member vars and methods.

commit de5c7b22d9b2810b16490df7434142a0c3b7137e
Author: Reef Turner <reef@nvaccess.org>
Date:   Mon Nov 8 22:18:20 2021 +0800

    Initialize adobeAcrobat types
    
    In adobeAcrobate.h/.cpp:
    - TableInfo_t
    - Class AdobeAcrobatVBufBackend_t memvers:
      - isXFA
      - docPagination

commit aaaa7d872281dd8f9411aace486068dd7afade7a
Author: Reef Turner <reef@nvaccess.org>
Date:   Mon Nov 8 21:44:25 2021 +0800

    Initialize displayModelFormatInfo_t members

commit 68152119a05e6fc584d8b856cbef8c6e94379c40
Author: Reef Turner <reef@nvaccess.org>
Date:   Mon Nov 8 21:42:03 2021 +0800

    Prevent return of uninitialised 'ret'

commit 7f724a8b46d7d628036000de49a4d6754c14f964
Author: Reef Turner <reef@nvaccess.org>
Date:   Mon Nov 8 21:43:27 2021 +0800

    Check CreateEvent return value

commit 51ee2631d4a323926fa4a3e275f56720359602c3
Author: Reef Turner <reef@nvaccess.org>
Date:   Wed Nov 10 15:37:00 2021 +0800

    Avoid potential nullptr dereference of pIface

commit c76998aed9b95edf4c611884ed55aeca5cd720ff
Author: Reef Turner <reef@nvaccess.org>
Date:   Mon Nov 8 21:48:44 2021 +0800

    cpTempBuf may be null

commit c82be084f7e14d773baedac4b8e9c46373d85487
Author: Reef Turner <reef@nvaccess.org>
Date:   Mon Nov 8 21:41:33 2021 +0800

    Prevent null module name error

commit 5bc038f0835261d7ac93a8ac7ebe843c6dab106b
Author: Reef Turner <reef@nvaccess.org>
Date:   Thu Nov 4 19:56:49 2021 +0800

    Fix #include errors in VS project

commit 2a6ba8fd18a95f58a3128516e2c8bc5fad15a45e
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Thu Nov 25 00:50:49 2021 +0100

    Warn about unknown command line arguments when starting NVDA (#13087)
    
    Closes #12795
    
    Summary of the issue:
    When starting NVDA with unknown (not used by NVDA nor by add-ons)
    command line parameters there is no warning.
    
    Description of how this pull request fixes the issue:
    Introduced a new extension point which accumulates decisions made by all handlers and allowed to register add-ons for command line arguments they want to use. Note that if the given add-on contains only app modules it has to bundle a small global plugin to make sure that it is loaded on NVDA's startup.
    On NVDA startup user is warned if there are any arguments which are unknown to NVDA and not used by add-ons.

commit 2330a740d8e60fe976791595a7429619e9e3726e
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Wed Nov 24 18:12:43 2021 +0800

    Add Typing to getTextWithFields (PR #12969)
    
    Add Typing to getTextWithFields
    -  _getFieldsInRange must return a TextWithFieldsT
       TextWithFieldsT is List[Union[str, FieldCommand]]
    - getTextWithFields returns the result directly and has type annotation
       declaring it returns TextWithFieldsT.
       Other usages of _getFieldsInRange seem to filter out None, although
       it is hard to be conclusive about this.
    - Handle any None values to return TextInfo.TextWithFieldsT
       Note that XMLTextParser().parse
       returns List[Union[FieldCommand, Optional[str]]]
    - TextInfo.TextWithFieldsT is str not optional:
       List[Union[str, FieldCommand]]

commit 2695499d1c33e4d21aa06bbfc34745b098bf766c
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Wed Nov 24 06:24:30 2021 +0100

    Support retrieving the status bar of Windows File Explorer (#6769)  taken over after abandoned #12371 (#12845)
    
    Fixes #6769
    Superseedes #12371
    
    Summary of the issue:
    Currently, the Window File Explorer cannot be retrieved using the reportStatusLine global command.
    
    Description of how this pull request fixes the issue:
    • Take advantage of Status bar handling: allow app modules to define their own routines to fetch status bar and use it in status bar command in global commands #4640 to implement custom status bar retrieval by the explorer app module.
    • Use a UIAWalker to retrieve it, as hinted by @josephsl in Can't read status bar in File Explorer (Windows 10) #6769 (comment)
    • Still, instead of overlaying the status bar of its children for concerns expressed in Can't read status bar in File Explorer (Windows 10) #6769 (comment), allow app modules to provide their custom implementation of api.getStatusBarText
    • Implement explorer.AppModule.getStatusBarText as inspired by @ruifontes prototype in Nvda utters unavailable after copying files #6842 (comment) (hinted by @feerrenrut in Can't read status bar in File Explorer (Windows 10) #6769 (comment)) but in a slightly more complex way - trying to cover more unexpected cases.

commit 693afb07cb27402ba138708471b4d0c0ee190109
Author: Reef Turner <reef@nvaccess.org>
Date:   Wed Nov 10 16:21:25 2021 +0800

    Delete unused vbufTests
    
    These no longer compile, haven't been used
    in a long time and are now of questionable
    correctness.

commit f4fbcd22817d5d5c64f20d1bebb5f71464fd841a
Author: Reef Turner <reef@nvaccess.org>
Date:   Wed Nov 10 15:57:15 2021 +0800

    Explain protected destructor / constructor
    
    A less common design, that could be interpreted as unintentional.
    Add more comments / docs to explain the intention.
    Note: restored visibility of the MshtmlVBufStorage_controlFieldNode_t
    destructor, now matching the base class.

commit c5dc5a55e78af0480803268699feec621d00b7ba
Author: Reef Turner <reef@nvaccess.org>
Date:   Wed Nov 10 16:22:16 2021 +0800

    When running as analyze don't teat warnings as errors

commit b7d202b702d0e618b2c99ebfc8c63644486f4267
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Tue Nov 23 03:47:34 2021 +0100

    Add a script to report locationText for the position of the system caret (#13060)
    
    Closes #9147
    Related to #7314
    
    Summary of the issue:
    Currently it is impossible to report locationText for the current caret position only for the position of the review cursor. This is problematic in several cases:
    
    As described in Add alternative way to report name of the current Excel sheet which don't require moving review cursor into Excel window #9147 there are cases in which it is useful to query the name of the current sheet in MS Excel
    In edit controls and / or web browsers sighted people can simply glance at the scroll bar to determine their position in the text
    While for people working with review cursor following system caret current NVDA+Numpad delete is sufficient for these use cases when review cursor does not follow caret you need to move it to focus every time when you need to check your current position which wastes time, and more importantly makes your review position lost.
    
    Description of how this pull request fixes the issue:
    NVDA+numpad delete reports location of the caret or focused object if there is no caret by default.
    Script for reporting review cursor position has been reassigned to NVDA+shift+Numpad delete - for most users there is no change as navigator follows focus and review follows caret by default.
    The modified scripts are splitted into separate ones for querying location of the text / object as discussed in Split out global commands into distinct scripts #7314.

commit f8783563d10ff75227c3b6caabd3c960dee9a005
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Tue Nov 23 02:29:11 2021 +0100

    Store current NVDA's language in globalVars regardless if it has been provided from the command line or not. (#13082)
    
    Follow up of #10089 and #12958
    
    Summary of the issue:
    PR #12958 introduced additional command line parameter which allows to set NVDA's language. The currently set language is stored in globalVars.appArgs.language however when it is not overridden from the CLI this variable is set to None. TO improve consistency with globalVars.appArgs.configPath it makes sense to store current NVDA's language in globalVars regardless of where it comes from.
    
    Description of how this pull request fixes the issue:
    Current NVDA language is now stored in globalVars.appArgs.language - it still can be accessed via languageHandler.getLanguage which is a recommended way to get its value for add-ons developers. To make this work for nvda_slave it has been necessary to provide a 'fake' implementation of globalVars.appArgs which is used in cases where command line arguments are not available or not yet parsed. This also provides type hints for values of appArgs so I'd say it is beneficial regardless.
    
    * Use `languageHandler.getLanguage` when querying current NVDA's language rather than accessing `curLang` directly.
    * Store current NVDA's language in `globalVars`
    * Set `globalVarrs.appArgs` to a fake implementation by default.
    * update changes
    
    Co-authored-by: buddsean <sean@nvaccess.org>

commit a77aff3c2efa82dea06afc87b0cf361349885fa0
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Mon Nov 22 00:21:13 2021 +0100

    Command line switch to specify language on startup (#10044) (taken over after abandoned #10089) (#12958)
    
    Fixes #10044
    Supersedes #10089
    
    Summary of the issue:
    It can sometimes be useful to specify NVDA's language from the CLI. One use case which has been mentioned in #10044 is when language has been accidentally changed to a foreign one. This can also be useful for developers (it would certainly be a welcome addition for me when working on #12250 and #12753).
    
    Description of how this pull request fixes the issue:
    Add a new --lang command line parameter.
    It accepts either "Windows" or the usual "en" / "de_CH" codes, with a little tolerance regarding to case and dashes.
    As discussed during the review in #10089 the parameter is treated as a temporary override (i.e. it does not affect configuration at all and is effective only until NVDA is restarted).
    As a bonus this PR adds unit tests for languageHandler.normalizeLanguage and languageHandler.getAvailableLanguages (tests for the former were necessary to confirm it provides us with normalization we need, and since I had to split the latter one into two functions added tests made it possible to confirm that current behavior has not changed).

commit f19061cec3c69828217a43415c0542fc93c390c1
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Sun Nov 21 23:34:26 2021 +0100

    Allow building on Visual Studio 2022 (#13055)
    
    NVDA now builds with Visual Studio 2019. Version 2022 was released recently.
    
    Description of how this pull request fixes the issue:
    1. Updates SCons to version 4.3.0.
    2. Allows building with Visual Studio 2019 and newer.
    3. Updates the readme with download url's that are likely to be pretty stable in the near and more distant future.

commit 1cc197c3de906503008fdeab1b963baab1de69b5
Author: Bill Dengler <codeofdusk@gmail.com>
Date:   Thu Nov 18 23:59:25 2021 -0500

    Improve accuracy of terminal settings GUI (#13035)
    
    Some naming in the terminals UI is misleading:
    
    the suppression of passwords controlled by the "Speak passwords in UIA consoles" option is actually implemented in the EnhancedTermTypedCharSupport class, so enabling it will also speak passwords in other enhanced terminals such as Mintty.
    The "new" typed character support (EnhancedTermTypedCharSupport) is labelled unclearly.
    
    Description of how this pull request fixes the issue:
    Move the "speak passwords in UIA consoles" option from the UIA GUI group to the terminals GUI group, and rename it.
    The config spec option is already under terminals, so no change made.
    Rename "use the new typed character support in Windows Console".
    Clean up the user guide.

commit 0bb00d9a1394a34eccb9ff8b7e8d9d9761796f2b
Merge: b12f9bceb 8c59ad9d0
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Nov 19 00:01:59 2021 +0000

    Update translations.
    
    From translation svn revision: 65262

commit 8c59ad9d0ee4579689f1ffcc09be6ee0f2a6fcc1
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Nov 19 00:01:58 2021 +0000

    L10n updates for: zh_TW
    From translation svn revision: 65262
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    haach111000@gmail.com
    
    Stats:
    709     1008    source/locale/zh_TW/LC_MESSAGES/nvda.po
    101     43      user_docs/zh_TW/userGuide.t2t
     2 files changed, 810 insertions(+), 1051 deletions(-)

commit 7e8c7852ce4e027e6790e14bd44c55b95871f5b4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Nov 19 00:01:56 2021 +0000

    L10n updates for: zh_CN
    From translation svn revision: 65262
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen_0528@outlook.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    1872265132@qq.com
    
    Stats:
    94      0       user_docs/zh_CN/changes.t2t
     1 file changed, 94 insertions(+)

commit 51949117743c102a3c6c58073bbef37ac2d861df
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Nov 19 00:01:48 2021 +0000

    L10n updates for: sr
    From translation svn revision: 65262
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    40      41      source/locale/sr/LC_MESSAGES/nvda.po
     1 file changed, 40 insertions(+), 41 deletions(-)

commit a441e099aa6dba3735eaba6fed0f4d03459a4e35
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Nov 19 00:01:25 2021 +0000

    L10n updates for: ja
    From translation svn revision: 65262
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    3       3       source/locale/ja/LC_MESSAGES/nvda.po
    16      15      user_docs/ja/userGuide.t2t
     2 files changed, 19 insertions(+), 18 deletions(-)

commit 860b8997f234a9caf451f4991535b5184b5de317
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Nov 19 00:01:20 2021 +0000

    L10n updates for: hu
    From translation svn revision: 65262
    
    Authors:
    Aron OcsvAri <oaron@nvda.hu>
    
    Stats:
    196     64      source/locale/hu/LC_MESSAGES/nvda.po
     1 file changed, 196 insertions(+), 64 deletions(-)

commit 58a69dc8962b88dfafed09b9310abd5b97bfc453
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Nov 19 00:01:18 2021 +0000

    L10n updates for: hr
    From translation svn revision: 65262
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Milo Ivir <mivir@milotype.de>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    7       7       user_docs/hr/userGuide.t2t
     1 file changed, 7 insertions(+), 7 deletions(-)

commit 988ce123cd3c63718feab44dbc63748ca0447133
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Nov 19 00:01:13 2021 +0000

    L10n updates for: fr
    From translation svn revision: 65262
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqué-Cazenave <corentin@progaccess.net>
    Sylvie Duchateau <sylvieduchateau@gmail.com>
    Sof <hellosof@gmail.com>
    
    Stats:
    6       6       source/locale/fr/LC_MESSAGES/nvda.po
    3       3       user_docs/fr/changes.t2t
     2 files changed, 9 insertions(+), 9 deletions(-)

commit 0f74330e351d748a5dd4ef438e278e75da8bf233
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Fri Nov 19 00:43:41 2021 +0100

    Update to py2exe 0.11.0.1 (#13066)
    
    Closes #12357
    
    Summary of the issue:
    NVDA currently uses py2exe version 0.10.1.0 to create a binary version since never versions of py2exe causes errors during build (py2exe/py2exe#112). These errors has been fixed by @albertosottile in version 0.11.0.0. While never version of py2exe does not provide us with any advantages for now not upgrading regularly might make it difficult to do so when we would need to move to Python 3.10 or later (currently used version of py2exe supports only up to 3.9).
    
    Description of how this pull request fixes the issue:
    Updates version of py2exe we're using to 0.11.0.1
    
    Testing strategy:
    Created a self signed launcher - made sure that NVDA functions well in general
    Tested that NVDA_eoaproxy works
    Smoke tested NVDA-dmp and NVDA_slave
    Ensured that correct file names are shown in tracebacks ((see Update py2exe to version 0.11.0.0 #13057)
    Ensured that entire content of NVDAObjects package is included in the library.zip

commit 6413fc4aa88c76a10213f2233b3ff3569c293406
Author: Sean Budd <sean@nvaccess.org>
Date:   Tue Nov 16 15:45:42 2021 +1100

    Revert "Update py2exe to version  0.11.0.0 (#13057)" (#13062)
    
    This reverts commit f2a6f89bd7471a8c3db5d253ed016e47f29c6245.

commit f2a6f89bd7471a8c3db5d253ed016e47f29c6245
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Tue Nov 16 00:00:46 2021 +0100

    Update py2exe to version  0.11.0.0 (#13057)
    
    Updates version of py2exe we're using to 0.11.0.0
    
    Testing strategy:
    Created a self signed launcher - made sure that NVDA functions well in general
    Tested that NVDA_eoaproxy works
    Smoke tested NVDA-dmp and NVDA_slave
    Known issues with pull request:
    A try branch should be created from this one before it is merged so that we can ensure that .appx package can be created.

commit b12f9bceb5166f93c6fcb1ccdc98e9eeac408430
Merge: 52c586580 b03dc17da
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Nov 12 00:02:06 2021 +0000

    Update translations.
    
    From translation svn revision: 65221

commit b03dc17da7de707140af70e4e979048b84bfafea
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Nov 12 00:01:58 2021 +0000

    L10n updates for: tr
    From translation svn revision: 65221
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    3       3       source/locale/tr/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 3 deletions(-)

commit 8c833db970c631a7aa1c5fce0db91db5fa487063
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Nov 12 00:01:55 2021 +0000

    L10n updates for: ta
    From translation svn revision: 65221
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    11      11      source/locale/ta/LC_MESSAGES/nvda.po
     1 file changed, 11 insertions(+), 11 deletions(-)

commit cd91fc09d4ef6635f5f538b820ef6e104011a372
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Nov 12 00:01:49 2021 +0000

    L10n updates for: ru
    From translation svn revision: 65221
    
    Authors:
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    
    Stats:
    25      25      source/locale/ru/LC_MESSAGES/nvda.po
    116     47      user_docs/ru/userGuide.t2t
     2 files changed, 141 insertions(+), 72 deletions(-)

commit 1ebc25c6c26aab302ff9390459694432099f1fae
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Nov 12 00:01:46 2021 +0000

    L10n updates for: pt_PT
    From translation svn revision: 65221
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    3       3       source/locale/pt_PT/LC_MESSAGES/nvda.po
    22      21      user_docs/pt_PT/userGuide.t2t
     2 files changed, 25 insertions(+), 24 deletions(-)

commit b901887ade523d6e327b563f9010ddedf427edca
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Nov 12 00:01:42 2021 +0000

    L10n updates for: pl
    From translation svn revision: 65221
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Hubert Meyer <hubmeyer1989@gmail.com>
    Arkadiusz Swietnicki <nuno69a@gmail.com>
    
    Stats:
    3       3       source/locale/pl/LC_MESSAGES/nvda.po
    22      22      user_docs/pl/changes.t2t
    63      5       user_docs/pl/userGuide.t2t
     3 files changed, 88 insertions(+), 30 deletions(-)

commit a464a7931ae85b5f4e1e11f8c353e1853d02862e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Nov 12 00:01:31 2021 +0000

    L10n updates for: ko
    From translation svn revision: 65221
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    214     63      source/locale/ko/LC_MESSAGES/nvda.po
    72      72      source/locale/ko/symbols.dic
     2 files changed, 286 insertions(+), 135 deletions(-)

commit 364693a5ba54767ede8ed31ad861a1bfc05a137f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Nov 12 00:01:28 2021 +0000

    L10n updates for: ja
    From translation svn revision: 65221
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    32      21      source/locale/ja/LC_MESSAGES/nvda.po
     1 file changed, 32 insertions(+), 21 deletions(-)

commit 14f753643bc7695cc5782836211c73bdb8515c0f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Nov 12 00:01:22 2021 +0000

    L10n updates for: hr
    From translation svn revision: 65221
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Milo Ivir <mivir@milotype.de>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    64      137     source/locale/hr/LC_MESSAGES/nvda.po
     1 file changed, 64 insertions(+), 137 deletions(-)

commit b59527290d5195a43de29beb89f51c18a888c63b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Nov 12 00:01:16 2021 +0000

    L10n updates for: ga
    From translation svn revision: 65221
    
    Authors:
    Cearbhall OMeadhra <cearbhall.omeadhra@blbc.ie>
    Ronan McGuirk <ronan.p.mcguirk@gmail.com>
    Kevin Scannell <kscanne@gmail.com>
    
    Stats:
    15      15      source/locale/ga/LC_MESSAGES/nvda.po
     1 file changed, 15 insertions(+), 15 deletions(-)

commit 049643c541a02461350854646fe382a126ac2497
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Nov 12 00:01:13 2021 +0000

    L10n updates for: fi
    From translation svn revision: 65221
    
    Authors:
    Jani Kinnunen <janikinnunen340@gmail.com>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    12      11      source/locale/fi/LC_MESSAGES/nvda.po
    1       1       source/locale/fi/symbols.dic
     2 files changed, 13 insertions(+), 12 deletions(-)

commit 80ed3f9f99af9f3f5abd9664232bb181adf3393c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Nov 12 00:01:05 2021 +0000

    L10n updates for: de
    From translation svn revision: 65221
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    5       5       source/locale/de/LC_MESSAGES/nvda.po
    5       5       user_docs/de/changes.t2t
     2 files changed, 10 insertions(+), 10 deletions(-)

commit c1369cea363ad468617aedbe2043cbcd81551858
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Nov 12 00:01:00 2021 +0000

    L10n updates for: da
    From translation svn revision: 65221
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    268     137     source/locale/da/LC_MESSAGES/nvda.po
    1       1       source/locale/da/symbols.dic
    57      37      user_docs/da/changes.t2t
    69      16      user_docs/da/userGuide.t2t
     4 files changed, 395 insertions(+), 191 deletions(-)

commit 52c5865807820e8fa01b046e40f3110a3ad1f26a
Merge: 465ffb8e6 924f7f796
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Nov 5 00:03:33 2021 +0000

    Update translations.
    
    From translation svn revision: 65123

commit 924f7f7968d910410e1c2ab3cf71930a675bb7e5
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Nov 5 00:03:29 2021 +0000

    L10n updates for: vi
    From translation svn revision: 65123
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>
    Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    19      19      source/locale/vi/LC_MESSAGES/nvda.po
    7       6       user_docs/vi/changes.t2t
    7       7       user_docs/vi/userGuide.t2t
     3 files changed, 33 insertions(+), 32 deletions(-)

commit 445971bfdbc451a7e10cd221ad7a4e59fa08c66e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Nov 5 00:03:25 2021 +0000

    L10n updates for: tr
    From translation svn revision: 65123
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    18      18      source/locale/tr/LC_MESSAGES/nvda.po
    2       1       user_docs/tr/changes.t2t
    7       7       user_docs/tr/userGuide.t2t
     3 files changed, 27 insertions(+), 26 deletions(-)

commit 3baee8e25cc70219b15ef1988346e8a79787e3aa
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Nov 5 00:03:23 2021 +0000

    L10n updates for: ta
    From translation svn revision: 65123
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    19      19      source/locale/ta/LC_MESSAGES/nvda.po
     1 file changed, 19 insertions(+), 19 deletions(-)

commit da0728c631e42de32080919e7d4bf438a06d776b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Nov 5 00:03:22 2021 +0000

    L10n updates for: sv
    From translation svn revision: 65123
    
    Authors:
    Daniel Johansson <daniel.johansson@coeptus.se>
    Niklas Johansson <sleeping.pillow@gmail.com>
    Karl-Otto Rosenqvist <Karl-otto@mawingu.se>
    
    Stats:
    191     58      source/locale/sv/LC_MESSAGES/nvda.po
     1 file changed, 191 insertions(+), 58 deletions(-)

commit 2d06d8f39707eacf667a4fcd20e9158bbbf376ad
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Nov 5 00:03:21 2021 +0000

    L10n updates for: sr
    From translation svn revision: 65123
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    18      18      source/locale/sr/LC_MESSAGES/nvda.po
    3       3       user_docs/sr/changes.t2t
    7       7       user_docs/sr/userGuide.t2t
     3 files changed, 28 insertions(+), 28 deletions(-)

commit d3ace5b4adb2f1e2972fdc4b2b901515039af542
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Nov 5 00:03:16 2021 +0000

    L10n updates for: ru
    From translation svn revision: 65123
    
    Authors:
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    
    Stats:
    192     58      source/locale/ru/LC_MESSAGES/nvda.po
     1 file changed, 192 insertions(+), 58 deletions(-)

commit c575c6e51b7eb8d3378b4126aa16486c0f6554cd
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Nov 5 00:03:12 2021 +0000

    L10n updates for: pt_PT
    From translation svn revision: 65123
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    543     409     source/locale/pt_PT/LC_MESSAGES/nvda.po
    88      0       user_docs/pt_PT/changes.t2t
    70      14      user_docs/pt_PT/userGuide.t2t
     3 files changed, 701 insertions(+), 423 deletions(-)

commit 659c3950d3a3a29f363b86bc825ee00c47aa0e2a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Nov 5 00:03:08 2021 +0000

    L10n updates for: pl
    From translation svn revision: 65123
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Hubert Meyer <hubmeyer1989@gmail.com>
    Arkadiusz Swietnicki <nuno69a@gmail.com>
    
    Stats:
    19      19      source/locale/pl/LC_MESSAGES/nvda.po
    29      28      user_docs/pl/changes.t2t
     2 files changed, 48 insertions(+), 47 deletions(-)

commit 05d2ebf21fafe81a4cad3bc87c9d1bb8d97cda8a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Nov 5 00:03:05 2021 +0000

    L10n updates for: nl
    From translation svn revision: 65123
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    4       4       user_docs/nl/userGuide.t2t
     1 file changed, 4 insertions(+), 4 deletions(-)

commit 4e2a56c3924907562594c09d321d2c896b5344a0
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Nov 5 00:02:55 2021 +0000

    L10n updates for: ja
    From translation svn revision: 65123
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    1       1       user_docs/ja/userGuide.t2t
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 4c9cdda305842afcf9ac5fa460912784486ead52
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Nov 5 00:02:53 2021 +0000

    L10n updates for: it
    From translation svn revision: 65123
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    190     55      source/locale/it/LC_MESSAGES/nvda.po
     1 file changed, 190 insertions(+), 55 deletions(-)

commit 1bd99f241899a4bb4da1981e4900f0d730155407
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Nov 5 00:02:49 2021 +0000

    L10n updates for: hr
    From translation svn revision: 65123
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Milo Ivir <mivir@milotype.de>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    19      19      source/locale/hr/LC_MESSAGES/nvda.po
    3       2       user_docs/hr/changes.t2t
     2 files changed, 22 insertions(+), 21 deletions(-)

commit 7dd4134a930253e0c795ad877c41ca83a6bd1093
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Nov 5 00:02:44 2021 +0000

    L10n updates for: ga
    From translation svn revision: 65123
    
    Authors:
    Cearbhall OMeadhra <cearbhall.omeadhra@blbc.ie>
    Ronan McGuirk <ronan.p.mcguirk@gmail.com>
    Kevin Scannell <kscanne@gmail.com>
    
    Stats:
    225     59      source/locale/ga/LC_MESSAGES/nvda.po
     1 file changed, 225 insertions(+), 59 deletions(-)

commit 4dd6ad3016a37b169d588b37183e0bc840152867
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Nov 5 00:02:43 2021 +0000

    L10n updates for: fr
    From translation svn revision: 65123
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqué-Cazenave <corentin@progaccess.net>
    Sylvie Duchateau <sylvieduchateau@gmail.com>
    Sof <hellosof@gmail.com>
    
    Stats:
    19      19      source/locale/fr/LC_MESSAGES/nvda.po
    23      4       user_docs/fr/changes.t2t
    6       6       user_docs/fr/userGuide.t2t
     3 files changed, 48 insertions(+), 29 deletions(-)

commit d5b5a54b37a7c97703d576c43fa7655c36e892b6
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Nov 5 00:02:40 2021 +0000

    L10n updates for: fi
    From translation svn revision: 65123
    
    Authors:
    Jani Kinnunen <janikinnunen340@gmail.com>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    20      20      source/locale/fi/LC_MESSAGES/nvda.po
    2       1       user_docs/fi/changes.t2t
    6       6       user_docs/fi/userGuide.t2t
     3 files changed, 28 insertions(+), 27 deletions(-)

commit 6ce9174d5c2a0d3722f7731d403e06d90c03979d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Nov 5 00:02:32 2021 +0000

    L10n updates for: de
    From translation svn revision: 65123
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    20      20      source/locale/de/LC_MESSAGES/nvda.po
    15      14      user_docs/de/changes.t2t
    15      15      user_docs/de/userGuide.t2t
     3 files changed, 50 insertions(+), 49 deletions(-)

commit 4ea230cc708f1ba90f103233b56e74b176ebbf1d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Nov 5 00:02:22 2021 +0000

    L10n updates for: ar
    From translation svn revision: 65123
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Omar Alojaimi <amrahmad1995@gmail.com>
    
    Stats:
    706     252     source/locale/ar/LC_MESSAGES/nvda.po
    74      3       user_docs/ar/changes.t2t
     2 files changed, 780 insertions(+), 255 deletions(-)

commit 5657960f3802a9eef32a26febb587263ac81aeec
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Nov 5 08:20:54 2021 +1000

    MS Word with UIA: heading quicknav no longer keeps repeating the last heading (#13013)
    
    Fixes #9540
    
    Summary of the issue:
    When accessing MS Word documents with UIA, if the last bit of text is formatted as a heading, pressing quicknav by heading (h) in browse mode keeps repeating that heding. Similarly, The elements list when set to show headings, lists the final heading twice.
    This is due to the fact that most UIA providers when on the last unit, move to the collapsed exclusive end if asked to move forward 1 by that unit. Only after that does the move fail.
    We could add some specific checks in the UIABrowseMode.UIAHeadingQuicknavIterator function to take this into account, or we can rewrite that algorithm to make use of iterUIARangeByUnit which is used in many other places and avoids that bug all together.
    
    Description of how this pull request fixes the issue:
    Rewrite the UIABrowseMode.UIAHeadingQuicknavIterator function to make use of iterUIARangeByUnit. It is now much more similar to the UIABrowseMode.UIATextAttributeQuicknavIterator function, which we know does not have the repeating bug.

commit fd9ae8c46136c2a6fb72d8a963bf46df40a0e6b6
Author: Bill Dengler <codeofdusk@gmail.com>
Date:   Wed Nov 3 23:37:18 2021 -0400

    Prefer Difflib in scrolling LiveText objects (#12974)
    
    In LiveText objects that are constrained to onscreen text (i.e. where text scrolls off the screen), DMP is sometimes unable to correctly calculate new text, leading to choppy and inconsistent new text reporting.
    
    Description of how this pull request fixes the issue:
    Prefer Difflib in pre-FORMATTED UIA console (including legacy mode) and DisplayModelLiveText objects. Users can override this choice in advanced settings for testing or if DMP really provides a supperior experience in their situation.

commit d126545d88aebba87bdb5d5f86a8494bc2121b2e
Merge: 7e835f998 465ffb8e6
Author: Sean Budd <sean@nvaccess.org>
Date:   Thu Nov 4 13:11:52 2021 +1100

    Merge pull request #13030 from nvaccess/beta
    
    Beta to master, to incorporate the changes for 2021.3beta2

commit 465ffb8e691984ad2506b73352ab31db5dbe1b5e
Author: Sean Budd <sean@nvaccess.org>
Date:   Thu Nov 4 11:47:30 2021 +1100

    Fixup #12984 for isInMessageBox backwards compatibility (#13011)
    
    Fix up of #12984
    
    Summary of the issue:
    Backwards compatibility for the following code was broken in 2021.3 beta.
    
    from gui import isInMessageBox
    Note: this code creates a copy of the value of isInMessageBox, and as such, was only accurate if it was being imported when it was being checked.
    
    Importing like this also prevents gui.isInMessageBox from being updated:
    
    from gui import isInMessageBox
    isInMessageBox = False  # this doesn't update gui.isInMessageBox
    
    Description of how this pull request fixes the issue:
    Creates an isInMessageBox that is updated by isInMessageBox.
    Note that while from gui import isInMessageBox can run without error now, using or updating the variable will not work as expected, nor has it ever worked properly.

commit ff7b28b35d2bc7b97dd7a8d329082e6bebd12ddf
Author: Sean Budd <sean@nvaccess.org>
Date:   Thu Nov 4 10:52:27 2021 +1100

    Fixup #12892 - replace marked text with highlighted text (#13019)
    
    Follow up of #12892
    
    Summary of the issue:
    A usage of "marked text" still remains, while other usages have been replaced with "highlighted text"
    
    Description of how this pull request fixes the issue:
    Replaces marked text with highlighted text

commit 9dfdb158dce7ea46e4b7cd6bbcd6e6befc57d43f
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Nov 3 18:21:48 2021 +1000

    MS Word with UIA: ensure the braille display is updated when typing text. (#13020)
    
    Fixes #12970
    Fixes #13004
    Fixes regression caused by pr #12868
    
    Summary of the issue:
    When accessing an MS Word document via UIA, the braille display is not updated when typing characters into the document, although it does correctly update if the caret is moved with the arrow keys and such.
    Generally, NVDA tells braille to update for each caret event. However, In Microsoft Word, although the caret does technically move when typing characters, Microsoft Word only fires a UIA textchange event (NVDA textChange event), and not a caret event (UIA textSelectionChanged event).
    Before pr #12868 , Braille did seem to update correctly, but that was because NvDA was incorrectly passing an MSAA caret event into the UIA NVDAObject with focus.
    
    Description of how this pull request fixes the issue:
    On the MS Word document NVDAObject, implement an event_textChange method which just instructs Braille to update.

commit 7e835f9985f9f8a954cb13089b46e94bd87c6ac6
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Tue Nov 2 22:39:22 2021 +0100

    Stop using legacy `git` protocol when downloading configobj from GitHub (#13018)
    
    https://github.blog/2021-09-01-improving-git-protocol-security-github/#no-more-unauthenticated-git
    GitHub is in the process of disabling the old git:// protocol. Currently the url to configObj in our requirements file is using it making it impossible to install the dependency from the repository.

commit 205df17ad51ea677d6d815f7ea07ba32b7b23414
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Sun Oct 31 23:42:47 2021 +0100

    Use `casefold` when comparing file paths as `os.path.commonPath` fails to handle paths from different disks (#13009)
    
    PR #12943 improved code which retrieves version information for a given executable files placed in system32 under 64-bit versions of Windows. To do so it is necessary to check if path of the given binary starts with path of system32 directory for the current system. The recommended way to compare path's in a case insensitive way was os.pathcommonPath`, however it turns out it does not work when path's are from different drives.
    In case of reporter of #13008 they had Office installed in a custom location probably on non system disk.
    
    Description of how this pull request fixes the issue:
    This PR simplifies the code to use standard str.casefold for comparisons.

commit afbea54505155d7f0ff033018d4af0c69abf7c8b
Author: Ozancan Karataş <ozancankaratas96@outlook.com>
Date:   Fri Oct 29 05:11:20 2021 +0300

    Update CLDR to version 40.0 (#12999)
    
    CLDR team has been released version 40.0 of CLDR package.
    
    Description of how this pull request fixes the issue:
    This pull request adds various emoji and locale changes.
    
    Co-authored-by: buddsean <sean@nvaccess.org>

commit 438f06f3fc869a144d6931d531984a27efae15a2
Merge: 47a4605d2 ed11ae995
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 29 00:02:08 2021 +0000

    Update translations.
    
    From translation svn revision: 64992

commit ed11ae995069e1a214096caed39d3505afb5c285
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 29 00:02:04 2021 +0000

    L10n updates for: vi
    From translation svn revision: 64992
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>
    Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    178     45      source/locale/vi/LC_MESSAGES/nvda.po
    77      0       user_docs/vi/changes.t2t
    68      10      user_docs/vi/userGuide.t2t
     3 files changed, 323 insertions(+), 55 deletions(-)

commit add0db3d5490f486fe92404e8b545393258bb3f7
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 29 00:02:00 2021 +0000

    L10n updates for: tr
    From translation svn revision: 64992
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    176     46      source/locale/tr/LC_MESSAGES/nvda.po
    88      0       user_docs/tr/changes.t2t
    2       1       user_docs/tr/userGuide.t2t
     3 files changed, 266 insertions(+), 47 deletions(-)

commit 68d5dcba678a0f3ac540ac5a1d33fd34739bcdda
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 29 00:01:58 2021 +0000

    L10n updates for: ta
    From translation svn revision: 64992
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    176     44      source/locale/ta/LC_MESSAGES/nvda.po
     1 file changed, 176 insertions(+), 44 deletions(-)

commit c4bb1aa6f5cd0d4e88de6dc26b3ebcd121807e2e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 29 00:01:56 2021 +0000

    L10n updates for: sr
    From translation svn revision: 64992
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    177     43      source/locale/sr/LC_MESSAGES/nvda.po
    73      0       user_docs/sr/changes.t2t
    67      9       user_docs/sr/userGuide.t2t
     3 files changed, 317 insertions(+), 52 deletions(-)

commit 5d0267976cffd88707bacf0ae267fe999343aced
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 29 00:01:45 2021 +0000

    L10n updates for: pl
    From translation svn revision: 64992
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Hubert Meyer <hubmeyer1989@gmail.com>
    Arkadiusz Swietnicki <nuno69a@gmail.com>
    
    Stats:
    177     44      source/locale/pl/LC_MESSAGES/nvda.po
    78      0       user_docs/pl/changes.t2t
     2 files changed, 255 insertions(+), 44 deletions(-)

commit 63d1c51d6be6ab887c51aa478b3e18be73256f29
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 29 00:01:42 2021 +0000

    L10n updates for: nl
    From translation svn revision: 64992
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    70      12      user_docs/nl/userGuide.t2t
     1 file changed, 70 insertions(+), 12 deletions(-)

commit 50478a86ccde6a3a1c816326debe1bac53a85cb4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 29 00:01:33 2021 +0000

    L10n updates for: ja
    From translation svn revision: 64992
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    67      10      user_docs/ja/userGuide.t2t
     1 file changed, 67 insertions(+), 10 deletions(-)

commit f142de24b2457ed291354f8aa2ace57cbbc80e13
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 29 00:01:27 2021 +0000

    L10n updates for: hr
    From translation svn revision: 64992
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Milo Ivir <mivir@milotype.de>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    14      3       source/locale/hr/LC_MESSAGES/nvda.po
    23      6       user_docs/hr/changes.t2t
    2       1       user_docs/hr/userGuide.t2t
     3 files changed, 39 insertions(+), 10 deletions(-)

commit ea3745b26873927bf0cfcf6e132ba2381985a73e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 29 00:01:24 2021 +0000

    L10n updates for: gl
    From translation svn revision: 64992
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    Javier Curras <javier.curras@nvda.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    14      3       source/locale/gl/LC_MESSAGES/nvda.po
    24      6       user_docs/gl/changes.t2t
    2       1       user_docs/gl/userGuide.t2t
     3 files changed, 40 insertions(+), 10 deletions(-)

commit d1f1cf1158b2b7bc5ea9a05a5b3c38ef69d8903d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 29 00:01:21 2021 +0000

    L10n updates for: fr
    From translation svn revision: 64992
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqué-Cazenave <corentin@progaccess.net>
    Sylvie Duchateau <sylvieduchateau@gmail.com>
    Sof <hellosof@gmail.com>
    
    Stats:
    14      3       source/locale/fr/LC_MESSAGES/nvda.po
    2       1       user_docs/fr/userGuide.t2t
     2 files changed, 16 insertions(+), 4 deletions(-)

commit 9d2d97686c5186bc7ea0d613ea3c0abc08b6aad4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 29 00:01:19 2021 +0000

    L10n updates for: fi
    From translation svn revision: 64992
    
    Authors:
    Jani Kinnunen <janikinnunen340@gmail.com>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    13      3       source/locale/fi/LC_MESSAGES/nvda.po
    21      3       user_docs/fi/changes.t2t
    2       1       user_docs/fi/userGuide.t2t
     3 files changed, 36 insertions(+), 7 deletions(-)

commit 6813969558306d24a48f4082d280eb2fab6322fc
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 29 00:01:15 2021 +0000

    L10n updates for: es
    From translation svn revision: 64992
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    14      3       source/locale/es/LC_MESSAGES/nvda.po
    20      2       user_docs/es/changes.t2t
    2       1       user_docs/es/userGuide.t2t
     3 files changed, 36 insertions(+), 6 deletions(-)

commit 510f51e9202dc669b28dab370cd191984326d9a1
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 29 00:01:10 2021 +0000

    L10n updates for: de
    From translation svn revision: 64992
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    14      3       source/locale/de/LC_MESSAGES/nvda.po
    24      5       user_docs/de/changes.t2t
    5       4       user_docs/de/userGuide.t2t
     3 files changed, 43 insertions(+), 12 deletions(-)

commit cdd9278b3827c00218495676d0b7b1dc0c38deee
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 29 00:01:01 2021 +0000

    L10n updates for: ar
    From translation svn revision: 64992
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Omar Alojaimi <amrahmad1995@gmail.com>
    
    Stats:
    261     307     source/locale/ar/LC_MESSAGES/nvda.po
     1 file changed, 261 insertions(+), 307 deletions(-)

commit 35236ce18395d791b31fbf17f50ada75dcc98899
Merge: d65f4de95 47a4605d2
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Thu Oct 28 11:48:50 2021 +0800

    Merge pull request #13000 from nvaccess/beta
    
    Merge Beta to master

commit 47a4605d2c6022a8575d62d180e10071ac15a519
Author: Sean Budd <sean@nvaccess.org>
Date:   Thu Oct 28 14:08:29 2021 +1100

    Add check for open messageBoxes to prevent exit (PR #12984)
    
    Relates to #12976
    
    Summary:
    NVDA was crashing when trying to exit NVDA while a messageBox was open (eg the About Dialog).
    This is due to wx Idle Events firing on the dialogs while they are being forced to close in the exit process.
    
    Repro steps:
    - have NVDA running:
    - Press NVDA+n then h to open the help menu, down arrow to "About dialog" and enter to open that.
    - Press NVDA+Q then ENTER to quit NVDA
    
    The change:
    Prevent user initiated exit while a MessageBox dialog is open. If a modal is used, generally the outcome of the MessageBox is important and must be resolved before exit.
    
    Co-authored-by: Reef Turner <reef@nvaccess.org>

commit d65f4de957bcf90a74a4ef6b0ad674033b2ed0e4
Author: Sean Budd <sean@nvaccess.org>
Date:   Thu Oct 28 08:56:17 2021 +1100

    Fixup FolderId usage and change log (#12986)
    
    Fixup of #12943
    
    Summary of the issue:
    Changelog entries were missing for #12943
    
    UpperCamelCase is the standard for class names, including enums, however FOLDERID was used as the casing for the enum, which mirrors the windows constants.
    There is a similar issue for the enum members (which used UpperCamelCase instead of CAP_SNAKE_CASE).
    
    If we want to change our practice to be consistent with what an Enum represents, we should update codingStandards.md
    
    Also the enum type was not being fully leveraged by SHGetKnownFolderPath, requiring .value to be used unnecessarily when calling the function.
    
    Description of how this pull request fixes the issue:
    Updates the casing of the enum and it's members. Updates the change log, and fixes up some earlier entries.

commit bfbe2bf271f7400a237b2f460c727e16bb302213
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Oct 27 21:56:33 2021 +1000

    Support the Modern Comments side track pane in MS Word when not accessing MS Word documents via UIA  (#12988)
    
    Fixes #12982
    
    Summary of the issue:
    In build 13901, MS Word introduced "Modern comments" which allows comment threads (I.e. an initial comment plus replies) and the ability to resolve or reopen threads. The new UI to do this is exposed as a new comments side pane which shows the comments and replies in a treeview. This UI is only exposed via UI Automation.
    This UI is supposed to completely replace the older Comments story in a document.
    As this new UI is imbedded within the document, it shares the same window handle. If NvDA is using the object model to access the document (I.e. the UIA provider of the document's window is ignored) then NVDA never sees the modern comments UI at all. It seems that MS Word does not ever proxy this to MSAA either.
    Also, if MS Word detects that something is trying to access the comments via the object model in the old way (E.g. calls comment.range) then the Modern comments UI is disabled (hidden) and MS Word ends up in a state where querying the range at the selection of the object model is no longer in the comments story, yet the UI is not shown either. This MS Word bug is known to Microsoft however they have no plans or willingness to fix it. Their only recommended solution is to stop using the object model and just use UIA.
    
    Description of how this pull request fixes the issue:
    in UIAHandler.handler.isUIAElement: return true if the element's windowHandle is _WwG but an ancestor of the element has a UIA className of NetUIHWNDElement.
    I.e. this UIA element is a control of a NetUI container embedded in an MS Word document. E.g. a control in the Modern Comments side track pane.
    Also, if there is a UIA focus event for the Word document root, even though we are not classing that window as native UIA, if the previously focused object was a control in a NetUI container embedded in the same Word document, then generate an MSAA focus event for the document, as MS Word will not do this itself.
    Note that allowing NVDA to track the focus with UIA for these embedded controls is enough to work around the issue, as this then means that focus never hits the Word document while the Comments side track pane should be focused, thus avoids making object model calls MS Word does not like or expect.

commit 9f8fff86ca700d21321535ac8306d4316a638cad
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Oct 27 13:01:42 2021 +1000

    Support math content in MS Word build 14326+ via UIA (#12977)
    
    Fixes #12946
    Fixes #12941
    
    Summary of the issue:
    NVDA was able to provide rich support of mathematical content in Microsoft Word by making use of MathPlayer, MathType and the MS Word object model.
    However, when NVDA only relies on UI Automation to access MS Word documents, it is no longer possible to fetch mathMl from MathType equations via the MS Word object model.
    However, Microsoft very recently added a new UI Automation custom property for fetching raw mathMl from an Office Equation node, thus if NVDA were to fetch this mathMl, then it could pass it along to mathPlayer as usual, then providing rich reading / navigation of math content in MS word again if accessed via UIA.
    
    Description of how this pull request fixes the issue:
    • Register the mathMl UIA custom property.
    • Fetch the raw mathMl from an MS Word Office Equation node.
    • Expose it for the rest of NVDA to find and use with mathPlayer.
    Note that MS Word also provides a basic form of linea symbol navigation in equations, so we make sure that the mathMl is exposed to mathPlayer when moving by line, replacing MS Word's own inner math content. But if moving by word/character, then MS Word's own inner math content is left in tact.

commit d7ca6c37891a127c0d652f03f503ed2f50d76575
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Oct 27 12:08:06 2021 +1000

    Update what's new (#12992)
    
    In pr #12989 NVDA no longer defaults to using UIA in MS Word build 13901 or higher.
    This pr removes the relevant line from changes.t2t.
    Note that the release blurb for 2021.3 did not explicitly mention this feature thus did not need to be updated.

commit 199da93abbd06ac3542747ae89b7e6cff4f87315
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Oct 27 12:07:25 2021 +1000

    brailleHID driver: Also allow panning with rocker up and rocker down. (#12993)
    
    NVDA 2021.3 introduces support for the Braille HID standard. However this is very new and not many displays support this yet. The displays that do support this vary in the buttons they provide.
    It is important that we map panning gestures to enough buttons to ensure that any display that supports braille HID should be able to be panned.
    For instance, one display exposes pan left and pan right buttons from the braille HID specification -- we already map these to NVDA's braille scroll back and forward respectively.
    However, the Orbit Reader 20 and 40 do not expose pan left and right keys, but they do have rocker up and rocker down keys.
    Description of how this pull request fixes the issue:
    Also map NVDA's braille scroll forward and scroll back to braille HID's rocker down and rocker up keys respectively.

commit 20277023b4704f5a8364fb0f53666da668451b1a
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Oct 27 12:03:12 2021 +1000

    Revert UI a in ms word by default (#12989)
    
    We have tried to switch to using UI automation to access MS Word documents by default in NVDA 2021.3. However, there are still several issues remaining with our UIA support. Switching to UIA by default should be held back until these are addressed.
    Some of these include:
    • Support for math: Support mathML UIA custom property in MS Word #12946
    • Reporting of line numbers: Requires UIA custom patterns support\
    Over the last couple of months our UIA support has had a lot of fixes and improvements, mainly spured on by the apparent need to switch due to NVDA and MS Word not playing well together with the introduction of Modern Comments in MS Word build 13901. However, a work around has been found for #12982 now, making the swich less of a high priority.
    Description of how this pull request fixes the issue:
    Reverts #12859
    Reverts #12854
    Reverts #12770

commit 3ce266b2eb7efdab52b9d7fdff7e3383b2281a5a
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Mon Oct 25 02:56:00 2021 +0200

    Ensure that NVDA can get file version information for binaries in system32 on 64-bit versions of Windows (#12943)
    
    discussion in #12852
    
    Summary of the issue:
    NVDA can retrieve information for a binary file such as application name and version from which given appModule has been created. While they're not shown to the user directly they can be inspected as part of the developer info - also NVDA relies on them for various stuff internally.
    
    Description of how this pull request fixes the issue:
    For a duration of retrieving file info for a binary placed in system32 and when running on a version of Windows which have both system32 and SysWOW64 WOW64 redirection is disabled. While at it I've removed deprecated shlobj.SHGetFolderPath and replaced it with SHGetKnownFolderPath and removed unused function from the config module ((while not strictly related it relied on SHGetFolderPath).
    
    Testing strategy:
    On 64-bit version of Windows installed self signed build from this branch, enabled service debug, started an application with the admin privileges, inspected developer info for the UAC screen and made sure that for consent.exe file version and file name can be retrieved. Made sure that this code is not executed on 32-bit version of Windows and that file version info can still be retrieved there.
    
    Co-authored-by: buddsean <sean@nvaccess.org>

commit 8b17f662dc3e185fc862cfffcfeed997dff19b16
Merge: 5114ccca0 91a7c39c3
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Fri Oct 22 10:57:36 2021 +0800

    Merge pull request #12975 from nvaccess/beta
    
    Beta to Master: Merge changes and translations

commit 91a7c39c350d7562d9ae45926072481771c0eab9
Author: Cyrille Bougot <cyrille.bougot2@laposte.net>
Date:   Fri Oct 22 04:31:07 2021 +0200

    Two dictionary dialogs can now be opened simultaneously if the dictionaries are of different types. (#12967)
    
    Fix-up of #12800.
    Described in #12800 (comment), paragraph "Test almost successful", "Test 2".
    
    Summary of the issue:
    Since the merge of #12800, trying to re-open an already opened dialog allows to focus it rather than issuing an error as done previously. However, in the case of dictionaries, if you try to open the voice dictionary while the default is already open will lead to focus the default dictionary rather than opening the voice dictionary dialog;
    
    Description of how this pull request fixes the issue:
    Since the check of an existing opened dialog is made on the class of the dialog, I have sub-classed DictionaryDialog for the three types of dictionaries to make them distinct one from another.
    
    Co-authored-by: Sean Budd <sean@nvaccess.org>

commit 60f798726dc1be486af05a555949eb8d911e2a6c
Merge: b7fd0778e 9f72b5124
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 22 00:02:28 2021 +0000

    Update translations.
    
    From translation svn revision: 64848

commit 9f72b51244f64402b2eab6f4776508a7facdddb2
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 22 00:02:21 2021 +0000

    L10n updates for: tr
    From translation svn revision: 64848
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    74      17      user_docs/tr/userGuide.t2t
     1 file changed, 74 insertions(+), 17 deletions(-)

commit 54588da57756321a11a5ed3f5061337477716c0c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 22 00:01:54 2021 +0000

    L10n updates for: ja
    From translation svn revision: 64848
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    144     41      source/locale/ja/LC_MESSAGES/nvda.po
     1 file changed, 144 insertions(+), 41 deletions(-)

commit fd054ad6c5d6c7b36ade3b20751af125c6098d3e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 22 00:01:45 2021 +0000

    L10n updates for: hr
    From translation svn revision: 64848
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Milo Ivir <mivir@milotype.de>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    165     44      source/locale/hr/LC_MESSAGES/nvda.po
    59      0       user_docs/hr/changes.t2t
    70      12      user_docs/hr/userGuide.t2t
     3 files changed, 294 insertions(+), 56 deletions(-)

commit 082ba981767ea0d2f97ed0d4ac371c00fe66f249
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 22 00:01:41 2021 +0000

    L10n updates for: gl
    From translation svn revision: 64848
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    Javier Curras <javier.curras@nvda.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    166     45      source/locale/gl/LC_MESSAGES/nvda.po
    69      0       user_docs/gl/changes.t2t
    67      10      user_docs/gl/userGuide.t2t
     3 files changed, 302 insertions(+), 55 deletions(-)

commit 65421d5e2f81c6a8638cdbe1a28ae4766782b8bd
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 22 00:01:36 2021 +0000

    L10n updates for: fr
    From translation svn revision: 64848
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqué-Cazenave <corentin@progaccess.net>
    Sylvie Duchateau <sylvieduchateau@gmail.com>
    Sof <hellosof@gmail.com>
    
    Stats:
    194     72      source/locale/fr/LC_MESSAGES/nvda.po
    69      0       user_docs/fr/changes.t2t
    65      8       user_docs/fr/userGuide.t2t
     3 files changed, 328 insertions(+), 80 deletions(-)

commit 61e23b3960d851cbaffe8fdf68f74b703c781ee0
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 22 00:01:34 2021 +0000

    L10n updates for: fi
    From translation svn revision: 64848
    
    Authors:
    Jani Kinnunen <janikinnunen340@gmail.com>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    199     78      source/locale/fi/LC_MESSAGES/nvda.po
    79      19      user_docs/fi/changes.t2t
    162     105     user_docs/fi/userGuide.t2t
     3 files changed, 440 insertions(+), 202 deletions(-)

commit c158c46e1fa5c265b20380e914ce6cfd0634c0e7
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 22 00:01:29 2021 +0000

    L10n updates for: es
    From translation svn revision: 64848
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    170     46      source/locale/es/LC_MESSAGES/nvda.po
    69      0       user_docs/es/changes.t2t
    67      10      user_docs/es/userGuide.t2t
     3 files changed, 306 insertions(+), 56 deletions(-)

commit c331b970d0588efd3948dde78652145f2f7c674d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 22 00:01:25 2021 +0000

    L10n updates for: de
    From translation svn revision: 64848
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    171     44      source/locale/de/LC_MESSAGES/nvda.po
    76      7       user_docs/de/changes.t2t
    65      9       user_docs/de/userGuide.t2t
     3 files changed, 312 insertions(+), 60 deletions(-)

commit 5114ccca06eab46ec6ba17da3c5599d15573722e
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Thu Oct 21 14:34:50 2021 +0800

    Use QuickNav Reason (PR #12939)
    
    * Treat FOCUS and QUICKNAV identically
    
    OutputReason.QUICKNAV was generally not used, not at all in the chain of
    calls resulting from speech.speakTextInfo
    
    Treat QUICKNAV in the same way as FOCUS so that they can be
    differentiated in the future.
    
    * Use OutputReason.QUICKNAV when initiating a quickNav gesture.

commit b7fd0778e7e8bdaad3770b163686d5aa53cdc23b
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Oct 21 15:18:38 2021 +1000

    Remove incorrect changelog entry.

commit 3c0c8ed2a862d9b7639151fbfa3af29a169e0105
Merge: 1f13d45ff a6a34ddbb
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Thu Oct 21 12:27:40 2021 +0800

    Merge pull request #12968 from nvaccess/beta
    
    Merge Beta into master

commit 1f13d45ff15d5aeed23e1542426c1aa05ec65e30
Author: Bill Dengler <codeofdusk@gmail.com>
Date:   Wed Oct 20 22:48:31 2021 -0400

    Verify success of forward review moves by word and line (#12960)
    
    Closes #12808.
    
    Summary of the issue:
    In Microsoft Word, new builds of Windows Console, and Edgium with UIA enabled, "bottom" is not reported when moving past the end of the document in review. These providers return nonzero when moving collapsed textInfos forward past the end, but simply set them to the exclusive end of the document.
    
    Description of how this pull request fixes the issue:
    When moving forward by word or line, maintain the old position and verify that the new position is after the previous.
    
    Testing strategy:
    Tested in affected modern providers, notepad with MSAA, Chrome with IA2, and the MS Word object model.
    
    Co-authored-by: Michael Curran <mick@nvaccess.org>
    Co-authored-by: buddsean <sean@nvaccess.org>

commit a6a34ddbb6f3a7134393a4ede8a1265f5cd21d3f
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Thu Oct 21 10:46:51 2021 +0800

    Release highlights 2021.3 (PR #12948)
    
    * Release Highlights for 2021.3
    * Fix typo in hlght

commit 63dcf759cc9ab1ad88ff4ab04d75d93039fc0d61
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Thu Oct 21 10:45:26 2021 +0800

    Fix revert in 5b821c60a (PR #12965)
    
    A rename of field to textWithEmbeddedObjectsItem was not observed when reverting.
    Re-introduce renames.

commit 34a105d81d8122eaf75701c155cdd730e96b54ab
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Oct 21 11:59:06 2021 +1000

    Honor Windows setting to swap primary mouse button (#12922)
    
    Fixes #12642
    
    Summary of the issue:
    NVDA may at times resort to clicking the mouse to perform particular actions on behalf of the user, such as activating a link or bringing up a context menu.
    Currently, NVDA clicks the left mouse button to activate / select items, and clicks the right mouse button to display a context menu. This is generally expected behaviour.
    However, Windows has a user setting allowing the user to swap the mouse buttons, such that the primary button (activating / selecting) is the right mouse button, and the secondary (context menu) is the left.
    If the user has chosen to swap the buttons, NVDA may inadvertantly display a context menu when trying to activate an item, or the other way round.
    
    Description of how this pull request fixes the issue:
    This pr adds doPrimaryClick and doSecondaryClick functions to mouseHandler that honor the Windows user preference for which button is the primary mouse button.
    All code in NVDA that licks aa mouse button in order to perform activation, selection or show a context menu has been changed to call these new functions in place of calling executeMouseEvent for the left or right mouse button.
    However, The mouse click scripts in globalCommands have not been changed, as these are specifically named after which physical mouse button they click, rather than performing a logical primary or secondary action.

commit 4778752f3288ce3838c11ecddcae72165b66d89f
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Oct 20 19:21:30 2021 +1000

    Support UI Automation custom annotations such as notes in MS Excel (#12861)
    
    The Microsoft UI Automation accessibility API has a concept of annotations, which are essentially a way of attaching extra meta information (or annotations) to content. E.g. comments. An annotation is made up of both a known type ID E.g. AnnotationType_Comment, and an object (an extra UI automation element containing properties such as the author, date etc). NVDA already supports standard UI Automation annotations.
    In Windows 11, UI Automation has been extended to support custom annotations. these are annotations with an application-defined type ID. E.g. an Excel note, or an MS word bookmark.
    In order for these type IDs to be agreed upon by both the application and assistive technology at runtime, a mechanism very similar to UI Automation custom property registration was introduced to UI automation for registering custom annotation types, exposed via the Windows.UI.UIAutomation.Core.CoreAutomationRegistrar winRT interface.
    
    Description of how this pull request fixes the issue:
    • implemented a new registerUIAAnnotationType function in nvdaHelperLocal that uses the Windows.UI.UIAutomation.Core.CoreAutomationRegistrar winRT interface to register an annotation type GUID, resulting in a new annotation type ID that can be used like any other standard UI automation annotation type ID.
    • Implemented infrastructure in NVDA to aide in registering UI Automation annotation types, pretty much identical to the UI Automation custom property registration infrastructure.
    • Added support for detecting notes in MS Excel, which are exposed as a custom annotation on cells.
    • Added support for detecting bookmarks in Microsoft Word documents in both speech and braille.
    • Added support for detecting draft comments and resolved comments in Microsoft Word in both speech and braille.

commit 0c09fff367a5c3afac1ae69b885fc1b55eabada7
Author: Sean Budd <sean@nvaccess.org>
Date:   Wed Oct 20 17:49:14 2021 +1100

    create Enums for audioDucking and minor lint (#12926)
    
    Implements IntEnums for constants
    Add some comments
    Clean up imports

commit 269224ea83e6d7e9abfe1e48126423f71ef53720
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Wed Oct 20 07:44:32 2021 +0200

    Move CallCancelled from core and all RPC constants into an enum (#12940)
    
    Currently various RPC constants we use are scattered through out the code base. Also some stuff is defined in core but is not related to core in any way.
    Description of how this pull request fixes the issue:
    • CallCancelled is moved to the new exceptions module
    • All RPC constants both from core and from logHandler are moved into an enum .

commit 0eb6bcb7c201e2d4928228b2994a8c08f8fa5a9d
Author: Sean Budd <sean@nvaccess.org>
Date:   Wed Oct 20 16:43:35 2021 +1100

    Add logging to SAPI5 synthDriver and move constants to Enums (#12927)
    
    This is not a focused refactor, and as such, more work could be done to improve the SAPI 5 driver.
    
    Description of how this pull request fixes the issue:
    Implements IntEnums for constants
    Adds logging
    Clean up imports

commit 32bf54e1f26fec3abf60d81dc79a01e7a1817931
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Wed Oct 20 02:41:02 2021 +0200

    Improve selection and merged cell announcements in LibreOffice Calc 7.3 and above (#12849)
    
    Link to issue number:
    Fixes #9310
    Fixes #6897
    
    Summary of the issue:
    In LibreOffice calc, selection is not announced and for merged cells, only the first cell is announced.
    
    Description of how this pull request fixes the issue:
    In LibreOffice 7.3 development branch, support for IAccessibleTable2 and IAccessibleTableCell were added. This allows us to implement something that works as expected.

commit 69f210fb987530fcbf1271a9b28c2a20f1e392e3
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Wed Oct 20 01:18:26 2021 +0200

    Remove unused and / or broken code (#12935)
    
    This PR removes the following:
    - sysTreeView32 contains unused `TVItemStruct` - no idea what for (this code was there and was unused since 97a2fc65c31cb0718374e6df82b5eb5337b24b2f so for as long as this module).
    - `MessageItem` class from the app Module for Outlook (last usages removed in #9603)
    - `getPath` from the poedit appModule - this function was not used anywhere and in addition was broken (it references nonexistent variable `stopObj`

commit a54b5306d3289041222c02ff0c34d946722e890d
Author: Bill Dengler <codeofdusk@gmail.com>
Date:   Tue Oct 19 18:37:01 2021 -0400

    UI Automation in Windows Console: Remove deprecated isImprovedTextRangeAvailable (#12955)

commit 8d8f60639e92627184151e2080052c7ec2730500
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue Oct 19 15:40:10 2021 +0800

    Update Espeak for 2022.1 (PR #12950)
    
    Espeak-ng has been updated to commit 7e5457f91e10

commit 7df7bf30ae9e7bb0e2ac50f0678ccb50384f7541
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Tue Oct 19 09:02:31 2021 +0200

    Ensure that clipboard manager does not steal focus when starting  MS Office programs (#12736)
    
    As described in #4199 when starting Office programs Word, Excel clipboard manager can sometimes steal accessibility focus making it impossible to interact with the document / spreadsheet.
    Most cases were fixed but it seems one has been missed - focus lands on something called Collect and Paste 2.0 ,making interaction with the actual document difficult.
    
    Description of how this pull request fixes the issue:
    Since the "Collect and paste" has a custom eventObjectID SDM~has not been applied to it causing focus to be incorrect. This custom ID has been added to the list of objects for which SDM~applies.

commit 56e66c490d664527af49adf3bb8bf5768a276386
Merge: bb790ee0a 23249c0a4
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue Oct 19 13:12:12 2021 +0800

    Merge pull request #12947 from nvaccess/branchFor2021.3
    
    Branch for the 2021.3 release

commit 2dc95f182b706eb7b815ebf6a2bc3ca9ac8958a9
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue Oct 19 13:07:28 2021 +0800

    Start dev cycle 2022.1 (PR #12949)
    
    * Add section to changes files for 2022.1
    * Update build version for 2022.1

commit 23249c0a40b5e9a9f9c73453b85e995ca9d077a9
Author: Sean Budd <sean@nvaccess.org>
Date:   Tue Oct 19 15:42:31 2021 +1100

    Close WelcomeDialog instances before triggering NVDA Exit (#12957)
    
    Fixes #12907
    
    Summary of the issue:
    NVDA crashes if the welcome dialog is open, and was opened via the NVDA menu.
    
    Description of how this pull request fixes the issue:
    Track instances of the welcome dialog as they are created, close them all before the exit dialog is triggers an exit.
    As the cause of this problem is complicated, and a proper fix is risky, this small patch avoids touching the core module.
    
    Testing strategy:
    
    Manual testing:
    Start NVDA, close any open dialogs
    Open the Welcome Dialog via NVDA menu > Help
    Exit NVDA (exiting NVDA methods)
    
    Confirm the other way to start a Welcome Dialog exits correctly:
    Start NVDA with the Welcome Dialog set to open on startup
    Exit NVDA (exiting NVDA methods) with the Welcome Dialog still open
    
    System tests have been added which test the issue for quitting from keyboard via the Exit Dialog

commit f2bb38cf130445e3872055576e8994a98826dd49
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Mon Oct 18 16:26:15 2021 +0800

    Fix reading order / description spoken during quick nav (PR #12933)
    
    Fixes #12751
    Broken in #12500
    
    When using quick nav ("h" in browse mode) to navigate to a heading nested in an article with a description, the description was announced before the heading. For quicknav and for focus changes, the most inner element should always be announced first, working outwards to provide additional context.

commit 05d700e6ea0d8ead9073aa02c809c8577f33fc3c
Author: Cyrille Bougot <cyrille.bougot2@laposte.net>
Date:   Mon Oct 18 06:38:06 2021 +0200

    Reporting indent in Word with UIA (fix-up) (#12924)
    
    Fixes #12899
    Fix-up of #12908
    Relates to #12770
    
    Summary of the issue:
    Historically, the indent in NVDA is reported via object model and its terminology is similar to what is found in Word's paragraph formatting dialog.
    In #12908, reporting indant via UIA has been introduced. A mapping between UIA text attributes relative to indent and the type of indent that is reported was used. This mapping was doing the following assumption:
    
    UIA first line indent corresponds to Word's first line indent
    UIA leading indent corresponds to Word's left indent
    UIA trailing indent corresponds to Word's right indent
    This assumption is not always correct for the first two points. And you can seen that object model access. And UIA access give not the same results in the following examples:
    left indent = 2.5cm and first line indent = 2.5cm
    left indent = 2.5cm and first line negative indent = 2.5cm
    Moreover, first line negative was reported in the object model code, whereas it does not appear at all in the UIA code, what evidences missing code.
    
    Description of how this pull request fixes the issue:
    Correct matching between Word's and UIA terminology has been implemented. To clarify:
    
    Word's terminology
    left indent = distance from the left margin to the left-most start of a line (it may be the first line or the following lines)
    right indent = distance from the right margin to the end of the paragraph's lines (except the last that may be incomplete)
    first line indent = distance between the start of the first line and the start of the other lines when the first line starts after the other ones
    hanging indent = distance between the start of the first line and the start of the other lines when the first line starts before the other ones
    UIA terminology
    first line indent = distance from the left margin to the start of the first line of the paragraph
    leading indent: distance from the left margin to the start of the following lines (2nd, 3rd, etc.)
    trailing indent = distance from the right margin to the end of the paragraph's lines (except the last that may be incomplete)
    Addition: do not report zero indent
    In addition, I have removed reporting any type of indent when its value is zero. Indeed, it was not reported in this case with the object model access, and I felt it was worth continuing in this way. Moreover, in #12908, nothing has been indicated that zero values should now be reported, so I assumed that it was unintentional.
    
    Possible alternative design
    I have aligned what is reported to what preexisted with the object model access, since in #12908 no information was indicating that it should have been modified.
    
    But another option may have been to report indentation as provided by UIA and to align the object model access code to what is provided by UIA.
    
    I have also not chosen this alternative design because I think that today, only Word provides indentation information via UIA. Thus, this makes sense to follow with Words conventions. If another provider should provide indent information one day, maybe the way indentation is reported should be reconsidered and uniformed.
    
    Should you however prefer this alternative design, just let me know.
    
    Testing strategy:
    Tested various paragraph formatting with non-zero left indent and the 3 following cases:
    
    no first line indent
    first line indent > 0
    negative indent > 0

commit c9d1799d533f05b13bae6eb078934e9a4de08eea
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Sun Oct 17 21:14:09 2021 -0700

    Windows 11: suppress UIA focus event on InputSite pane window when switching tasks (#12944)
    
    Closes #12648
    
    Summary of the issue:
    When switching tasks in Windows 11, a "pane" window gets focused instead of the app being switched to in some cases.
    
    Description of how this pull request fixes the issue:
    Treat InputSite window class window as a Windows 10 MultitaskingViewFrameWindow object which suppresses UIA focus event.
    
    Testing strategy:
    Manual testing on Windows 11 (prerequisite: Windows App Essentials add-on must be disabled):
    
    Without the patch applied, try switching between tasks.
    With the patch applied, try switching between tasks.
    Expected: NVDA will say "pane" in scenario 1, whereas NVDA will not say "pane" in scenario 2 when switching tasks.
    
    Commits:
    
    * Explorer app module: update copyright year
    
    * appModules/Explorer: suppress UIA focus event for task switching frame window in Windows 11. Re #12648.
    
    When switching tasks in Windows 11, sometimes an unknown 'pane' window gets focused instead of the app being switched to. Therefore detect this pane window and treat it as a Windows 10 multitasking view frame window which suppresses UIA focus event.
    
    * update changes
    
    Co-authored-by: buddsean <sean@nvaccess.org>

commit bb790ee0a56d1554ea22b076eca9ffbd27952a1a
Merge: bfd975db0 bfc833fe5
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 15 00:01:54 2021 +0000

    Update translations.
    
    From translation svn revision: 64693

commit bfc833fe5d9bacd7f2edf2f8c09230362f644a13
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 15 00:01:34 2021 +0000

    L10n updates for: pl
    From translation svn revision: 64693
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Hubert Meyer <hubmeyer1989@gmail.com>
    Arkadiusz Swietnicki <nuno69a@gmail.com>
    
    Stats:
    7       7       source/locale/pl/LC_MESSAGES/nvda.po
     1 file changed, 7 insertions(+), 7 deletions(-)

commit a0caf1f1f78c99a252f5b2bdecb00a46af7ef65c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 15 00:01:13 2021 +0000

    L10n updates for: fr
    From translation svn revision: 64693
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqué-Cazenave <corentin@progaccess.net>
    Sylvie Duchateau <sylvieduchateau@gmail.com>
    Sof <hellosof@gmail.com>
    
    Stats:
    6       6       source/locale/fr/LC_MESSAGES/nvda.po
     1 file changed, 6 insertions(+), 6 deletions(-)

commit 15c992906b81692b582992f724f0e3fc90c664c8
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 15 00:01:08 2021 +0000

    L10n updates for: es
    From translation svn revision: 64693
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    3       67      source/locale/es/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 67 deletions(-)

commit f8df880a37b9116ce5027773ff58039fe2c0ff42
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Thu Oct 14 22:26:22 2021 +0200

    Add missing import to the MSN messenger appModule (#12934)

commit 85e34e636fa2dede74356c1b1713949a2b200ddd
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Thu Oct 14 14:31:49 2021 +0800

    Add link to the GitHub project for IA2 idl files (PR #12932)

commit a2b2e3d6e0a88ecc3180de46304fce00f6f1960b
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Thu Oct 14 02:02:05 2021 +0200

    Support table navigation for WPF list item DataItem objects (#12928)
    
    Steps to reproduce the issue
    Open PowerShell
    Type Get-Process | Out-GridView
    Observe that table navigation doesn't work on the several entries in the grid.
    
    Description of how this pull request fixes the issue:
    This pr adds the RowWithFakeNavigation on these objects, thereby automatically exposing the ability to table nav through the grid, including reading of column headers.
    
    Testing strategy:
    Tested in both PowerShell 5.1 and PowerShell Core 7.1
    
    Known issues with pull request:
    This change might hit untested controls. Note that the logic in RowWithFakeNavigation continuously checks child count, so I think it's pretty safe to add. It is also added to icons on the desktop, for example.

commit bc1281581226bb8972ce717edb6bdee4a1969190
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Oct 14 09:12:27 2021 +1000

    Delayed detection of spelling errors: when fetcing formatting, catch any exception not just RuntimeError as a lot of complex things could go wrong if the underlying object disappears for instance. (#12931)
    
    Fixes #12930
    Fixup of #12925
    
    Summary of the issue:
    When fetching the formatting of the last typed word after a delay, in order to detect if there is a spelling error, errors can occur if the underlying object dies or is replaced.
    
    Description of how this pull request fixes the issue:
    Catch Exception rather than RuntimeError when fetching formatting by calling GetTextWithFields.
    Note that this exception will still be logged at debug warning.

commit c6aa77120761034674b64a7d926e86befa0b14f4
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Wed Oct 13 16:33:16 2021 +0800

    Dont report description in browse mode with reportObjectDescriptions (PR #12917)
    
    Historically the option "Object presentation: Report Object Descriptions" (default: true) has been limited to focus mode and object navigation.
    In Report aria-description always #12500 this was changed to report descriptions always.
    Historically, the word "object" in the settings category, and the name of this option was supposed to imply "focus mode / object nav specific behavior".
    
    This change introduces a way to test braille (not dots, raw text) output.
    Reverts changes from Report aria-description always #12500 that aimed to make the reportObjectDescriptions behavior consistent between browse and focus modes.
    Updates the user docs to specify that options in the Object Presentation category don't apply to browse mode.

commit 7dd53af4aec0c444818073e5277cce6a59bda8e6
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Oct 13 14:43:46 2021 +1000

    Better detection of spelling errors when typing in MS Word with UIA (#12925)
    
    Fixes #12161
    
    Summary of the issue:
    When in any editable text control (E.g. a Word document), each time the user completes a word by typing space or another punctuation character, NVDA checks the formatting of the completed word to see if it is marked as a spelling error, and if so plays a special text error buzz sound.
    However, in at least MS Word with UIA, this check for spelling errors never really finds an error as MS Word has not yet actually detected the error itself.
    We need to slow down NVDA's detection to give the app more time.
    
    Description of how this pull request fixes the issue:
    Delay the fetch and check of the completed word's formatting into a future core cycle (specifically a 50 ms delay) to give the app more time to detect the error itself.

commit cfeb3d27d60922c3f6f0b3c5ad19da85dbb574ae
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Mon Oct 11 14:44:27 2021 +0800

    Don't braille or speak duplicate name / content / description (PR #12888)
    
    When a link had a title attribute that matches the content, braille (and speech) was duplicated.
    
    Tests have been added for speech, to show current behavior (duplicated name/content/description)
    The duplicate speech/braille is fixed:
    - In focus mode, ensuring that description is not reported if it matches name
    - In browse mode, when filling the virtual buffer identifying when description matches the node contents and adding an attribute.

commit bfd975db0d4ac655c5f3c8ec079948248db00820
Merge: 50e9773a8 fb4466eea
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Mon Oct 11 14:44:10 2021 +0800

    Merge pull request #12921 from nvaccess/master
    
    Update beta from alpha so translations can be started.

commit fb4466eea3633530685862aa5ff278cbc8fdd899
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Fri Oct 8 13:42:35 2021 +0800

    Announce highlight instead of marked (PR #12892)
    
    Prior work: #11436
    
    - Use "highlight" instead of "marked content" for speech.
    - Use "hlght" instead of "mrkd" for braille
    
    'mark' elements were being reported as "marked content" which is long.
    Additionally, the standard visual representation (in browsers) of mark is a yellow background, as if the text has been highlighted.
    Arguably, "highlighted" is a more common phrase in English and more specific to the visual representation in browsers
    The more general "marked" content could mean many different kinds of markings with varied semantics.
    With the introduction of "role-description", less common usages of mark can be achieved.

commit 50e9773a81a74e35d600a346015e23cf6b7e6d9f
Merge: c6ecffdd6 540ce7e90
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 8 00:02:03 2021 +0000

    Update translations.
    
    From translation svn revision: 64624

commit 540ce7e9065a10fe1711147e8049cc6515c3d2a0
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 8 00:02:01 2021 +0000

    L10n updates for: zh_CN
    From translation svn revision: 64624
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen_0528@outlook.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    1872265132@qq.com
    
    Stats:
    1       1       source/locale/zh_CN/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit b8572af8fd864e4fcf59f685e46ba59acff857b1
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 8 00:01:58 2021 +0000

    L10n updates for: vi
    From translation svn revision: 64624
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>
    Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    10      10      user_docs/vi/changes.t2t
    1       1       user_docs/vi/userGuide.t2t
     2 files changed, 11 insertions(+), 11 deletions(-)

commit 7bd9e8b1e184c222f8d3bb39681feca5e87db473
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Oct 7 15:02:31 2021 +1000

    Add system tests for aria-roledescription (#12914)
    
    Add system tests for aria-roledescription including:
    • gain focus (browse and focus modes)
    • inline element in browse mode (reading by line and word)
    • Block element in browse mode (reading by line)
    • inline element in a content editable (reading by line and word)
    • Block element in a content editable (reading by line)

commit 17cbbdba9f3d06b4268725a28898b8fe8aedda4e
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Thu Oct 7 12:38:29 2021 +0800

    Update nvdaHelper readme (PR #12889)
    
    - Updates the instructions for creating a Visual Studio project for the nvdaHelper C++ code.
    - Copy the file when building devDocs
    - Link to the copied file from the developer guide.
    
    Ideally, the md file would be converted to HTML, doing this with sphinx looks like a bigger task and there are many more considerations for how these standalone docs should be integrated with the API docs.

commit 93c1fbcf4bb47c0732cfa4c05777f25c4da7be8c
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Wed Oct 6 18:31:08 2021 +0800

    Add links for event IDs (PR #12910)
    
    Event ID listings for Windows events.
    Note about IA2 not developed by MS, hence missing events in Windows event listings.

commit 5b63e3bc76465b0acfc99e379ecc7fae1c80d855
Author: Cyrille Bougot <cyrille.bougot2@laposte.net>
Date:   Tue Oct 5 09:40:32 2021 +0200

    Use `WordDocument` of `Winword` appModule both with IAccessible and UIA. (#12904)
    
    The class appModules.winword.WinwordWordDocument is used only in Word if using IAccessible, whereas it should be used with both IAccessible and UIA. This leads to the following consequences when using UIA for Word:
    • Toggle change tracking script (ctrl+shift+E) is not vocalized in Word when NVDA uses UIA to access information; this script works only if NVDA uses IAccessible for Word.
    • The class appModules.winword.WinwordWordDocument is used in some gestures.ini files (fr, it, pt_PT) to localize scripts corresponding to shortcuts that operate only in Word, not in Outlook; e.g. ctrl+R that performs left paragraph indent in French Word instead of left paragraph alignment in French Outlook.
    
    Description of how this pull request fixes the issue:
    Use the class appModules.winword.WinwordWordDocument with both IAccessible and UIA.

commit 2bf1f71d5f208ef7154e9198dd10d2db56033769
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Oct 5 16:33:52 2021 +1000

    UIA text formatting: support paragraph indenting attributes (#12908)
    
    Fixes #12899
    
    Summary of the issue:
    When NVDA accessed Microsoft Word documents with the Word object model, it was able to report paragraph indenting.
    If the user configures NvDA to access MS Word via UIA, ro it is used by default in MS Word build 13901 or higher, paragraph indenting is no longer reported.
    
    Description of how this pull request fixes the issue:
    Report paragraph indenting in UIA text controls (including MS Word documents) by fetching and processing the appropriate UIA text attribute values.
    These include:
    indentationFirstLine, indentationLeading and indentationTrailing.
    These values are all given by the UIA provider in points (1/72 of an inch) thus NvDA converts these to either inches or centermetres first.
    this pr also adds a new useImperialMeasurements function to languageHandler which returns true if imperial measuremts (inches) should be used according to the user's current Regional preferences, otherwise metric (centermetres).

commit d8dc04c7e5eac2586fa1bf3caf0c7e4e5eb86afa
Author: Bill Dengler <codeofdusk@gmail.com>
Date:   Mon Oct 4 19:20:32 2021 -0400

    UI Automation in Windows Console: expose both API level name and number in developer info (#12900)
    
    It is not immediately obvious that, for instance, a FORMATTED console has a better implementation than an IMPROVED one without reading the code. Expose the API level numbers in dev info to make this more transparent.

commit d68b1d1a004e4f193d9722379da1a54e743e5d2e
Author: Sean Budd <sean@nvaccess.org>
Date:   Tue Oct 5 09:39:55 2021 +1100

    move NOREFS in build symbol store (#12903)

commit 46e3697b433b4aa711da07b8db561c4295fa6dbd
Author: Cyrille Bougot <cyrille.bougot2@laposte.net>
Date:   Mon Oct 4 02:19:58 2021 +0200

    In the console history, when pressing up/down arrow and history start or end is reached, do not move the caret anymore (#12897)
    
    Fixes #12632
    
    Summary of the issue:
    In Python console, up/down arrow behaves as follow:
    
    If command history start or end is not reached, move to previous or next item in the command history.
    If command history start or end is reached, move the caret one character left or right; this is the default behaviour of some single line edit fields (cf. Up/down arrow should read character by character in single line edit fields #12780)
    The point 2. is an unintuitive corner case. Indeed, up/down arrow cannot be used generally in this field to navigate character by character, this is only partially possible in some rare cases, i.e. at the edge of command history buffer.
    
    Description of how this pull request fixes the issue:
    Navigation character by character with up/down arrows should be totally disabled in the console input field.
    The caret should not move at all if the line has not been updated.
    
    Testing strategy:
    Checked that up/down arrows still work in the console to re-read the command history
    When reaching the first command in history, pressed up arrow again and checked that the caret does not move left anymore (STR of Python console - The caret moves to left when pressing upArrow #12632).
    
    STR:
    Type various commands in the console
    Type a last command without pressing Enter
    Turn back some characters left with left arrow
    Press down arrow once and checked that the caret has not moved.
    
    Known issues with pull request:
    In the case the Narrator is used along with NVDA (which is a very unlikely use case):
    When pressing up arrow, the last character of the first command in history will be read instead of the whole line.
    
    An alternative solution that would be compatible with Narrator could be to use a multi-line edit field even if it is only filled with one line of text. But the implementation would be more complex; I do not think it is worth implementing it to support this very unlikely use case.

commit df92ef663f3b5c36fc778a8a2e4d4dd9cecceb0f
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Oct 1 10:52:11 2021 +1000

    MS Word with UIA: support moving by sentence with legacy object model when available (#12874)
    
    Fixes #9254
    
    Summary of the issue:
    In the past, NVDA has had the functionality to move by sentence in MS word (alt+downArrow and alt+upArrow). This functionality used the MS Word object model.
    With the switch to using UI automation to access MS Word, move by sentence was lost, as MS Word's UI automation implementation provides no concept of a sentence unit.
    
    Description of how this pull request fixes the issue:
    This pr provides an implementation of moving by sentence for MS Word with UIA by falling back to the MS word object model for this specific feature, if the object model is available.
    This therefore will work in MS Word and Outlook, but not in Windows Mail.

commit c6ecffdd6dc506f72825eb9d12c819af81af51bb
Merge: cd58b4fed a2ad84a59
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 1 00:01:58 2021 +0000

    Update translations.
    
    From translation svn revision: 64595

commit a2ad84a594cc8f53b7f551884fcb0d3705191c02
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 1 00:01:55 2021 +0000

    L10n updates for: zh_CN
    From translation svn revision: 64595
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen_0528@outlook.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    1872265132@qq.com
    
    Stats:
    10      10      source/locale/zh_CN/LC_MESSAGES/nvda.po
     1 file changed, 10 insertions(+), 10 deletions(-)

commit 9e437e836ce2f45c4a4d3bc2f38a2449d397ba91
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 1 00:01:36 2021 +0000

    L10n updates for: pl
    From translation svn revision: 64595
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Hubert Meyer <hubmeyer1989@gmail.com>
    Arkadiusz Swietnicki <nuno69a@gmail.com>
    
    Stats:
    4       0       source/locale/pl/symbols.dic
     1 file changed, 4 insertions(+)

commit 475455c0538c052b432bef39e43e5d43f9ef7e7c
Author: Sean Budd <sean@nvaccess.org>
Date:   Fri Oct 1 09:30:44 2021 +1000

    Update technical design overview (#12887)
    
    - a fix of some whitespace and formatting
    - remove some startup/shutdown documentation and instead reference startupShutdown .mdt
    - adds some tools and references for working with accessibility APIs\

commit ea5effee247d2394b9c812dc609068360f0dac5f
Author: Sean Budd <sean@nvaccess.org>
Date:   Tue Sep 28 09:05:44 2021 +1000

    remove duplicate line in changes (#12880)

commit 7865227424193f44ccaa1b1adf3daf9803691496
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Sun Sep 26 17:53:52 2021 -0700

    UIA: use layout invalidated event to announce suggestion count across modern apps on Windows 10 and later (#12791)
    
    Fixes #12790
    Fixes #7330
    Fixes #12758
    
    Summary of the issue:
    Some suggestions list views do not select top suggestion automatically. Instead, UIA layout invalidated event is fired whenever list count and/or content changes.
    
    Description of how this pull request fixes the issue:
    Introduce a dedicated UIA overlay class for suggestions list views firing layout invalidated event, with the event handler told to announce suggestion count across modern apps on Windows 10 and later. Although layout invalidated event is supported on Windows 8.x, limit this to Windows 10 and later at first. At the same time, perform bonus lint to (finally) fix Flake8 issues in UIA events map and add annotations (at last).
    
    Manual testing:
    
    Prerequisites: Windows App Essentials add-on must be disabled.
    
    1. Open Start menu.
    2. Type something. NVDA will announce the top suggestion.
    3. Open Settings app (Windows+I).
    4. Type something. NVDA will only play suggestion sound without this pull request, it will also announce suggestion count as user types more terms with the PR applied.
    
    Commits:
    
    * UIA handler: add layout invalidated event constant. Re #12790.
    
    Recent Windows releases include better support for auto-suggest accessibility. So far there are two lists: one that raises item selected event on the first suggestion (Windows 10/11 Start menu, for example), and ones that uses layout invalidated event instead of selecting the first suggestion (Settings suggestion, for example). The first type was implemented years ago, but the second type isn't. Therefore introduce support for these kinds of suggestions lists, starting with adding UIA layout invalidated event constant (20008) to UIA events map.
    
    * NVDAObjects.UIA: introduce SuggestionsList class to handle UIA layout invalidated event. Re #12790.
    
    Introduce an overlay class for suggestions list view which does not select the top suggestion but instead fires layout invalidated event. Examples include modern apps such as Windows 10/11 Settings app, Microsoft Store, and Maps app.
    Inside the new suggestions list class, layout invalidated event handler will simly announce child (suggestions) count whenever this event is fired.
    
    * NVDAObjects.UIA: detect suggestions list views with layout invalidated event. Re #12790.
    
    Suggestions list views with layout invalidated event have UI Automation Id of 'SuggestionsList', not to be confused with Edge-based suggestions list (lowercase s). The overlay class chooser code layout resembles search field -> suggestions list -> suggestion list item to help explain the overall flow of how auto-suggest typically works.
    
    * NVDAObjects.UIA: clarify the difference between existing suggestion list item and new suggestions list. Re #12790.
    
    Clarify that suggestion list item class handles top suggestion being selected automatically.
    
    * UIA handler and UIA objects: lint bonus.
    
    * UIA events: the map was (finally) tagged with annotations, a space was (finally) added between event Id's and names, finally resolve Flake8 F405 on event Id's.
    * NVDAObjects.UIA.SuggestionListItem: spacing.
    
    * update changes
    
    Co-authored-by: buddsean <sean@nvaccess.org>

commit 5b821c60ac0a636c9b0d78a6499fe95b9b1913d7
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Sep 24 13:06:22 2021 +1000

    Revert "Remove ignoreEditableText param" (#12766)
    
    This reverts commit 6262596.
    In issue #12746 it was reported that moving by paragraph in Google Docs in Google Chrome would sometimes result in NVDA saying "blank" for certain paragraphs.
    Similarly although not noted in an issue yet, Some lines in Thunderbird message composition windows would also say blank.
    These regressions were found to be caused by the merging of pr #12500
    Further investigation found that the specific commit in the pr that caused this was 6262596
    I'm not entirely sure on why this commit causes the regression, however my understanding is that this commit was only to improve readability / understanding of logic along the way and that the actual feature introduced by the pr had no dependency on this commit as such.
    Thus, this pr reverts that single commit, and therefore fixes #12746.
    Perhaps the logic of this commit can be better investigated at a later stage, but for now it is better to return to what we know works.

commit cd58b4fed01bd3ce485d110d9a3cfe4f5e47c2f7
Merge: 7f78fcb39 85995f557
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 24 00:01:54 2021 +0000

    Update translations.
    
    From translation svn revision: 64565

commit 85995f5572b1e85e9b5f3ff28c14dcd1216fef85
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 24 00:01:49 2021 +0000

    L10n updates for: uk
    From translation svn revision: 64565
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    2       2       source/locale/uk/symbols.dic
    1       1       user_docs/uk/changes.t2t
     2 files changed, 3 insertions(+), 3 deletions(-)

commit 4abbed4171ee846be71dd1fed984cbbdb8203eb8
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 24 00:01:14 2021 +0000

    L10n updates for: ga
    From translation svn revision: 64565
    
    Authors:
    Cearbhall OMeadhra <cearbhall.omeadhra@blbc.ie>
    Ronan McGuirk <ronan.p.mcguirk@gmail.com>
    Kevin Scannell <kscanne@gmail.com>
    
    Stats:
    61      119     source/locale/ga/LC_MESSAGES/nvda.po
     1 file changed, 61 insertions(+), 119 deletions(-)

commit 22dd0118cdbab20dd404f1bfbd6ee100cc3c0ddf
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Sep 23 11:43:22 2021 +1000

    Scrolling braille in MS Word with a Chinese input method enabled no longer incorrectly jumps back (#12868)
    
    Fixes #12855
    
    Summary of the issue:
    When in Microsoft Word, and using a Chinese input method such as Taiwan - Microsoft Quick, and NVDA is accessing Microsoft Word via UI Automation, trying to scroll forward through the document with a braille display causes the braille display to keep jumping back to the original caret position.
    This is due to the fact that while the Chinese input method is enabled, legacy MSAA caret events are fired on the Word document window. NVDA is not ignoring these, even though NVDA is configured to access Microsoft word with UIA.
    
    Description of how this pull request fixes the issue:
    In IAccessibleHandler.processGenericWinEvent: if an MSAA caret event is identified, before we route this onto the focused object, we first check if the focused object is in deed IAccessible (MSAA), and if it is not (E.g. it is UIA) then we drop the event completely.
    This pr also improves MSAA debug logging a little by including the winEvent info in the message about the caret being routed to the focus, and also routes generic events for the focus to the existing focus if their event object is not already the existing focus. This really only stops some extra redundant logging.

commit a4c9eee6468763505badf11cc78b0ec23682723f
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Thu Sep 23 02:42:35 2021 +0200

    Ensure that NVDA no longer checks validity of input for non contracted braille tables when in text controls (#12850)
    
    Fixes #12667
    
    Summary of the issue:
    When entering text from a braille display NVDA reports that it is unsupported even though entered combination is valid. This check has been introduced in #7843 to prevent a situation in which someone uses contracted table outside text content and enters a combination which cannot be converted to a single character (a good example is entering dots 356 using English UK Grade 2 which is a contraction for "was"). The check however was too broad and didn't take into account that for literary / computer braille tables single combination of dots can either always be converted to a single character, or if not it does not result in multiple characters i.e. number sign.
    
    Description of how this pull request fixes the issue:
    Now the check applies only when the table in use is contracted.

commit 5f9750de25f48d5bb896fdfa310726b4ac93d67d
Author: gregjozk <jozko.gregorc@gmail.com>
Date:   Tue Sep 21 08:07:05 2021 +0200

    Remove a duplicate entry for "always use UIA in Word" (#12866)
    
    In changes.t2t are two entries about "always use UIA in Word". This deletes the first instance.

commit 4a2daa591be6c2ddc46e10900b69dd6f2257947e
Author: Sean Budd <sean@nvaccess.org>
Date:   Tue Sep 21 09:52:58 2021 +1000

    Fix 12757 changelog message (#12863)
    
    Fixes the changelog message from #12862, for #12757
    
    Summary of the issue:
    Turns out that #12862 was also a Windows 10 issue, and #12757 fixed the issue in both cases.
    
    Raised in this comment: #12757 (comment)
    
    Description of how this pull request fixes the issue:
    Changes the changelog message to be more general and consistent with other messages.

commit 6b4cf45fa6709d9de7d847d810e7cf04b295cb53
Author: Sean Budd <sean@nvaccess.org>
Date:   Mon Sep 20 15:18:06 2021 +1000

    Ensure the Windows 11 system tray calendar reports the day of the week in full (#12862)
    
    Fixes #12757
    
    Summary of the issue:
    
    While navigating the calendar, NVDA reads days as follows:
    `26 data item ‎August‎ ‎2021 row 4 Th column 5` as opposed to `26 data item ‎August‎ ‎2021 row 4 Thursday column 5`.
    
    The abbreviated days of the week, which make up the column headers of the table and aren't focusable, are read.
    Instead, the UIA name of the column header should be read.
    
    Description of how this pull request fixes the issue:
    
    Adds: `UIATableItemPattern`, a small independent change that helped with investigating
    Abstracts shared code from `_get_rowHeaderText` and `_get_columnHeaderText` into `_getTextFromHeaderElement`.
    Overload `_getTextFromHeaderElement` in `CalendarViewDayItem` to read the correct label.
    
    Manually tested with Win11 using reproduction steps from #12757
    
    Further work could be done to parse the date information and localize it, instead of reporting it as a table cell.

commit d80906eaaaa06790c64424d275d205e89a9a17b8
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Sep 20 14:40:40 2021 +1000

    stop HID Braille routing keys from being back to front (#12860)
    
    When testing with multiple HID braille displays, it has been found that NVDA's handling of routing keys seems to be reversed, and also offset by 1.
    the offset by 1 issue is just an incorrect assumption by me -- NVDA's routing key routing indexes start at 0, not 1.
    However, the reverse order of the keys is due to the fact that Windows apparently loads its HID input button caps arrays in reverse order. This fact is mentioned in the Microsoft Docs article at https://docs.microsoft.com/en-us/windows-hardware/drivers/hid/button-capability-arrays
    
    Description of how this pull request fixes the issue:
    In the HID braille driver:
    • Stop adding 1 to the routing index
    • Walk through the input button caps array in reverse order. This then means that the calculated relative index of a button in its collection will now be relative from the start of the collection, rather than the end which is what we want.

commit 259b0408e34e60a5554087e3713e3cbf65653b3a
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Mon Sep 20 11:27:00 2021 +0800

    Fix error when using tones.beep (PR #12804)
    
    Fixes #12620
    
    # Summary of the issue:
    Exceptions could escape nvWave when an audio device is being changed / removed.
    To stress test this, call tones.beep repeatedly and connect / disconnect audio devices.
    
    When nvWave is in error, logHandler would still try to beep. This caused additional errors in the log.
    The additional errors make debugging harder.
    
    # Description of how this pull request fixes the issue:
    The exception escapes from 'sync', wrap this in a try / except
    stop also ignored failures, and could call to _idleUnbuffered, which calls sync. Sync asserts that _waveout is not None.
    The failures are no longer ignored.
    Prevent logHandler calling beep when nvWave is in an error state.

commit 27d06f4d00582ceb419a0221c9b8837689e7d5a2
Author: André-Abush Clause <dev@andreabc.net>
Date:   Sun Sep 19 22:40:03 2021 +0200

    Update liblouis to 3.19.0 (#12810)
    
    Updates liblouis to 3.19.0 which adds 3 new braille tables, fixes several bugs and cleans the codebase.

commit 0ab3234253589a6c1c9f756e069721a34dd1f454
Author: Bill Dengler <codeofdusk@gmail.com>
Date:   Fri Sep 17 20:44:13 2021 -0400

    Fix UnboundLocalError in _isUIAWindowHelper (#12859)
    
    In #12854 the CanUseOlderInProcessApproach check was moved to run only when checking Office windows. However, it is also used to check whether to use UIA in Chromium.
    
    Description of how this pull request fixes the issue:
    Move this check before all usages, restoring the ability to use UIA in Chromium.

commit e36efe4a6a7796ca459cbdd576b2de23c7fceffa
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Sat Sep 18 00:25:07 2021 +0200

    Ensure office app check is bound to window class (#12854)

commit ec891bd7da7bfdde17d14d93baabe8ad54b365ee
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Sep 17 22:56:45 2021 +1000

    Treat tables with 1 col or 1 row as layout tables in Outlook message viewer (#12857)
    
    Microsoft Outlook uses a Microsoft word document control to present emails when both reading and composing. NVDA is in the process of switching to using UI Automation to access Microsoft Word document controls due to major performance advantages, and also due to Microsoft no longer maintaining the Office object model.
    However, in the UI automation implementation exposed by MS Word document controls, it is impossible to identify the difference between a data table and a layout table. Thus, NVDa reports all layout tables when reading, which is extremely annoying, as the majority of HTML emails use many nested layout tables.
    
    Description of how this pull request fixes the issue:
    Tables are now classed as layout tables in MS Word document controls if the app is Outlook, and the table is read-only (Outlook is in message reading view) and the table only has either 1 column or 1 row.

commit 44399c18b4348f8b3191a4013c8f67318168e771
Author: Cyrille Bougot <cyrille.bougot2@laposte.net>
Date:   Fri Sep 17 05:18:32 2021 +0200

    Updates to GitHub Issue and PR templates. (#12802)
    
    Issues:
    
    Rarely, some people answer to the add-on's question thinking to the browser's add-ons rather than NVDA's add-ons (e.g. input[type=number] not announcing value changes when incrementing value with spinbutton #12793 (comment))
    Localization aspects may be ignored by some people, especially from English speaking countries
    Too much checkboxes to check when opening a PR.
    
    Co-authored-by: Sean Budd <seanbudd123@gmail.com>
    Co-authored-by: Reef Turner <feerrenrut@users.noreply.github.com>

commit 7935d65cbd9bbddc4b065280c528aaf4cdbc4aab
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Fri Sep 17 05:16:05 2021 +0200

    Fix-up of 12801 - use enums in controlTypes replacing old constants (#12844)

commit 7f78fcb3918f340c74a6e0aac372b6138fac5b6a
Merge: e87ed2604 c8cf8f2f4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 17 00:01:57 2021 +0000

    Update translations.
    
    From translation svn revision: 64513

commit c8cf8f2f42503c5708088fc2cef6a51b42220fee
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 17 00:01:57 2021 +0000

    L10n updates for: zh_TW
    From translation svn revision: 64513
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    haach111000@gmail.com
    
    Stats:
    4570    4406    source/locale/zh_TW/LC_MESSAGES/nvda.po
    80      1       user_docs/zh_TW/changes.t2t
    80      69      user_docs/zh_TW/userGuide.t2t
     3 files changed, 4730 insertions(+), 4476 deletions(-)

commit 59f46efa3319f35c95f6417314cfedf381b4142e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 17 00:01:55 2021 +0000

    L10n updates for: zh_CN
    From translation svn revision: 64513
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen_0528@outlook.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    1872265132@qq.com
    
    Stats:
    43      43      source/locale/zh_CN/LC_MESSAGES/nvda.po
     1 file changed, 43 insertions(+), 43 deletions(-)

commit 419276764be4fe095cafd830cc666031178e9792
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 17 00:01:16 2021 +0000

    L10n updates for: fr
    From translation svn revision: 64513
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqué-Cazenave <corentin@progaccess.net>
    Sylvie Duchateau <sylvieduchateau@gmail.com>
    Sof <hellosof@gmail.com>
    
    Stats:
    4       4       source/locale/fr/LC_MESSAGES/nvda.po
     1 file changed, 4 insertions(+), 4 deletions(-)

commit 1e7878f2831bc4cdeceda4c65de0c8c63edad53f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 17 00:01:07 2021 +0000

    L10n updates for: de
    From translation svn revision: 64513
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    2       2       user_docs/de/userGuide.t2t
     1 file changed, 2 insertions(+), 2 deletions(-)

commit 216b3a2d3b862d9d36faf54962aa69483be18b81
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 17 00:01:04 2021 +0000

    L10n updates for: da
    From translation svn revision: 64513
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    2       2       source/locale/da/LC_MESSAGES/nvda.po
     1 file changed, 2 insertions(+), 2 deletions(-)

commit 1de814cbc853d830751d4e81951752fa12026576
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Sep 17 08:03:23 2021 +1000

    Revert "Suppress reporting of tables when reading emails in Outlook using UIA (#12820)" (#12856)
    
    This reverts commit 0d2b323125dde4861e69d302c5a63b0a63ae97b0.
    In issue #12853 people seem to prefer the 1 row or 1 column approach.

commit e38b5b4daf5ae3bb3ac6457266c9e1e6954d1b22
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Sep 16 18:44:14 2021 +1000

    Use UIA to access MS Word documents by default for MS Office build 16.0.13901 and above (#12770)
    
    Microsoft Word 2016 exposes a rich UI Automation implementation. For some time now, users have been able to optionally turn this on with an advanced setting. NVDA's support for MS Word via UIA has major performance advantages over the older object model support, so NVDA should use the UIA support by default where available. However, as the UIA implementation improved throughout Office 2016's lifetime, we should only enable our support for recent builds of Office 2016, specifically for build 13901 and higher.
    
    Description of how this pull request fixes the issue:
    For a _WwG window that is found to have a native UI Automation implementation, the only situation where this UIA implementation will be ignored and therefore NVDA will fall back to the Office object model is: If it is an MS Office app, the build is < 13901, NVDA is able to inject in-process, and the user has not turned on Always use UI Automation to access Microsoft Word document controls.
    The user guide has been updated to note that UIA will be used by default for MS Word version 13901 and higher.

commit 2cc3aa4d3f3cda79b62fbd227c3702edb428a9c5
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Sep 16 17:42:26 2021 +1000

    MS Word with UIA: ensure document is appropriately scrolled when programmatically setting the caret (#12851)
    
    In Microsoft Word with UIA enabled, the caret may fail to move to the right position when updated programmatically, if the new position is currently off-screen.
    Specifically:
    • When performing say all and reading past the current page, the document does not scroll and the caret ends up at a random position on the current page.
    • In Browse mode, performing a say all, navigating with quick nav, or just moving the arrow keys such that the browse mode cursor moves off the current page, the real (focus mode) caret ends up at a random position on the current page.
    
    Description of how this pull request fixes the issue:
    WordDocumentTextInfo's updateCaret and updateSelection methods now ensure that the document is currently scrolled such that the text range is visible on screen.

commit 2ae398081dc4d4142198f0293ee80e481d16d4a2
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Tue Sep 14 07:50:38 2021 +0200

    Ensure that developer guide does not mention deprecated and removed code. (#12839)
    
    Examples in the developer guide were still using old style of controlTypes constants. In addition the fact that sayAllHandler has been moved into speech has not been reflected.
    
    Developer guide has been updated.

commit 524021bc7f04a69988167b9b48ea7f94e57cb4b0
Merge: efb614193 e87ed2604
Author: Sean Budd <sean@nvaccess.org>
Date:   Tue Sep 14 12:33:00 2021 +1000

    Merge pull request #12842 from nvaccess/beta
    
    Update translations from beta

commit efb614193ee9bf041570b363f654ace7cc6d834c
Author: Michael Weghorn <m.weghorn@posteo.de>
Date:   Tue Sep 14 02:30:54 2021 +0200

    Descend into children for dialog text for option pane (Fixes #11687) (#12801)
    
    Text in LibreOffice message dialogs is not announced by NVDA.
    Description of how this pull request fixes the issue:
    This commit makes sure that the children of objects of role 'controlTypes.Role.OPTIONPANE' are taken into account when determining the text to announce for a dialog, as is done for objects of role 'controlTypes.Role.PANE'.
    For LibreOffice (message) dialogs, the dialog text are objects of role 'controlTypes.Role.STATICTEXT' that are children of an object of type 'controlTypes.Role.OPTIONPANE'.
    Those were previously not considered when determining the dialog text to announce. This change ensures that they are now and that the actual dialog text is thus announced by NVDA, just as is done (and has been the case) for objects of role 'controlTypes.Role.PANE'.

commit 3f956a8566ff94984f4f70cff7ece061eab0a1b7
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Tue Sep 14 00:57:03 2021 +0200

    Excel with UIA: Silence redundant selected announcement for focused cells (#12840)
    
    With UIA enabled for MS Excel, NVDA redundantly announces selected for every selected cell in Excel when it receives focus
    
    Description of how this pull request fixes the issue:
    In at least some versions of Excel, the selection pattern reports 0 selected items, even though the focused UIA element reports as selected. NVDA only silences the positive SELECTED state when one item is selected. Therefore, by discarding both the SELECTED and SELECTABLE states, we eliminate the redundant selection announcement.

commit f93d911ce38845e47f1befecd9e28bb14d6a78b7
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Mon Sep 13 11:26:17 2021 +0200

    Improve variable naming and remove exception handling when setting language in core.main (#12837)
    
    Follow up from #12753
    
    Issues:
    - wx.Locale object was called locale effectively shadowing built-in Python module.
    While normally there is no reason to have locale imported in that scope if it is necessary for debugging the name is rather unfortunate.
    - exception handling for importing languageHandler and setting language was too broad hiding eventual issues.
    
    Fix:
    - locale was renamed to wxLocaleObj.
    - We're no longer catching any exceptions when importing languageHandler and setting language - if any of these fails NVDA is non functional and the exception should propagate.

commit 48f502257182356549f22a4095016b37dacdaf9f
Author: Sean Budd <sean@nvaccess.org>
Date:   Mon Sep 13 15:11:57 2021 +1000

    Remove usages of deprecated characterProcessing.SYMLVL_ constants and controlTypes helper functions (#12836)
    
    Closes #12549
    
    Summary of the issue:
    characterProcessing.SYMLVL_* constants should be replaced using their equivalent SymbolLevel.* before 2022.1.
    Unit testing for controlTypes helper functions needed updating for soon to be removed processNegativeStates and processPositiveStates.
    
    Update the usages of these constants and helper functions
    
    Testing strategy:
    Search the repo for 2022 usages and noted deprecations in changes for developers.
    Ensure all code deprecated for removal in 2022.1 is not used in the codebase.

commit 9f671ba83fc5231c367c237c4ab06241e3aaa5a6
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Mon Sep 13 04:08:38 2021 +0200

    Ensure that unit tests can be executed under version of Windows different than the one used for building NVDA (#12835)
    
    Fixes regression from #12617. Discovered when working on #12753 as that PR required executing unit tests under various versions of Windows
    
    Summary of the issue:
    It is sometimes useful to execute unit tests under various versions of Windows where it is impractical, or even impossible to have full build environment for NVDA. With current master some tests are failing because when importing COM interfaces comtypes complains about them being created on different version of Windows. Before PR #12617 this worked by chance since our monkey patches for compypes were applied when importing core and it just so happened that core was imported before any COM interface was.
    
    Description of how this pull request fixes the issue:
    Since we have monkey patch which stops comtypes from complaining about typelib being different than COM interface it has been applied to comtypes before tests starts. To avoid copying code of this monkey patch it was necessary to refactor our monkey patches to make each of them into a separate function - that allows us to apply them selectively rather than just all of them during import.
    
    Testing strategy:
    Ensured that unit tests pass under a never version of Windows than the one under which virtual environment for NVDA has been created
    Ensured that comtypes monkey patches are properly applied for NVDA in particular that core.CallCancelled is raised when appropriate.

commit da36a66e13a7e7d343be755fd7b05e0a275c1f08
Author: Sean Budd <sean@nvaccess.org>
Date:   Mon Sep 13 10:20:18 2021 +1000

    remove usages of controlTypes.stateLabels and negativeStateLabels (#12821)
    
    Part of #12549
    
    Summary of the issue:
    controlTypes.stateLabels has been deprecated, usages such as controlTypes.stateLabels[controlTypes.State.*] should be replaced to their equivalent controlTypes.State.*.displayString
    
    Description of how this pull request fixes the issue:
    Use displayString and negativeDisplayString instead of stateLabels and negativeStateLabels.

commit f8f62b04e0d15522f9be3beb9e91cce49b540a16
Author: Bill Dengler <codeofdusk@gmail.com>
Date:   Thu Sep 9 22:03:24 2021 -0400

    Restart nvda_dmp on exception (#12827)
    
    In some situations, nvda_dmp stops functioning. NVDA falls back to Difflib in these cases, so the console continues to function, but frequent error sounds are played and Difflib is forceably used until NVDA is restarted.
    
    Description of how this pull request fixes the issue:
    When nvda_dmp fails to diff, restart it.

commit e87ed26049a592b742b32a3d6b6950d0bc06b81e
Merge: e29a4eefd 6c0cb8638
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 10 00:01:48 2021 +0000

    Update translations.
    
    From translation svn revision: 64439

commit 6c0cb8638bcd5c3504b8bdbe007ac14f7682534a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 10 00:01:29 2021 +0000

    L10n updates for: pl
    From translation svn revision: 64439
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Hubert Meyer <hubmeyer1989@gmail.com>
    Arkadiusz Swietnicki <nuno69a@gmail.com>
    
    Stats:
    1       1       source/locale/pl/symbols.dic
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 3372a669ea1a2353f7bdc76246a41cfa4e2c3767
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 10 00:01:16 2021 +0000

    L10n updates for: it
    From translation svn revision: 64439
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    3       3       source/locale/it/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 3 deletions(-)

commit 4a8593d8e2332cd66f330d5996d495acbf72c4cf
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Sep 10 07:56:39 2021 +1000

    Revert "Ensure documents always scroll to exact browse mode position (#12803)" (#12828)
    
    This reverts commit f5e551471a6682095c9b5943b709adf3595df68d.

commit f5e551471a6682095c9b5943b709adf3595df68d
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Sep 9 16:53:03 2021 +1000

    Ensure documents always scroll to exact browse mode position (#12803)
    
    When reading / navigating with browse mode in Microsoft Word via UI Automation, the document does not always scroll so that the current browse mode position is visible on screen, nor does the focus mode caret position stay in sync with the browse mode caret, especially when moving across pages in browse mode.
    Browse mode currently only knows how to scroll to objects in the document, not specific text range positions. Thus, it is only able to scroll to lists, tables and graphics, and not any arbitrary text.
    Also, setting the caret in Microsoft Word to a range that is on a page that is currently off screen seems to fail and or set the caret to a random point on the current page.
    
    Description of how this pull request fixes the issue:
    • Add a scrollIntoView method on textInfos.TextInfo which should croll the document containing that range such that the range is visible on screen. The base implementation has no implementation and does nothing.
    • Implement ScrollIntoView for IAccessible2 textInfos, UIA textInfos, Microsoft Word object model textInfos, and virtualBuffer textInfos. The VirtualBuffer textInfo implementation comes straight from the old BrowseMode logic which is to call ScrollIntoView on the deepest object at the position in the document.
    • Change BrowseModeDocument's _set_selection to call ScrollIntoView on the given textInfo, rather than the deepest object at the position of that textInfo. This is much more accurate and will ensure that any arbitrary textRange is scrolled to. It is specifically this change, plus the implementation of ScrollIntoView for UIA TextInfo that solves the Microsoft Word with Browse mode via UI Automation scrolling issue.

commit 0d2b323125dde4861e69d302c5a63b0a63ae97b0
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Sep 9 15:54:50 2021 +1000

    Suppress reporting of tables when reading emails in Outlook using UIA (#12820)
    
    Microsoft Outlook uses a Microsoft word document control to present emails when both reading and composing. NVDA is in the process of switching to using UI Automation to access Microsoft Word document controls due to major performance advantages, and also due to Microsoft no longer maintaining the Office object model.
    However, in the UI automation implementation exposed by MS Word document controls, it is impossible to identify the difference between a data table and a layout table. Thus, NVDa reports all layout tables when reading, which is extremely annoying, as the majority of HTML emails use many nested layout tables.
    
    Description of how this pull request fixes the issue:
    Tables are now classed as layout tables in MS Word document controls if the app is Outlook, and the table is read-only (Outlook is in message reading view).
    Being marked as a layout table means that by default the table will not be reported, however the user can still turn on the Include Layout Tables option in NVDA's browse mode settings temporarily if there is a genuine data table they need to have reported.

commit 8979880164cae91209436e57b414b063625e92e0
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Wed Sep 8 11:33:49 2021 +0200

    Fix various issues when removing add-ns and improve state management in `addonHandler` (#12792)
    
    Fixes #12629
    
    Summary of the issue:
    As described in #12629 it is impossible to update add-on when its folder is opened when initiating upgrade. During investigation I also encountered various other errors during add-on removal in particular:
    
    - If a disabled add-on is uninstalled and then reinstalled it stays disabled even though source code comments clearly states that it should not be happening.
    - If a folder of the add-on is renamed and its name no longer agrees with the name in the manifest it cannot be uninstalled via add-ons manager and there is absolutely no indication in the log as to what went wrong.
    
    Description of how this pull request fixes the issue:
    1. addon installation cannot be finished when add-on folder was opened during installation was caused by the fact that after attempting to install add-ons pending installation list of all add-ons pending install was emptied even if the given add-on failed to install. This has been fixed by removing add-ons from list of pending installs only if installation was successful - otherwise NVDA would retry on the next restart. In addition for configurations which can be potentially affected by this I've also made sure that for all folders which name ends with suffix denoting add-ons pending installation NVDA tries to install them regardless of their presence on the list.
    2. disabled addons are not removed from the list of disabled add-ons after uninstallation was caused by the fact that there were two lists of disabled add-ons. The first one in the state and the second one _disabledAddons was duplicating content of the list in the state Unfortunately the second list was populated after add-ons were removed yet names of the disabled plugins were removed from it rather than from the list in the state. This has been fixed by no longer using _disabledAddons at all - it ended up to create more confusion than it is worth and added no real benefits. I've also make sure that for old configs all add-ons which are no longer installed which are present in the list of disabled add-ons are removed.
    3. addons for which directory is named differently than the name in the manifest was solved by uninstalling add-ons after getting manifest data i.e. no longer rely on directory name matching the manifest name.
    In the process I've also made addons state a class which has methods for loading, saving etc. rather than just having a simple dict with various top level function operating on it. This is backwards compatible.
    
    Testing strategy:
    Made sure that state created by previous version of NVDA can be successfully loaded
    Made sure that state created by the code from this PR can be successfully read by previous versions of NVDA
    Renamed folder of an add-on so that name of the directory is different than the name in the manifest - made sure that it can be uninstalled from add-ons manager
    Uninstalled disabled add-on - made sure that it is removed from the list of disabled add-ons in the state
    Opened folder of an add-on in Windows Explorer, tried to update the plugin, closed the opened folder - made sure that after NVDA restart add-on has been successfully installed.

commit dd1593828d47b1031499ad3d829326424419dfd3
Author: Sean Budd <sean@nvaccess.org>
Date:   Wed Sep 8 19:09:45 2021 +1000

    remove instances of controlTypes.roleLabels (#12814)
    
    controlTypes.roleLabels has been deprecated, usages such as .controlTypes.roleLabels[controlTypes.Role.*] should be replaced to their equivalent controlTypes.Role.*.displayString
    Uses the Role enum to determine the role, and use the displayString instead of roleLabels.

commit 68a3e8abe8fb5be0dd339ba845928831eccd6530
Author: Sean Budd <sean@nvaccess.org>
Date:   Wed Sep 8 19:02:48 2021 +1000

    add note to consider api compatibility to PR template (#12815)
    
    Checking API backwards compatibility when reviewing PRs is an undocumented process. Contributors and reviewers aren't reminded of the process when contributing or reviewing.
    Adds a checklist item to remind contributors and reviewers to consider breaking API changes.

commit e29a4eefdf4193f095638792b2e1be6c582ae107
Merge: 48d58e0d5 2497bfadb
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Sep 7 00:25:03 2021 +0000

    Update translations.
    
    From translation svn revision: 64424

commit 2497bfadbf2e96123f19e8fe0d75cddcbc0e4876
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Sep 7 00:25:00 2021 +0000

    L10n updates for: zh_HK
    From translation svn revision: 64424
    
    Authors:
    Eric Yip <ericycy@gmail.com>
    
    Stats:
    4547    4382    source/locale/zh_HK/LC_MESSAGES/nvda.po
     1 file changed, 4547 insertions(+), 4382 deletions(-)

commit 9a05562acaabf6440c12f895a4f64e23263325d4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Sep 7 00:25:00 2021 +0000

    L10n updates for: zh_CN
    From translation svn revision: 64424
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen_0528@outlook.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    1872265132@qq.com
    
    Stats:
    13      15      source/locale/zh_CN/LC_MESSAGES/nvda.po
    2       2       source/locale/zh_CN/gestures.ini
    51      40      user_docs/zh_CN/changes.t2t
    33      19      user_docs/zh_CN/userGuide.t2t
     4 files changed, 99 insertions(+), 76 deletions(-)

commit 802c61bb83d359716ee92547052b16838be30eac
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Sep 7 00:24:58 2021 +0000

    L10n updates for: vi
    From translation svn revision: 64424
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>
    Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    1       1       user_docs/vi/changes.t2t
    7       7       user_docs/vi/userGuide.t2t
     2 files changed, 8 insertions(+), 8 deletions(-)

commit 27e6a4555f1c8d84143a109ae7d80418d302eea0
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Sep 7 00:24:56 2021 +0000

    L10n updates for: uk
    From translation svn revision: 64424
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    4576    4410    source/locale/uk/LC_MESSAGES/nvda.po
    1       1       source/locale/uk/symbols.dic
    3300    0       user_docs/uk/changes.t2t
    44      33      user_docs/uk/userGuide.t2t
     4 files changed, 7921 insertions(+), 4444 deletions(-)

commit 78cca4cb1d810ebbcdecbb23a200dfd81da1ab9a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Sep 7 00:24:51 2021 +0000

    L10n updates for: sr
    From translation svn revision: 64424
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    726     726     user_docs/sr/userGuide.t2t
     1 file changed, 726 insertions(+), 726 deletions(-)

commit d1e4f3f98d6fbd9ed1c414816f3bd11da91eeafa
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Sep 7 00:24:48 2021 +0000

    L10n updates for: ru
    From translation svn revision: 64424
    
    Authors:
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    
    Stats:
    24      43      source/locale/ru/LC_MESSAGES/nvda.po
     1 file changed, 24 insertions(+), 43 deletions(-)

commit b5d890e2d9b00b772e7e81517282ea55f823b8cb
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Sep 7 00:24:44 2021 +0000

    L10n updates for: pt_PT
    From translation svn revision: 64424
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    2       2       source/locale/pt_PT/LC_MESSAGES/nvda.po
    11      5       source/locale/pt_PT/gestures.ini
     2 files changed, 13 insertions(+), 7 deletions(-)

commit 190ad96aaf553ac4d46e67192eb9805037ed87dd
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Sep 7 00:24:42 2021 +0000

    L10n updates for: pt_BR
    From translation svn revision: 64424
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    6       4       source/locale/pt_BR/gestures.ini
    27      11      user_docs/pt_BR/changes.t2t
    21      23      user_docs/pt_BR/userGuide.t2t
     3 files changed, 54 insertions(+), 38 deletions(-)

commit 6c48fb19e16a4e2f082cc61292e215336096db3c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Sep 7 00:24:40 2021 +0000

    L10n updates for: pl
    From translation svn revision: 64424
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Hubert Meyer <hubmeyer1989@gmail.com>
    Arkadiusz Swietnicki <nuno69a@gmail.com>
    
    Stats:
    31      20      user_docs/pl/userGuide.t2t
     1 file changed, 31 insertions(+), 20 deletions(-)

commit 57c51aaf46b64ef3906617a139176a53dd6fbb4a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Sep 7 00:24:38 2021 +0000

    L10n updates for: nl
    From translation svn revision: 64424
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    4562    4394    source/locale/nl/LC_MESSAGES/nvda.po
    59      0       user_docs/nl/changes.t2t
     2 files changed, 4621 insertions(+), 4394 deletions(-)

commit c90f9c95d1ef0bb8a5772fb31c67c17bc3917dd0
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Sep 7 00:24:31 2021 +0000

    L10n updates for: ko
    From translation svn revision: 64424
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    12      13      user_docs/ko/changes.t2t
     1 file changed, 12 insertions(+), 13 deletions(-)

commit f5d509660bd1dc03eca3ca0e9e0df8d93c6efbfb
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Sep 7 00:24:27 2021 +0000

    L10n updates for: it
    From translation svn revision: 64424
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    2       2       source/locale/it/LC_MESSAGES/nvda.po
    68      0       user_docs/it/changes.t2t
    29      18      user_docs/it/userGuide.t2t
     3 files changed, 99 insertions(+), 20 deletions(-)

commit fa81a5e9c6407e2ec600d433ae5a9381c9f559f8
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Sep 7 00:24:21 2021 +0000

    L10n updates for: he
    From translation svn revision: 64424
    
    Authors:
    Shmuel Naaman <shmuel_naaman@yahoo.com>
    
    Stats:
    4838    4339    source/locale/he/LC_MESSAGES/nvda.po
     1 file changed, 4838 insertions(+), 4339 deletions(-)

commit 7ecbc1e42bade7b38e0c2cc4c4f9dc66add508fa
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Sep 7 00:24:15 2021 +0000

    L10n updates for: fa
    From translation svn revision: 64424
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    7       7       source/locale/fa/LC_MESSAGES/nvda.po
    55      0       user_docs/fa/changes.t2t
    29      18      user_docs/fa/userGuide.t2t
     3 files changed, 91 insertions(+), 25 deletions(-)

commit 7d9ad770c933a33e368a4be46b7fb052c55bc50f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Sep 7 00:24:10 2021 +0000

    L10n updates for: el
    From translation svn revision: 64424
    
    Authors:
    Irene Nakas <irnakas@gmail.com>
    Nikos Demetriou <nikosdemetriou@googlemail.com>
    access@e-rhetor.com
    
    Stats:
    4623    4455    source/locale/el/LC_MESSAGES/nvda.po
     1 file changed, 4623 insertions(+), 4455 deletions(-)

commit 63dcdfc9c0b7b5712e8565d9f2d342fea82d242a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Sep 7 00:24:00 2021 +0000

    L10n updates for: ar
    From translation svn revision: 64424
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Omar Alojaimi <amrahmad1995@gmail.com>
    
    Stats:
    407     751     source/locale/ar/LC_MESSAGES/nvda.po
     1 file changed, 407 insertions(+), 751 deletions(-)

commit 59e0826de37b0779a2cdec0163faa5b908fabaff
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Sep 7 00:23:58 2021 +0000

    L10n updates for: an
    From translation svn revision: 64424
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    67      0       user_docs/an/changes.t2t
    30      19      user_docs/an/userGuide.t2t
     2 files changed, 97 insertions(+), 19 deletions(-)

commit 8dcddfd1d436ec5fb14dfece7c0a24f2d480d9d6
Author: Cyrille Bougot <cyrille.bougot2@laposte.net>
Date:   Mon Sep 6 01:05:43 2021 +0200

    guiHelper module documentation - Example fixed (#12798)

commit 48d58e0d54e3cb1d89314ff11f2a9fddd12c8808
Merge: 9ebbd0d59 9177134eb
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 3 00:01:51 2021 +0000

    Update translations.
    
    From translation svn revision: 64230

commit 9177134eb6d3101f6b6f8a041c363e94d75d399d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 3 00:01:48 2021 +0000

    L10n updates for: zh_CN
    From translation svn revision: 64230
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen_0528@outlook.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    1872265132@qq.com
    
    Stats:
    4       0       source/locale/zh_CN/gestures.ini
    11      0       user_docs/zh_CN/changes.t2t
     2 files changed, 15 insertions(+)

commit 8fbf4b5df3bf07a59ef2b405af852dca8cdfd38a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 3 00:01:44 2021 +0000

    L10n updates for: tr
    From translation svn revision: 64230
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    4       4       source/locale/tr/gestures.ini
     1 file changed, 4 insertions(+), 4 deletions(-)

commit ddb733d64ac284fcf8be9abfab8c5e255e576415
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 3 00:01:42 2021 +0000

    L10n updates for: ta
    From translation svn revision: 64230
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    3       3       source/locale/ta/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 3 deletions(-)

commit 30765fb202fefd49796fd575f7f04be57e765d0a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 3 00:01:42 2021 +0000

    L10n updates for: sv
    From translation svn revision: 64230
    
    Authors:
    Daniel Johansson <daniel.johansson@coeptus.se>
    Niklas Johansson <sleeping.pillow@gmail.com>
    Karl-Otto Rosenqvist <Karl-otto@mawingu.se>
    
    Stats:
    4552    4384    source/locale/sv/LC_MESSAGES/nvda.po
     1 file changed, 4552 insertions(+), 4384 deletions(-)

commit 2798a7a9dd796139e65ad33a248096bd7d5992ca
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 3 00:01:41 2021 +0000

    L10n updates for: sr
    From translation svn revision: 64230
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    26      6       user_docs/sr/changes.t2t
    61      50      user_docs/sr/userGuide.t2t
     2 files changed, 87 insertions(+), 56 deletions(-)

commit 4a671607580e0ffb75b87051f9f145651b345c51
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 3 00:01:34 2021 +0000

    L10n updates for: pt_PT
    From translation svn revision: 64230
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    8       8       source/locale/pt_PT/LC_MESSAGES/nvda.po
    5       5       source/locale/pt_PT/gestures.ini
    7       5       source/locale/pt_PT/symbols.dic
    32      28      user_docs/pt_PT/changes.t2t
    30      19      user_docs/pt_PT/userGuide.t2t
     5 files changed, 82 insertions(+), 65 deletions(-)

commit 010652750ca50f3939a4de9a8518081654e95985
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 3 00:01:30 2021 +0000

    L10n updates for: pl
    From translation svn revision: 64230
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Hubert Meyer <hubmeyer1989@gmail.com>
    Arkadiusz Swietnicki <nuno69a@gmail.com>
    
    Stats:
    38      38      user_docs/pl/changes.t2t
     1 file changed, 38 insertions(+), 38 deletions(-)

commit df79d43e01490261755ca9c2c038cf9215dd6dec
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 3 00:01:26 2021 +0000

    L10n updates for: nb_NO
    From translation svn revision: 64230
    
    Authors:
    David Hole <balubathebrave@gmail.com>
    Bjornar Seppola <bjornar@seppola.net>
    
    Stats:
    4904    4459    source/locale/nb_NO/LC_MESSAGES/nvda.po
     1 file changed, 4904 insertions(+), 4459 deletions(-)

commit 92cc434dda16496a1afcf75c3daf4db5cc2a319d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 3 00:01:23 2021 +0000

    L10n updates for: mk
    From translation svn revision: 64230
    
    Authors:
    zvonimir stanecic <9a5dsz@gozaltech.org>
    Ertay Shashko <ertay@outlook.com>
    Aleksandar <glupav@gmail.com>
    Kiko Lazarev <kristijan.lazarev@gmail.com>
    
    Stats:
    1       1       source/locale/mk/characterDescriptions.dic
    358     252     source/locale/mk/symbols.dic
     2 files changed, 359 insertions(+), 253 deletions(-)

commit 95dff1087f6e2b7f47dd5ace650e979ae9b3b0bb
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 3 00:01:21 2021 +0000

    L10n updates for: ko
    From translation svn revision: 64230
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    3       26      source/locale/ko/LC_MESSAGES/nvda.po
    1       0       source/locale/ko/symbols.dic
    25      25      user_docs/ko/changes.t2t
     3 files changed, 29 insertions(+), 51 deletions(-)

commit cb07e25e07cdd3b94fc510dbf961d476d642562a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 3 00:01:17 2021 +0000

    L10n updates for: it
    From translation svn revision: 64230
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    4566    4398    source/locale/it/LC_MESSAGES/nvda.po
     1 file changed, 4566 insertions(+), 4398 deletions(-)

commit c7b245f748656139b6e80f529b997747531cdd1d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 3 00:01:14 2021 +0000

    L10n updates for: hu
    From translation svn revision: 64230
    
    Authors:
    Aron OcsvAri <oaron@nvda.hu>
    
    Stats:
    4982    4533    source/locale/hu/LC_MESSAGES/nvda.po
    115     0       user_docs/hu/changes.t2t
     2 files changed, 5097 insertions(+), 4533 deletions(-)

commit 87baefcef35a532010522f0b6ee3fbce5ef5919c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 3 00:01:12 2021 +0000

    L10n updates for: hr
    From translation svn revision: 64230
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Milo Ivir <mivir@milotype.de>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    3       2       user_docs/hr/userGuide.t2t
     1 file changed, 3 insertions(+), 2 deletions(-)

commit 5af8d42c96f3c23fc1a80e314884989b527a4a0c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 3 00:01:07 2021 +0000

    L10n updates for: fr
    From translation svn revision: 64230
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqué-Cazenave <corentin@progaccess.net>
    Sylvie Duchateau <sylvieduchateau@gmail.com>
    Sof <hellosof@gmail.com>
    
    Stats:
    10      6       source/locale/fr/gestures.ini
    27      27      source/locale/fr/symbols.dic
     2 files changed, 37 insertions(+), 33 deletions(-)

commit 08e6a21916cd947be9e453bb12e851bb011ac46d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 3 00:00:58 2021 +0000

    L10n updates for: de
    From translation svn revision: 64230
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    1       1       user_docs/de/userGuide.t2t
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 5ad42c02ba5f107bc408659aba910d8c23a4c9c6
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 3 00:00:55 2021 +0000

    L10n updates for: da
    From translation svn revision: 64230
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    170     64      source/locale/da/symbols.dic
    14      9       user_docs/da/changes.t2t
    4       3       user_docs/da/userGuide.t2t
     3 files changed, 188 insertions(+), 76 deletions(-)

commit 83a21e9b8827f0a9ddd0614bd05a91d86372c690
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 3 00:00:52 2021 +0000

    L10n updates for: bg
    From translation svn revision: 64230
    
    Authors:
    Zahari Yurukov <zahari.yurukov@gmail.com>
    Kostadin Kolev <k_kolev1985@mail.bg>
    
    Stats:
    4565    4397    source/locale/bg/LC_MESSAGES/nvda.po
    67      0       user_docs/bg/changes.t2t
    29      19      user_docs/bg/userGuide.t2t
     3 files changed, 4661 insertions(+), 4416 deletions(-)

commit 949ab538747c26e66c6c930be39165ec80f95a37
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 3 00:00:49 2021 +0000

    L10n updates for: ar
    From translation svn revision: 64230
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Omar Alojaimi <amrahmad1995@gmail.com>
    
    Stats:
    3       3       source/locale/ar/LC_MESSAGES/nvda.po
    1       1       user_docs/ar/changes.t2t
     2 files changed, 4 insertions(+), 4 deletions(-)

commit cf49f8c4b1b85a7ac70e2afdf00e4a15aae08900
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 3 00:00:48 2021 +0000

    L10n updates for: an
    From translation svn revision: 64230
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    4519    4351    source/locale/an/LC_MESSAGES/nvda.po
     1 file changed, 4519 insertions(+), 4351 deletions(-)

commit d624b5a6add826e936884f96267f0275808cdb79
Author: Sean Budd <sean@nvaccess.org>
Date:   Thu Sep 2 17:50:34 2021 +1000

    Set focus on existing dialog rather than raise an error if the dialog  when launching a dialog which is already open (#12800)
    
    Fixes #5383
    
    Summary of the issue:
    NVDA raises an error when launching a dialog, when the dialog is already open. This is unfriendly to the user, and should instead focus the open dialog.
    
    Example:
    Press NVDA+n to open the NVDA menu
    Launch the settings dialog by pressing p then s
    Change a setting, so that you can confirm a new instance isn't created
    Minimise the settings dialog window
    Press NVDA+n to open the NVDA menu
    Launch the settings dialog by pressing p then s
    An error message is raised
    Description of how this pull request fixes the issue:
    Set focus on existing dialog rather than raise an error if the dialog when launching a dialog which is already open.
    
    Testing strategy:
    Manual testing:
    Press NVDA+n to open the NVDA menu
    Launch the settings dialog by pressing p then s
    Change a setting, so that you can confirm a new instance isn't created
    Minimise the settings dialog window
    Press NVDA+n to open the NVDA menu
    Launch the settings dialog by pressing p then s
    Confirm the same settings dialog from before is now focused, a new instance was not created, and the error message dialog isn't opened.

commit c45f5f7628c5ad9a8665d983151683e36bb3ee0c
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Mon Aug 30 00:13:12 2021 +0200

    Revert "Fix backtranslation for uncontracted braille when typing a sequence of characters consisting of multiple patterns (#12742)" (#12789)
    
    This reverts commit a452470490b66e1124e9d631b6c297d0fb2e1f2d.
    
    There have been reports of #12742 causing regressions, notably #12764
    Fixes #12764
    Reverts #12742

commit 4ab4d355882ca1d0a47f8de5cd781ab76f05c52a
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Fri Aug 27 09:42:00 2021 +0200

    Split script for reading status bar into  two - one for reading and one for moving review cursor into its location (#12771)
    
    Link to issue number:
    Closes #8600
    Implements part of #7314
    
    Summary of the issue:
    Currently when reading status bar with NVDA+END review cursor is unconditionally moved to its location. This is inconsistent with all other commands for retrieving information and aside from that is extremely annoying for people working with review cursor now following the caret (I've been in a situation in which I've left review cursor somewhere either because I wanted to monitor a given object for changes, or because I was following some documentation with review cursor in a separate window and wanted to avoid unnecessary alt tabbing and lost my review position because I had to check something on a status bar countless times).
    
    Description of how this pull request fixes the issue:
    Review cursor is no longer moved to the location of the status bar. There is a separate script (no gesture assigned by default) which moves review cursor there. As described in #7314 I took this opportunity to split script for reading status bar into a separate ones for reading, spelling and copying.
    
    Testing strategy:
    With NVDA+end made sure that first press still reads, second spells and third copies. Made sure that after each of these operations review cursor has not been moved. Tested each of the newly introduced scripts made sure they work. Compiled user guide - ensured it renders as expected.

commit 9ebbd0d59457c90977b93c088ed96ddef2cd363d
Merge: 7dcbe10d8 57be3aaf2
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 27 00:01:58 2021 +0000

    Update translations.
    
    From translation svn revision: 64133

commit 57be3aaf2c8a7d473a91000899f2536ad6b51a5d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 27 00:01:56 2021 +0000

    L10n updates for: zh_CN
    From translation svn revision: 64133
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen_0528@outlook.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    1872265132@qq.com
    
    Stats:
    147     176     source/locale/zh_CN/LC_MESSAGES/nvda.po
    1       1       source/locale/zh_CN/symbols.dic
    69      0       user_docs/zh_CN/changes.t2t
     3 files changed, 217 insertions(+), 177 deletions(-)

commit bafdf163ae0504c232b5e87959c0e88777b9e333
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 27 00:01:51 2021 +0000

    L10n updates for: tr
    From translation svn revision: 64133
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    1       1       user_docs/tr/userGuide.t2t
     1 file changed, 1 insertion(+), 1 deletion(-)

commit d3dd9615a6b75eee82d8f0c3cc0e56fd788630fe
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 27 00:01:46 2021 +0000

    L10n updates for: sk
    From translation svn revision: 64133
    
    Authors:
    Ondrej Rosik <ondrej.rosik@gmail.com>
    Peter Vagner <peter.v@datagate.sk>
    Jan Kulik <jan.kulik.szsle@outlook.sk>
    
    Stats:
    4553    4389    source/locale/sk/LC_MESSAGES/nvda.po
    55      0       user_docs/sk/changes.t2t
    32      21      user_docs/sk/userGuide.t2t
     3 files changed, 4640 insertions(+), 4410 deletions(-)

commit 2501a8f6bc3a36991b5644cf8aeb4adf9659cf4e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 27 00:01:44 2021 +0000

    L10n updates for: ru
    From translation svn revision: 64133
    
    Authors:
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    
    Stats:
    4564    4395    source/locale/ru/LC_MESSAGES/nvda.po
     1 file changed, 4564 insertions(+), 4395 deletions(-)

commit c0194b4df039f01043b3cf0d5162ad6c235a334a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 27 00:01:38 2021 +0000

    L10n updates for: pt_BR
    From translation svn revision: 64133
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    33      40      source/locale/pt_BR/LC_MESSAGES/nvda.po
     1 file changed, 33 insertions(+), 40 deletions(-)

commit 80838dea79a99a4a21ab9b5b77a418825b6ea0d9
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 27 00:01:24 2021 +0000

    L10n updates for: ja
    From translation svn revision: 64133
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    67      0       user_docs/ja/changes.t2t
     1 file changed, 67 insertions(+)

commit 3674cecc5a1ec63b86e1f69f81d2320c99eeb8e6
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 27 00:01:17 2021 +0000

    L10n updates for: he
    From translation svn revision: 64133
    
    Authors:
    Shmuel Naaman <shmuel_naaman@yahoo.com>
    
    Stats:
    6       6       source/locale/he/symbols.dic
     1 file changed, 6 insertions(+), 6 deletions(-)

commit c2afef02b9613cfcefcef7347423012f614bc399
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 27 00:01:13 2021 +0000

    L10n updates for: fr
    From translation svn revision: 64133
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqué-Cazenave <corentin@progaccess.net>
    Sylvie Duchateau <sylvieduchateau@gmail.com>
    Sof <hellosof@gmail.com>
    
    Stats:
    1       1       user_docs/fr/userGuide.t2t
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 94cd012dbc37153fce9fddfc1b6cbee3765de6f8
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 27 00:00:55 2021 +0000

    L10n updates for: ar
    From translation svn revision: 64133
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Omar Alojaimi <amrahmad1995@gmail.com>
    
    Stats:
    4458    4291    source/locale/ar/LC_MESSAGES/nvda.po
    60      1       user_docs/ar/changes.t2t
     2 files changed, 4518 insertions(+), 4292 deletions(-)

commit 5c0a1d11a6acdda16c28f510987c586c2bb102c6
Author: Cyrille Bougot <cyrille.bougot2@laposte.net>
Date:   Thu Aug 26 12:58:34 2021 +0200

    Option to configure when the error sound may be played. (PR #12689)
    
    Fixes #12672
    
    # Summary of the issue:
    The error sound that is played in test versions may also be useful to testers on stable and RC releases.
    The motivation to have this feature included in NVDA's core rather than in an add-on is that it may be useful to test NVDA stable versions with add-ons disabled.
    
    # Description of how this pull request fixes the issue:
    Configurable via 'Play a sound for logged errors' in the advanced settings panel.
    
    - 'Only in test versions': NVDA plays error sounds only in NVDA test versions (alpha, beta and from source) but not in RC or stable.
    - 'Yes': Error sound for all version (test or stable)
    
    Discussion on #12672, recommends not provide an option to disable error sounds in tests versions, since test versions are aimed to capture potential issues. Thus error notifications should not be disabled for this usage.
    
    If an error occurs before the config is initialized, the default behavior is applied, i.e. the error sound is played only in test versions.
    
    Co-authored-by: Łukasz Golonka <lukasz.golonka@mailbox.org>
    Co-authored-by: Leonard de Ruijter <leonardder@users.noreply.github.com>
    Co-authored-by: Reef Turner <reef@nvaccess.org>

commit 58e2454f6f8f6d90e26c6fe22fafc84419a6351b
Author: Sean Budd <sean@nvaccess.org>
Date:   Thu Aug 26 12:58:46 2021 +1000

    Add documentation for starting and exiting (#12645)
    
    Summary of the issue:
    The 2021.1 release was partially delayed due to bugs introduced when improving the starting, and exiting processes for NVDA.
    
    Description of how this pull request fixes the issue:
    Better documents these aspects of NVDA so development in these areas is safer.

commit 4ebfed403928704899e1105fe282e0e693669a36
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Aug 26 11:45:41 2021 +1000

    Handle VT_R8 (double) arrays in COM VARIANTS (#12782)
    
    Comtypes does not currently expect VARIANTs to hold a VT type of VT_R8|VT_ARRAY.
    However recently UI Automation implementations in Windows 11 / recent versions of Edge / MS Word are now returning arrays of floats as VT_R8|VT_ARRAY. I think this used to be VT_R4|VT_ARRAY.
    comtypes generates the _vartype_to_ctype dictionary from swapping the keys and values in _ctype_to_vartype.
    Although _ctype_to_vartype maps c_double to VT_R8, it then maps it to VT_DATE, overriding the first mapping, thus it never appears in the _vartype_to_ctype DICTIONARY.
    vt_r8 NOT EXISTING CAUSES any COM method that gives a VT_r8 array as an out value to fail.
    For example, the cellSize UIA custom property in Excel.
    
    Description of how this pull request fixes the issue:
    Provide a monkeypatch for comtypes that correctly maps VT_R8 to c_double.

commit 657d89d811bc3b10cde99d43531fa47f094f3643
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Thu Aug 26 02:59:08 2021 +0200

    Ensure that NVDA  sets Python locale to a valid Windows locale when initializing language. (#12753)
    
    Fix-up of #12214
    Follow up to #12250
    Fixes root cause of #12160
    
    Summary of the issue:
    After NVDA sets its interface language it also attempts to set Python locale to the current language. Before PR #12214 we were just passing the current language code to locale.setlocale and catching all possible exceptions. Unfortunately Python setlocale is pretty useless on Windows as it tries to normalize the locale name according to the Unix standards (see Python issue 37945. When we were using wxPython older than 4.1 this was generally not an issue (except for some specific locales under a particular configurations such as one described in #12160 ) since wxPython was setting locale to a valid one so the problem remained unnoticed. This broke with wxPython 4.1 and the fix was attempted in #12214 but it still was setting Python locale to Unix locales. This is causing two problems:
    
    We are Windows only so it is important to set locales to something reasonable
    If the locale that is unknown to Windows is set some versions of CRT assumes that the code page of such locale is Utf8 which causes a crash when using time.localtime (that was the underlying cause of Crash of the latest alpha NVDA builds on a system with Russian locale #12160)
    Description of how this pull request fixes the issue:
    Since Python locale.setlocale and locale.getlocale cannot be trusted on Windows the approach I took avoids all the normalization they offer by creating a valid Windows locale string using getLocaleInfoEx in a form which Python no longer normalizes. This string is then passed to locale.setlocale. The new functionality has pretty solid unit test coverage, previous unit tests for languageHandler are also updated to account for these changes. As suggested during the review this PR also consolidates all NLS constants we use when retrieving various locale related information from Windows into an enum in languageHandler. The old constants are deprecated and would no longer be available in 2022.1.
    Specific fix for #12160 from #12250 cannot be removed because even though we're setting only complete locales i.e. with a code page and for languages such as Russian or German_Switzerland this crash would no longer occur NVDA supports some locales such as Hindi for which code page is indeed Utf8 and they would still cause a crash.
    
    Testing strategy:
    Manual testing:
    On Windows 7, Server 2012, Windows 10 1809 (on which I was previously able to reproduce #12160 ) and latest preview of Windows 11 started NVDA with both specific language set in preferences and with the language set to default. Made sure that when 'user default' is selected appropriate language is chosen and locale (as retrieved by locale.setlocale(locale.LC_ALL)) is set into a locale of a form englishLanguageName_englishCountryName.ANSICodePage. Repeated these tests with some languages known to cause troubles in the past:
    
    Aragonese - locale set to Windows locale
    German_Switzerland and Hindi - made sure that Crash of the latest alpha NVDA builds on a system with Russian locale #12160 has not been reintroduced
    Executed unit tests on all above mentioned versions of Windows made sure they pass.

commit 204822655ac1861baa1f4450afb17a9e096f4b5c
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Wed Aug 25 17:57:46 2021 -0700

    Modern Settings app: import progress bar class from UIA objects mix-in (#12784)
    
    * appModules/systemsettings: update copyright header (also remove file name from header text)
    * appModules/systemsettings: import progress bar class from NVDAObjects.UIA. Re #12783.
    
    UIA objects mix-in comes with a dedicated progress bar overlay class to announce values based on range value pattern. As a result progress bar beep is heard for volume meter in Windows 10/11 Settings app. Therefore import progress bar from UIA objects mix-in.

commit 669e1b0ea3dbd9b07f9516a62480e12a381fd7d7
Author: Christopher Toth <q.alpha@gmail.com>
Date:   Wed Aug 25 18:04:25 2021 -0600

    Don't leave focus mode if focused on a grid cell and user presses escape (#12652)
    
    One of the common keyboard convention is to use the escape key to restore grid navigation while the focus in on a widget inside one of the cells.
    
    However, when user press escape in such situation, NVDA instead switches to browse mode. This causes confusion, especially since there are also no messages announced to the user about this switch or any instructions on how to switch back.
    
    Description of how this pull request fixes the issue:
    By adding the grid cell to the existing set of controls that don't process escape outside browse mode.
    
    Testing strategy:
    See https://www.w3.org/TR/wai-aria-practices-1.1/examples/grid/dataGrids.html
    Enter the grid, arrow around, hit escape, ensure that NVDA doesn't switch back to browse mode.

commit 39425061f08d07b794e0c63229f6aa9d8b298995
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Thu Aug 26 00:02:43 2021 +0200

    Prefer the UIA value over the UIA range value when reporting value, and respect minum and maximum values for ranges (#12727)
    
    1. For UIA controls that implement a RangeValuePattern and a ValuePattern, the RangeValuePattern gives a numerical presentation of the value in a range whereas the value could also have a textual representation exposed in the ValuePattern. NVDA prefered the numerical representation, which doesn't make much sense and isn't according to how Narrator, JAWS and LegacyIAccessiblePattern expose the value.
    2. NVDA insisted on correcting every range to a 0--100 range, even though UIA could specify different minimum and maximum values in the rangeValue pattern.
    3. Range value patterns were rounded up to 4 digits and then converted to an integer. This resulted in 4.9998 resulting into an integer value of 4 instead of a rounded value of 5.
    
    Description of how this pull request fixes the issue:
    1. Swapped the order of methods the value is constructed. NVDA first tries the ValuePattern, than if that's empty, it uses the RangeValuePattern.
    2. No longer take the minimum and maximum value into account when working with a range value and report the value as a percentage, but report the real value exposed by the pattern.
    3. The range value pattern value is now rounded properly

commit 16bbf7ae39205f8ce3e13dab9b28c6da3b8372b3
Author: Cyrille Bougot <cyrille.bougot2@laposte.net>
Date:   Wed Aug 25 23:44:04 2021 +0200

    Minor fixes in the User Guide and a GUI label regarding annotations options group (#12781)

commit 0f481d8ae01f7650d03250e45f28d598f630f447
Author: Michael Fairchild <mfairchild365@gmail.com>
Date:   Wed Aug 25 01:23:20 2021 -0500

    Prevent table heading text being announced twice (#12763)
    
    Summary of the issue:
    NVDA+Chromium browsers are announcing the name of table header cells twice when navigating directly to the header cell.
    
    For example, NVDA was announcing a header like this "row 1 Subject column 1 Subject" where the name is announced twice.
    
    Description of how this pull request fixes the issue:
    Chrome is referencing cell headers as their own header, which is causing the name of the header to be announced twice when navigating to it directly.
    
    This change checks if the header is referring to itself before adding the name of the header for the cell to the speech. output. If it is a self-reference, the name is not added to the speech output.
    
    Now "row 1 Subject column 1 Subject" is announced as "row 1 column 1 Subject".
    
    Since this is due to how Chrome is surfacing the header, it could be considered a bug in Chromium instead of NVDA. Why fix it here? Because it is low effort and makes NVDA more resilient if other browsers end up surfacing headers in a similar way in the future.
    
    Testing strategy:
    System tests added and updated, manual testing was performed on Chrome and Firefox

commit 7dcbe10d883fbaa8535baeb7dee514f8b389c8de
Merge: 3be9f109b 5cce4073e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 20 00:01:59 2021 +0000

    Update translations.
    
    From translation svn revision: 64049

commit 5cce4073ed0ea41ab1b6495b074a3dda1af6479c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 20 00:01:54 2021 +0000

    L10n updates for: vi
    From translation svn revision: 64049
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>
    Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    46      47      source/locale/vi/LC_MESSAGES/nvda.po
    14      9       user_docs/vi/changes.t2t
    8       7       user_docs/vi/userGuide.t2t
     3 files changed, 68 insertions(+), 63 deletions(-)

commit 7bdac4ab139fd8d370893c13231c70e75d8bebfc
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 20 00:01:51 2021 +0000

    L10n updates for: tr
    From translation svn revision: 64049
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    67      0       user_docs/tr/changes.t2t
    3       2       user_docs/tr/userGuide.t2t
     2 files changed, 70 insertions(+), 2 deletions(-)

commit b2118f059bfe6398a5e3c40ad43cec4df2253146
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 20 00:01:42 2021 +0000

    L10n updates for: ro
    From translation svn revision: 64049
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <7ro2014@gmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    George Antonio Andrei <george.andrei2002@gmail.com>
    
    Stats:
    13      7       user_docs/ro/changes.t2t
     1 file changed, 13 insertions(+), 7 deletions(-)

commit 3f7be1e8f872b87d5180e0e81d8abfeaf34fb50e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 20 00:01:37 2021 +0000

    L10n updates for: pl
    From translation svn revision: 64049
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Hubert Meyer <hubmeyer1989@gmail.com>
    Arkadiusz Swietnicki <nuno69a@gmail.com>
    
    Stats:
    13      8       user_docs/pl/changes.t2t
     1 file changed, 13 insertions(+), 8 deletions(-)

commit ce612e3189fee956da0cbab6ccb0968ba30465df
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 20 00:01:35 2021 +0000

    L10n updates for: nl
    From translation svn revision: 64049
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    7       6       user_docs/nl/userGuide.t2t
     1 file changed, 7 insertions(+), 6 deletions(-)

commit 47f234fc2059d105ede64bb4e6ba78b883df8276
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 20 00:01:27 2021 +0000

    L10n updates for: ko
    From translation svn revision: 64049
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    58      0       user_docs/ko/changes.t2t
     1 file changed, 58 insertions(+)

commit bdef188edc58a29df625c0981ff377cd292f0df3
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 20 00:01:25 2021 +0000

    L10n updates for: ja
    From translation svn revision: 64049
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    9       9       source/locale/ja/LC_MESSAGES/nvda.po
    4       3       user_docs/ja/userGuide.t2t
     2 files changed, 13 insertions(+), 12 deletions(-)

commit ebef825a535524442cb8b68d0a7a45ab46fba542
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 20 00:01:19 2021 +0000

    L10n updates for: hr
    From translation svn revision: 64049
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Milo Ivir <mivir@milotype.de>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    15      10      user_docs/hr/changes.t2t
     1 file changed, 15 insertions(+), 10 deletions(-)

commit 7eaca6b8fe334842416af84e8181a2f3132c9901
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 20 00:01:15 2021 +0000

    L10n updates for: gl
    From translation svn revision: 64049
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    Javier Curras <javier.curras@nvda.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    13      8       user_docs/gl/changes.t2t
    5       4       user_docs/gl/userGuide.t2t
     2 files changed, 18 insertions(+), 12 deletions(-)

commit d00c2b92cdc7a1e2b1a857e2331a6d3c42e75402
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 20 00:01:13 2021 +0000

    L10n updates for: fr
    From translation svn revision: 64049
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqué-Cazenave <corentin@progaccess.net>
    Sylvie Duchateau <sylvieduchateau@gmail.com>
    Sof <hellosof@gmail.com>
    
    Stats:
    15      11      user_docs/fr/changes.t2t
    4       3       user_docs/fr/userGuide.t2t
     2 files changed, 19 insertions(+), 14 deletions(-)

commit 93c122e2aac88ac42263f64b5160a3cb6ac1bff2
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 20 00:01:11 2021 +0000

    L10n updates for: fi
    From translation svn revision: 64049
    
    Authors:
    Jani Kinnunen <janikinnunen340@gmail.com>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    13      8       user_docs/fi/changes.t2t
    3       2       user_docs/fi/userGuide.t2t
     2 files changed, 16 insertions(+), 10 deletions(-)

commit ffd399a647d79631f42b0c5da6e5c6561e6ac88a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 20 00:01:09 2021 +0000

    L10n updates for: fa
    From translation svn revision: 64049
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    4472    4305    source/locale/fa/LC_MESSAGES/nvda.po
     1 file changed, 4472 insertions(+), 4305 deletions(-)

commit dcc84d6cb850830733663df1aa4b75ee832f5ae2
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 20 00:01:06 2021 +0000

    L10n updates for: es
    From translation svn revision: 64049
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    13      8       user_docs/es/changes.t2t
    5       4       user_docs/es/userGuide.t2t
     2 files changed, 18 insertions(+), 12 deletions(-)

commit 8524fa2be910bbb4372d27a7b45abe0f2612976a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 20 00:01:01 2021 +0000

    L10n updates for: de
    From translation svn revision: 64049
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    15      10      user_docs/de/changes.t2t
    5       4       user_docs/de/userGuide.t2t
     2 files changed, 20 insertions(+), 14 deletions(-)

commit 2f16fc19d0a54c597cd24a3c6f2b74942f9cc7d8
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 20 00:00:56 2021 +0000

    L10n updates for: cs
    From translation svn revision: 64049
    
    Authors:
    Martina Letochova <letochova@seznam.cz>
    
    Stats:
    4629    4270    source/locale/cs/LC_MESSAGES/nvda.po
     1 file changed, 4629 insertions(+), 4270 deletions(-)

commit a452470490b66e1124e9d631b6c297d0fb2e1f2d
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Wed Aug 18 09:12:45 2021 +0200

    Fix backtranslation for uncontracted braille when typing a sequence of characters consisting of multiple patterns (#12742)
    
    when typing multiple characters consisting of multiple patterns, NVDA did not correctly clear the buffer after sending the translation of characters to a text field.
    
    NVDA no longer fails to translate braille input when multiple characters are typed that consist of multiple braille patterns (e.g. (1) in UEB)

commit c9d6729b5a415ba5dc2e707a017a7a6d0b345e38
Author: Sean Budd <sean@nvaccess.org>
Date:   Tue Aug 17 16:21:30 2021 +1000

    Add system test for desktop shortcut (#12741)
    
    The desktop shortcut, and the input gesture to activate it, do not have system tests
    Use the input gesture to test the desktop shortcut.
    
    Testing strategy:
    Run: runsystemtests.bat -t "Starts from desktop shortcut" -v whichNVDA:installed
    Confirmed that the test skips when running from source, eg: runsystemtests.bat -t "Starts from desktop shortcut"

commit 733ead7845b979d25627acc66b090c68ce35c962
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Aug 16 10:35:08 2021 +1000

    Correctly read blank cells in MS Word with NVDA's UIA for MS Word option enabled (#12731)
    
    When using UIA to access Microsoft word documents with NVDA, NVDA failed to announce row and column numbers when arrowing onto blank table cells. Also, navigating a table with the control+alt+arrow keys and landing on blank cells would sometimes announce leaving the table.
    This was caused by the fact that when expanding a IUIAutomationTextRange in a blank table cell to any text unit, the range will cover the end-of-cell marker, and therefore span more than the cell itself, thus it looks like the range is not entirely inside the cell.
    
    Description of how this pull request fixes the issue:
    Work around this MS Word bug by detecting when in this situation: the range is not collapsed, yet the text in the range is either empty or the end-of-cell marker. And if so, Use a copy of the range, that is collapsed to the start (entirely inside the cell) to fetch the text and fields.
    This pr also makes a change to Braille, so that when building a line of rich text in braille, a TextInfo's getTextWithFields method is only called if the textInfo is not collapsed. this stops repeating of fields for collapsed ranges, which was sometimes seen in Microsoft Word with UIA enabled.
    
    Fixes #11043
    Fixes #11457
    Fixes #12490

commit 07f7bf1cc9f1c9de49d9ae1d903adc78a801bce1
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Fri Aug 13 02:48:43 2021 +0200

    No longer append clang directories to path in SCons environment when building liblouis and update readme about Visual Studio (#12728)
    
    In the past, we had to explicitly dig up the dirs where clang was installed inside Visual Studio. It looks like since then, Microsoft added LLVM to the path of the Visual Studio tools command prompt, which constructor batch file is used by SCons.
    
    Description of how this pull request fixes the issue:
    No longer add Clang to the path. Note that we still check its installation.
    
    Changes for Developers
    Building NVDA now requires Visual Studio 2019 16.10.4 or later.
    To match the production build environment, update Visual Studio to keep in sync with the current version AppVeyor is using: https://www.appveyor.com/docs/windows-images-software/#visual-studio-2019

commit 3be9f109b714318b1e734a1d81d26fe118c62698
Merge: afc9311a1 1dbb976e8
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 13 00:01:48 2021 +0000

    Update translations.
    
    From translation svn revision: 63863

commit 1dbb976e8714e6476ee0e99d4f4beaaa68637d5f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 13 00:01:46 2021 +0000

    L10n updates for: zh_CN
    From translation svn revision: 63863
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen_0528@outlook.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    1872265132@qq.com
    
    Stats:
    4432    4238    source/locale/zh_CN/LC_MESSAGES/nvda.po
     1 file changed, 4432 insertions(+), 4238 deletions(-)

commit ce8f246379074e0966a4157b253007d136df00a9
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 13 00:01:32 2021 +0000

    L10n updates for: ro
    From translation svn revision: 63863
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <7ro2014@gmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    George Antonio Andrei <george.andrei2002@gmail.com>
    
    Stats:
    102     0       source/locale/ro/symbols.dic
     1 file changed, 102 insertions(+)

commit 726811c1ac794044d008e1c118eb74a3229bc616
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 13 00:01:31 2021 +0000

    L10n updates for: pt_PT
    From translation svn revision: 63863
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    23      38      source/locale/pt_PT/LC_MESSAGES/nvda.po
    62      0       user_docs/pt_PT/changes.t2t
     2 files changed, 85 insertions(+), 38 deletions(-)

commit 2ede405263636ae3e0709aac3b3089d413f97c90
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 13 00:01:27 2021 +0000

    L10n updates for: pl
    From translation svn revision: 63863
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Hubert Meyer <hubmeyer1989@gmail.com>
    Arkadiusz Swietnicki <nuno69a@gmail.com>
    
    Stats:
    54      0       user_docs/pl/changes.t2t
     1 file changed, 54 insertions(+)

commit 2a8326a9ef918667ff76bd59cb4b40f44fd3a54a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 13 00:01:20 2021 +0000

    L10n updates for: ko
    From translation svn revision: 63863
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    13      13      user_docs/ko/userGuide.t2t
     1 file changed, 13 insertions(+), 13 deletions(-)

commit 49720eb4a865641cc0565fa23ffa62bc2d2531b1
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 13 00:01:18 2021 +0000

    L10n updates for: ja
    From translation svn revision: 63863
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    2       2       source/locale/ja/LC_MESSAGES/nvda.po
     1 file changed, 2 insertions(+), 2 deletions(-)

commit ea67b543cf982a6382af3280e49ccf817b45bcf5
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 13 00:01:12 2021 +0000

    L10n updates for: hr
    From translation svn revision: 63863
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Milo Ivir <mivir@milotype.de>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    11      11      user_docs/hr/changes.t2t
    18      21      user_docs/hr/userGuide.t2t
     2 files changed, 29 insertions(+), 32 deletions(-)

commit 2825eb1386fc82f372fb120d8d35ef8619270c98
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 13 00:01:07 2021 +0000

    L10n updates for: ga
    From translation svn revision: 63863
    
    Authors:
    Cearbhall OMeadhra <cearbhall.omeadhra@blbc.ie>
    Ronan McGuirk <ronan.p.mcguirk@gmail.com>
    Kevin Scannell <kscanne@gmail.com>
    
    Stats:
    4599    4426    source/locale/ga/LC_MESSAGES/nvda.po
     1 file changed, 4599 insertions(+), 4426 deletions(-)

commit dafad735f9caeeb11da847a8dd54bd745df88fb9
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 13 00:01:06 2021 +0000

    L10n updates for: fr
    From translation svn revision: 63863
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqué-Cazenave <corentin@progaccess.net>
    Sylvie Duchateau <sylvieduchateau@gmail.com>
    Sof <hellosof@gmail.com>
    
    Stats:
    5       5       user_docs/fr/changes.t2t
     1 file changed, 5 insertions(+), 5 deletions(-)

commit d44fda6f444f5218d601c2ea5ea8d5636ace4fe2
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 13 00:00:59 2021 +0000

    L10n updates for: de
    From translation svn revision: 63863
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    1       1       user_docs/de/userGuide.t2t
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 251f2a6551fe2e839fe923ca7c492af5fa642df0
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 13 00:00:57 2021 +0000

    L10n updates for: da
    From translation svn revision: 63863
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    38      58      user_docs/da/changes.t2t
     1 file changed, 38 insertions(+), 58 deletions(-)

commit 566a5e1c34003b9114025d24d5cd823a5b275842
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Thu Aug 12 01:31:52 2021 +0200

    updateCheck: Fix fetching of server certificate  for Python 3 (#12729)
    
    When checking for updates to NVDA and certificate of NV Access's server is not installed on the system (this most commonly happens for clean Windows installs) we need to fetch it manually as Python does not do this for us. To do this we're catching errors during connection to the server and then inspecting raised exception to determine if it has been caused by missing certificate and if so we're asking Windows to fetch it for us. This does not work in Python3 however as the structure of the exception from SSL has changed.
    
    Description of how this pull request fixes the issue:
    1. Since strerror of SSL exceptions is empty in Python 3 we need to inspect its reason to get to the cause of the failure.
    2. When the exception is caused by lack of certificate in Python 3 it is represented by ssl.SSLCertVerificationError not a less specific SSLError

commit 17e52866e1dfc353edcc7dc9d466449e7920a155
Author: Sean Budd <sean@nvaccess.org>
Date:   Tue Aug 10 13:04:32 2021 +1000

    Replace controlTypes.STATE_* with controlTypes.State.* (PR #12712)
    
    Part of #12549
    
    # Summary:
    controlTypes.STATE_* are deprecated, to be replaced by controlTypes.State.*
    
    # Description of fix:
    Replaced all instances of controlTypes.STATE_ with controlTypes.State. across .py files
    
    Searched and manually replaced final STATE_ constant usages
     - using the regex: [^\.]\bSTATE_
     - which finds STATE_ instances
    
    Because other usages of "STATE_" are common such as:
    - oleacc.STATE_*, the regex excludes the form <Foo>.STATE_
    - IA2_STATE_*, the regex ensures STATE_ is the prefix of the symbol.
    
    # Testing:
    - Manually inspect regex results.
    - Existing unit tests exist for controlTypes
    - New unit tests are written for displayString and negativeDisplayString, checking the labels of enum members

commit 3c29f9ad389d7a828999b133595fa98682edd8d5
Merge: 10423a323 afc9311a1
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Aug 9 09:50:21 2021 +1000

    Merge pull request #12720 from nvaccess/beta
    
    Merge beta to master

commit afc9311a19d3131d9be44f09d2e89d992c5fb04a
Author: Sean Budd <sean@nvaccess.org>
Date:   Sat Aug 7 16:52:30 2021 +1000

    Handle menu start events processed after the menu item (#12709)
    
    Link to issue number:
    Fixes #12624
    
    Summary of the issue:
    When opening a submenu in certain applications (like Thunderbird 78.12),
    NVDA can process a menu start event after the first item in the menu is focused.
    The menu start event causes a focus event on the menu, taking NVDA's focus from the menu item.
    Additionally, the "menu" parent of the submenu item is not keyboard focusable, and is separate from
    the menu item which triggered the submenu.
    The object tree in this case (menu item > submenu (not keyboard focusable) > submenu item).
    The focus event order after activating the menu item's sub menu is (submenu item, submenu).
    
    Description of how this pull request fixes the issue:
    Before cancelling speech, check that the focus is now on the parent menu.
    
    Testing strategy:
    Manual testing (note that this does not always occur and is hard to consistently reproduce):
    
    Enable debug logging
    With a Thunderbird 78.12 context menu (activate one on an email, for example)
    navigate to a menu item with a submenu.
    Activate it.
    Examine the logs for an event (submenu item, submenu) - eg the speech is announced in this order in the logs, as are the events if event debugging is enabled.
    On this PR: Confirm that this case has extensive logging when it occurs. When this event occurs confirm that the menu item is spoken, followed by the submenu. If you want to hear a beep on this event, change the logging to an error beep.
    On 2021.1: Confirm that only menu item is spoken, as the seubmenu item is cancelled.
    Known issues with pull request:
    This may be an overzealous check. Speech in similar contexts that should be cancelled may continue to be spoken.
    As such, debug logs are added to make handling new cases easier until the root problem of event processing is addressed.

commit 7028d2eb3f88473c8768875518d965eca9f1631d
Author: Sean Budd <sean@nvaccess.org>
Date:   Sat Aug 7 12:44:11 2021 +1000

    Add a release blurb and fixup changes for 2021.2 (#12700)
    
    Adds a release blurb and proposes some changes to the changelog and userGuide.

commit 10423a323107ccd6ffb1bc6d9a23501832196655
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Sat Aug 7 10:05:49 2021 +0800

    Fix Aria description tests (PR #12717)
    
    Appveyor 2019 image has been updated to include Chrome 92.0.4515.131
    Now the expected failures aren't as expected.

commit d47ceb35d0e5def4fc2bb3c2dfc5f5f1b776ded6
Merge: f534c9a00 5e26f31b1
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 6 00:01:46 2021 +0000

    Update translations.
    
    From translation svn revision: 63697

commit 5e26f31b1491fcb9b31b482ba05c406fca615bac
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 6 00:01:43 2021 +0000

    L10n updates for: vi
    From translation svn revision: 63697
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>
    Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    1       1       user_docs/vi/changes.t2t
     1 file changed, 1 insertion(+), 1 deletion(-)

commit e705434fc731b352f78e8666b565c8c6b43c8161
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 6 00:01:40 2021 +0000

    L10n updates for: tr
    From translation svn revision: 63697
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    2       2       source/locale/tr/LC_MESSAGES/nvda.po
    79      79      user_docs/tr/userGuide.t2t
     2 files changed, 81 insertions(+), 81 deletions(-)

commit 8ce396e12909c4c94636757f37f78b7da2b49a39
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 6 00:01:26 2021 +0000

    L10n updates for: nl
    From translation svn revision: 63697
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    27      17      user_docs/nl/userGuide.t2t
     1 file changed, 27 insertions(+), 17 deletions(-)

commit e43461c11139569d7d010d64b2963b5dfc45698f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 6 00:01:22 2021 +0000

    L10n updates for: mk
    From translation svn revision: 63697
    
    Authors:
    zvonimir stanecic <9a5dsz@gozaltech.org>
    Ertay Shashko <ertay@outlook.com>
    Aleksandar <glupav@gmail.com>
    Kiko Lazarev <kristijan.lazarev@gmail.com>
    
    Stats:
    4502    4337    source/locale/mk/LC_MESSAGES/nvda.po
     1 file changed, 4502 insertions(+), 4337 deletions(-)

commit dc66e00e76b70596f3e705019455064ae7c8cf6c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 6 00:01:10 2021 +0000

    L10n updates for: he
    From translation svn revision: 63697
    
    Authors:
    Shmuel Naaman <shmuel_naaman@yahoo.com>
    
    Stats:
    8       8       source/locale/he/symbols.dic
     1 file changed, 8 insertions(+), 8 deletions(-)

commit cb43aa5e2b3850c4ee488fbde5018149d94a5ea1
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 6 00:01:10 2021 +0000

    L10n updates for: gl
    From translation svn revision: 63697
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    Javier Curras <javier.curras@nvda.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    20      20      user_docs/gl/userGuide.t2t
     1 file changed, 20 insertions(+), 20 deletions(-)

commit 6841a868df28b0122ecfff2af967563c62e0ef38
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 6 00:01:07 2021 +0000

    L10n updates for: fr
    From translation svn revision: 63697
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqué-Cazenave <corentin@progaccess.net>
    Sylvie Duchateau <sylvieduchateau@gmail.com>
    Sof <hellosof@gmail.com>
    
    Stats:
    37      43      source/locale/fr/LC_MESSAGES/nvda.po
    17      6       user_docs/fr/changes.t2t
    18      21      user_docs/fr/userGuide.t2t
     3 files changed, 72 insertions(+), 70 deletions(-)

commit 5dce756d6ce8e9b07c4813ae68ac9c62080de63b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 6 00:01:02 2021 +0000

    L10n updates for: es
    From translation svn revision: 63697
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    20      20      user_docs/es/userGuide.t2t
     1 file changed, 20 insertions(+), 20 deletions(-)

commit 714d0fd8645a6fac10639663b1b35ee936fb6a37
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 6 00:00:59 2021 +0000

    L10n updates for: de
    From translation svn revision: 63697
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    17      6       user_docs/de/changes.t2t
    22      24      user_docs/de/userGuide.t2t
     2 files changed, 39 insertions(+), 30 deletions(-)

commit c89ba15cc255726cca65c0c26c2ec12cecc3a143
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 6 00:00:55 2021 +0000

    L10n updates for: da
    From translation svn revision: 63697
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    4483    4316    source/locale/da/LC_MESSAGES/nvda.po
    37      21      user_docs/da/userGuide.t2t
     2 files changed, 4520 insertions(+), 4337 deletions(-)

commit fab35ec3c03038b22c9c288d78520aa03d4f2155
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Thu Aug 5 19:08:05 2021 +0800

    Report aria-description always (PR #12500)
    
    # Summary:
    The HTML attribute aria-description has been introduced as one aspect of supporting a broader concept of annotations on the web. It maps to accDescription. In contrast to other sources for accDescription such as title, our expectation is annotations should be reported whenever present.
    
    # Description of change:
    Experimental support added for reporting aria-description.
    Firefox use IA2 attribute 'description' matching accDescription to indicate source is aria-description.
    Chrome use  IA2 attribute `description-from` with value of 'aria-description' to indicate source, otherwise
    fallback to Firefox behavior.
    
    # Other changes:
    * Rename UIA._getControlFieldForObject to _getControlFieldForUIAObject
      - Since type info in NVDA is not yet ubiquitous, a lot of development relies on
      text search / grep.
      - This name was easy to confuse with CompoundTextInfo._getControlFieldForObject
    
    * Add typing for virtual buffer / text info / fields normalaziation
      - Add return type info for XMLFormatting.XMLTextParser.parse
      - Try to confirm if data is an optional string, log a warning if it is None.
    
    * Use constants for Unicode specials
      - Symbols referenced regularly in the code, descriptions
        from https://en.wikipedia.org/wiki/Specials_(Unicode_block)
      - ￼ OBJECT REPLACEMENT CHARACTER, placeholder in the text
        for another unspecified object, for example in a compound document.
      - � REPLACEMENT CHARACTER, used to replace an unknown, unrecognized,
         or unrepresentable character.
    
    * Remove ignoreEditableText param
      - As a result of this, controlStack previously had None inserted, now it can be empty.
    
    * Fix names, simplify logic in getTextWithFields
      - field -> childObject
      - field -> textWithEmbeddedObjectsItem

commit f61c3f1f74534391eb71181e55e5a1008a99d0b7
Author: Team-VisioBraille <78622711+Tobias-Team-Visiobraille@users.noreply.github.com>
Date:   Wed Aug 4 02:10:19 2021 +0200

    Add support for the VisioBraille Vario 4 Braille Device (#12607)
    
    Set new PID for the Vario 4 series
    
    Description of how this pull request fixes the issue:
    want to build 3 length of the Vario 4 20 40 80 because the device tell the screenreader the length while connection
    we need only need one new PID
    
    Co-authored-by: buddsean <sean@nvaccess.org>

commit f534c9a00eade764973adc7ee4408e24348f4caf
Merge: 92bf6baa8 5f1b862d4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Aug 3 07:05:37 2021 +0000

    Update translations.
    
    From translation svn revision: 63634

commit 5f1b862d4505e265d64ea39b56c5c899010fcb1e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Aug 3 07:05:33 2021 +0000

    L10n updates for: vi
    From translation svn revision: 63634
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>
    Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    32      38      source/locale/vi/LC_MESSAGES/nvda.po
    21      10      user_docs/vi/changes.t2t
    20      23      user_docs/vi/userGuide.t2t
     3 files changed, 73 insertions(+), 71 deletions(-)

commit a9e003657e5d3345baa725319529e0a8b3e14162
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Aug 3 07:05:31 2021 +0000

    L10n updates for: tr
    From translation svn revision: 63634
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    33      38      source/locale/tr/LC_MESSAGES/nvda.po
    4       2       source/locale/tr/gestures.ini
    18      21      user_docs/tr/userGuide.t2t
     3 files changed, 55 insertions(+), 61 deletions(-)

commit 9ebf8701b15954f48de3c19ba5b610e9b00946e3
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Aug 3 07:05:29 2021 +0000

    L10n updates for: ta
    From translation svn revision: 63634
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    4568    4402    source/locale/ta/LC_MESSAGES/nvda.po
     1 file changed, 4568 insertions(+), 4402 deletions(-)

commit add58ef5f7e1c30a7c325a4e96d1f0a818109ebc
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Aug 3 07:05:28 2021 +0000

    L10n updates for: sr
    From translation svn revision: 63634
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    35      43      source/locale/sr/LC_MESSAGES/nvda.po
     1 file changed, 35 insertions(+), 43 deletions(-)

commit aa2091bce60045005ecd40cd79eaeef3850a3cc1
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Aug 3 07:05:22 2021 +0000

    L10n updates for: ro
    From translation svn revision: 63634
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <7ro2014@gmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    George Antonio Andrei <george.andrei2002@gmail.com>
    
    Stats:
    4572    4405    source/locale/ro/LC_MESSAGES/nvda.po
    61      0       user_docs/ro/changes.t2t
     2 files changed, 4633 insertions(+), 4405 deletions(-)

commit faaed15fda57521c12648908675a4fe611415bac
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Aug 3 07:05:20 2021 +0000

    L10n updates for: pt_PT
    From translation svn revision: 63634
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    4594    4411    source/locale/pt_PT/LC_MESSAGES/nvda.po
     1 file changed, 4594 insertions(+), 4411 deletions(-)

commit a51b8d111e83236b1d5ea1191b10716f18797e3d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Aug 3 07:05:18 2021 +0000

    L10n updates for: pl
    From translation svn revision: 63634
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Hubert Meyer <hubmeyer1989@gmail.com>
    Arkadiusz Swietnicki <nuno69a@gmail.com>
    
    Stats:
    39      45      source/locale/pl/LC_MESSAGES/nvda.po
    27      27      user_docs/pl/userGuide.t2t
     2 files changed, 66 insertions(+), 72 deletions(-)

commit a916528cd110c07b12dbd7a5d71fa7c11accd245
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Aug 3 07:05:09 2021 +0000

    L10n updates for: ko
    From translation svn revision: 63634
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    4464    4297    source/locale/ko/LC_MESSAGES/nvda.po
     1 file changed, 4464 insertions(+), 4297 deletions(-)

commit 4cc27afedd7965d09a2c833d6cf02251258fa63c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Aug 3 07:05:06 2021 +0000

    L10n updates for: ja
    From translation svn revision: 63634
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    4443    4296    source/locale/ja/LC_MESSAGES/nvda.po
    27      17      user_docs/ja/userGuide.t2t
     2 files changed, 4470 insertions(+), 4313 deletions(-)

commit 7674681b459e48f5a1cde1e1a737d798d226eb8d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Aug 3 07:05:01 2021 +0000

    L10n updates for: hr
    From translation svn revision: 63634
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Milo Ivir <mivir@milotype.de>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    37      43      source/locale/hr/LC_MESSAGES/nvda.po
    16      6       user_docs/hr/changes.t2t
     2 files changed, 53 insertions(+), 49 deletions(-)

commit b0989e8077828602809df0ccfa7c29be8b57ea11
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Aug 3 07:04:58 2021 +0000

    L10n updates for: gl
    From translation svn revision: 63634
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    Javier Curras <javier.curras@nvda.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    56      96      source/locale/gl/LC_MESSAGES/nvda.po
    62      0       user_docs/gl/changes.t2t
    29      19      user_docs/gl/userGuide.t2t
     3 files changed, 147 insertions(+), 115 deletions(-)

commit b1bd092c08805b662d493870e95b8f5ecdde79eb
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Aug 3 07:04:54 2021 +0000

    L10n updates for: fi
    From translation svn revision: 63634
    
    Authors:
    Jani Kinnunen <janikinnunen340@gmail.com>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    34      40      source/locale/fi/LC_MESSAGES/nvda.po
    17      6       user_docs/fi/changes.t2t
    21      23      user_docs/fi/userGuide.t2t
     3 files changed, 72 insertions(+), 69 deletions(-)

commit 4b5afb015748a34fe2e41cb6b6805e1ce4e0723a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Aug 3 07:04:51 2021 +0000

    L10n updates for: es
    From translation svn revision: 63634
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    55      95      source/locale/es/LC_MESSAGES/nvda.po
    62      0       user_docs/es/changes.t2t
    28      18      user_docs/es/userGuide.t2t
     3 files changed, 145 insertions(+), 113 deletions(-)

commit 71cd72b7d42a27d4b32b20061354734e3e26fe8d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Aug 3 07:04:47 2021 +0000

    L10n updates for: de
    From translation svn revision: 63634
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    35      39      source/locale/de/LC_MESSAGES/nvda.po
     1 file changed, 35 insertions(+), 39 deletions(-)

commit 559e8b6eb317cce77be1ad142c369fd2d1464cb9
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Tue Aug 3 03:44:06 2021 +0200

    Stop error sound being sometimes played when navigating quickly between folders in Windows Explorer (#12706)
    
    PR #10257 introduced code which removes pointless name of list which contains search results in Windows 7 start menu. To determine if we're dealing with a correct control however it is necessary to travel a lot of object ancestry. This causes the following error when navigating quickly in Windows Explorer:
    ERROR - NVDAObjects.__call__ (22:47:08.606) - Dummy-1 (6416):
    Exception in event_NVDAObject_init for <'explorer' (appName 'explorer', process ID 2552) at address 3cc63d0>
    Traceback (most recent call last):
      File "NVDAObjects\__init__.pyc", line 157, in __call__
      File "appModules\explorer.pyc", line 393, in event_NVDAObject_init
    AttributeError: 'NoneType' object has no attribute 'parent'
    
    Description of how this pull request fixes the issue:
    Since this occurs for objects which are dead I've just started catching AttributeError in this block of code.
    
    Extra notes:
    Generally, if this were being executed from the main thread, the existing code would be completely safe as the parent property would be cached for the core cycle and therefore not change. However, from the error we can see that it is being executed on another thread "dummy-1" My guess probably a UIA worker thread. And because of this, the execution of this code could overlap the end of a main thread core cycle, thus the property cache may get cleared half way through.

commit 0972312e2da8e4127922f4be5236ac4fee46c970
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Tue Aug 3 02:25:12 2021 +0200

    Expand checkPot to warn about messages which were marked as not having translator comments but are no longer present in the translations template (#12705)
    
    Summary of the issue:
    Currently checkPot has a list of messages which are translatable but don't have commends for translators. While it warns about messages in this list for which comments are added it does not warn about these which are no longer present in the .pot template.
    
    Description of how this pull request fixes the issue:
    checkPot was modified so that if there are messages in EXPECTED_MESSAGES_WITHOUT_COMMENTS which were removed from the source code it lists them and fails similarly to the case in which a new message has no comments for translators.

commit 62ad57659e3a7c5a01706f4b43bf9be71a17249e
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Tue Aug 3 01:57:29 2021 +0200

    Make unit tests for oneCore pass  under the versions of Windows where oneCore is not supported (#12702)
    
    Some unit tests introduced as part of #12647 were failing under versions of Windows where oneCore was unsupported. Tests which require oneCore being supported are now being skipped on versions of Windows on which oneCore is not supported.

commit 92bf6baa86a0448f42139bb1ad58c5ed65797d79
Merge: afe4699cd 887931e81
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 30 00:01:21 2021 +0000

    Update translations.
    
    From translation svn revision: 63440

commit 887931e815657da9aa6608a0855bf87ce96968fe
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 30 00:01:17 2021 +0000

    L10n updates for: vi
    From translation svn revision: 63440
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>
    Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    4461    4279    source/locale/vi/LC_MESSAGES/nvda.po
    43      0       user_docs/vi/changes.t2t
    16      3       user_docs/vi/userGuide.t2t
     3 files changed, 4520 insertions(+), 4282 deletions(-)

commit 0be470d2ed79ab04c8453c993af5b8e6725a9914
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 30 00:01:14 2021 +0000

    L10n updates for: tr
    From translation svn revision: 63440
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    4549    4364    source/locale/tr/LC_MESSAGES/nvda.po
    16      3       user_docs/tr/userGuide.t2t
     2 files changed, 4565 insertions(+), 4367 deletions(-)

commit e393120078ef18455db079e120b917d15c95a83a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 30 00:01:11 2021 +0000

    L10n updates for: sr
    From translation svn revision: 63440
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    4561    4376    source/locale/sr/LC_MESSAGES/nvda.po
    39      0       user_docs/sr/changes.t2t
     2 files changed, 4600 insertions(+), 4376 deletions(-)

commit e658940ea4a248b8bcf916f76a45aad39facab30
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 30 00:01:03 2021 +0000

    L10n updates for: pt_BR
    From translation svn revision: 63440
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    4562    4378    source/locale/pt_BR/LC_MESSAGES/nvda.po
    51      0       user_docs/pt_BR/changes.t2t
    18      5       user_docs/pt_BR/userGuide.t2t
     3 files changed, 4631 insertions(+), 4383 deletions(-)

commit 1c8629f8b5cd093eb4a868266f74cf39895b6dd2
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 30 00:01:01 2021 +0000

    L10n updates for: pl
    From translation svn revision: 63440
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Hubert Meyer <hubmeyer1989@gmail.com>
    Arkadiusz Swietnicki <nuno69a@gmail.com>
    
    Stats:
    4467    4282    source/locale/pl/LC_MESSAGES/nvda.po
     1 file changed, 4467 insertions(+), 4282 deletions(-)

commit f556ba73448653998351390ff3b54a924e113e74
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 30 00:00:50 2021 +0000

    L10n updates for: ja
    From translation svn revision: 63440
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    1       1       user_docs/ja/changes.t2t
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 2644df1755ca70fa401e709887e49714a242684c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 30 00:00:45 2021 +0000

    L10n updates for: hr
    From translation svn revision: 63440
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Milo Ivir <mivir@milotype.de>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    4569    4377    source/locale/hr/LC_MESSAGES/nvda.po
    43      0       user_docs/hr/changes.t2t
    16      4       user_docs/hr/userGuide.t2t
     3 files changed, 4628 insertions(+), 4381 deletions(-)

commit 72ef57a6a37f85840e440e3327eeb36e71158c54
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 30 00:00:42 2021 +0000

    L10n updates for: gl
    From translation svn revision: 63440
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    Javier Curras <javier.curras@nvda.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    4597    4390    source/locale/gl/LC_MESSAGES/nvda.po
     1 file changed, 4597 insertions(+), 4390 deletions(-)

commit a76ea192a53017b6928e32b2c27c6aa9e065be43
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 30 00:00:40 2021 +0000

    L10n updates for: fr
    From translation svn revision: 63440
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqué-Cazenave <corentin@progaccess.net>
    Sylvie Duchateau <sylvieduchateau@gmail.com>
    Sof <hellosof@gmail.com>
    
    Stats:
    4558    4387    source/locale/fr/LC_MESSAGES/nvda.po
    51      0       user_docs/fr/changes.t2t
    17      4       user_docs/fr/userGuide.t2t
     3 files changed, 4626 insertions(+), 4391 deletions(-)

commit cc49113b09d59d067c70bb1025fe362771ef90cf
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 30 00:00:37 2021 +0000

    L10n updates for: fi
    From translation svn revision: 63440
    
    Authors:
    Jani Kinnunen <janikinnunen340@gmail.com>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    4559    4373    source/locale/fi/LC_MESSAGES/nvda.po
    43      0       user_docs/fi/changes.t2t
    15      3       user_docs/fi/userGuide.t2t
     3 files changed, 4617 insertions(+), 4376 deletions(-)

commit 1135be540ca8193e8f7b1135f6ead4a42fed8dfe
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 30 00:00:34 2021 +0000

    L10n updates for: es
    From translation svn revision: 63440
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    4578    4371    source/locale/es/LC_MESSAGES/nvda.po
     1 file changed, 4578 insertions(+), 4371 deletions(-)

commit 32750541eb2469a8ff4a07c252f9d931045ce307
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 30 00:00:30 2021 +0000

    L10n updates for: de
    From translation svn revision: 63440
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    4591    4405    source/locale/de/LC_MESSAGES/nvda.po
    51      0       user_docs/de/changes.t2t
    17      4       user_docs/de/userGuide.t2t
     3 files changed, 4659 insertions(+), 4409 deletions(-)

commit 8c8e2bb03bfe46730b47e6cac908c3a1aebb6165
Author: Sean Budd <sean@nvaccess.org>
Date:   Thu Jul 29 21:50:22 2021 +1000

    Try next synth if oneCore consistently fails (#12647)
    
    Fixes #10451 and fixes #11544
    
    Summary of the issue:
    #10451
    OneCore voices silently fail when attempting to speak an alphabet they don't support (eg an English voice reading Cyrillic characters). This makes installing NVDA for the first time for the first time inaccessible if someone is using a system with a language that isn't supported by their OneCore installed voices.
    
    #11544
    An issue was raised on #11543 where oneCore failed to initialise, causing all speech to fail.
    If no speech succeeds, the _player is never set and so a subsequent error is thrown in _processQueue.
    
    Description of how this pull request fixes the issue:
    #10451
    When picking a synthesizer automatically (using "auto", ie not overriden by a user), fail if the current NVDA language and current system language is not supported by installed OneCore voices.
    
    #11544
    If oneCore fails to speak more than N=5 times in a row, try the next synth on the synth priority list.

commit afe4699cddfca34c71395ccc5486b7ccb9cbcd20
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Thu Jul 29 01:58:33 2021 -0700

    Rename Windows 10 OCR to Windows OCR (#12691)
    
    Closes #12690
    
    Summary of the issue:
    Windows OCR feature is "limited" to Windows 10 when in fact it can be used in Windows 11 and later as well.
    
    Description of how this pull request fixes the issue:
    Rename Windows 10 OCR to Windows OCR.
    
    * Content recognizers/UWP OCR: update copyright header, expand the scope to cover future Windows releases. Re #12690
    
    * Settings: Windows 10 OCR -> Windows OCR. Re #12690
    
    * Global commands: Windows 10 OCR -> Windows OCR. Re #12690
    
    * User guide: Windows 10 OCR -> Windows OCR, anchors not changed. Re #12690
    
    * update changes
    
    Co-authored-by: buddsean <sean@nvaccess.org>

commit 8c21ed2ebaf06441245a7e792fef00158a2739e4
Merge: cc749cd5a bcfd398ce
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Jul 29 18:52:35 2021 +1000

    Merge pull request #12698 from nvaccess/beta
    
    Merge beta to master

commit bcfd398cef89e5d3278a5fe18802a4f05a768eb7
Author: Sean Budd <sean@nvaccess.org>
Date:   Thu Jul 29 17:50:08 2021 +1000

    Fix Screen Curtain for Windows 10/11 insiders (#12684)
    
    Link to issue number:
    Fix for #12491
    
    Summary of the issue:
    Screen curtain does not work as intended for new Windows builds. This is due to an API change. Previously, NVDA used a fully transparent colour transformation to create the screen curtain, which now no longer results in a black screen.
    
    In the future, the API is unstable: "The Magnification API is not supported under WOW64; that is, a 32-bit magnifier application will not run correctly on 64-bit Windows.".
    
    Description of how this pull request fixes the issue:
    Implements the screen curtain with a fully solid opacity.
    Adds a warning to test newer Windows builds when using screen curtain.
    
    Testing strategy:
     Test starting screencurtain using this PR build on a Windows 10 insiders build
     Test starting screencurtain using this PR build on a Windows 11 insiders build
     Test starting screencurtain using this PR build on a Windows 10 stable build
     Test starting screencurtain using this PR build on a Windows 8 stable build
    
    Known issues with pull request:
    This may occur again in the future due to the API not being fully supported, or another undefined behaviour change like this one. It would be good to add a test that confirms the screen is black using an independent tool, and/or move towards a different API.

commit 627673b63ff883de9aad6aea982ccb1354309663
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Thu Jul 29 14:49:09 2021 +0800

    Partial revert of PR #11856 (PR #12695)
    
    Fixes #12653
    
    # Summary:
    PR #11856 introduced speaking symbols when navigating by word.
    The changes produced an unintended side effect of double processing symbols.
    The text replacement for symbols gets spoken at symbol level all.
    
    # Description of fix:
    There isn't enough time before release to be confident in a fix for this behavior, instead the feature is reverted.
    Reverting is in commit 619e5f7
    Some changes have been kept:
    - Symbol level enum: used in other aspects of the code and isn't a cause of this issue
    - System test for notepad: Useful to confirm behavior for reading by word is not changed when this feature is re-introduced.
    
    # Testing strategy:
    Notepad system test
    Generated and checked output of changes doc and userGuide
    Ran NVDA with symbolLevelWordAll = True remaining in config (a problem here would only affect alpha users anyway).

commit cc749cd5a6a8f986452779535974082d801bf6b7
Merge: b1c4024c5 4409193eb
Author: Sean Budd <sean@nvaccess.org>
Date:   Thu Jul 29 13:05:53 2021 +1000

    Merge pull request #12697 from nvaccess/beta
    
    Merge beta to master

commit 4409193eb7f4a2fcbbb12542eda074616eebc92f
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Thu Jul 29 04:32:53 2021 +0200

    Fix rare recursion error in the winVersion module (#12696)
    
    Opened against beta since this PR fixes regression which should be fixed before 2021.2
    
    Link to issue number:
    Fixes #12666
    Fix-up of #12544
    
    Summary of the issue:
    In some rare cases winVersion.getWinVer can cause recursion errors since it calls winVersion._getRunningVersionNameFromWinReg which in turn executes winVersion.getWinVer to check if the currently running version of Windows contains release info in the registry.
    
    Description of how this pull request fixes the issue:
    Rather than checking if the current version of Windows contains release info in the registry by comparing it to the lowest version for which this is supported I'm just checking if the necessary info exists in the registry and if not appropriate exceptions are raised.
    To avoid pointless registry accesses result of getWinVer is cached - version of Windows on which NVDA is running is not going to change during its lifetime.
    
    * Fix rare recursion error in the winVersion module
    
    * Avoid pointless registry accesses by caching results of `getWinVer`  as the version of Windows on which we're running cannot be changed.

commit b1c4024c59b562ccc627fafac91c4fd44bc1d008
Merge: ca871a424 1ea7e2abf
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Jul 28 15:10:46 2021 +1000

    Merge pull request #12694 from nvaccess/beta
    
    Merge beta to master

commit 1ea7e2abf4dc671e66b9c48d23581edb185d671f
Author: Sean Budd <sean@nvaccess.org>
Date:   Wed Jul 28 14:26:42 2021 +1000

    Input Gesture Dialog fix for when there is no filtered Input Gestures (#12693)
    
    Fixes #12673
    
    Summary of the issue:
    The input gestures GUI did not handle the case where there was no filtered input gestures available, such as filtering the gestures for a string like "zzzzzzzzz". This results in multiple input gesture dialogs being able to be opened at once.
    
    Add checks for when the filtered gesture list is empty.

commit cd3fbc0cbf7ca8026f08fa27d71e0134ab9ea5ed
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Tue Jul 27 18:50:08 2021 -0700

    User guide: mention Windows 11 (#12683)
    
    According to the user guide, latest supported Windows release is Windows 10. As Windows 11 is on the horizon, it makes sense to mention the new operating system in appropriate places throughout the user guide.
    
    Edited the following contents:
    * Supported operating systems (add a note that Windows 11 does not support 32-bit systems but runs 32-bit apps such as NVDA)
    * Windows 10 OCR (mention Windows 11 indirectly)
    * Windows OneCore voices (indirectly mention Windows 11)
    * Other places where Windows 10 is mentioned
    
    * User guide: windows 10 -> Windows 10 (capitalization)
    
    * User guide: remove Windows 11 specific notes in system requirements section.
    
    * Uesr guide: OneCore section -> remove 'new' as OneCore voices are not new anymore
    
    Co-authored-by: Sean Budd <sean@nvaccess.org>

commit ca871a424178f036fe12298294448e0f1ad985e5
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue Jul 27 14:56:41 2021 +0800

    Expose transparent background colors for displayModel (PR #12658)
    
    Resolves concerns about contributed PR: #9197
    Workaround for #6467
    
    # Summary of the issue:
    From #6467 (comment)
    
    > When text is written with the GDI background mode set to transparent, the display model doesn't necessary report the
    > correct background color for that text. In this case, the GDI hook should look at the actual background color before the
    > text is drawn, rather than using the result of GetBkColor.
    
    # Description of fix:
    There have been two prior attempts to fix this, both causing severe performance regressions.
    - #6844: "Display model: Try to provide the correct background color for transparent text drawing (issue #6467)"
    - #7440: "displayModel: second try at recording the actual background color for text when a transparant background color is set."
    
    This implementation merely exposes information about the potential transparency of the text background.
    Using the samples in https://github.com/nvaccess/testDisplayModel
    to test with various GDI dependent GUI APIs shows that the GetBkColor result can be:
    - Opaque and matches visual presentation(rawGDI)
    - Transparent and matches visual presentation: (mfcTest, GDItest)
    - Transparent and does not match visual presentation: (anecdotal)
    - The exposure of the transparency (via the alpha value on the colors.RGB class) will allow appModules
    or add-ons to customize NVDA's presentation as necessary.
    
    For users, there is no change in behavior by default. An option is introduced to the advanced settings panel to allow reporting of transparency in colors. The intention here is that developers will use this to identify where
    color reporting could be improved.
    
    The prior approach used the colorref high-level byte of a colorref struct. However, MSDN requires this byte be zero.
    This prior approach did not pass the colorref into any Windows API's, so it was safe. But to prevent this from being accidentally introduced in the future, a compatible alternative type is introduced and used instead.
    
    In order to stay compatible with python code interpreting this color value, a single bit is set if the color is considered transparent.
    
    # Testing:
    - Built applications from https://github.com/nvaccess/testDisplayModel
    - Tested with/without transparency reporting enabled (advanced panel)
    - Ensure color reporting is enabled in document formatting panel of NVDA settings
    - Use NVDA+Numpad 7 to switch to screen review
    - Use Numpad 7, Numpad 8, Numpad 9 to read the dialog
    
    Co-authored-by: Leonard de Ruijter <leonard@babbage.com>

commit ca2e22fa3db1977d6c94f3209040c8ba79f6a2b7
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Jul 27 15:01:06 2021 +1000

    Update miscDeps to latest master (#12687)
    
    MiscDeps was updated to remove quite a few depedencies that NVDA itself stopped using a while ago. Specifically this contains:
    • Remove flash typelib nvda-misc-deps#21:
    ◦ Removes Adobe Flash accessibility type library
    • Remove unused dependencies nvda-misc-deps#22:
    ◦ Removes Boost
    ◦ Removes epydoc
    ◦ Removes espeakEdit

commit defed0ef2317cf3192922692a40cc2eb92d41143
Author: Sean Budd <sean@nvaccess.org>
Date:   Tue Jul 27 13:30:34 2021 +1000

    Replace controlTypes.ROLE_* usages with controlTypes.Role.* (PR #12649)
    
    Part of #12549
    
    # Summary:
    controlTypes.ROLE_* are deprecated, to be replaced by controlTypes.ROLE.*
    
    # Description of fix:
    Replaced all instances of controlTypes.ROLE_ with controlTypes.Role. across .py files
    Search and manually replace final ROLE_ constant usages.
    
    Used regex:
    [^\.]\bROLE_
    
    Because of:
    - oleacc.ROLE_* the regex excludes the form <Foo>.ROLE_
    - IA2_ROLE_* the regex ensures ROLE_ is the prefix of the symbol.
    
    # Testing:
    - Manually inspect regex results.
    - Existing unit tests exist for controlTypes
    - Unit tests added for DisplayStringEnum, and test_roleLabels to ensure all enum values have a label.

commit c5d301d98c70da49430821faec15134dad798406
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Mon Jul 26 15:11:34 2021 +0200

    Emergency fix for #12523: import Hid class in hwIo package (#12686)
    
    Fixes regression introduced by pr #12523.

commit 1b68eba5be2ba409a2f37f542653f8980332014f
Author: Sean Budd <sean@nvaccess.org>
Date:   Mon Jul 26 18:53:07 2021 +1000

    Remove low contrast styling from documentation (#12685)
    
    Increase the contrast ratio of code blocks from 2.09 to 15.05
    
    Backport of #12674
    
    Summary of the issue:
    Code blocks on pages such as the developer guide are hard to read due to low contrast.
    
    Description of how this pull request fixes the issue:
    Increase the contrast ratio of code blocks from 2.09 to 15.05
    A ratio of at least 7 considerably improves accessibility

commit 8cacd41a3e335e247bb5027deb2c353e103d7a49
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Jul 26 11:19:56 2021 +1000

    Fix changes.t2t formatting from pr #12523

commit c3050a0a55c4c7d6f0f8add85f866da2b1fa62ac
Author: Cyrille Bougot <cyrille.bougot2@laposte.net>
Date:   Mon Jul 26 03:01:27 2021 +0200

    Changelog fixes for beta(#12677)
    
    * Change log: Move an item that landed in the wrong section.
    * Fixed a wrong PR number.

commit 371662b489648a61cc82c64767143bbf8de045a4
Author: Bill Dengler <codeofdusk@gmail.com>
Date:   Sun Jul 25 20:59:33 2021 -0400

    Remove STABILIZE_DELAY from UIA consoles. (#12679)
    
    During initial development of UIA in consoles, I added the STABILIZE_DELAY present in the legacy console support for consistency across implementations. However, the delay seems to offer no practical benefit to UIA and appears to contribute to lag.
    
    Description of how this pull request fixes the issue:
    Removed STABILIZE_DELAY from the UIA console. Legacy console users (i.e. the current default experience) are completely unaffected.

commit 00cd67b737bc5b23a6f5e31cf28110b64ebf2fee
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Jul 26 10:32:07 2021 +1000

    Support Braille displays that conform to the HID Braille standard  (#12523)
    
    Braille Display devices allow being controlled by Screen Readers using a variety of connections such as Serial, USB and Bluetooth. The protocols used over these channels have traditionally been Braille Display manufacturer specific.
    This has meant that in order for a Screen Reader to support a particular Braille display, it must have specific logic in the Screen Reader that knows how to speak the required device-specific protocol. Further to this, On Windows at least, an OS-level driver provided by the Braille Display manufacturer must also be installed by the user in order for the computer to detect and communicate with the device.
    With the introduction of the HID (Human Interface Device) standard for USB (and later Bluetooth), it became possible to remove the need for the required OS-level device driver on Windows if the Braille Display manufacturer exposed the device as a custom HID device, however the Screen Reader still needed device-specific code, as being custom HID only simplified the low-level bytes communication, but did not standardize what those bytes actually meant.
    In 2018, The HID specification was extended to define the concept of a Braille Display device, including setting of braille cells, and the standardizing of common buttons found on Braille displays such as routing keys, Braille dot input keys, braille space and panning keys.
    NVDA should add specific support for a Braille HID device, so that Braille Displays that support this standard can automatically be detected and usable by NVDA.
    
    Description of how this pull request fixes the issue:
    • Adds hidpi.py which contains all necessary types and defines from Windows' hidpi.h (the HID parser header).
    • Some HidP types that were previously added to hwIo.py have been moved to hidpi.py.
    • the hwIo.Hid class has been extended to include some useful properties such as caps (HidP_GetCaps), inputButtonCaps (HidP_GetButtonCaps), inputValueCaps, and outputValueCaps (HidP_GetValueCaps).
    • a new brailleDisplayDriver (brailleDisplayDrivers/hid.py) has been added which supports Braille displays that use the Braille HID specification.
    ◦ On construction:
    ◾ It opens the given device port by instantiating an hwIo.Hid object.
    ◾ It ensures the Hid device is truly a Braille display by checking that the HIDP_CAPS.UsagePage of the HID device's top-level collection is set to HID_USAGE_PAGE_BRAILLE (0x41).
    ◾ It finds the correct output HIDP_VALUE_CAPS structure which represents the array of braille cells. I.e. the Usage ID is either EIGHT_DOT_BRAILLE_CELL or six_dot_braille_cell. The ReportCount member of this struct states the number of cells for the device. This structure is also saved off as it is later needed when writing braille to the display.
    ◾ It collects all input button HIDP_VALUE_CAPS structures supported by the device, and stores them in a dictionary, keyed by their DataIndex member.
    ◾ If the HIDP_VALUE_CAPS structure represents a range of data indices, then the HIDP_VALUE_CAPS structure is added to the dictionary for each data index in that range. For example a device may expose the Braille dot input keys this way.
    ◾ Each value for the dictionary is a tuple containing the HIDP_VALUE_CAPS structure, and a calculated relative DataIndex from the first HIDP_VALUE_CAPS structure with the same LinkCollection member. Examples of collections are Router_set_1 or Braille_row. We certainly need this relative index for routing keys.
    ◦ The BrailleDisplayDriver.display method (for writing cells to the device) works as follows:
    ◾ Creates a HID output report, setting the report ID to the value of the ReportID member of the cell HIDP_VALUE_CAPS structure found at construction.
    ◾ Calls HidP_SetUsageValueArray to place the data (braille cell dot patterns) into the report at the appropriate place, Using the Usage ID and collection number etc from the cell HIDP_VALUE_CAPS structure.
    ◾ Sends the report to the Braille display using WriteFile. The number of bytes written will be the value of HIDP_CAPS.OutputReportByteLength.
    ◦ the BrailleDisplayDriver receives input from the Braille display by providing a callback to the hwIo.Hid object. The Hid object uses overlapped IO and ReadFile to continuously read blocks of data of the device's HID input report size (HIDP_CAPS.InputReportByteLength).
    ◦ the BrailleDisplayDriver's _hidOnReceive callback does the following:
    ◾ Treating the received data as a HID input report, HidP_GetData is used to extract all HIDP_DATA structures from the report. these represent the state of all input buttons and other controls.
    ◾ For each data item that represents a input button and is currently on, the value of the data item's DataIndex member is recorded in a keys list (keys currently being pressed). As long as this list keeps growing, all these keys are treated as being a part of the upcoming gesture. If the list decreases, then these keys are used to create an NVDA InputGesture which is executed.
    ◦ This BrailleDisplayDriver's InputGesture class processes the given data indices as follows:
    ◾ It looks up the correct input button HIDP_VALUE_CAPS structure and relative index in collection value for the data index, using the dictionary created in the BrailleDisplayDriver's construction.
    ◾ If the HIDP_VALUE_CAPS structure represents a range of buttons, it calculates the correct Usage ID using the DataIndex value and the DataIndexMin and UsageMin HIDP_VALUE_CAPS members.
    ◾ If the Usage ID is one of the BRAILLE_KEYBOARD_DOT_* values, it sets the appropriate bit in the InputGesture's dots member.
    ◾ If the Usage ID is one of the BRAILLE_KEYBOARD_SPACE, BRAILLE_KEYBOARD_LEFT_SPACE or BRAILLE_KEYBOARD_RIGHT_SPACE, it sets the InputGesture's space member to true.
    ◾ If the Usage ID is ROUTER_KEY, then the InputGesture's routingIndex member is set using the calculated relativeIndexInCollection value for this data index.
    ◾ The generic gesture name is calculated from the Usage ID's enum name, converted to camelCase, with prefixes such as BRAILLE_KEYBOARD_ and Braille_ removed. E.g. BRAILLE_PAN_LEFT becomes panLeft. And for router collections, the router collection name is prefixed E.g. routerSet1_routerKey.
    ◦ A gestureMap has been provided for this BrailleDisplayDriver, which is roughly based on the Brailliant B driver, for all gestures that are supported by Braille HID.
    • hwPortUtils._getHidInfo now includes the device's top-level collection's UsagePage value in the info it returns. Note that this does mean now that all HID devices are opened to get this, where as before we only opened Bluetooth devices.
    • When bdDetect looks up an appropriate BrailleDisplayDriver for a USB or Bluetooth device, or when it looks up compatible USB or Bluetooth devices for a given BrailleDisplayDriver, if the USB or Bluetooth device is a HID device and its to-level collection's UsagePage value is HID_USAGE_PAGE_BRAILLE (0x41), then the hid BrailleDisplayDriver is chosen before any other match. Thus if a HID device reports it is a HID braille display, the hid BrailleDisplayDriver will automatically be used.

commit 3c6bac160a9ba6f07ccbba8981ea99d3c7608ac8
Author: Sean Budd <sean@nvaccess.org>
Date:   Fri Jul 23 17:36:07 2021 +1000

    Remove low contrast styling from documentation (#12674)
    
    Summary of the issue:
    Code blocks on pages such as the developer guide are hard to read due to low contrast.
    
    Description of how this pull request fixes the issue:
    Increase the contrast ratio of code blocks from 2.09 to 15.05
    A ratio of at least 7 considerably improves accessibility

commit e0a50899d827a1a76656f4ebc3c96fa36c014a7a
Merge: 30c826117 ed644b692
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 23 00:01:12 2021 +0000

    Update translations.
    
    From translation svn revision: 63161

commit ed644b6925d506cb8993c431957568e2380852a3
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 23 00:00:34 2021 +0000

    L10n updates for: fr
    From translation svn revision: 63161
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqué-Cazenave <corentin@progaccess.net>
    Sylvie Duchateau <sylvieduchateau@gmail.com>
    Sof <hellosof@gmail.com>
    
    Stats:
    27      28      source/locale/fr/symbols.dic
     1 file changed, 27 insertions(+), 28 deletions(-)

commit f9fc324c37092abc4ce13703206b38d5d4305fe8
Author: jakubl7545 <48619364+jakubl7545@users.noreply.github.com>
Date:   Thu Jul 22 05:00:14 2021 +0100

    Add toggleReportCellBorders script to input gestures. (#10408)
    
    Currently script for reporting cell borders is not present in input gestures dialog so it is not possible to add a gesture for that.
    This adds toggleReportCellBorders script to globalCommands.
    
    Co-authored-by: Cyrille Bougot <cyrille.bougot2@laposte.net>
    Co-authored-by: buddsean <sean@nvaccess.org>

commit f6984e3e68f59bee86fcd64d7d1dc99ed83b7339
Author: Bill Dengler <codeofdusk@gmail.com>
Date:   Wed Jul 21 23:54:32 2021 -0400

    Use UIATextInfo in FORMATTED consoles. (#12669)
    
    Summary of the issue:
    Before recent upstream work, NVDA needed a custom TextInfo implementation including workarounds for the console. Notably, it was necessary to restrict the text range to visible content, as the console contained thousands of empty lines which both slowed down diffing and disorientated the user. This is no longer necessary as the console's UIA text range now ends at the last actual character (i.e. no more extraneous empty lines).
    
    This bounding to the visible ranges can sometimes lead to choppy speech output, as full screen refreshes (such as in pagers or full-screen editors) cause text discontinuity, resulting in the diff algorithms losing context about which parts of the text are new. It breaks precedent from the rest of NVDA: in Word or web documents, for instance, the review cursor is not bounded to the visible text and the entire document can be freely explored. Despite the documentation of the scrolling commands in the user guide, the need to scroll consoles in particular, in strict contrast to the behaviour in other applications, has caused user confusion (microsoft/terminal#6453 and private correspondance with various users) and the commands don't work consistently in any case. In microsoft/terminal#6453 (comment) it was pointed out that consoles can have text that appears below the visible content, which is currently inaccessible to NVDA due to bounding.
    
    Description of how this pull request fixes the issue:
    Switches consoles where apiLevel is FORMATTED to use the default TextInfo implementation (i.e. no customization at the UIA text range level). Also use UIATextInfo in Windows Terminal as it never contained thousands of empty lines, making the overrides unnecessary there.

commit 540795475c91f4fbe0d00d295d270ce8b43eb70f
Author: Bill Dengler <codeofdusk@gmail.com>
Date:   Wed Jul 21 22:31:01 2021 -0400

    UI Automation in Windows Console: add "API levels" as a better isImprovedTextRangeAvailable (#12660)
    
    Summary of the issue:
    The Windows 11 inbox console will ship with most, but not all, fixes required to make UIA by default a good experience. However, a new conhost version will be delivered "out-of-box" including additional functionality and bug fixes. Therefore, isImprovedTextRangeAvailable (a boolean value) is now insufficient to express the range of possible UIA console versions now in the wild.
    
    Description of how this pull request fixes the issue:
    Adds an enumeration, WinConsoleAPILevel, with comments describing the meaning of each member.
    Refactors NVDA's current code to use the new enum without changing current functionality. Functionality changes to follow in subsequent PRs.
    Expose apiLevel in dev info to ease debugging.
    Deprecate isImprovedTextRangeAvailable, but refactor it for now to use apiLevel.
    
    Co-authored-by: Leonard de Ruijter <leonardder@users.noreply.github.com>
    Co-authored-by: buddsean <sean@nvaccess.org>

commit 23d041707a4ecff1eb071ba3cc74b79705a9427e
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Thu Jul 22 03:50:54 2021 +0200

    Fix some undefined names in NVDAObjects (#12668)
    
    * Add missing import of `sys` to NVDAObjects\IAccessible\__init__
    * Add missing import of browseMode to _msOfifceChart.py and convert affected script to script decorator
    * Fix wrong call to `super`  by using Python 3 `super` .

commit 38a2efd1e1bff7db4471cb7afa03ab1590b7adef
Author: Sean Budd <sean@nvaccess.org>
Date:   Wed Jul 21 18:09:34 2021 +1000

    Update eSpeak to 74068b91bcd578 (#12665)
    
    update espeak to 74068b91bcd578bd7030a7a6cde2085114b79b44

commit 61dbe727d4cbac349f893fa6391951d4b6075da8
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Wed Jul 21 14:55:28 2021 +0800

    update changes file for PR #12610 (#12664)

commit 723fe074a9a22c8ec1edde560c049f321ff4b3a3
Author: mltony <34804124+mltony@users.noreply.github.com>
Date:   Tue Jul 20 23:10:16 2021 -0700

    More robust keyboard modifier tracking (PR #12610)
    
    Fixes: #12609
    
    # Summary of the issue:
    NVDA wasn't correctly tracking the state of keyboard modifiers (such as Control, or Insert) in some cases,
    e.g. when watchdog is recovering.
    
    In winInputHook.py def keyboardHook():
    
        if watchdog.isAttemptingRecovery or code!=HC_ACTION:
        return windll.user32.CallNextHookEx(0,code,wParam,lParam)
    
    When watchdog.isAttemptingRecovery is True, this function returned early and didn't process any keyboard
    events, including events related to keyboard modifiers.
    When a pressing a modifier while watchdog is recovering, NVDA didn't process this and became out
    of sync with the keyboard state.
    
    # Description of fix:
    Move the check for isAttemptingRecovery into internal_keyDownEvent after modifier tracking has occurred but before the gesture is executed.
    
    Co-authored-by: Reef Turner <reef@nvaccess.org>

commit 78bee6ed17503d0c0251cd3131c2ceadc9b04850
Author: Sean Budd <sean@nvaccess.org>
Date:   Wed Jul 21 15:33:34 2021 +1000

    Start dev cycle for 2021.3 (#12662)

commit 30c8261179275a0daba2f90d274dc1d2d2105496
Merge: 7ba93442a c79394dc1
Author: Sean Budd <sean@nvaccess.org>
Date:   Wed Jul 21 15:33:07 2021 +1000

    Merge pull request #12663 from nvaccess/branchFor2021.2
    
    Merge master to beta for 2021.2

commit c79394dc17e64d95b7ff6b254b6c5d401daec892
Merge: 358a7f31c 7ba93442a
Author: Sean Budd <sean@nvaccess.org>
Date:   Wed Jul 21 14:31:58 2021 +1000

    Merge branch 'beta' into branchFor2021.2

commit 358a7f31c63df5d647a9ff7d2ce739f182a82db3
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Wed Jul 21 12:00:22 2021 +0800

    Ignore nvdaHelper docs (PR #12657)
    
    When building doxygen docs for nvdaHelper, they should be ignored by git.

commit b7dd32fc0456827e66d2be28b9396b759f079e27
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Sun Jul 18 17:35:38 2021 -0700

    Recognize more Windows 21H2 builds (#12655)
    
    * Recognize more Windows 21H2 builds. Re #12654
    
    Recognize the following Windows 10 21H2 builds:
    * 19044: Windows 10 21H2 (client)
    * 20348: Windows Server 2022
    
    * AppX: last tested -> 10.0.19044.0

commit 7ba93442a35da0cb52d49b86b4985ff0aa94db4d
Merge: b423a8550 c7760dadb
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 16 00:01:13 2021 +0000

    Update translations.
    
    From translation svn revision: 62984

commit c7760dadbffe05df507e0478d574a2f120c83d88
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 16 00:01:07 2021 +0000

    L10n updates for: tr
    From translation svn revision: 62984
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    2       2       source/locale/tr/LC_MESSAGES/nvda.po
    0       3       source/locale/tr/gestures.ini
     2 files changed, 2 insertions(+), 5 deletions(-)

commit 864bf0b8af1c4ac97b13fdcef0641f8ce261fdb2
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 16 00:01:05 2021 +0000

    L10n updates for: ta
    From translation svn revision: 62984
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    9       9       source/locale/ta/LC_MESSAGES/nvda.po
     1 file changed, 9 insertions(+), 9 deletions(-)

commit 9a19a6ec697a04cb81df893acb871adab4819802
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 16 00:00:55 2021 +0000

    L10n updates for: pt_BR
    From translation svn revision: 62984
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    4       4       user_docs/pt_BR/changes.t2t
    2       2       user_docs/pt_BR/userGuide.t2t
     2 files changed, 6 insertions(+), 6 deletions(-)

commit 3f6cecdd443052831e2518995cb7f81622c11bf4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 16 00:00:32 2021 +0000

    L10n updates for: fi
    From translation svn revision: 62984
    
    Authors:
    Jani Kinnunen <janikinnunen340@gmail.com>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    3       3       source/locale/fi/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 3 deletions(-)

commit b5175b06668072f897c59575f68135a435faaf7e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 16 00:00:22 2021 +0000

    L10n updates for: da
    From translation svn revision: 62984
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    3       3       user_docs/da/userGuide.t2t
     1 file changed, 3 insertions(+), 3 deletions(-)

commit 0dbab4d16cd82bae8b8e919c5c02edebcf1964e9
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Jul 14 15:58:50 2021 +1000

    Move tech design overview from wiki into repo (#12601)
    
    * copy DesignOverview wiki article to devDocs/technicalDesignOverview.md
    * break lines at sentence boundaries.
    * fix typos / spelling.
    * update section on core main loop mentioning the core sleeps when there is no work.
    * NVDA Objects section: add a paragraph about  relational properties that allow navigating the entire Operating System as a tree.
    * textInfos section: note what abilities a TextInfo object has, and also how to fetch them from an NVDA object.
    * provide more detailed information about browse mode documents, especially in relation to tree interceptors and virtual buffers, and provide the specific order of how events and scripts are handled by global plugins, app modules, tree interceptors etc.
    
    Co-authored-by: Sean Budd <sean@nvaccess.org>

commit 9409b9ddb14a06108c6e26c1d6e71643f15da581
Author: Cyrille Bougot <cyrille.bougot2@laposte.net>
Date:   Mon Jul 12 09:04:56 2021 +0200

    Vocalize paragraph indent and hanging indent shortcuts in MS Word (#10415)
    
    In MS Word, the result of indent and hanging indent shortcuts is not announced by NVDA. It may be useful for the user to know the distance from the left edge of the page, as done when pressing Tab or Shift+Tab.
    
    Description of how this pull request fixes the issue:
    When the following shortcuts are executed, the distance from the left edge of the page of the paragraph is reported:
    
    Ctrl+M: indent
    Ctrl+Shift+M: outdent
    Ctrl+T: hanging indent
    Ctrl+Shift+T: hanging outdent
    The reported distance is the one from left edge of page to the beginning of all line of the paragraph except the first that may differ.
    
    The listed shortcuts are the ones of English version of MS Word. They may differ for other languages. In this case, translators will need to update gesture.ini file accordingly.
    
    Co-authored-by: buddsean <sean@nvaccess.org>

commit fcac316ed8ce1c9881cd59b457f330850108d848
Author: Sean Budd <sean@nvaccess.org>
Date:   Mon Jul 12 15:26:40 2021 +1000

    Revert "Merge pull request #12615 from nvaccess/appveyor-tagged" (#12638)
    
    This reverts commit 9e09abf77429471eba53fa03132f81b56dede735, reversing
    changes made to a47af19440fd2516e815b42d696324857ca9b477.
    
    Summary of the issue:
    Splitting the AppVeyor projects resulted in the build number being reset, and being tracked independently across projects.

commit 8bbbe723eac7c92f252064f9e8fdb6ebca48a6e1
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Mon Jul 12 11:52:32 2021 +0800

    Fix Enum Cyclic Ref (PR #12617)
    
    Unblocks PR #12500
    
    # Summary of the issue:
    When creating DescriptionFor enum values, a "ValueError" can be raised.
    There is a bug in the Python standard library for enum, causing a cyclic reference.
    The exception is referenced by the frame.
    The frame is referenced by the traceback.
    The traceback is referenced by the exception.
    This is detected by NVDA as an unreachable object, logging an error.
    
    # Description of how this pull request fixes the issue:
    This patches the enum.Enum.__new__ method to no longer reference the exception from the frame.

commit 7b331b0e8cc01f79a55961e060120af3b0a17da4
Author: Sean Budd <sean@nvaccess.org>
Date:   Mon Jul 12 12:59:04 2021 +1000

    Set the config using the integer value of a SymbolLevel enum member (#12636)
    
    SYMLVL_* constants were moved to an IntEnum. When updating the config for symbolLevel, the type being set is Enum, as opposed to int. Additionally, the enum does not conform to our naming standards https://github.com/nvaccess/nvda/blob/master/devDocs/codingStandards.md#identifier-names.
    
    Description of how this pull request fixes the issue:
    Sets the config using the value of the enum member. Renames SYMLVL to SymbolLevel.

commit 4087ad9604381501fdb65731a74356e0672eb72d
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Sun Jul 11 18:15:01 2021 -0700

    appModules/SearchUI: add 'searchhost' as an alias of Search UI app module in Windows 11 (#12628)
    
    * SearchUI: add 'searchhost' as an alias of Search UI app module in Windows 11.
    
    Windows Search executable was renamed to searchhost.exe in Windows 11, affecting suggestion count announcement. Therefore add an alias app module to support Windows 11.
    
    * SearchHost: apply newer import guidelines. Re #12628.
    
    Note from Sean Budd (NV Access): use __all__ to specify module attributes and to avoid Flake8 NOQA comment in the process.
    
    * update changes
    
    Co-authored-by: buddsean <sean@nvaccess.org>

commit 257905cce465ba580f8420adbafcf5668d13cf32
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Jul 12 10:59:33 2021 +1000

    Protect the ssh key with stronger encryption, similar to the authenticode certificate. (#12635)
    
    Appveyor contains an ssh private key that allows it to log into an NV Access server to deploy snapshots / releases. The current ssh key in the repository, although encrypted with an appveyor secret variable, was not as strong as it could have been, and during decryption, in the appveyor build, openssl would warn about this.
    
    This pr replaces the ssh key with a newly generated one, encrypted using a new appveyor secret variable, and the encryption of the key is also significantly stronger
    as it uses SHA256 instead of md5, a salt is now used, and a newer secret key derivation algorithm is now used, as recommended by openssl.
    This ssh key is now encrypted just as strongly as the authenticode certificate also in this repository.

commit b8b88b0d48325d89a1a227ca7ad006b57ba339ee
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Fri Jul 9 09:16:28 2021 +0200

    Fix invisible driver window issues in Handy Tech driver (#12618)
    
    When vendor-specific applications need direct access to a Handy Tech Braille display, they indicate this by sending a window message to a driver-created invisible window. #9691 introduced this window for the handy tech driver, but it had some serious issues when doing the following
    
    ensures that only one invisible driver window can be active by saving it on the class instead on instances of the class.
    
    Co-authored-by: buddsean <sean@nvaccess.org>

commit 16cd88897bf0fd4033bb70403ac4cbbb56a03bd3
Author: Sean Budd <sean@nvaccess.org>
Date:   Fri Jul 9 16:31:42 2021 +1000

    Check system tests for crashes, add test for auxiliary thread crashes (#12619)
    
    System tests may pass even if a crash occurs during them.
    Similar to #12604, it is important to ensure NVDA can restart when an auxiliary thread crashes.
    
    This adds a check for a crash dump file when we save the NVDA log, tests will fail if a crash has occurred during the test. Crash dump files will be saved like log files.
    
    Adds system tests to simulate the UIAHandler and braille thread crashing.

commit 9e09abf77429471eba53fa03132f81b56dede735
Merge: a47af1944 b09e01588
Author: Sean Budd <sean@nvaccess.org>
Date:   Fri Jul 9 16:29:10 2021 +1000

    Merge pull request #12615 from nvaccess/appveyor-tagged
    
    Separate appveyor projects

commit b09e01588dd495108fdca3bc21442bddc066aa9d
Author: buddsean <sean@nvaccess.org>
Date:   Fri Jul 2 09:04:16 2021 +1000

    Create separate AppVeyor projects (#12615)
    
    If many PR/try builds are queued, it can take a long time to build a release. Building tagged releases is an involved process for an NV Access developer and as such, should be prioritised.
    This commit creates two separate new projects for tagged releases and other builds. This allows for priorities to be set in the online UI.

commit ee63257371ff9153f59dcd5384d8284e9a38d4ff
Author: buddsean <sean@nvaccess.org>
Date:   Mon Jul 5 12:56:23 2021 +1000

    copy and move appveyor.yml to 2 different yml files (#12615)

commit a47af19440fd2516e815b42d696324857ca9b477
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Thu Jul 8 17:51:32 2021 -0700

    Recognize build 22000 as Windows 11 (#12627)
    
    * winVersion: recognize build 22000 as Windows 11 (21H2). Re #12626.
    
    Despite the name, Windows 11 is powered by Windows 10 technologies internally (therefore major.minor is 10.0). The Windows 11 branding first appeared in build 22000 for Windows Insiders, therefore recognize 'Windows 10' build 22000 as Windows 11 (both the constant and release name were added).
    
    * winVersion: set release name to 'Windows 11' if Windows 11 is indeed in use. Re #12626.
    
    Construct a minimum winVersion.WinVersion class (major, minor, build) and compare it against Windows 11 information. If running Windows 11 (build 22000) or later, set release name to 'Windows 11', otherwise 'Windows 10'.
    
    Co-authored-by: buddsean <sean@nvaccess.org>

commit b423a855040121563eca74a9a6ceb8f0a96cd52c
Merge: 3e2e8b960 069c447f1
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 9 00:01:11 2021 +0000

    Update translations.
    
    From translation svn revision: 62826

commit 069c447f1e0f92b302a3803b0973677246b27517
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 9 00:01:05 2021 +0000

    L10n updates for: tr
    From translation svn revision: 62826
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    14      14      source/locale/tr/LC_MESSAGES/nvda.po
    0       1       source/locale/tr/gestures.ini
    10      10      user_docs/tr/userGuide.t2t
     3 files changed, 24 insertions(+), 25 deletions(-)

commit 0e43f105cdabd427ba5e503b620dafb8a7431730
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 9 00:00:56 2021 +0000

    L10n updates for: pt_PT
    From translation svn revision: 62826
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    1       1       source/locale/pt_PT/symbols.dic
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 17833be4775c9851d59ac9fd39e2a8300ed62916
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 9 00:00:54 2021 +0000

    L10n updates for: pt_BR
    From translation svn revision: 62826
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    358     358     source/locale/pt_BR/symbols.dic
     1 file changed, 358 insertions(+), 358 deletions(-)

commit dedc9a1e7adceafc8679315d332ccb8fd5cdae45
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 9 00:00:50 2021 +0000

    L10n updates for: nl
    From translation svn revision: 62826
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    3       3       user_docs/nl/changes.t2t
     1 file changed, 3 insertions(+), 3 deletions(-)

commit d304ed0ca15d539bff11312011aa89b3404b6081
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Wed Jul 7 23:18:31 2021 -0700

    Announce suggestion count in Explorer search control: Windows 10 Version 1909 and later (PR #10349)
    
    Fixes #10341
    
    # Summary of the issue:
    In Windows 10 Version 1909, File Explorer gains ability to search OneDrive content via Windows Search, with a live region used to provide suggestion count announcement.
    
    # Description of changes:
    In Windows 10 Version 1909 (build 18363) and later, File Explorer gains ability to search OneDrive content. This is powered by an embedded Windows Search feature (SearchUI.exe) with a live region announcing suggestion count. This live region has no label, but the child object does, thus coerce the name of this object to be the name of its child, which then allows live region change event to work.

commit 87749164fbd43cea346584eda6e4f728a62fd8eb
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Wed Jul 7 21:52:13 2021 -0700

    Use Windows Registry instead of a static release names to builds (PR #12544)
    
    Closes #12509
    
    # Summary of the issue:
    Currently a static Windows 10 release names to builds map is used to record Windows 10 builds to feature updates (releases). Until 21H1 there was a one-to-one correspondence between releases and builds, but it appears Version 21H2 will be represented by multiple builds:
    
    - Windows 10: 19044
    - Server 2022: 20348
    - Windows 11: build 22000
    
    Therefore this breaks the existing static map of WIN10_RELEASE_NAME_TO_BUILDS.
    "21H2" can not be the key for 19044, 20348, and 22000.
    
    # Description of how this pull request fixes the issue:
    - Replace WIN10_RELEASE_NAME_TO_BUILDS with the inverse mapping (_BUILDS_TO_RELEASE_NAMES), which is how it is used anyway.
    - Allow class WinVersion to be constructed with an optional releaseName, if it is missing look up the name in static map.
    - For the "currently running" version of Windows, try to look up the name via the registry if possible. Fall back to the static map.
    
    Note:
    - Since Version 1511, Windows Registry holds release name which corresponds to builds (e.g. 1511 = 10586, 20H2 = 19042), housed inside a "Release Id" key.
    - Starting with Version 20H2, a separate "DisplayVersion" key is used to announce public release name.
    - In Windows Insider Preview builds, dev channel has display version of "Dev", making it even easier to determine what kind of build a user is running.
    - This tradition continues with Windows 11 and Server 2022, with Registry recording "21H2", which makes sense given their projected release period.

commit cbf7407173e2eb906b136639fb5b28e9f67c259c
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Wed Jul 7 08:10:07 2021 +0200

    Speak all symbols when moving by words (#11779) (#11856)
    
    Navigation by word is inconsistent among different editors.
    This might lead to different symbol announcements, or opening and closing symbols not announced consistently.
    
    ### Description of how this pull request fixes the issue:
    
    - Add a new "symbolLevelWord" key in the "speech" config category, setting the symbol level to use when reviewing by word.
    Default: All
    - Add a new constant in `characterProcessing`: `SYMLVL_UNCHANGED` = -1
    - The Settings UI and an unassigned global command allow to toggle between "All" and "Unchanged"
    
    Co-authored-by: buddsean <sean@nvaccess.org>

commit 14fb21699dc6a3dac3d70eabef34d9f184b22ec0
Author: Sean Budd <sean@nvaccess.org>
Date:   Tue Jul 6 12:12:19 2021 +1000

    Add a system test for NVDA crashing from the main thread (#12604)
    
    #12557 highlighted an issue with restarting after crashing. This suggests a need for system tests to prevent this happening in the future.
    
    Description of how this pull request fixes the issue:
    Creates a system test which triggers a crash from the main thread, and checks NVDA starts again after.

commit 3d04197b8d52d66714cdf9702a14b3bf767432c9
Author: Sean Budd <sean@nvaccess.org>
Date:   Tue Jul 6 11:51:22 2021 +1000

    Exit via WM_QUIT properly (#12616)
    
    starting a new instance kills the existing process via WM_QUIT. This exits NVDA by exiting the main loop without exiting NVDA properly. We currently add an event to shutdown properly to the event queue, but the shutdown continues without waiting for that to complete.
    
    Description of how this pull request fixes the issue:
    This pumps the event queue before continuing if exiting via WM_QUIT to ensure the shutdown happens properly.

commit cc0d50691c4d42265827a06ad39e1e0fb0b1c3a1
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Mon Jul 5 18:19:02 2021 -0700

    Emoji panel and clipboard history: locate actual items when traversing the elements for element selected event (#11485)
    
    In Version 1903 and later, on some systems, when emoji panel and clipboard history opens, wrong items are announced.
    
    Description of how this pull request fixes the issue:
    Refined element traversal strategies when emoji panel and clipboard history opens. Also performed lints and changed cachedAutomationID to UIAAutomationId, along with using dedicated input panel and input panel Automation Id variables to react to window open event.
    
    * Modern keyboard: update copyright header (year and removed intro text for consistency with other files)
    
    * Modern keyboard/window open event: use a dedicated input panel object and input panel Automation Id to react to various parts of modern input facility.
    
    A dedicated input panel element will be used as a starting point for traversing modern keyboard interface. Along with this, rename childAutomationID to input panel Automation Id to better communicate the fact that window open event will be using Automation Id to detect different modern input features and react accordingly.
    
    * Modern keyboard: refine element traversal method for emoji panel and clipboard history to account for changes in Version 1903 on some systems. Re #10377.
    
    Refined element traversal in window open event:
    * Emoji panel: in Version 1903 (and on some systems), something other than emoji items are selected, particularly when People emoji group opens and skin tone modifier is somehow selected.
    * Clipboard history: if clipboard is empty, clipboard status text isn't announced due to moving to a different element.
    
    * Modern keyboard/emoji panel and clipboard history: locate items themselves rather than parent lists. Re #10377.
    
    Rather than calling element selected event on emojis list or clipboard history list, descend one more level (or in case of People emoji group, actual emojis list) so the event can deal with items themselves. This also means element selected event won't have to worry about traversing the elements tree one more time.
    
    * Modern keyboard: convert element selected event call to eventHandler.executeEvent.
    
    Rather than executing UIA element selected event directly, use event handler's execute event function to schedule this event. This allows event handling features from NVDA to respond to this event.
    
    * Modern keyboard: separate classic emoji panel Automation Id's into a separate list, along with using isWin10 function.
    
    Rather than using a build number, use winVersion.isWin10 function to check Windows 10 releases. Also, separate 1709 and 1803 emoji panel Automation Id's to a separate list.
    
    * Modern keyboard: Flake8 lint
    
    * Modern keyboard: remove duplicate event handler import. Re #10377
    
    * Modern keyboard: rename inputPanel to firstChild for consistency with UIA IME candidate panel check. Re #10377.
    
    IME candidate panel check already assigns a dedicated variable to obj.firstChild, making input panel variable assignment redundant. Also, rename input panel Automation Id back to childAutomationId.
    
    * Modern keyboard: address review comments on multiple statements and comment clarification. Re #10377.
    
    Reviewed by Leonard de Ruijter: split lines with multiple statements, clarify that 'some systems' refer to non-English builds of Version 1903 (May 2019 Update) and later.
    
    * Modern keyboard: check if emoji panel list/grouping/list items are present. Re #10377.
    
    Suggested by Leonard de Ruijter: when assigning emoji item, check each emoji panel level (emoji list header, grouping, emoji items/skin tone modifier list) to make sure child objects are present (not None). In case skin tone modifiers list is selected, before moving to the next object (emoji item), make sure it is even present. This avoids a try/except statement and is used to force NVDA to announce something rather than staying silent of attribute error is raised in the future due to modern keyboard UI changes.
    
    * Modern keyboard: eventHandler.executeEvent -> queueEvent for consistency with UIA IME candidates window.
    
    * Modern keyboard/emoji panel in 1709 and 1803: check Automation Id before build range for consistency with the rest of UIA window open event.
    
    * emoji panel and clipboard system tests
    
    * fix teardown
    
    * exclude panel search from appveyor build
    
    * fix behaviour to be more expected
    
    * exclude emoji test from build
    
    * more explicit tags for exclusion
    
    * use run dialog instead of search bar
    
    Co-authored-by: buddsean <sean@nvaccess.org>

commit a8477942b936462db21606af143e42dc77481d15
Author: Oymate <50857856+Oymate@users.noreply.github.com>
Date:   Tue Jul 6 06:46:40 2021 +0600

    Update Bengali characterDescriptions.dic (#12502)
    
    Entries were missing
    
    Description of how this pull request fixes the issue:
    These entries fulfills the alphabet word list.
    
    Co-authored-by: buddsean <sean@nvaccess.org>

commit 3e2e8b9608c81221c60111ec2889a571c0f0797c
Merge: e7a64b34a 12ed92e18
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Jul 5 05:13:51 2021 +0000

    Update translations.
    
    From translation svn revision: 62717

commit 12ed92e18e2cf17229627f2ddb426afb7a0ed4ea
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Jul 5 05:13:49 2021 +0000

    L10n updates for: zh_CN
    From translation svn revision: 62717
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen_0528@outlook.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    1872265132@qq.com
    
    Stats:
    11      11      source/locale/zh_CN/LC_MESSAGES/nvda.po
    2       2       source/locale/zh_CN/symbols.dic
    4       2       user_docs/zh_CN/changes.t2t
    1       1       user_docs/zh_CN/userGuide.t2t
     4 files changed, 18 insertions(+), 16 deletions(-)

commit 4dc757c58ef16ba8f177dca09d27668b3d054d55
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Jul 5 05:13:47 2021 +0000

    L10n updates for: vi
    From translation svn revision: 62717
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>
    Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    3       3       user_docs/vi/changes.t2t
     1 file changed, 3 insertions(+), 3 deletions(-)

commit 599dd2f9e41006813c7a5663987357783b6f1255
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Jul 5 05:13:40 2021 +0000

    L10n updates for: sk
    From translation svn revision: 62717
    
    Authors:
    Ondrej Rosik <ondrej.rosik@gmail.com>
    Peter Vagner <peter.v@datagate.sk>
    Jan Kulik <jan.kulik.szsle@outlook.sk>
    
    Stats:
    1       1       user_docs/sk/userGuide.t2t
     1 file changed, 1 insertion(+), 1 deletion(-)

commit cdd2c531994c621d01ba5fd8dbc49332d094338a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Jul 5 05:13:34 2021 +0000

    L10n updates for: pt_BR
    From translation svn revision: 62717
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    10      10      source/locale/pt_BR/symbols.dic
     1 file changed, 10 insertions(+), 10 deletions(-)

commit fed2c638774884874c7205581a88b851bbde5f3b
Author: Sean Budd <sean@nvaccess.org>
Date:   Mon Jul 5 11:59:44 2021 +1000

    Don't exit build on SSH decryption warning (#12614)
    
    Restores the exitcode check when preparing to exit early

commit 1f7047b6639a8342b4f3e237cd2840afa607c648
Author: Sean Budd <sean@nvaccess.org>
Date:   Mon Jul 5 11:11:49 2021 +1000

    use copy-item to move ssh files (#12613)
    
    the ssh connection for deploying alpha failed.
    
    Description of how this pull request fixes the issue:
    Uses Copy-Item instead of Get-Content

commit c29b29140e972b390692bc7d892bb6a42d6450a2
Author: Sean Budd <sean@nvaccess.org>
Date:   Fri Jul 2 13:56:17 2021 +1000

    Fix apppveyor directory for ssh cert  (#12603)
    
    Updates the source directory when copying the ssh cert.

commit a0dcc6a04393b1330534f65de6a794254f3bb220
Author: Sean Budd <sean@nvaccess.org>
Date:   Fri Jul 2 13:23:01 2021 +1000

    Improve error handling for appveyor build scripts (#12602)
    
    Updates pip (a pip warning is causing deployScript to fail). Adds a try/catch around where we expected an error that we didn't want to exit for. Let the existing exit procedure for installNVDA.ps1 handle itself.

commit 4aeaa1b7d1e860608e5a9227f7a8dd9994009a32
Merge: 4e3f4fe2c 0ce41e6a0
Author: Sean Budd <sean@nvaccess.org>
Date:   Fri Jul 2 10:42:51 2021 +1000

    Merge pull request #12600 from nvaccess/fix-alpha-builds
    
    allow warnings or errors when decrypting on appveyor

commit 0ce41e6a03c8381bd74ccfa499f0d16794b1d60c
Author: buddsean <sean@nvaccess.org>
Date:   Fri Jul 2 10:09:12 2021 +1000

    allow warnings or errors for decryption

commit e7a64b34a4a2a0f43c18c9b10f0ec8ee81c3bf1d
Merge: 3dad63646 37313d109
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 2 00:01:21 2021 +0000

    Update translations.
    
    From translation svn revision: 62646

commit 37313d1093e4e504c74aebc79f2c4df56462eb3b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 2 00:01:20 2021 +0000

    L10n updates for: zh_TW
    From translation svn revision: 62646
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    haach111000@gmail.com
    
    Stats:
    16      10      source/locale/zh_TW/LC_MESSAGES/nvda.po
    220     123     source/locale/zh_TW/symbols.dic
     2 files changed, 236 insertions(+), 133 deletions(-)

commit 7ce84837f8deac475ab15261f9fcb97910a16969
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 2 00:01:19 2021 +0000

    L10n updates for: zh_HK
    From translation svn revision: 62646
    
    Authors:
    Eric Yip <ericycy@gmail.com>
    
    Stats:
    752     467     source/locale/zh_HK/LC_MESSAGES/nvda.po
     1 file changed, 752 insertions(+), 467 deletions(-)

commit f8bb2cf3bc2cdd3105f6c278840766e767c4af38
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 2 00:01:18 2021 +0000

    L10n updates for: zh_CN
    From translation svn revision: 62646
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen_0528@outlook.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    1872265132@qq.com
    
    Stats:
    67      66      source/locale/zh_CN/LC_MESSAGES/nvda.po
    187     101     source/locale/zh_CN/symbols.dic
    31      19      user_docs/zh_CN/changes.t2t
    100     69      user_docs/zh_CN/userGuide.t2t
     4 files changed, 385 insertions(+), 255 deletions(-)

commit 78020f43e673448d2aec3bebefa622616025d22f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 2 00:01:16 2021 +0000

    L10n updates for: vi
    From translation svn revision: 62646
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>
    Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    93      92      source/locale/vi/symbols.dic
     1 file changed, 93 insertions(+), 92 deletions(-)

commit e4386457f3aed7bfeb261daccafe2e0634c5bd35
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 2 00:01:14 2021 +0000

    L10n updates for: tr
    From translation svn revision: 62646
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    30      26      source/locale/tr/LC_MESSAGES/nvda.po
    26      26      user_docs/tr/userGuide.t2t
     2 files changed, 56 insertions(+), 52 deletions(-)

commit 4e85c0f36a1d99a3b83246496c0670291635dd12
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 2 00:01:12 2021 +0000

    L10n updates for: ta
    From translation svn revision: 62646
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    56      56      source/locale/ta/LC_MESSAGES/nvda.po
     1 file changed, 56 insertions(+), 56 deletions(-)

commit de114fc10ced15cfe167f7c2224b750214a1628d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 2 00:01:10 2021 +0000

    L10n updates for: sr
    From translation svn revision: 62646
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    6       2       source/locale/sr/LC_MESSAGES/nvda.po
    145     40      source/locale/sr/symbols.dic
    17      13      user_docs/sr/changes.t2t
     3 files changed, 168 insertions(+), 55 deletions(-)

commit 40550471d1ff0d3cc17d3b0a37257a13a044e336
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 2 00:01:08 2021 +0000

    L10n updates for: sk
    From translation svn revision: 62646
    
    Authors:
    Ondrej Rosik <ondrej.rosik@gmail.com>
    Peter Vagner <peter.v@datagate.sk>
    Jan Kulik <jan.kulik.szsle@outlook.sk>
    
    Stats:
    19      16      source/locale/sk/LC_MESSAGES/nvda.po
    69      0       user_docs/sk/changes.t2t
    6       6       user_docs/sk/userGuide.t2t
     3 files changed, 94 insertions(+), 22 deletions(-)

commit 6240d4f3040e397372fe08374919fefab47dee72
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 2 00:01:06 2021 +0000

    L10n updates for: ru
    From translation svn revision: 62646
    
    Authors:
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    
    Stats:
    36      59      source/locale/ru/LC_MESSAGES/nvda.po
    144     9       user_docs/ru/changes.t2t
     2 files changed, 180 insertions(+), 68 deletions(-)

commit d9a050e8b56c3b02cab445da40ae66d37a1980d3
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 2 00:01:02 2021 +0000

    L10n updates for: pt_PT
    From translation svn revision: 62646
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    6       2       source/locale/pt_PT/LC_MESSAGES/nvda.po
    334     229     source/locale/pt_PT/symbols.dic
    3       1       user_docs/pt_PT/changes.t2t
     3 files changed, 343 insertions(+), 232 deletions(-)

commit 292ed9c33c1f2856b1f8c4a4dc594be391c4f8c1
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 2 00:00:59 2021 +0000

    L10n updates for: pl
    From translation svn revision: 62646
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Hubert Meyer <hubmeyer1989@gmail.com>
    Arkadiusz Swietnicki <nuno69a@gmail.com>
    
    Stats:
    88      88      source/locale/pl/symbols.dic
    50      50      user_docs/pl/changes.t2t
     2 files changed, 138 insertions(+), 138 deletions(-)

commit 9da4409445a895673647b2dcca6d6b0e75ae5d8f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 2 00:00:57 2021 +0000

    L10n updates for: nl
    From translation svn revision: 62646
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    64      82      source/locale/nl/LC_MESSAGES/nvda.po
    16      12      user_docs/nl/changes.t2t
     2 files changed, 80 insertions(+), 94 deletions(-)

commit 2ba0313e5033cd6ec8c9e29a6870ebe6520f4650
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 2 00:00:52 2021 +0000

    L10n updates for: mk
    From translation svn revision: 62646
    
    Authors:
    zvonimir stanecic <9a5dsz@gozaltech.org>
    Ertay Shashko <ertay@outlook.com>
    Aleksandar <glupav@gmail.com>
    Kiko Lazarev <kristijan.lazarev@gmail.com>
    
    Stats:
    797     502     source/locale/mk/LC_MESSAGES/nvda.po
     1 file changed, 797 insertions(+), 502 deletions(-)

commit ac43cb9a37286e0e9d06f00922f48384e15ecc74
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 2 00:00:50 2021 +0000

    L10n updates for: ko
    From translation svn revision: 62646
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    1       0       user_docs/ko/changes.t2t
     1 file changed, 1 insertion(+)

commit b4c1ebf8da3debf8991de5364125192908e7d74d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 2 00:00:40 2021 +0000

    L10n updates for: gl
    From translation svn revision: 62646
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    Javier Curras <javier.curras@nvda.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    5       5       source/locale/gl/LC_MESSAGES/nvda.po
     1 file changed, 5 insertions(+), 5 deletions(-)

commit 1f42b665dbb1bf092eb73837015927514ab22ddf
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 2 00:00:38 2021 +0000

    L10n updates for: ga
    From translation svn revision: 62646
    
    Authors:
    Cearbhall OMeadhra <cearbhall.omeadhra@blbc.ie>
    Ronan McGuirk <ronan.p.mcguirk@gmail.com>
    Kevin Scannell <kscanne@gmail.com>
    
    Stats:
    818     501     source/locale/ga/LC_MESSAGES/nvda.po
     1 file changed, 818 insertions(+), 501 deletions(-)

commit 6b1530e0e0a4f5cf66119f7d9a176b93f4752845
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 2 00:00:37 2021 +0000

    L10n updates for: fr
    From translation svn revision: 62646
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqué-Cazenave <corentin@progaccess.net>
    Sylvie Duchateau <sylvieduchateau@gmail.com>
    Sof <hellosof@gmail.com>
    
    Stats:
    1       1       user_docs/fr/changes.t2t
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 0b7f637c56ec8532f5b45fb69cad93a889e9985d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 2 00:00:32 2021 +0000

    L10n updates for: es
    From translation svn revision: 62646
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    6       2       source/locale/es/LC_MESSAGES/nvda.po
     1 file changed, 6 insertions(+), 2 deletions(-)

commit 5815c88e15b22128fb54c76369c1472417e94a0d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 2 00:00:29 2021 +0000

    L10n updates for: el
    From translation svn revision: 62646
    
    Authors:
    Irene Nakas <irnakas@gmail.com>
    Nikos Demetriou <nikosdemetriou@googlemail.com>
    access@e-rhetor.com
    
    Stats:
    64      85      source/locale/el/LC_MESSAGES/nvda.po
     1 file changed, 64 insertions(+), 85 deletions(-)

commit 002168f26b6b34ab5bb3349849b542f3e7141036
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 2 00:00:24 2021 +0000

    L10n updates for: da
    From translation svn revision: 62646
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    1       1       user_docs/da/changes.t2t
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 933c4fc289fc42ba4f1ed0ec9f35c407018b6a1a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 2 00:00:20 2021 +0000

    L10n updates for: bg
    From translation svn revision: 62646
    
    Authors:
    Zahari Yurukov <zahari.yurukov@gmail.com>
    Kostadin Kolev <k_kolev1985@mail.bg>
    
    Stats:
    788     494     source/locale/bg/LC_MESSAGES/nvda.po
    358     253     source/locale/bg/symbols.dic
    158     0       user_docs/bg/changes.t2t
    39      4       user_docs/bg/userGuide.t2t
     4 files changed, 1343 insertions(+), 751 deletions(-)

commit 172a533ad419e9ef15f7dd91716b12b08cb6ce29
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 2 00:00:18 2021 +0000

    L10n updates for: ar
    From translation svn revision: 62646
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Omar Alojaimi <amrahmad1995@gmail.com>
    
    Stats:
    6       6       source/locale/ar/LC_MESSAGES/nvda.po
     1 file changed, 6 insertions(+), 6 deletions(-)

commit e8b2024e5f10883ba068225cac55f5344eee6280
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 2 00:00:17 2021 +0000

    L10n updates for: an
    From translation svn revision: 62646
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    157     0       user_docs/an/changes.t2t
    42      7       user_docs/an/userGuide.t2t
     2 files changed, 199 insertions(+), 7 deletions(-)

commit 4e3f4fe2ccd5a7dc31be18e026d1f6c5fdf3f18d
Merge: 462643bc4 84488fe11
Author: Sean Budd <sean@nvaccess.org>
Date:   Fri Jul 2 08:51:45 2021 +1000

    Merge pull request #12540 from nvaccess/appveyor-split-scripts
    
    Simplify appveyor.yml

commit 84488fe1122a5c396079d25528ccef5d40a3e875
Author: buddsean <sean@nvaccess.org>
Date:   Sat Jun 12 11:54:36 2021 +1000

    Simplify appveyor.yml (#12540)
    
    - lint and reference powershell code moved to files from appveyor.yml
    - setBuildVersion vars after init and repo clone
    - move translation check to tests
    - move some inline cmd into ps scripts
    - remove redundant exit checks
    - add appveyor readme
    - remove markdown from build url message as it is not compatible with slack and appveyor

commit 5f09f33c86197298b521ac5361c018121c7c741f
Author: buddsean <sean@nvaccess.org>
Date:   Wed Jun 23 11:18:01 2021 +1000

    move code from appveyor.yml to powershell scripts (#12540)

commit 462643bc4bec67b83a40b60a6037202bf59d89be
Author: Sean Budd <sean@nvaccess.org>
Date:   Thu Jul 1 16:49:20 2021 +1000

    Fix Seika Notetaker buttons (#12598)
    
    Refactor of the Seika Notetaker braille driver to match the specification provided.

commit 90c08ef17af8e988357395bda2f9737df7104a6c
Merge: c4381630c 8353f5fa2
Author: Sean Budd <sean@nvaccess.org>
Date:   Wed Jun 30 20:08:37 2021 +1000

    Backwards compatible control types refactor (#12510)

commit 8353f5fa21a3b655f709fdfde4671de72d55d5a5
Author: buddsean <sean@nvaccess.org>
Date:   Wed Jun 16 14:16:12 2021 +1000

    Implement Enums for Role and State constants in controlTypes (#12510)
    
    In order to improve the NVDA API and internal typing, Enums are created
    for ROLE_* and STATE_* constants.
    
    Changes:
    - retain backwards compatibility until 2022.1 in controlTypes
    - improve type information for controlTypes processing
    - create a clickableRoles set in role.py for processAndLabelStates
    - update docstrings to reflect new types
    - lint controlTypes due to the mass changes
    - deprecate helper functions for processAndLabelStates
    - standardise members of the State enum from 0X[0-9]+ to 0x[0-9]+
    - implement a displayStringEnumMixin
    - deprecate roleLabels, stateLabels, negativeStateLabels
    - update coding standards for enum usage and deprecations
    
    Co-authored-by: Leonard de Ruijter <leonardder@users.noreply.github.com>

commit 50bfc8b0d1e6aaf9c82f209fb319ea864320989e
Author: buddsean <sean@nvaccess.org>
Date:   Thu Jun 24 21:04:13 2021 +1000

    split controlTypes.py into submodules (#12510)
    
    The file controlTypes.py is already very complex and long, and the
    code can easily be divided into 5 groups.
    With the desire to group constants into Enums and maintain backwards
    compatibility, which adds length and complexity, it is a canidate to be
    split into submodules.
    
    Actions:
    - move controlTypes role data and functions to role.py
    - move controlTypes state data and functions to state.py
    - move isCurrent class to isCurrent.py
    - move outputReason to outputReason.py
    - move processing states functions to processAndLabelStates.py

commit c4381630cd62fa1bb0db82934f2ce55d79f08f74
Author: Sean Budd <sean@nvaccess.org>
Date:   Wed Jun 30 12:51:09 2021 +1000

    Announce article after content (#12582)
    
    When using quick keys to navigate articles on a web page, the article text/label should be announced first and then "article" should be announced after it in order to streamline the browsing process.

commit dbd6c119a4e5db9c66c3a8f15d104b767857f814
Author: Sean Budd <sean@nvaccess.org>
Date:   Tue Jun 29 10:44:38 2021 +1000

    Check that a remote update exists even if a pending update is cached (#12592)
    
    if a pending update is cached, even if there is no remote update, we attempt to compare the versions. This seems like an uncommon bug, possibly brought to surface by earlier beta updates failing.
    
    Description of how this pull request fixes the issue:
    Added a trail of typing to confirm the possibility of a state where there is a pending update cached and no remote update. Added a check to ensure that both of these exist before comparing their versions.

commit 8c95e4434b90c0aad0032cb73cb215bd4ca6da52
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Jun 28 15:18:01 2021 +1000

    nvda_slave should log at debug and parent NVDA can filter (#12591)
    
    For some time now, nvda_slave has not been logging back to NVDA, even if NVDA was set to log level debug. E.g. the nvda_install.log appveyor artifact does not contain any installer messages. Similarly, the COM registration fixing tool also looks like it logs nothing unless there is a specific error.
    When nvda_slave initializes logging, it sets the level of loghandler.log to 0. I'm guessing that we chose 0 as it was thought to be the lowest (most detailed) level (I.e. greater than debug (10)). However, 0 seems to have a special meaning of NOTSET, and therefore messages honor the first ancestor that is not set to NOTSET, which is the root logger, which is probably set to warning by default. Thus, all the debug messages are being dropped and not being sent back to NVDA, even if NVDA's own log level was debug.
    Description of how this pull request fixes the issue:
    In nvda_slave: initialize logging with a specific level of DEBUG (10), the most detailed level.

commit 3f02af28e8faf93890abc47de6f9d7fb3e12778f
Author: Luke Davis <8139760+XLTechie@users.noreply.github.com>
Date:   Sun Jun 27 20:32:13 2021 -0400

    First half of COM Registration Fixing Tool refactor: make the tool effective on 64-bit windows, and fix more problems (#12560)
    
    Fixes #9039
    
    The COM Registration Fixing Tool seems to have never worked fully on 64bit Windows, as a result of path confusion caused by the use of SysWOW64, and the executable names used.
    In addition, modern browsers seem to check a typelib registration that could be damaged by certain uninstallations (e.g. older versions of MathPlayer). We didn't previously do anything about this.
    Further background:
    In 64 bit Windows, %WINDIR%\System32 contains 64-bit executables. Meanwhile, %WINDIR%\SysWOW64 contains 32-bit executables. That seems inverted from what it should be, but there is a good explanation here for why it's like that.
    When a 32-bit application calls something in System32, SysWOW64 assumes that it wants the 32-bit version, and redirects the call to the version in the SysWOW64 directory.
    If the 32-bit application really wants the 64-bit version of whatever it's calling, it has to use the virtual directory %WINDIR%\Sysnative, which SysWOW64 provides.
    We were calling regedit.exe and regsvr32.exe in contexts where we assumed 32-bit, from either %WINDIR% or %WINDIR%\System32. Because NVDA is 32-bit, that would result in the 32-bit application being called. That's okay.
    However when the test was made for 64-bit, executables in %WINDIR%\SysWOW64 were being used, which are also 32-bit.
    At least one of those should be 64-bit for COM reregistrations, but neither are.
    In no case should we ever call anything in %WINDIR%\SysWOW64 ourselves, which we currently do.
    
    Description of how this pull request fixes the issue:
    Taken from the commit that rewrites COMRegistrationFixes/__init__.py:
    Repaired the COM Registration Fixing Tool so it is more effective on 64bit Windows (Partial fix of #9039).
    • Problems:
    ◦ The registerServer function called the 32-bit version of regsvr32.exe, even in 64-bit contexts.
    ◦ The applyRegistryPatch function called the 32-bit version of regedit, even in 64-bit contexts.
    ◦ The Win7 32-bit run did not take into account 32-bit only systems (no Program Files (x86) folder).
    • Remediation:
    ◦ Replaced applyRegistryPatch function with two new functions: apply32bitRegistryPatch and apply64bitRegistryPatch.
    ◦ Replaced registerServer function with register32bitServer and register64bitServer, to make clear what they do.
    ◦ The new functions don't check 32/64 bitness; they leave that to the caller and log errors on failure.
    ◦ Updated to more descriptive error logging.
    ◦ Adjusted the Windows 7 code to use server registration with proper bitness for each DLL.
    • Path remediations:
    ◦ Moved the OLEACC_REG_FILE_PATH constant to the top of the file with the rest.
    ◦ Added Sysnative path to the list of path constants at the top of the file.
    ◦ Now use Sysnative in the path for intentional 64bit calls.
    ◦ Now use System32 in the path for 32-bit calls on either 32-bit or 64-bit systems.
    ◦ Now use reg.exe's import option to load .reg files instead of regedit.exe.
    ◦ Now check whether to use "Program Files" or "Program Files (x86)" on Win7.
    ◦ Removed now unused sysWow64 path constant.
    • Misc:
    ◦ Added docstring note about 32 and 64 bit functions needing attention if NVDA goes 64-bit in the future.
    ◦ Converted path constants to uppercase-with-underscore style, and corrected case on some Windows paths.
    ◦ Moved comments with discussion links into module docstring, and rearranged.
    ◦ Used subprocess.STARTUPINFO to prevent console windows from showing during executions.
    ◦ In gui/__init__.py update the message shown on tool completion, to recommend a restart.
    Separately, @michaelDCurran found a registry key that we should delete to restore browser functionality under certain circumstances. That is included as a separate joint commit.

commit 161ad1f78a62a5a676dc6be4a12b087c94097cd7
Merge: b1a529391 3dad63646
Author: Sean Budd <sean@nvaccess.org>
Date:   Fri Jun 25 10:43:26 2021 +1000

    Merge pull request #12583 from nvaccess/beta
    
    Merge Beta to master

commit 3dad63646d4777eb54f622bd080dec184a30d525
Merge: 0a7f8d3b7 455837ecd
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 25 00:01:38 2021 +0000

    Update translations.
    
    From translation svn revision: 62399

commit 455837ecd8f756117e2501ec79c50cbda6e10b57
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 25 00:01:35 2021 +0000

    L10n updates for: zh_CN
    From translation svn revision: 62399
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen_0528@outlook.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    1872265132@qq.com
    
    Stats:
    158     165     source/locale/zh_CN/LC_MESSAGES/nvda.po
    57      54      user_docs/zh_CN/changes.t2t
    10      6       user_docs/zh_CN/userGuide.t2t
     3 files changed, 225 insertions(+), 225 deletions(-)

commit 749d50fb48dcef9792a4574c0f2f95b3fb643990
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 25 00:01:33 2021 +0000

    L10n updates for: vi
    From translation svn revision: 62399
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>
    Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    12      12      user_docs/vi/changes.t2t
    2       2       user_docs/vi/userGuide.t2t
     2 files changed, 14 insertions(+), 14 deletions(-)

commit 36a91b1018daa61e79fac5fe761f893b36b57871
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 25 00:01:30 2021 +0000

    L10n updates for: tr
    From translation svn revision: 62399
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    6       6       user_docs/tr/userGuide.t2t
     1 file changed, 6 insertions(+), 6 deletions(-)

commit fe37c376f81c2234744696bd914dd40975709a17
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 25 00:01:27 2021 +0000

    L10n updates for: ta
    From translation svn revision: 62399
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    11      7       source/locale/ta/LC_MESSAGES/nvda.po
     1 file changed, 11 insertions(+), 7 deletions(-)

commit 6bf332799a500ad86e5546e12ad38eebd651ce9a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 25 00:01:20 2021 +0000

    L10n updates for: ru
    From translation svn revision: 62399
    
    Authors:
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    
    Stats:
    23      1       user_docs/ru/changes.t2t
     1 file changed, 23 insertions(+), 1 deletion(-)

commit b1ff3fc32b6c6c16120d2e4866c02d855c028e3f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 25 00:01:14 2021 +0000

    L10n updates for: pt_BR
    From translation svn revision: 62399
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    8       8       source/locale/pt_BR/LC_MESSAGES/nvda.po
     1 file changed, 8 insertions(+), 8 deletions(-)

commit 3421d908b6ea6a38c5409a67b88a7383f0c92965
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 25 00:00:54 2021 +0000

    L10n updates for: it
    From translation svn revision: 62399
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    25      25      user_docs/it/changes.t2t
     1 file changed, 25 insertions(+), 25 deletions(-)

commit e767001a676c457756f91714d131a9f11fb0d4dc
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 25 00:00:40 2021 +0000

    L10n updates for: fi
    From translation svn revision: 62399
    
    Authors:
    Jani Kinnunen <janikinnunen340@gmail.com>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    4       4       user_docs/fi/userGuide.t2t
     1 file changed, 4 insertions(+), 4 deletions(-)

commit 81830b8f6c0ee323fe8855d22df3f1f1d38f2168
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 25 00:00:31 2021 +0000

    L10n updates for: de
    From translation svn revision: 62399
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    59      15      source/locale/de/symbols.dic
     1 file changed, 59 insertions(+), 15 deletions(-)

commit 28da5d526a10d77de87a3c16921f2e5cc6ecbefe
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 25 00:00:27 2021 +0000

    L10n updates for: da
    From translation svn revision: 62399
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    59      64      user_docs/da/changes.t2t
     1 file changed, 59 insertions(+), 64 deletions(-)

commit 0a7f8d3b7340f520f5d2735efdf0e277917a537c
Author: Sean Budd <sean@nvaccess.org>
Date:   Thu Jun 24 13:00:25 2021 +1000

    Fix how the Seika Notetaker Driver processes data (#12581)
    
    Seika Notetaker braille device still does not load in NVDA.
    Fixes several minor logic errors in _onReceive
    Unit tests have been added for this function.

commit b1a52939179ed3aaac41626a3720e04720559eac
Merge: 77eb8921a 88857c80e
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Wed Jun 23 20:55:08 2021 +0800

    Merge pull request #12577 from nvaccess/beta
    
    Merge beta back to master

commit 88857c80e94faae1c6a8243d90ac669af4de5677
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Wed Jun 23 20:08:30 2021 +0800

    Fix auto update (PR #12575)
    
    * Revert "Maintain logging level on restart"
    
    This reverts commit 76b2aeaa
    There were several issues with this commit:
    - a missing space before "--log-level=" in updateCheck.py caused automatic updates to fail.
    - explicitly setting the log level prevents the log level from being manually set in the General settings panel. This is a change in behavior and needs to be considered more carefully. See usages of logHandler.isLogLevelForced()
    
    * Log unsafe restart
    * Add reasoning about including any existing params when doing an unsafe restart.
    This provides different behavior from def restart()

commit 77eb8921a15bb05b2cda8f68c3e551439b5b96eb
Merge: de3aa3a3a afcc583c8
Author: Sean Budd <sean@nvaccess.org>
Date:   Wed Jun 23 13:27:50 2021 +1000

    Merge beta into master (#12572)

commit de3aa3a3a921c06944d58bf21b317daeb9862b8f
Author: André-Abush Clause <dev@andreabc.net>
Date:   Wed Jun 23 02:16:37 2021 +0200

    Fix for some grade 2 braille tables that are not declared as contracted (#12541)
    
    There are some grade 2 braille tables that are not declared as contracted. As a result the braille input does not work well with these tables.
    
    Description of how this pull request fixes the issue:
    Just adds contracted=True to the corresponding tables.

commit afcc583c8384d4c179b46796ef527985e1f645d5
Author: Sean Budd <sean@nvaccess.org>
Date:   Wed Jun 23 09:45:00 2021 +1000

    Force a new NVDA instance to start after crashing (#12562)
    
    When NVDA crashes, core.restart is called. #12548 changed the behaviour of core.restart to safely shutdown NVDA and queue a new instance to start. NVDA cannot exit safely or queue the new instance to start if the thread is in an uncertain state (eg crashed, frozen).
    
    This commit makes NVDA directly start a new instance of NVDA if a crash occurs.

commit 2b293f818ae362a6c1c2ef3de50de1257af384cd
Author: Sean Budd <sean@nvaccess.org>
Date:   Wed Jun 23 09:33:38 2021 +1000

    Update espeak to ab11439b18 (#12568)
    
    * Revert "Downgrade espeak to aafd2e720 (PR #12495)"
    
    This reverts commit 007f5803a9d5700b9f29ca5b1d6d9477086b722c.
    
    * update espeak to ab11439b18238b7a08b965d1d5a6ef31cbb05cbb

commit 8d48450f596d1345e65d86d74ebed3e3d70e9414
Merge: 98d4b65d2 eb4d3af81
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Jun 21 07:04:45 2021 +0000

    Update translations.
    
    From translation svn revision: 62295

commit eb4d3af81e8766cfb0a54de7b59543b7ccb1e25d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Jun 21 07:04:42 2021 +0000

    L10n updates for: zh_CN
    From translation svn revision: 62295
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen_0528@outlook.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    1872265132@qq.com
    
    Stats:
    158     0       user_docs/zh_CN/changes.t2t
     1 file changed, 158 insertions(+)

commit 18c5a6d02f1a4f7b592db51db392f1e9929253bf
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Jun 21 07:04:39 2021 +0000

    L10n updates for: uk
    From translation svn revision: 62295
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    6       2       source/locale/uk/LC_MESSAGES/nvda.po
     1 file changed, 6 insertions(+), 2 deletions(-)

commit 193ceb58e56a59cf392f903a146a5ba7cafb9dca
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Jun 21 07:04:38 2021 +0000

    L10n updates for: tr
    From translation svn revision: 62295
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    1       1       source/locale/tr/symbols.dic
     1 file changed, 1 insertion(+), 1 deletion(-)

commit e3ae260d84ee45ce7808bfc1ebfba8e45474d369
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Jun 21 07:04:29 2021 +0000

    L10n updates for: ro
    From translation svn revision: 62295
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <7ro2014@gmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    George Antonio Andrei <george.andrei2002@gmail.com>
    
    Stats:
    107     3       user_docs/ro/changes.t2t
     1 file changed, 107 insertions(+), 3 deletions(-)

commit ed8dde68f744e88406593e07c0a561ffe69be59d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Jun 21 07:04:26 2021 +0000

    L10n updates for: pt_BR
    From translation svn revision: 62295
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    15      7       source/locale/pt_BR/LC_MESSAGES/nvda.po
    159     2       user_docs/pt_BR/changes.t2t
     2 files changed, 174 insertions(+), 9 deletions(-)

commit bd2d4ece8b5771aabaf2039faa75f941107111f1
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Jun 21 07:04:24 2021 +0000

    L10n updates for: pl
    From translation svn revision: 62295
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Hubert Meyer <hubmeyer1989@gmail.com>
    Arkadiusz Swietnicki <nuno69a@gmail.com>
    
    Stats:
    9       5       source/locale/pl/LC_MESSAGES/nvda.po
    13      9       user_docs/pl/changes.t2t
     2 files changed, 22 insertions(+), 14 deletions(-)

commit 268672ef0f4a1cca09f1d7caf0a1bd534b2625ae
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Jun 21 07:04:15 2021 +0000

    L10n updates for: ko
    From translation svn revision: 62295
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    9       5       source/locale/ko/LC_MESSAGES/nvda.po
    22      22      user_docs/ko/userGuide.t2t
     2 files changed, 31 insertions(+), 27 deletions(-)

commit 091c7e0412fb4c36cf6e29850d86091785488d92
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Jun 21 07:04:10 2021 +0000

    L10n updates for: it
    From translation svn revision: 62295
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    7       3       source/locale/it/LC_MESSAGES/nvda.po
    158     0       user_docs/it/changes.t2t
     2 files changed, 165 insertions(+), 3 deletions(-)

commit 1d1739eea610be773ecee1585cdd3cf9f62701a5
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Jun 21 07:03:59 2021 +0000

    L10n updates for: fi
    From translation svn revision: 62295
    
    Authors:
    Jani Kinnunen <janikinnunen340@gmail.com>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    6       2       source/locale/fi/LC_MESSAGES/nvda.po
    1       0       user_docs/fi/changes.t2t
     2 files changed, 7 insertions(+), 2 deletions(-)

commit 2180f3350ae3f736e569eabbf5354da91ee85fb7
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Jun 21 07:03:52 2021 +0000

    L10n updates for: el
    From translation svn revision: 62295
    
    Authors:
    Irene Nakas <irnakas@gmail.com>
    Nikos Demetriou <nikosdemetriou@googlemail.com>
    access@e-rhetor.com
    
    Stats:
    849     533     source/locale/el/LC_MESSAGES/nvda.po
     1 file changed, 849 insertions(+), 533 deletions(-)

commit 5fbae137d18d966889164095e0e05759c1b7f0c2
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Jun 21 07:03:50 2021 +0000

    L10n updates for: de
    From translation svn revision: 62295
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    236     136     source/locale/de/symbols.dic
     1 file changed, 236 insertions(+), 136 deletions(-)

commit f9ec6fe72944ceb7a00d8a0ea1b6aa06fb4f5cb4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Jun 21 07:03:47 2021 +0000

    L10n updates for: da
    From translation svn revision: 62295
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    8       5       source/locale/da/LC_MESSAGES/nvda.po
    38      4       user_docs/da/userGuide.t2t
     2 files changed, 46 insertions(+), 9 deletions(-)

commit e06ca39b807c0b16e4724c5a00ff693b520f529f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Jun 21 07:03:41 2021 +0000

    L10n updates for: ar
    From translation svn revision: 62295
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Omar Alojaimi <amrahmad1995@gmail.com>
    
    Stats:
    16      18      source/locale/ar/LC_MESSAGES/nvda.po
    10      8       user_docs/ar/changes.t2t
     2 files changed, 26 insertions(+), 26 deletions(-)

commit 98d4b65d2955568c0b8df748e713837f308e1e78
Merge: 8207a49d0 89d1f9766
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 18 00:01:26 2021 +0000

    Update translations.
    
    From translation svn revision: 62230

commit 89d1f97666f35e97a70f5842839757284f15d572
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 18 00:01:26 2021 +0000

    L10n updates for: zh_TW
    From translation svn revision: 62230
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    haach111000@gmail.com
    
    Stats:
    746     512     source/locale/zh_TW/LC_MESSAGES/nvda.po
    273     9       user_docs/zh_TW/changes.t2t
     2 files changed, 1019 insertions(+), 521 deletions(-)

commit 32b84fb6127da23aaee119650769b9a7ce322ca9
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 18 00:01:23 2021 +0000

    L10n updates for: zh_CN
    From translation svn revision: 62230
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen_0528@outlook.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    1872265132@qq.com
    
    Stats:
    757     462     source/locale/zh_CN/LC_MESSAGES/nvda.po
     1 file changed, 757 insertions(+), 462 deletions(-)

commit 0a6ec32b4b7642b742b5f6063a57c7b83a158a0d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 18 00:01:21 2021 +0000

    L10n updates for: vi
    From translation svn revision: 62230
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>
    Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    6       2       source/locale/vi/LC_MESSAGES/nvda.po
    1       0       user_docs/vi/changes.t2t
     2 files changed, 7 insertions(+), 2 deletions(-)

commit 4033bc5c6457b89bbf1a6a813da08ddbd0a299cb
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 18 00:01:19 2021 +0000

    L10n updates for: tr
    From translation svn revision: 62230
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    1       0       user_docs/tr/changes.t2t
     1 file changed, 1 insertion(+)

commit 4a0dc6a2fbaca0ad0e304670b181405117d4e4c7
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 18 00:01:17 2021 +0000

    L10n updates for: sv
    From translation svn revision: 62230
    
    Authors:
    Daniel Johansson <daniel.johansson@coeptus.se>
    Niklas Johansson <sleeping.pillow@gmail.com>
    Karl-Otto Rosenqvist <Karl-otto@mawingu.se>
    
    Stats:
    779     486     source/locale/sv/LC_MESSAGES/nvda.po
     1 file changed, 779 insertions(+), 486 deletions(-)

commit 2ec303d2390b4694a590b127b366e5d864aad00b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 18 00:01:13 2021 +0000

    L10n updates for: sk
    From translation svn revision: 62230
    
    Authors:
    Ondrej Rosik <ondrej.rosik@gmail.com>
    Peter Vagner <peter.v@datagate.sk>
    Jan Kulik <jan.kulik.szsle@outlook.sk>
    
    Stats:
    791     502     source/locale/sk/LC_MESSAGES/nvda.po
    221     110     source/locale/sk/symbols.dic
    41      6       user_docs/sk/userGuide.t2t
     3 files changed, 1053 insertions(+), 618 deletions(-)

commit 01c301d723443b957f9669b7506578b08d0ff59c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 18 00:01:09 2021 +0000

    L10n updates for: ro
    From translation svn revision: 62230
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <7ro2014@gmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    George Antonio Andrei <george.andrei2002@gmail.com>
    
    Stats:
    7       3       source/locale/ro/LC_MESSAGES/nvda.po
    1       2       source/locale/ro/symbols.dic
    60      0       user_docs/ro/changes.t2t
     3 files changed, 68 insertions(+), 5 deletions(-)

commit f4469b544cf0bb80567f6bbbe661bbd394f70714
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 18 00:00:52 2021 +0000

    L10n updates for: ja
    From translation svn revision: 62230
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    7       3       source/locale/ja/LC_MESSAGES/nvda.po
    2       1       user_docs/ja/changes.t2t
     2 files changed, 9 insertions(+), 4 deletions(-)

commit d2429db971b6482989c17b01bfc949205a8c3ff8
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 18 00:00:43 2021 +0000

    L10n updates for: gl
    From translation svn revision: 62230
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    Javier Curras <javier.curras@nvda.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    11      7       source/locale/gl/LC_MESSAGES/nvda.po
    5       5       source/locale/gl/symbols.dic
    1       0       user_docs/gl/changes.t2t
     3 files changed, 17 insertions(+), 12 deletions(-)

commit bf92647826638405c510bef9da66ee527e8a8182
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 18 00:00:40 2021 +0000

    L10n updates for: fr
    From translation svn revision: 62230
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqué-Cazenave <corentin@progaccess.net>
    
    Stats:
    14      10      source/locale/fr/LC_MESSAGES/nvda.po
    1       1       user_docs/fr/changes.t2t
     2 files changed, 15 insertions(+), 11 deletions(-)

commit 7a80d7ffef93f17bafbd88120be53a2fb3a2536a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 18 00:00:36 2021 +0000

    L10n updates for: fa
    From translation svn revision: 62230
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    7       3       source/locale/fa/LC_MESSAGES/nvda.po
    1       0       user_docs/fa/changes.t2t
     2 files changed, 8 insertions(+), 3 deletions(-)

commit 1503ae27bbed60cef5e1156a5d4786ea8aa160c0
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 18 00:00:34 2021 +0000

    L10n updates for: es
    From translation svn revision: 62230
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    5       5       source/locale/es/symbols.dic
    1       0       user_docs/es/changes.t2t
     2 files changed, 6 insertions(+), 5 deletions(-)

commit c10a8bbef77c19a248ec625fcc9ad546b8058ab4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 18 00:00:30 2021 +0000

    L10n updates for: de
    From translation svn revision: 62230
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    6       2       source/locale/de/LC_MESSAGES/nvda.po
    1       0       user_docs/de/changes.t2t
     2 files changed, 7 insertions(+), 2 deletions(-)

commit 8c7ea372a0a0d15c5b9fb1f930acdaf6f83ac4af
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 18 00:00:25 2021 +0000

    L10n updates for: cs
    From translation svn revision: 62230
    
    Authors:
    Martina Letochova <letochova@seznam.cz>
    
    Stats:
    7       3       source/locale/cs/LC_MESSAGES/nvda.po
     1 file changed, 7 insertions(+), 3 deletions(-)

commit 8e3f01d099abdb67cbf9a380fc19188ddb3203c1
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 18 00:00:20 2021 +0000

    L10n updates for: an
    From translation svn revision: 62230
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    7       3       source/locale/an/LC_MESSAGES/nvda.po
    144     41      source/locale/an/symbols.dic
     2 files changed, 151 insertions(+), 44 deletions(-)

commit 8207a49d01e5b25810ea34f6679e402f2ccd11b1
Merge: 895cd3cfc a71579c0d
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Thu Jun 17 10:39:24 2021 +0800

    Merge: Fix restart after install merge to beta (PR #12548)
    
    This contains the same commits as PR #12538, but targets beta.

commit 0d98162d2df85e53b3e12f35553cc2b549c10884
Merge: acef7a768 a7cd09d8b
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue Jun 15 14:04:49 2021 +0800

    Merge PR #12538 from nvaccess/fixRestartAfterInstall
    
    Fixes restart after install. View commits for details.

commit a7cd09d8b4e95c7e9bc9cea26825f7d80b53489f
Merge: a71579c0d acef7a768
Author: Reef Turner <reef@nvaccess.org>
Date:   Tue Jun 15 13:24:55 2021 +0800

    Merge remote-tracking branch 'origin/master' into fixRestartAfterInstall

commit acef7a7688eb963c54287800e2f81d054f639eb1
Merge: 44b9359e1 895cd3cfc
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue Jun 15 13:24:38 2021 +0800

    Merge Beta to Master PR #12547
    
    Beta to Master Merge

commit a71579c0d8135b80f433e9a8f29fc81f9682f7e7
Author: Reef Turner <reef@nvaccess.org>
Date:   Mon Jun 14 12:16:27 2021 +0800

    Try to capture py2exe log
    
    This log is created by py2exe when somemthing writes to stdErr.
    It is named by taking the path the executable and replacing the
    '.exe' with '.log'

commit 4528cc386018e991fd14f70aa10e4ef69e9df03b
Author: Reef Turner <reef@nvaccess.org>
Date:   Fri Jun 11 17:58:45 2021 +0800

    Logging: detecting old NVDA process via FindWindow
    
    This logging won't be seen unless the logHandler initialisation is moved
    to earlier in this file.
    This has been helpful during development, but changes to the logging
    are not necessary for this change.

commit f0cccef06e52d2bae9dc1c35b399af761a2ecd76
Author: Reef Turner <reef@nvaccess.org>
Date:   Fri Jun 11 17:53:28 2021 +0800

    Prevent race condition when restarting NVDA
    
    Prior to f8852a8482a353f415c1070530d06bc6f7b054ec doInstall in
    installerGui.py would just start a new copy of NVDA allowing the
    new copy of NVDA to terminate the old copy by posting a WM_QUIT message.
    
    With the update of wxPython, this caused a crash, see PR #12431 for
    details.
    The new approach was to trigger the exit NVDA after starting the new
    process.
    This leads to a race condition for ownership of the "single NVDA
    instance" mutex.
    
    To fix this race condition the mutex is created without taking ownership,
    then waitForSingleObject is used to take ownership.
    If the old NVDA process is still running, the new process waits.
    If the old NVDA process has already released the mutex, the new process
    will take ownership immediately.
    If the old NVDA process has crashed and not released the mutex, the new
    process takes ownership and logs the situation.
    
    Note, previously only CloseHandle was used, this relied on the process
    exiting and Windows releasing the mutex.
    Now, the mutex is explicitly released before the handle is closed.

commit 76b2aeaae4a344fb8893fe100ebeba421c922f68
Author: Reef Turner <reef@nvaccess.org>
Date:   Fri Jun 11 17:29:03 2021 +0800

    Maintain logging level on restart
    
    When debugging installer or restart behavior, maintaining the
    commandline provided log level is helpful.
    
    Other wise the logging level must be set via config,
    this happens much later in the startup of NVDA resulting in many
    debug level log messages being lost.

commit 28938c90c5d0dbd89b15ead4fbb53893cea6008a
Author: Reef Turner <reef@nvaccess.org>
Date:   Fri Jun 11 17:26:03 2021 +0800

    Clarify log message for trigger NVDA exit
    
    There is only an error case when GUI intiated exiting is not first
    to trigger the exit.
    
    Previously there was a warning for every exit, since there is
    always a "catch-all" exit trigger.
    The "catch-all" exit trigger is necessary to ensure there cleanup happens
    when a WM_QUIT windows message is recieved, causing wx to exit the
    MainLoop.
    Now there is only a message when the "catch-all" is first, aimed at helping
    developers identify when exit was due to WM_QUIT.

commit 5ec5ee939e9fd204e938c9ecd298c1957683ad8e
Author: Reef Turner <reef@nvaccess.org>
Date:   Thu Jun 10 14:21:36 2021 +0800

    Fix conflation of silent and update
    
    Fix an issue introduced in commit 93bbd21b77e1596309a67a4e4fc291b9f3af7589
    "Add --copy-portable-config command line parameter to automatically copy
     the portable configuration with a silent installation #9679"

commit 44b9359e1e70487d2e47e501d3074f392f0e89ed
Author: Sean Budd <sean@nvaccess.org>
Date:   Mon Jun 14 15:16:09 2021 +1000

    increase timeout for focusing chrome (#12543)
    
    Builds currently randomly fail due to being unable to focus chrome. I think this is due to the timeout being too early because:
    
    - this only occurs on a single test: "Robot.chromeTests.checkbox labelled by inner element"
    - Sometimes when the logging code happens to describe the fail of focus, chrome ends up being focused. Example:
    Unable to focus Chrome.
    Foreground Window: NVDA Browser Test Case (1950076191) - Google Chrome.
    Open Windows: ['NVDA Browser Test Case (1950076191) - Google Chrome', 'AppVeyor Build Agent', 'Program Manager']
    
    Description of how this pull request fixes the issue:
    Increases the time and poll rate of the focusChome attempt

commit 895cd3cfc575eb5728f669bdd8f03a8e5b8e9b86
Merge: b351c4d0f 4b73ff9d4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 11 00:01:30 2021 +0000

    Update translations.
    
    From translation svn revision: 62084

commit 4b73ff9d4b0b1d9f5a8afd451b8f62e968ea711e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 11 00:01:29 2021 +0000

    L10n updates for: zh_TW
    From translation svn revision: 62084
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    haach111000@gmail.com
    
    Stats:
    42      7       user_docs/zh_TW/userGuide.t2t
     1 file changed, 42 insertions(+), 7 deletions(-)

commit debce60d14f7c6354356021ccf6a02719467d846
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 11 00:01:26 2021 +0000

    L10n updates for: vi
    From translation svn revision: 62084
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>
    Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    4       4       source/locale/vi/LC_MESSAGES/nvda.po
    10      7       user_docs/vi/changes.t2t
     2 files changed, 14 insertions(+), 11 deletions(-)

commit 7d9fa224824873ba1f6d2584457a022961670635
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 11 00:01:24 2021 +0000

    L10n updates for: uk
    From translation svn revision: 62084
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    17      18      source/locale/uk/LC_MESSAGES/nvda.po
    5       5       user_docs/uk/userGuide.t2t
     2 files changed, 22 insertions(+), 23 deletions(-)

commit 66156228e8a193a9d925033789bf3b6098eed9f7
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 11 00:01:22 2021 +0000

    L10n updates for: tr
    From translation svn revision: 62084
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    4       2       user_docs/tr/changes.t2t
     1 file changed, 4 insertions(+), 2 deletions(-)

commit 8f9a4d77202cf4b0631048df2d7b17b0636481b8
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 11 00:01:21 2021 +0000

    L10n updates for: ta
    From translation svn revision: 62084
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    3       3       source/locale/ta/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 3 deletions(-)

commit 181006854301d58d3570e540e92ee2f1f91c2524
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 11 00:01:15 2021 +0000

    L10n updates for: ru
    From translation svn revision: 62084
    
    Authors:
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    
    Stats:
    14      14      source/locale/ru/LC_MESSAGES/nvda.po
    41      6       user_docs/ru/userGuide.t2t
     2 files changed, 55 insertions(+), 20 deletions(-)

commit fa700baaa3c159b999cddd0431bc6d076a75fa9b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 11 00:01:12 2021 +0000

    L10n updates for: pt_PT
    From translation svn revision: 62084
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    5       5       source/locale/pt_PT/LC_MESSAGES/nvda.po
    38      38      user_docs/pt_PT/changes.t2t
     2 files changed, 43 insertions(+), 43 deletions(-)

commit a14557a39aa5da07a72df0dca305e56bdc8b2a88
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 11 00:01:10 2021 +0000

    L10n updates for: pt_BR
    From translation svn revision: 62084
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    152     47      source/locale/pt_BR/symbols.dic
    12      12      user_docs/pt_BR/userGuide.t2t
     2 files changed, 164 insertions(+), 59 deletions(-)

commit 04db2b0776e75bf4ccc084c8cd49acebe0ba32aa
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 11 00:01:08 2021 +0000

    L10n updates for: pl
    From translation svn revision: 62084
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Hubert Meyer <hubmeyer1989@gmail.com>
    Arkadiusz Swietnicki <nuno69a@gmail.com>
    
    Stats:
    1       1       source/locale/pl/symbols.dic
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 963bf6f90ce4fa36bbc324565b2cbacc25dc082e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 11 00:01:06 2021 +0000

    L10n updates for: nl
    From translation svn revision: 62084
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    1       1       user_docs/nl/userGuide.t2t
     1 file changed, 1 insertion(+), 1 deletion(-)

commit dfdbda8983bd3e1d497e4d879779a998c7eed56e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 11 00:01:01 2021 +0000

    L10n updates for: mn
    From translation svn revision: 62084
    
    Authors:
    Mongol NVDA-Translation <mongoliannvdatranslation@gmail.com>
    
    Stats:
    814     508     source/locale/mn/LC_MESSAGES/nvda.po
     1 file changed, 814 insertions(+), 508 deletions(-)

commit 47bdc2fe1c40265c85b20854df6cfa5ea7eff286
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 11 00:00:58 2021 +0000

    L10n updates for: ko
    From translation svn revision: 62084
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    8       8       source/locale/ko/LC_MESSAGES/nvda.po
    27      25      user_docs/ko/changes.t2t
     2 files changed, 35 insertions(+), 33 deletions(-)

commit 66b8d64291efb9764013060218cbf029cb715d23
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 11 00:00:55 2021 +0000

    L10n updates for: ja
    From translation svn revision: 62084
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    3       7       source/locale/ja/LC_MESSAGES/nvda.po
    156     0       user_docs/ja/changes.t2t
    1       1       user_docs/ja/userGuide.t2t
     3 files changed, 160 insertions(+), 8 deletions(-)

commit f4589096fa5a2c5a64c8fcc2ae02475385395281
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 11 00:00:53 2021 +0000

    L10n updates for: it
    From translation svn revision: 62084
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    4       4       source/locale/it/LC_MESSAGES/nvda.po
    157     53      source/locale/it/symbols.dic
     2 files changed, 161 insertions(+), 57 deletions(-)

commit e9182eafe107fb18cf4560417edc5e963228b5ea
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 11 00:00:48 2021 +0000

    L10n updates for: hr
    From translation svn revision: 62084
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Milo Ivir <mivir@milotype.de>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    10      8       user_docs/hr/changes.t2t
     1 file changed, 10 insertions(+), 8 deletions(-)

commit 4539e822d93e8bd2d2d4aabb223584e1a6e9307a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 11 00:00:46 2021 +0000

    L10n updates for: gl
    From translation svn revision: 62084
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    Javier Curras <javier.curras@nvda.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    5       5       source/locale/gl/LC_MESSAGES/nvda.po
    4       4       source/locale/gl/symbols.dic
    10      7       user_docs/gl/changes.t2t
     3 files changed, 19 insertions(+), 16 deletions(-)

commit 576312ad9af24ebe5cab3cc851d5bff74f12477b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 11 00:00:43 2021 +0000

    L10n updates for: fr
    From translation svn revision: 62084
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqué-Cazenave <corentin@progaccess.net>
    
    Stats:
    5       5       source/locale/fr/symbols.dic
    11      8       user_docs/fr/changes.t2t
     2 files changed, 16 insertions(+), 13 deletions(-)

commit f9ce36ee13c3b3c94c8a11baaebc0dcc78e9e6c8
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 11 00:00:41 2021 +0000

    L10n updates for: fi
    From translation svn revision: 62084
    
    Authors:
    Jani Kinnunen <janikinnunen340@gmail.com>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    3       3       source/locale/fi/LC_MESSAGES/nvda.po
    11      8       user_docs/fi/changes.t2t
     2 files changed, 14 insertions(+), 11 deletions(-)

commit 57ca086eb5d81794875fb848b248060aaf330af5
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 11 00:00:39 2021 +0000

    L10n updates for: fa
    From translation svn revision: 62084
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    3       3       source/locale/fa/LC_MESSAGES/nvda.po
    10      8       user_docs/fa/changes.t2t
    45      10      user_docs/fa/userGuide.t2t
     3 files changed, 58 insertions(+), 21 deletions(-)

commit 41865c243bba540d492d8fa3e37fc37a21770f5b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 11 00:00:37 2021 +0000

    L10n updates for: es
    From translation svn revision: 62084
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    4       4       source/locale/es/LC_MESSAGES/nvda.po
    4       4       source/locale/es/symbols.dic
    11      8       user_docs/es/changes.t2t
     3 files changed, 19 insertions(+), 16 deletions(-)

commit c33828ab31c98589f6a7ded74ed4266d7ff348c2
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 11 00:00:33 2021 +0000

    L10n updates for: de
    From translation svn revision: 62084
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    4       4       source/locale/de/LC_MESSAGES/nvda.po
    10      7       user_docs/de/changes.t2t
     2 files changed, 14 insertions(+), 11 deletions(-)

commit 52e3f3bed01a7534029270ae9cf54d0474ae7d34
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 11 00:00:28 2021 +0000

    L10n updates for: cs
    From translation svn revision: 62084
    
    Authors:
    Martina Letochova <letochova@seznam.cz>
    
    Stats:
    936     736     source/locale/cs/LC_MESSAGES/nvda.po
     1 file changed, 936 insertions(+), 736 deletions(-)

commit 7556f6e51fb42752da8d9f66a566810d8d0b7cd2
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 11 00:00:22 2021 +0000

    L10n updates for: an
    From translation svn revision: 62084
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    779     489     source/locale/an/LC_MESSAGES/nvda.po
     1 file changed, 779 insertions(+), 489 deletions(-)

commit 94b8fa28ee340decbd9837a30145edecaf627616
Author: André-Abush Clause <dev@andreabc.net>
Date:   Thu Jun 10 08:12:33 2021 +0200

    Update liblouis to 3.18.0 (#12526)
    
    New braille tables: Bulgarian grade 1, Burmese grade 1, Burmese grade 2, Kazakh grade 1, Khmer grade 1, Northern Kurdish grade 0, Sepedi grade 1, Sepedi grade 2, Sesotho grade 1, Sesotho grade 2, Setswana grade 1, Setswana grade 2, Tatar grade 1, Vietnamese grade 0, Vietnamese grade 2, Southern Vietnamese grade 1, Xhosa grade 1, Xhosa grade 2, Yakut grade 1, Zulu grade 1, Zulu grade 2

commit 108f9004485f8bba8615af5a0c9f4866f12a3fd4
Merge: 43f4b192f 48a4dbf4f
Author: Sean Budd <sean@nvaccess.org>
Date:   Thu Jun 10 13:15:08 2021 +1000

    Merge pull request #12535 from nvaccess/mergeBetaToMaster
    
    Merge beta to master

commit 48a4dbf4f907167832e8b5cbd6911db247eb87ee
Merge: 43f4b192f b351c4d0f
Author: buddsean <sean@nvaccess.org>
Date:   Thu Jun 10 12:02:28 2021 +1000

    Merge branch 'beta' into mergeBetaToMaster

commit b351c4d0fe26548a44b5bfed8b64fa5625354a73
Author: Sean Budd <sean@nvaccess.org>
Date:   Thu Jun 10 11:06:21 2021 +1000

    Manage starting new NVDA instances when exiting through core (#12515) (#12529)
    
    * Manage starting new NVDA instances when exiting through core (#12515)
    
    #12431 made it so when installing NVDA, the GUI should exit before queueing the new instance.
    The change in #12431 was not applied to updating NVDA or restarting NVDA.
    
    Description of how this pull request fixes the issue:
    Applies the queueing process for all cases where a new NVDA instance is expected to start. Searching for ShellExecute can confirm this.
    
    * change logging to debug warning

commit cb0de01a08ac2e2c30ebd1d6dec84b0280904721
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Jun 8 17:01:35 2021 +1000

    BrowseMode document's event_gainFocus: if an error occurs fetching states when checking if an object is defunct (dead), treat the object as defunct anyway. This ensures that the new focus will still be reported. (#12528)
    
    Fixes #12527
    
    Summary of the issue:
    In UI Automation browse mode implementations, sometimes the new focus is not announced if the old focus is removed from the DOM as the focus changes. This is true even in focus mode.
    PR #12252 introduced a check for STATE_DEFUNCT on the old focus's states property. Although this works fine in Firefox / Chrome (they leave dead objects around with a defunct state), some UI Automation elements become completely unusable, and therefore an exception is raised when trying to fetch the states property.
    As reported in issue #12527 The newly focused tweet in the Twitter app is no longer announced when pressing j / keys. And If using Edge/Chromium with UIA, some focus changes in Microsoft Word 365 Online are not announced.
    
    Description of how this pull request fixes the issue:
    In BrowseMode document's event_gainFocus method, Catch all exceptions when fetching states to check for defunct, and if an exception is raised, log the error and treat the object as being defunct.

commit 43f4b192fef76383bfb0b2e12051a66f65771fa9
Author: Sean Budd <sean@nvaccess.org>
Date:   Tue Jun 8 16:31:22 2021 +1000

    Manage starting new NVDA instances when exiting through core (#12515)
    
    #12431 made it so when installing NVDA, the GUI should exit before queueing the new instance.
    The change in #12431 was not applied to updating NVDA or restarting NVDA.
    
    Description of how this pull request fixes the issue:
    Applies the queueing process for all cases where a new NVDA instance is expected to start. Searching for ShellExecute can confirm this.

commit a2b469e4be4152dd0d778c83587184c8258b2d88
Merge: a5a5f2f01 77ee5349e
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Fri Jun 4 14:08:41 2021 +0800

    Merge beta to master PR #12514

commit 77ee5349e01dc8a3982f2017aa308119d98dbfae
Author: moyanming2013 <moyanming2013@qq.com>
Date:   Fri Jun 4 11:33:18 2021 +0800

    Add original Seika Notetaker driver (#11514)
    
    Seika Notetaker drivers did not exist in NVDA
    
    The Seika Notetaker Braille display is not the same as the Seika Braille display.
    Seika Notetaker has 8 dots, Braille keyboard and other function keys/buttons

commit 66068bc5b4bd70ceb5557599bbd5c4367f0004cb
Merge: ed0f90024 6c9604bc5
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 4 00:01:29 2021 +0000

    Update translations.
    
    From translation svn revision: 61831

commit 6c9604bc500cd63e9bae7cfb2b1ceee4a9d27fca
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 4 00:01:27 2021 +0000

    L10n updates for: zh_HK
    From translation svn revision: 61831
    
    Authors:
    Eric Yip <ericycy@gmail.com>
    
    Stats:
    609     373     source/locale/zh_HK/symbols.dic
     1 file changed, 609 insertions(+), 373 deletions(-)

commit ecee3021cdf55b3d94b918ecc188859bf35a5de4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 4 00:01:25 2021 +0000

    L10n updates for: vi
    From translation svn revision: 61831
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>
    Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    1       1       user_docs/vi/changes.t2t
    1       1       user_docs/vi/userGuide.t2t
     2 files changed, 2 insertions(+), 2 deletions(-)

commit a9041bfcfb0e0e5d5e770f222dde656527cf61ce
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 4 00:01:23 2021 +0000

    L10n updates for: uk
    From translation svn revision: 61831
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    36      36      source/locale/uk/LC_MESSAGES/nvda.po
    147     45      source/locale/uk/symbols.dic
    231     196     user_docs/uk/userGuide.t2t
     3 files changed, 414 insertions(+), 277 deletions(-)

commit ce084cd93fc182a1c6f09a71bc114ae946a1fcde
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 4 00:01:22 2021 +0000

    L10n updates for: tr
    From translation svn revision: 61831
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    6       9       user_docs/tr/changes.t2t
    1       1       user_docs/tr/userGuide.t2t
     2 files changed, 7 insertions(+), 10 deletions(-)

commit 8bbbb956813b0df7855c3258bffd8f56f061aff7
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 4 00:01:20 2021 +0000

    L10n updates for: ta
    From translation svn revision: 61831
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    8       8       source/locale/ta/LC_MESSAGES/nvda.po
     1 file changed, 8 insertions(+), 8 deletions(-)

commit 63403e206119a902f782f9c3bfcbde5733305a82
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 4 00:01:19 2021 +0000

    L10n updates for: sr
    From translation svn revision: 61831
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    70      0       user_docs/sr/changes.t2t
    41      5       user_docs/sr/userGuide.t2t
     2 files changed, 111 insertions(+), 5 deletions(-)

commit e01767f2f761dd4a763821a2f86be894cef23d86
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 4 00:01:12 2021 +0000

    L10n updates for: pt_PT
    From translation svn revision: 61831
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    67      86      source/locale/pt_PT/LC_MESSAGES/nvda.po
    27      25      user_docs/pt_PT/changes.t2t
    38      6       user_docs/pt_PT/userGuide.t2t
     3 files changed, 132 insertions(+), 117 deletions(-)

commit f76204b49e57aa1ae5108eb8701f474270af13a6
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 4 00:01:08 2021 +0000

    L10n updates for: pl
    From translation svn revision: 61831
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Hubert Meyer <hubmeyer1989@gmail.com>
    Arkadiusz Swietnicki <nuno69a@gmail.com>
    
    Stats:
    1       1       user_docs/pl/changes.t2t
    40      5       user_docs/pl/userGuide.t2t
     2 files changed, 41 insertions(+), 6 deletions(-)

commit 895271c78a53bece7584891afa7253662a15e63c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 4 00:01:01 2021 +0000

    L10n updates for: mk
    From translation svn revision: 61831
    
    Authors:
    zvonimir stanecic <9a5dsz@gozaltech.org>
    Ertay Shashko <ertay@outlook.com>
    Aleksandar <glupav@gmail.com>
    Kiko Lazarev <kristijan.lazarev@gmail.com>
    
    Stats:
    0       5       source/locale/mk/symbols.dic
     1 file changed, 5 deletions(-)

commit 74b934b9f0ad74be785cad6974ee5dbee83e4386
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 4 00:01:00 2021 +0000

    L10n updates for: ko
    From translation svn revision: 61831
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    42      42      user_docs/ko/changes.t2t
     1 file changed, 42 insertions(+), 42 deletions(-)

commit 66d31a9ca0f505084d32cdc38644e5bdbb5fcdd7
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 4 00:00:56 2021 +0000

    L10n updates for: it
    From translation svn revision: 61831
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    10      6       source/locale/it/LC_MESSAGES/nvda.po
    1       1       user_docs/it/userGuide.t2t
     2 files changed, 11 insertions(+), 7 deletions(-)

commit 2859e48786ce916b4164382d82b689f7ad61ed3a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 4 00:00:52 2021 +0000

    L10n updates for: hr
    From translation svn revision: 61831
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Milo Ivir <mivir@milotype.de>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    1       1       user_docs/hr/changes.t2t
    1       1       user_docs/hr/userGuide.t2t
     2 files changed, 2 insertions(+), 2 deletions(-)

commit ebcef91bc341db8a19cb6a967e21b38697d89f9e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 4 00:00:49 2021 +0000

    L10n updates for: gl
    From translation svn revision: 61831
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    Javier Curras <javier.curras@nvda.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    10      6       source/locale/gl/LC_MESSAGES/nvda.po
    8       2       user_docs/gl/changes.t2t
    1       1       user_docs/gl/userGuide.t2t
     3 files changed, 19 insertions(+), 9 deletions(-)

commit 0b3243dc20565be6aa08fb283f2f374e1982aed4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 4 00:00:46 2021 +0000

    L10n updates for: fr
    From translation svn revision: 61831
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqué-Cazenave <corentin@progaccess.net>
    
    Stats:
    4       3       user_docs/fr/changes.t2t
    1       1       user_docs/fr/userGuide.t2t
     2 files changed, 5 insertions(+), 4 deletions(-)

commit b1687c65d20fccc4b8cf1a5c5c5d70bb8b27be61
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 4 00:00:44 2021 +0000

    L10n updates for: fi
    From translation svn revision: 61831
    
    Authors:
    Jani Kinnunen <janikinnunen340@gmail.com>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    3       3       source/locale/fi/LC_MESSAGES/nvda.po
    3       3       source/locale/fi/symbols.dic
    1       1       user_docs/fi/changes.t2t
    1       1       user_docs/fi/userGuide.t2t
     4 files changed, 8 insertions(+), 8 deletions(-)

commit a15a17a795876386360edd0a2a47c171290e642f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 4 00:00:43 2021 +0000

    L10n updates for: fa
    From translation svn revision: 61831
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    777     489     source/locale/fa/LC_MESSAGES/nvda.po
    67      0       user_docs/fa/changes.t2t
     2 files changed, 844 insertions(+), 489 deletions(-)

commit 726804e79f51f94ea8b30db4f2b030f92800a26d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 4 00:00:41 2021 +0000

    L10n updates for: es
    From translation svn revision: 61831
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    10      6       source/locale/es/LC_MESSAGES/nvda.po
    8       2       user_docs/es/changes.t2t
    1       1       user_docs/es/userGuide.t2t
     3 files changed, 19 insertions(+), 9 deletions(-)

commit 5ec814e2fe62cbe89fa5c608530025d489a71bce
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 4 00:00:36 2021 +0000

    L10n updates for: de
    From translation svn revision: 61831
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    5       11      user_docs/de/changes.t2t
    5       3       user_docs/de/userGuide.t2t
     2 files changed, 10 insertions(+), 14 deletions(-)

commit 02dde8e746221de63a711617d62d59b1d4586995
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 4 00:00:32 2021 +0000

    L10n updates for: cs
    From translation svn revision: 61831
    
    Authors:
    Martina Letochova <letochova@seznam.cz>
    
    Stats:
    4       3       source/locale/cs/characterDescriptions.dic
     1 file changed, 4 insertions(+), 3 deletions(-)

commit e3829b4b3b73c9d9c261cb4b8542360011b7ee62
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 4 00:00:28 2021 +0000

    L10n updates for: ar
    From translation svn revision: 61831
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Omar Alojaimi <amrahmad1995@gmail.com>
    
    Stats:
    19      22      source/locale/ar/LC_MESSAGES/nvda.po
    74      5       user_docs/ar/changes.t2t
     2 files changed, 93 insertions(+), 27 deletions(-)

commit ed0f900248e23f5c7effc317b670ce744f3e6047
Author: moyanming2013 <moyanming2013@qq.com>
Date:   Thu Jun 3 16:49:07 2021 +0800

    Fix for seika braille driver (PR #10961)
    
    Fixes #10787
    Seika v3/5/80 devices

commit a5a5f2f0146a4c303729b5b2a069ff565ae5c0e3
Merge: c9bb993eb 1dc486e5e
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Thu Jun 3 11:23:44 2021 +0800

    Merge Beta to master PR #12507

commit 1dc486e5ef53553705f967aa597e0bec75dd59e0
Author: Cyrille Bougot <cyrille.bougot2@laposte.net>
Date:   Thu Jun 3 05:17:25 2021 +0200

    Fix 2021.1 highlights (PR #12463)
    
    Co-authored-by: Reef Turner <reef@nvaccess.org>

commit 007f5803a9d5700b9f29ca5b1d6d9477086b722c
Author: Sean Budd <sean@nvaccess.org>
Date:   Wed Jun 2 21:57:39 2021 +1000

    Downgrade espeak to aafd2e720 (PR #12495)
    
    The latest version of espeak-ng has a blocking issue: #12124
    As such, revert to the version of espeak-ng used in release 2020.4, commit aafd2e720

commit 18560de2b280e322d1eebde2e0eeffa417e875c3
Author: Sean Budd <sean@nvaccess.org>
Date:   Wed Jun 2 18:04:19 2021 +1000

    Ensure NVDA quits from menu by queueing exit process (#12499)
    
    When the exit dialog is disabled, the popup menu stays activated while exiting. The NVDA exit process creates a call to destroy the popup menu while it is still activated. This causes a wx issue.
    
    Description of how this pull request fixes the issue:
    Always queue the exit process. This allows the PopupMenu to close before attempting to be deleted.

commit c9bb993ebd79a02b74691cb868fff76dcf3c2ea3
Author: Bill Dengler <codeofdusk@gmail.com>
Date:   Wed Jun 2 04:03:28 2021 -0400

    Use Diff Match Patch by default when available (#12485)
    
    Diff Match Patch (DMP) was included but disabled by default in 2021.1. It fixes #3200 and allows for drastically fewer cross-process calls in UIA console, improving performance in busy applications.
    
    This PR enables DMP by default to allow for wider user testing in master snapshots. If user feedback is positive, use by default in 2021.2.

commit 091b315e050ce21214b5f8326c0e641f6c1b681c
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Mon May 31 21:31:48 2021 -0700

    Toasts and modern keyboard: use winVersion.WIN10_* constants for public builds (#12493)
    
    Change to use winVersion.WIN10_* constants as follows:
    
    Modern keyboard/name change event: winVersion.getWinVer().build > 17134 -> winVersion.getWinVer() > winVersion.WIN10_1803
    Windows 10 toast objects (UIA): sys.getwindowsversion().build > 10586 -> winVersion.getWinVer() > winVersion.WIN10_1511, sys.getwindowsversion().build >= 15063 -> winVersion.getWinVer() >= winVersion.WIN10_1703
    Removed unused "sys" module imoport from NVDAObjects/UIA/init.py
    There exists a winVersion.getWinVer().build comparison in Spartan Edge support but it points to an Insider Preview build (15048) and therefore excluded from this PR unless @michaelDCurran says it is okay to compare against winVersion.WIN10_1703 (build 15063).
    
    Commits:
    
    * appModules/modern keyboard: getWinVer().build > 17134 -> WIN10_1803.
    
    Build 17134 is a public release and is tagged as 1803 (April 2018 Update), therefore compare the versions directly (getWinVer versus winVersion.WIN10_1803) in name change event handler.
    
    * NVDA objects/UIA/Windows 10 toasts: sys.getwindowsversion().build -> winVersion.getWinVer and compare constants.
    
    The following builds are public releases and are represented by constants in winVersion module:
    * 10586: WIN10_1511
    * 15063: WIN10_1703
    
    * NVDAObjects/UIA: remove unused sys module import

commit b36375e2364bbf3798da8babde2236efa1ad6119
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Mon May 31 12:24:55 2021 +0200

    Fix empty edit fields not speaking in Microsoft Edge (#12475)
    
    Fixes #12474
    Fixes #12189
    
    Empty edit fields aren't spoken in Edge. There's a bug in the UIA implementation that causes expand to line to fail when there is no text content in the object
    
    Description of how this pull request fixes the issue:
    1. Use the ChromiumUIA object overlay for text boxes in the Chrome/Edge interface. For Edge, this applies by default. For Chrome, this only applies to cases where experimental UIA support is enabled, but this is far from stable in Chrome itself.
    2. On the ChromeUIATextInfo when expanding to line, check whether there's any text in the document range. If not, don't try to expand as it will break the range.
    3. Make sure not to cache the TextInfo property on UIA objects.ChromiumUIATextInfo. This is necessary because the property is fetched before the overlay classes are added that might change the result of evaluating the property. This ensures the proper TextInfo is used on focus.

commit 34e831bbe28733c965129f095730383b7ec3bfb0
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Mon May 31 00:55:52 2021 -0700

    Windows 10 Calculator: let braille output expressions, even when Delete key is pressed to clear calculator expressions (#12486)
    
    When entering expressions, no braille feedback is given, including when Delete key is pressed to clear expressions.
    
    ### Description of how this pull request fixes the issue:
    Adds Delete (including Numpad Delete) as a Calculator command, along with changing from reportfocus to ui.message in results script so braille output can function.
    
    Co-authored-by: Sean Budd <seanbudd123@gmail.com>
    Co-authored-by: buddsean <sean@nvaccess.org>

commit 31ef7c54ba1f0593a1885a528fcf95d021f753c9
Merge: e05715d3a fca3c2d3f
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Fri May 28 12:14:15 2021 +0800

    Merge pull request #12471 from nvaccess/beta
    
    Merge Beta to Master

commit fca3c2d3fc1fdd1674d3106a59a5b5bc0885da8a
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Fri May 28 11:31:13 2021 +0800

    Fix compilation of espeak dictionary for Cantonese and Mandarin (PR #12370)
    
    Compiling the zhy dictionary has failed for a long time, it was excluded because the cause was unknown.
    It was suspected that there was an error in the format of the files.
    Looking into this I found the issue was caused by trying to set the voice to "zhy" by calling espeak_SetVoiceByProperties.
    The result was 2 (ENS_VOICE_NOT_FOUND)
    Compilation was based on using glob to find the *_rules files, and splitting the filename to get the language to use for the voice.
    
    Espeak-ng has renamed zhy and zh files to match the language code that should be used: yue and cmn for Cantonese and Mandarin respectively.
    See espeak-ng/espeak-ng#933
    
    Description of how this pull request fixes the issue:
    This change makes the compilation of espeak dictionaries explicit.
    An explicit listing of the dictionaries NVDA expects (rather than using glob), allows us to be aware of the introduction or removal of languages.

commit a129954cf0eb1e390ff70238c9b90c44163f12ed
Merge: 7281f9679 c300b92e0
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 28 00:01:24 2021 +0000

    Update translations.
    
    From translation svn revision: 61628

commit c300b92e03dded68870c53c03e2a22cbc0e9f2b1
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 28 00:01:20 2021 +0000

    L10n updates for: vi
    From translation svn revision: 61628
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>
    Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    6       7       source/locale/vi/LC_MESSAGES/nvda.po
    179     74      source/locale/vi/symbols.dic
    5       5       user_docs/vi/changes.t2t
     3 files changed, 190 insertions(+), 86 deletions(-)

commit f03816113d555c1b3ff3e988569f8cd6f5795ec0
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 28 00:01:19 2021 +0000

    L10n updates for: uk
    From translation svn revision: 61628
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    802     513     source/locale/uk/LC_MESSAGES/nvda.po
     1 file changed, 802 insertions(+), 513 deletions(-)

commit ac7e264af354651174e879dc131b285ce830cd86
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 28 00:01:17 2021 +0000

    L10n updates for: tr
    From translation svn revision: 61628
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    17      13      source/locale/tr/LC_MESSAGES/nvda.po
    156     0       user_docs/tr/changes.t2t
    5       5       user_docs/tr/userGuide.t2t
     3 files changed, 178 insertions(+), 18 deletions(-)

commit 583783e126be2250271cb3ad69d56f2b7d49122f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 28 00:01:15 2021 +0000

    L10n updates for: ta
    From translation svn revision: 61628
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    785     496     source/locale/ta/LC_MESSAGES/nvda.po
    16      2       source/locale/ta/symbols.dic
     2 files changed, 801 insertions(+), 498 deletions(-)

commit 9455ff23f2cc32c9e9a9e1c869b693848f09d671
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 28 00:01:14 2021 +0000

    L10n updates for: sr
    From translation svn revision: 61628
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    776     486     source/locale/sr/LC_MESSAGES/nvda.po
     1 file changed, 776 insertions(+), 486 deletions(-)

commit 0de56ef43bbbc8868d05515e840d72fd8392995a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 28 00:01:10 2021 +0000

    L10n updates for: ru
    From translation svn revision: 61628
    
    Authors:
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    
    Stats:
    785     499     source/locale/ru/LC_MESSAGES/nvda.po
     1 file changed, 785 insertions(+), 499 deletions(-)

commit a68b90265c13f7fbe8b5d204ab7c6be6c14a4822
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 28 00:01:08 2021 +0000

    L10n updates for: ro
    From translation svn revision: 61628
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <7ro2014@gmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    George Antonio Andrei <george.andrei2002@gmail.com>
    
    Stats:
    785     494     source/locale/ro/LC_MESSAGES/nvda.po
     1 file changed, 785 insertions(+), 494 deletions(-)

commit b31a1baa46d2b0876af9e2fe274b85a46136f3bd
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 28 00:01:04 2021 +0000

    L10n updates for: pt_BR
    From translation svn revision: 61628
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    155     57      user_docs/pt_BR/userGuide.t2t
     1 file changed, 155 insertions(+), 57 deletions(-)

commit 9fb936521fc00a9ca467cb1be108da708ad5b4aa
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 28 00:01:03 2021 +0000

    L10n updates for: pl
    From translation svn revision: 61628
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Hubert Meyer <hubmeyer1989@gmail.com>
    Arkadiusz Swietnicki <nuno69a@gmail.com>
    
    Stats:
    20      20      source/locale/pl/LC_MESSAGES/nvda.po
    2       1       user_docs/pl/changes.t2t
    45      45      user_docs/pl/userGuide.t2t
     3 files changed, 67 insertions(+), 66 deletions(-)

commit d8bd2f4ad4888ca48dc138730f9aa2221a2128e2
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 28 00:01:00 2021 +0000

    L10n updates for: nl
    From translation svn revision: 61628
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    814     505     source/locale/nl/LC_MESSAGES/nvda.po
    70      0       user_docs/nl/changes.t2t
    42      6       user_docs/nl/userGuide.t2t
     3 files changed, 926 insertions(+), 511 deletions(-)

commit fdf98ab4f2bcf8edad30013455d3a68e4e0548b3
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 28 00:00:54 2021 +0000

    L10n updates for: ko
    From translation svn revision: 61628
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    34      42      source/locale/ko/LC_MESSAGES/nvda.po
    69      0       user_docs/ko/changes.t2t
     2 files changed, 103 insertions(+), 42 deletions(-)

commit d5e116151ddc592c15a8049ae56e7ccfa5ae4a8c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 28 00:00:51 2021 +0000

    L10n updates for: ja
    From translation svn revision: 61628
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    2       2       source/locale/ja/LC_MESSAGES/nvda.po
     1 file changed, 2 insertions(+), 2 deletions(-)

commit a7a4e81a96621646560891ec32ae5547226e34b9
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 28 00:00:45 2021 +0000

    L10n updates for: hr
    From translation svn revision: 61628
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Milo Ivir <mivir@milotype.de>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    73      90      source/locale/hr/LC_MESSAGES/nvda.po
    121     121     source/locale/hr/symbols.dic
    52      52      user_docs/hr/changes.t2t
    40      5       user_docs/hr/userGuide.t2t
     4 files changed, 286 insertions(+), 268 deletions(-)

commit 7ab83c33d1f499618c74beb8316b4fba7422847e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 28 00:00:40 2021 +0000

    L10n updates for: fr
    From translation svn revision: 61628
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqué-Cazenave <corentin@progaccess.net>
    
    Stats:
    11      7       source/locale/fr/LC_MESSAGES/nvda.po
    5       3       source/locale/fr/gestures.ini
    135     32      source/locale/fr/symbols.dic
    161     9       user_docs/fr/changes.t2t
    8       8       user_docs/fr/userGuide.t2t
     5 files changed, 320 insertions(+), 59 deletions(-)

commit 11cd7c589b8cc091bd6086fd4d230fc3e6510650
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 28 00:00:38 2021 +0000

    L10n updates for: fi
    From translation svn revision: 61628
    
    Authors:
    Jani Kinnunen <janikinnunen340@gmail.com>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    10      6       source/locale/fi/LC_MESSAGES/nvda.po
    16      0       source/locale/fi/symbols.dic
    1       1       user_docs/fi/changes.t2t
     3 files changed, 27 insertions(+), 7 deletions(-)

commit e7ddd8f0c864b9d759f759e4d36fd6df1b4535bd
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 28 00:00:34 2021 +0000

    L10n updates for: es
    From translation svn revision: 61628
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/es/symbols.dic
     1 file changed, 1 insertion(+), 1 deletion(-)

commit c1029e6059d1fc8cc7671979edcee106da8fcf5c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 28 00:00:30 2021 +0000

    L10n updates for: de
    From translation svn revision: 61628
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    12      12      source/locale/de/LC_MESSAGES/nvda.po
     1 file changed, 12 insertions(+), 12 deletions(-)

commit d784077cddf84230259d92d2f1bc3f9b1237c124
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 28 00:00:27 2021 +0000

    L10n updates for: da
    From translation svn revision: 61628
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    775     487     source/locale/da/LC_MESSAGES/nvda.po
     1 file changed, 775 insertions(+), 487 deletions(-)

commit 13259638f2cab1caedf6604d0a98be7d89b5f817
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 28 00:00:25 2021 +0000

    L10n updates for: cs
    From translation svn revision: 61628
    
    Authors:
    Martina Letochova <letochova@seznam.cz>
    
    Stats:
    641     1018    source/locale/cs/LC_MESSAGES/nvda.po
     1 file changed, 641 insertions(+), 1018 deletions(-)

commit f4bb3cf3f7d6b78f3df10815f39e83831a603f03
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 28 00:00:21 2021 +0000

    L10n updates for: ar
    From translation svn revision: 61628
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Omar Alojaimi <amrahmad1995@gmail.com>
    
    Stats:
    771     471     source/locale/ar/LC_MESSAGES/nvda.po
     1 file changed, 771 insertions(+), 471 deletions(-)

commit e05715d3ad7718bd5bf9968808376392c30d3bc9
Author: Sean Budd <sean@nvaccess.org>
Date:   Wed May 26 14:27:56 2021 +1000

    Perform and report all test sections in AppVeyor build (#12460)
    
    When a test aspect of the build fails, other tests are not run. It would be good to always run all tests, and also inform the developer of the status of passed and failed tests.
    
    
    Removes exiting the build early on failure and posts a confirmation of a test passing for:
    
    - checkPot
    - lint check
    - unit tests
    - system tests

commit ea8888887f71e72f897862e868605e63c416e61e
Author: Sean Budd <sean@nvaccess.org>
Date:   Wed May 26 13:27:56 2021 +1000

    Report if an object has details in browseMode (#12439)
    
    #12364 added a command to read the summary of the aria-details. To know whether or not an object has details, this should be reported. However, new users might not want to use this feature so #12409 added a config setting to opt-in.
    
    Description of how this pull request fixes the issue:
    Discards the "has details" state change message unless the annotations config option is turned on.

commit 7281f9679af9971a748adf240a1bf082d1304648
Author: Bill Dengler <codeofdusk@gmail.com>
Date:   Tue May 25 05:05:41 2021 -0400

    Correct userguide: Cancellable speech no longer experimental (PR #12454)

commit e005ae4e6a613d3644f6b496c84888131ea274d1
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Mon May 24 17:46:40 2021 +0800

    Add UX consideration to code review checklist (PR #12441)
    
    It is common to focus on Speech output and forget to consider Braille, and Low vision UX.
    Additionally, a reminder about supporting multiple browsers.
    
    Additionally, documentation for coding standards, and explainers for github templates have been moved from the wiki to the dev docs folder.

commit f16d63d3c37b7cf18bbab27d87ba62cdf43dacb3
Merge: e86d0e073 2ad4ce2c0
Author: Sean Budd <sean@nvaccess.org>
Date:   Mon May 24 18:25:22 2021 +1000

    Merge pull request #12459 from nvaccess/beta
    
    Merge beta into master

commit e86d0e073ee11ead84296bf3fd3b000d59bbcd33
Author: Bill Dengler <codeofdusk@gmail.com>
Date:   Mon May 24 03:44:02 2021 -0400

    UI Automation in Windows Console: Cache isImprovedTextRangeAvailable and infrastructure for UIA by default (#12453)
    
    In UIA consoles:
    
    If UIA support is disabled but UIA console somehow starts, the custom overlay class is not applied.
    badUIWindowClassNames and goodUIWindowClassNames are mutable, which is inconsistent with other UIA implementations.
    isImprovedTextRangeAvailable is queried many times, resulting in excessive cross-process calls.
    In newer consoles, caret movement is not delayed, so the timeout is excessively long leading to performance problems in some cases.
    
    Description of how this pull request fixes the issue:
    Removes the setting check when applying the overlay class (this shouldn't have been there, as the object is already UIA at the step of applying an overlay class).
    Removes _UIAHandler._isBadWindowClassName (added for UIA console)
    makes badUIWindowClassNames and goodUIWindowClassNames immutable, as tuples
    Adds UIAUtils._isImprovedConhostTextRangeAvailable which checks the number of visible ranges in a console at a given hwnd. This function is decorated with functools.lru_cache.
    Adds UIAUtils._shouldUseUIAConsole which currently just checks the config as before (when UIA console becomes default, a call to _isImprovedConhostTextRangeAvailable will be added to this function to handle the default/auto case).
    Removes the caret movement timeout multiplier override on consoles where isImprovedTextRangeAvailable.

commit 9182acd71a2fb34f606d842174301bd1e8145de5
Author: Sean Budd <sean@nvaccess.org>
Date:   Mon May 24 15:59:28 2021 +1000

    Check if hasUiAccess to determine if isAudioDuckingSupported (#12456)
    
    UI access privilege is also required to use audio ducking functionality. This creates noise in system test logs as audio ducking fails to initialise. Check if systemUtils.hasUiAccess to determine if isAudioDuckingSupported.

commit aec5cf0811d6d74f42f67b5c26641b92d30e126b
Author: Sean Budd <sean@nvaccess.org>
Date:   Mon May 24 15:57:10 2021 +1000

    ensure hasUiAccess in touchSupported (#12447)
    
    Unsigned installed builds (such as PRs) fail to start on touchscreen devices as touch handler fails to initialise.
    
    Description of how this pull request fixes the issue:
    this is due to NVDA not having the UIAccess permission without being a signed copy. touchHandler.touchSupported should return False if systemUtils.hasUIAccess returns False

commit 2ad4ce2c06bd6d2d5019f05981879a00eb8f374d
Author: Sean Budd <sean@nvaccess.org>
Date:   Mon May 24 15:52:11 2021 +1000

    only exit if silent install or portable copy starting (#12455)
    
    #12431 introduced a change where NVDA always exits at the end of creating a portable copy. The intention was to change the behaviour
    
    from
    exit NVDA if it is a silent install
    to
    exit NVDA if it is a silent install, or if we are starting the portable copy.
    
    As a result of #12431, finishing the install of a portable copy without starting it also results in NVDA exiting.

commit 9a28515379658cd6be9d213416fc2baf9914a6d9
Merge: 935748aee a3b6c23f0
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Fri May 21 17:06:00 2021 +0800

    Merge pull request #12450 from nvaccess/beta
    
    Merge beta to master

commit a3b6c23f05d8e613a27effbd68715395d6255407
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Fri May 21 17:00:06 2021 +0800

    Update espeak to latest master (PR #12449)
    
    Updated to commit f6d092a9c13d864ede78c493f64a7d32cde41f09

commit f4e21b711bcb888b6f17008324d5cf2af0f997ee
Merge: 76fc1f722 2220382ed
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 21 07:50:51 2021 +0000

    Update translations.
    
    From translation svn revision: 61504

commit 2220382ed1b4c3a6bad15db2dc076b8703e1063c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 21 07:50:49 2021 +0000

    L10n updates for: zh_CN
    From translation svn revision: 61504
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen_0528@outlook.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    1872265132@qq.com
    
    Stats:
    2       2       user_docs/zh_CN/userGuide.t2t
     1 file changed, 2 insertions(+), 2 deletions(-)

commit 8fc0adb4d5cb9a440aa019d0ac8c1a0c3ea56322
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 21 07:50:47 2021 +0000

    L10n updates for: vi
    From translation svn revision: 61504
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>
    Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    770     484     source/locale/vi/LC_MESSAGES/nvda.po
    34      35      user_docs/vi/changes.t2t
     2 files changed, 804 insertions(+), 519 deletions(-)

commit dc1946ba3b3322331534e63c59a8885b19531224
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 21 07:50:33 2021 +0000

    L10n updates for: pl
    From translation svn revision: 61504
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Hubert Meyer <hubmeyer1989@gmail.com>
    Arkadiusz Swietnicki <nuno69a@gmail.com>
    
    Stats:
    12      8       source/locale/pl/LC_MESSAGES/nvda.po
    358     256     source/locale/pl/symbols.dic
    1       1       user_docs/pl/userGuide.t2t
     3 files changed, 371 insertions(+), 265 deletions(-)

commit 09731c3b7e4ac2dcc768c2d9a7f1e47b34ff9ac5
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 21 07:50:24 2021 +0000

    L10n updates for: ko
    From translation svn revision: 61504
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    13      11      source/locale/ko/LC_MESSAGES/nvda.po
     1 file changed, 13 insertions(+), 11 deletions(-)

commit 265e47129c87d6f054b8d71cc880f363216649a0
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 21 07:50:22 2021 +0000

    L10n updates for: ja
    From translation svn revision: 61504
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    11      6       source/locale/ja/LC_MESSAGES/nvda.po
     1 file changed, 11 insertions(+), 6 deletions(-)

commit 762a827931f0a0364af78584da82a551ab12b431
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 21 07:50:04 2021 +0000

    L10n updates for: de
    From translation svn revision: 61504
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    792     499     source/locale/de/LC_MESSAGES/nvda.po
    7       1       user_docs/de/changes.t2t
     2 files changed, 799 insertions(+), 500 deletions(-)

commit 76fc1f72225012c9922aa3fd8962ec51f20b529f
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri May 21 16:32:17 2021 +1000

    Remove the one and only use of ngettext as our po checks seem to be getting confused by it, and this was not the first and only issue. (#12448)
    
    Recently NVDA began using ngettext to allow translators to provide both singular and plural translations for a particular message.
    However, it seems that our PO validation code in the translation system is not handling plural forms well, and is incorrectly classing translations as missing brace format variables, as it is incorrectly comparing the translation with the message before that one.
    It then outputs the following error:
    Message starting on line 7169
    Original: "{startTime} to {endTime}"
    Translated: "category {categories}"
    Error: missing brace format interpolation, extra brace format interpolation
    Expected: these brace format interpolations: {endTime}, {startTime}
    Got: these brace format interpolations: {categories}
    ngettext was so far only used for one string in NVDA, in source/appModules/outlook.py. Seen by doing git grep ngettext.
    We have many many strings in NVDA which would benefit from ngettext, but we need to know it works correctly. So until we are sure we can validate this correctly, we should stop using it in the one and only place it exists today.
    
    Description of how this pull request fixes the issue:
    Stop using ngettext for the one string in the Outlook appModule, instead replacing it with a normal use of _() providing just the plural form.

commit 6852a8ad9302bcec864d80293beb8e3afcf6b6a4
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Fri May 21 13:29:27 2021 +0800

    Update Addon API min ver (PR #11912)
    
    2021.1 has many Addon API breaking changes.
    Addons need to be re-tested and have their manifest updated.
    See changes file for full listing.

commit 922957b15ba294fef4ece26a6983fdaee750cd28
Author: Luke Davis <8139760+XLTechie@users.noreply.github.com>
Date:   Fri May 21 01:26:20 2021 -0400

    Remove duplicate changelog entries (PR #12444)
    
    Changes from #11782 were listed twice, though slightly differently. Picked the best lines from both.

commit 935748aee87fe10f6f481932464cf5468f05a068
Merge: c4de3943d f8852a848
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri May 21 12:22:45 2021 +1000

    Merge pull request #12423 from nvaccess/beta
    
    Merge beta into master

commit f8852a8482a353f415c1070530d06bc6f7b054ec
Author: Sean Budd <sean@nvaccess.org>
Date:   Fri May 21 12:21:07 2021 +1000

    Wait until GUI exits before starting new NVDA instance from installer (#12431)
    
    NVDA (usually) crashes after a successful install. This occurs directly after "NVDA exit" is logged, and happens during the system exit process. Debugging the crash dump in #12421 finds that a window is processing an activate event after the wx app has been destroyed.
    
    We know that:
    the installer crashes at the end, when WM_QUIT is sent from another NVDA instance
    the installer only crashes for non-silent installs, otherwise appveyor would be crashing regularly
    
    I've found that:
    the installer exits normally when another NVDA instance is started before the install finishes
    running subsequent instances of NVDA exits the running instance using WM_QUIT without crashing
    
    Description of how this pull request fixes the issue:
    If we exit the GUI before starting the new instance of NVDA, then the new instance will not use WM_QUIT to exit the GUI. This PR adds a handler to start a new NVDA instance, to the NVDA exit event, after the wx mainloop is exited safely.

commit 88fdf828dcf13605720f0c3967d77bb66ea63d70
Merge: 610bcbcf2 4dfacbbfc
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 21 00:09:50 2021 +0000

    Update translations.
    
    From translation svn revision: 61483

commit 4dfacbbfca42cbf142500b8df559a24808f4d050
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 21 00:09:46 2021 +0000

    L10n updates for: vi
    From translation svn revision: 61483
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>
    Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    72      1       user_docs/vi/changes.t2t
    39      4       user_docs/vi/userGuide.t2t
     2 files changed, 111 insertions(+), 5 deletions(-)

commit 63f76678b728298857241ca404a680a8a00cb844
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 21 00:09:44 2021 +0000

    L10n updates for: tr
    From translation svn revision: 61483
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    69      70      source/locale/tr/symbols.dic
    3       3       user_docs/tr/userGuide.t2t
     2 files changed, 72 insertions(+), 73 deletions(-)

commit 167c2b75cf5a631cbd769739f522504db618eaa8
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 21 00:09:35 2021 +0000

    L10n updates for: pt_PT
    From translation svn revision: 61483
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    7       0       user_docs/pt_PT/changes.t2t
    5       2       user_docs/pt_PT/userGuide.t2t
     2 files changed, 12 insertions(+), 2 deletions(-)

commit d62dfa7a10df0eaabd3b693d173fe10fc68e2496
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 21 00:09:32 2021 +0000

    L10n updates for: pl
    From translation svn revision: 61483
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Hubert Meyer <hubmeyer1989@gmail.com>
    Arkadiusz Swietnicki <nuno69a@gmail.com>
    
    Stats:
    68      0       user_docs/pl/changes.t2t
     1 file changed, 68 insertions(+)

commit 4278a13ebfd3c712f9a0c4bfecde5c234e87756d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 21 00:09:20 2021 +0000

    L10n updates for: it
    From translation svn revision: 61483
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    41      6       user_docs/it/userGuide.t2t
     1 file changed, 41 insertions(+), 6 deletions(-)

commit 15f7e74e8ac06477e9896596da9f1ac5b6536805
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 21 00:09:16 2021 +0000

    L10n updates for: hr
    From translation svn revision: 61483
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Milo Ivir <mivir@milotype.de>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    358     254     source/locale/hr/symbols.dic
    9       8       user_docs/hr/changes.t2t
     2 files changed, 367 insertions(+), 262 deletions(-)

commit b28a9e1cd439dc0ef30b9124878c1fefbdd468f3
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 21 00:09:12 2021 +0000

    L10n updates for: fr
    From translation svn revision: 61483
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqué-Cazenave <corentin@progaccess.net>
    
    Stats:
    39      4       user_docs/fr/userGuide.t2t
     1 file changed, 39 insertions(+), 4 deletions(-)

commit dde8c255c853236e6bd6b1551c1c1c78963ca0af
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 21 00:09:03 2021 +0000

    L10n updates for: de
    From translation svn revision: 61483
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    112     112     user_docs/de/changes.t2t
    20      20      user_docs/de/userGuide.t2t
     2 files changed, 132 insertions(+), 132 deletions(-)

commit f9c9bded0d562a9fff2dda6e886059a7007a7137
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 21 00:08:59 2021 +0000

    L10n updates for: cs
    From translation svn revision: 61483
    
    Authors:
    Martina Letochova <letochova@seznam.cz>
    
    Stats:
    417     215     source/locale/cs/LC_MESSAGES/nvda.po
     1 file changed, 417 insertions(+), 215 deletions(-)

commit 610bcbcf246a3d00e63237c780de8e8bdcc2a85e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Thu May 20 10:10:03 2021 +0000

    Fix dirty files on translation system
    
    The msg path is filtered in the translation system (via git config). It removes the file path
    from the comments of *.po files.
    Recently git has been complaining about files that have not yet had these lines removed.
    It claims the files are modified, and will not checkout a file that conflicts with it.
    This is despite the working directory matching HEAD, git still thinks there is a diff.

commit d96487bf5c3f6a631fda1d668503c03512409348
Author: Cyrille Bougot <cyrille.bougot2@laposte.net>
Date:   Thu May 20 10:19:13 2021 +0200

    Fix key error when reading appointment with categories. (PR #12435)
    
    In Outlook Calendar, KeyError in the log when tabbing on an appointment having an associated category.
    
    In #12432, .format was used without key word argument, whereas the string to be formatted contained a named interpolated value.

commit 1d6b0c223071068c1f80037882a343ce69e62986
Author: Sean Budd <sean@nvaccess.org>
Date:   Thu May 20 09:31:40 2021 +1000

    unset values after destruction (#12433)

commit f442b9f27d2dd28eb5c8c80f543d12ea6b01ba17
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Thu May 20 00:32:08 2021 +0200

    Revert "Don't use UnidentifiedEdit for windows with empty windowText (#11966)" (#12429)
    
    This reverts commit 4288882b4f83d3f2c7c3cdb3de0ac0067533a026.
    
    PR #11966 started using DisplayModelEditableText for edit fields with empty window text to improve access to IDE's by MCS Electronic - this unfortunately broke access to some edit fields in Excel as they were forcibly using DisplayModelEditableText and now they were getting this class twice in the MRO. When trying to come up with a fix I've found another problems with the approach from #11966 namely edit fields which require UnidentifiedEdit weren't getting it in the MRO when they are initially empty.
    
    Since we're quite close to the release it makes sense to revert #11966 for now and investigate another approach - the program for which the original fix was needed is quite niche and therefore I don't consider this to be a big loss. I'll try to come up with something better for the next release.

commit 19240163b0d357f4a06387483545588fbe6fcbd2
Merge: 2e78a9f17 0fb88a102
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed May 19 11:22:51 2021 +0000

    Update translations.
    
    From translation svn revision: 61400

commit 0fb88a1020ec643800dd07757f092dd39e373af8
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed May 19 11:22:49 2021 +0000

    L10n updates for: zh_CN
    From translation svn revision: 61400
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen_0528@outlook.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    1872265132@qq.com
    
    Stats:
    1       1       user_docs/zh_CN/userGuide.t2t
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 2e78a9f171e30649431cb00afcf73ce478bcf9a8
Merge: 157458ba7 f2c903e37
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed May 19 10:57:04 2021 +0000

    Update translations.
    
    From translation svn revision: 61395

commit f2c903e37551bd43f24f23c2c9b22f63c3bb8fdd
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed May 19 10:56:50 2021 +0000

    L10n updates for: pt_PT
    From translation svn revision: 61395
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    814     505     source/locale/pt_PT/LC_MESSAGES/nvda.po
    150     0       user_docs/pt_PT/changes.t2t
     2 files changed, 964 insertions(+), 505 deletions(-)

commit 157458ba78d6210a47faaa58b944ca6a42ee589b
Merge: e4e97efa2 9d38eba16
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed May 19 10:31:14 2021 +0000

    Update translations.
    
    From translation svn revision: 61355

commit 9d38eba16ad05e816910aa9469d3a62855dc40d7
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed May 19 10:31:12 2021 +0000

    L10n updates for: zh_CN
    From translation svn revision: 61355
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen_0528@outlook.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    1872265132@qq.com
    
    Stats:
    7       7       user_docs/zh_CN/userGuide.t2t
     1 file changed, 7 insertions(+), 7 deletions(-)

commit b25c6ba3c3ef993be824d088149ec45bea54c3f4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed May 19 10:31:08 2021 +0000

    L10n updates for: tr
    From translation svn revision: 61355
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    771     487     source/locale/tr/LC_MESSAGES/nvda.po
    48      3       user_docs/tr/userGuide.t2t
     2 files changed, 819 insertions(+), 490 deletions(-)

commit ca55534590307e01a278b7f0ba548d02c40f260a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed May 19 10:30:58 2021 +0000

    L10n updates for: pt_BR
    From translation svn revision: 61355
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    781     495     source/locale/pt_BR/LC_MESSAGES/nvda.po
     1 file changed, 781 insertions(+), 495 deletions(-)

commit 527e43be6a4618bed6247eacebc09700c4a01593
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed May 19 10:30:56 2021 +0000

    L10n updates for: pl
    From translation svn revision: 61355
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Hubert Meyer <hubmeyer1989@gmail.com>
    Arkadiusz Swietnicki <nuno69a@gmail.com>
    
    Stats:
    780     494     source/locale/pl/LC_MESSAGES/nvda.po
     1 file changed, 780 insertions(+), 494 deletions(-)

commit b7a86eec7a5ac81b61726223f0d53afd6bb717b5
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed May 19 10:30:47 2021 +0000

    L10n updates for: ko
    From translation svn revision: 61355
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    751     463     source/locale/ko/LC_MESSAGES/nvda.po
     1 file changed, 751 insertions(+), 463 deletions(-)

commit af7181f37321232d56aefedbb6be8557555aac6f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed May 19 10:30:45 2021 +0000

    L10n updates for: ja
    From translation svn revision: 61355
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    753     477     source/locale/ja/LC_MESSAGES/nvda.po
    38      3       user_docs/ja/userGuide.t2t
     2 files changed, 791 insertions(+), 480 deletions(-)

commit 13fb6d86d812c2971ecbc7c74a08ba46652e71fa
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed May 19 10:30:43 2021 +0000

    L10n updates for: it
    From translation svn revision: 61355
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    781     493     source/locale/it/LC_MESSAGES/nvda.po
     1 file changed, 781 insertions(+), 493 deletions(-)

commit b8b510384011729a48b54eec399abe3062e051c7
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed May 19 10:30:39 2021 +0000

    L10n updates for: hr
    From translation svn revision: 61355
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Milo Ivir <mivir@milotype.de>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    811     507     source/locale/hr/LC_MESSAGES/nvda.po
    69      0       user_docs/hr/changes.t2t
     2 files changed, 880 insertions(+), 507 deletions(-)

commit cb2d9b4660bbc1cf0b266d0a0c996284da99e6fe
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed May 19 10:30:36 2021 +0000

    L10n updates for: gl
    From translation svn revision: 61355
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    Javier Curras <javier.curras@nvda.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    954     670     source/locale/gl/LC_MESSAGES/nvda.po
    362     256     source/locale/gl/symbols.dic
    150     0       user_docs/gl/changes.t2t
    41      7       user_docs/gl/userGuide.t2t
     4 files changed, 1507 insertions(+), 933 deletions(-)

commit 8a04c3135536aa8887ea27bde41308aa6b9a24c4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed May 19 10:30:33 2021 +0000

    L10n updates for: fr
    From translation svn revision: 61355
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqué-Cazenave <corentin@progaccess.net>
    
    Stats:
    783     496     source/locale/fr/LC_MESSAGES/nvda.po
     1 file changed, 783 insertions(+), 496 deletions(-)

commit 66f01b76f80ff81c189bb0cad1837acfe93e7730
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed May 19 10:30:31 2021 +0000

    L10n updates for: fi
    From translation svn revision: 61355
    
    Authors:
    Jani Kinnunen <janikinnunen340@gmail.com>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    793     509     source/locale/fi/LC_MESSAGES/nvda.po
    267     158     source/locale/fi/symbols.dic
    74      3       user_docs/fi/changes.t2t
    43      8       user_docs/fi/userGuide.t2t
     4 files changed, 1177 insertions(+), 678 deletions(-)

commit 821cd5ad98233b91c8996a4d428f15a4ed93f83f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed May 19 10:30:28 2021 +0000

    L10n updates for: es
    From translation svn revision: 61355
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    785     498     source/locale/es/LC_MESSAGES/nvda.po
    362     256     source/locale/es/symbols.dic
    150     0       user_docs/es/changes.t2t
    40      5       user_docs/es/userGuide.t2t
     4 files changed, 1337 insertions(+), 759 deletions(-)

commit 4d55d2ed9010e3c16101a9f7a4215b4b02a26b48
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed May 19 10:30:24 2021 +0000

    L10n updates for: de
    From translation svn revision: 61355
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    152     1       user_docs/de/changes.t2t
    38      4       user_docs/de/userGuide.t2t
     2 files changed, 190 insertions(+), 5 deletions(-)

commit bedf1e180f1d7a174c1bb1166109156a7572779a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed May 19 10:30:20 2021 +0000

    L10n updates for: cs
    From translation svn revision: 61355
    
    Authors:
    Martina Letochova <letochova@seznam.cz>
    
    Stats:
    797     528     source/locale/cs/LC_MESSAGES/nvda.po
     1 file changed, 797 insertions(+), 528 deletions(-)

commit e4e97efa2b7731839975168244f0f4d6670706b8
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Wed May 19 16:26:23 2021 +0800

    Flexibility of outlook categories translation (PR #12432)
    
    Allow translators to adjust order and spacing for categories in outlook
    Fixes #12417

commit c4de3943d349741fd32be4de57fdee34e59860c9
Author: Sean Budd <sean@nvaccess.org>
Date:   Wed May 19 10:56:28 2021 +1000

    Create advanced option for experimental reporting of annotations (#12409)
    
    If we are to start introducing experimental support for reporting annotations, it should be hidden behind an opt-in option in advanced preferences.
    
    Adds a config setting in Advanced NVDA preferences to enable the discovery of "has details" in browseMode

commit d6787b8f47861f5e76aba68da7a13a217404196f
Author: Sean Budd <sean@nvaccess.org>
Date:   Wed May 19 10:41:40 2021 +1000

    Add unmapped command to read a summary of aria-details (#12364)
    
    aria-details is a HTML attribute that contains a reference to a HTML element that contains structured details.
    
    aria-details is appropriate when linking to descriptions or annotations that are a bit more complex — rather than a simple text string, it might contain multiple bits of semantic information:
    
    https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Annotations#aria-details_versus_aria-describedby
    
    It would be helpful for NVDA users to be able to read a summary of aria-details before having to navigate through the structured annotation.

commit 8783abb21c2eef73b8ab16a921694d90b7bd406c
Author: Sean Budd <sean@nvaccess.org>
Date:   Wed May 19 10:10:46 2021 +1000

    Start dev cycle for 2021.2 (#12427)

commit b6997e32f6038fd6c1c5e8f21682f1c4d5c7e57c
Author: Sean Budd <sean@nvaccess.org>
Date:   Wed May 19 09:18:32 2021 +1000

    move/remove imports to prevent circular dependencies (#12404)
    
    NVDA fails to uninstall addons which import gui due to a circular dependency going from speech.py -> sayAll.py
    
    While the refactor of speech/sayAll #12251 was designed to make fixing this problem simpler, it did not actually fix this issue.
    
    Description of how this pull request fixes the issue:
    makes sayAll no longer dependent on speech by injecting the dependencies on initialization
    removes unused imports
    moves imports to lazy load

commit 0a6806a323b68dddf7ac1d8486cc2499bbfd5b94
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue May 18 12:36:54 2021 +1000

    Update NVDA's Authenticode code signing certificate (#12398)
    
    NVDA requires being signed with a trusted Authenticode code-signing certificate, so that it can access certain accessibility features on Windows such as UIAccess.
    The current Authenticode certificate expires in July 2021.
    
    NV access has purchased a new Authenticode certificate which expires in August 2024.
    Due to updated Authenticode policies, this certificate uses a 3072 bit RSA, rather than 2048 bit.
    This certificate has been securely encrypted by a secret (itself encrypted via our AppVeyor key). The encoded certificate replaces the older 2018 encoded certificate in this Git repository.
    The encryption of the certificate is also significantly stronger
    as it uses SHA256 instead of md5, a salt is now used, and a newer secret key derivation algorithm is now used, as recommended by openssl when decrypting the certificate in the past.
    A more secure time stamping server is used, again upgraded to SHA256.

commit b99d6107744bed4638fe64157599a188ad2508e6
Merge: 5c157baf1 7e6561a0b
Author: Reef Turner <reef@nvaccess.org>
Date:   Mon May 17 17:01:50 2021 +0800

    Merge remote-tracking branch 'origin/master' into beta

commit 5c157baf1bf86565a4273580338778dd2dfee8f0
Author: Bill Dengler <codeofdusk@gmail.com>
Date:   Mon May 17 04:49:10 2021 -0400

    UIA in Windows Console: rename is21H1Plus (PR #12094)
    
    Fix for microsoft/terminal#9239
    
    Summary of the issue:
    Windows 10 21H1 has been released to insiders with significantly reduced scope (i.e. excluding the UIA changes it was originally set to include), making our internal names misleading. Additionally, there are plans to "undock" conhost from Windows, removing the guarantee that a given Windows version will run a particular version of the console (it's technically already possible to run newer console on older Windows, I do it for testing).
    
    Description of how this pull request fixes the issue:
    Renames:
    - NVDAObjects.UIA.winConsoleUIA.is21H1Plus -> NVDAObjects.UIA.winConsoleUIA.isImprovedTextRangeAvailable
    - NVDAObjects.UIA.winConsoleUIA.consoleUIATextInfo -> NVDAObjects.UIA.winConsoleUIA.ConsoleUIATextInfo (Start class name with upper case)
    - NVDAObjects.UIA.winConsoleUIA.consoleUIATextInfoPre21H1 -> NVDAObjects.UIA.winConsoleUIA.ConsoleUIATextInfoWorkaroundEndInclusive
      - The implementation works around both end points being inclusive (in text ranges) before microsoft/terminal#4018
      - Workarounds for expand, collapse, compareEndPoints, setEndPoint, etc
    
    Also moves the text override to the workaround textInfo as #10036 is no longer reproducible in new console.
    Co-authored-by: Reef Turner <reef@nvaccess.org>

commit 7e6561a0b0baf871f429ff35436b2493ddef2381
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Mon May 17 10:41:01 2021 +1000

    Use pre-processed cldr production data (#12422)
    
    Fixes #11963
    
    Summary of the issue:
    Some time around CLDR release 36, CLDR started including "↑↑↑" in annotation values as a placeholder which meant that the value should be inherited from a parent locale.
    These ↑↑↑ values were being put straight into NVDA's cldr dictionaries without any further processing, causing languages such as Chinese (Hongkong) and others to speak these ↑↑↑ values instead of useful emoji labels.
    
    Description of how this pull request fixes the issue:
    NVDA now includes the cldr-staging repository as a submodule, rather than the cldr repository. The cldr-staging repository contains a production directory, with all its xml files pre-processed to include inherited values rather than the ↑↑↑ placeholders.

commit 9390d025e117388660bef9b8a5eb27bd5ddab5a3
Author: Ozancan Karataş <ozancankaratas96@outlook.com>
Date:   Mon May 17 02:17:54 2021 +0300

    Update CLDR to version 39.0 (#12314)
    
    Enables several new languages.

commit 44fabd7452885a84de0254be30c28cf6e276781b
Author: Sean Budd <sean@nvaccess.org>
Date:   Fri May 14 16:19:26 2021 +1000

    log focusing chrome better during system tests (#12415)
    
    It is hard to know why a certain system test is failing. The test seems to be unable to focus the content of the focused chrome window. Logging information about the focus windows will help compare failing and succeeding tests.
    
    Some further investigation in this PR #12408 led me to think that the incorrect window is gaining focus
    
    Specifically where the "before test sample marker" was unable to be read when cycling focus using F6
    
    Description of how this pull request fixes the issue:
    Adds additional logging to know what windows could be focused and which currently have focus. Don't focus a window if many windows match our targeted window filter.

commit 77220b4a6bec2116848d19f1ed060cc219939406
Merge: c1ddd3f7a 958f8ccdb
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 14 04:45:10 2021 +0000

    Update translations.
    
    From translation svn revision: 61272

commit 958f8ccdb987e67e4d55b382ae617ebc6c8e6ad2
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 14 04:44:33 2021 +0000

    L10n updates for: he
    From translation svn revision: 61272
    
    Authors:
    Shmuel Naaman <shmuel_naaman@yahoo.com>
    Afik Sofir <afik.sofer@gmail.com>
    
    Stats:
    1       1       source/locale/he/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit c1ddd3f7ae66c17909d0c926d49306c307192e28
Merge: 99a8f60cf 1007f9e2d
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Fri May 14 12:14:46 2021 +0800

    Merge pull request #12391 from nvaccess/branchFor2021.1
    
    Merge alpha into beta for 2021.1

commit 1007f9e2d11e70227c4481e9f42f96d6c2a714bb
Author: Sean Budd <sean@nvaccess.org>
Date:   Fri May 14 13:52:49 2021 +1000

    further fixes to changelog (#12414)
    
    @XLTechie pointed out several typos and minor fixes in #12412. Some of these fixes we would like to add quickly so translators can start on them.

commit 6511aa0aeff4220b3cded5791d8264984f3de5e4
Author: Sean Budd <sean@nvaccess.org>
Date:   Fri May 14 13:10:11 2021 +1000

    Lint changes for 2021.1 (#12411)
    
    ### Summary of the issue:
    
    - various code-fences are not formatted properly
    - inconsistent indentation on lists
    - inconsistent formatting of messages
    
    ### Description of how this pull request fixes the issue:
    
    - enforce `- Example changelog message. (#123[, #321])` format using the following regex to highlight conforming messages `(.*\. \((#[0-9]+(, )?)+\)$|  -.*)`
    - replace all usages of single ` with ``
    - standarise indentation for second level lists to use the recommend two spaces

commit 5cbaad2318337c72002897ad98c7db796d911481
Author: Sean Budd <sean@nvaccess.org>
Date:   Fri May 14 13:05:45 2021 +1000

    Safe screenshot names for system tests (#12410)
    
    If a test has a name with special characters, and the test fails, a screenshot is not generated
    
    Example: "Robot.chromeTests.Table in style display: table"
    
    Also teardown failed:
    OSError: Bad path: nvdaTestRunLogs\Robot.chromeTests-Table_in_style_display:_table-failedTest.png
    
    Description of how this pull request fixes the issue:
    replace special characters using url-style escaping from the screenshot filename

commit 99a8f60cfa33161aa9d842a69fa511f813da9637
Merge: 37f902d7a bdfe9a9c5
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 14 00:01:22 2021 +0000

    Update translations.
    
    From translation svn revision: 61270

commit bdfe9a9c52e5c70a7123cff69420c37f1e3d26d4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 14 00:00:44 2021 +0000

    L10n updates for: he
    From translation svn revision: 61270
    
    Authors:
    Shmuel Naaman <shmuel_naaman@yahoo.com>
    Afik Sofir <afik.sofer@gmail.com>
    
    Stats:
    4       6       source/locale/he/LC_MESSAGES/nvda.po
     1 file changed, 4 insertions(+), 6 deletions(-)

commit 8205c2f220bb7442f0a98b6c2745ab1dd60ac8f7
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 14 00:00:28 2021 +0000

    L10n updates for: cs
    From translation svn revision: 61270
    
    Authors:
    Martina Letochova <letochova@seznam.cz>
    
    Stats:
    6       183     source/locale/cs/LC_MESSAGES/nvda.po
     1 file changed, 6 insertions(+), 183 deletions(-)

commit ea1b827ce116a0e6bee0df20bfef80433171f53e
Author: Quentin Christensen <quentin@nvaccess.org>
Date:   Thu May 13 16:09:59 2021 +1000

    Add 2021.1 release blurb (PR #12376)
    
    Co-authored-by: Reef Turner <feerrenrut@users.noreply.github.com>
    Co-authored-by: Bill Dengler <codeofdusk@gmail.com>

commit 5603440a99988cee08bbba20ac383e79b51c8c01
Author: Sean Budd <sean@nvaccess.org>
Date:   Wed May 12 20:54:30 2021 +1000

    prevent ExitDialog from being destroyed twice (#12403)
    
    the following error happens when exiting NVDA via NVDA+q exit dialog shows, then enter:
    
    DEBUG - core._closeAllWindows (18:25:34.959) - MainThread (8636):
    destroying main frame during exit process
    ERROR - unhandled exception (18:25:34.959) - MainThread (8636):
    Traceback (most recent call last):
      File "C:\work\repo\nvda\7\.venv\lib\site-packages\wx\core.py", line 3407, in <lambda>
        lambda event: event.callable(*event.args, **event.kw) )
    RuntimeError: wrapped C/C++ object of type ExitDialog has been deleted
    Description of how this pull request fixes the issue:
    Prevents ExitDialog from being destroyed twice

commit 60bf94ebb5b50c9448f33007cca3bd57a1ef209d
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Wed May 12 10:44:00 2021 +0200

    Move some helper functions from main IAccessibleHandler module to satisfy Linter and decrease likelihood of circular imports (#12367)
    
    Summary of the issue:
    Linter complains about various imports in IAccessibleHandler not being at the top of file. In the current situation moving them to the top causes errors about imports from not fully initialized module.
    
    Description of how this pull request fixes the issue:
    At first I thought this can be solved by not importing NVDAObjects.IAccessible in the api module which is unused there anyway. Unfortunately removing this import just delayed the error but NVDA still was unable to start. Therefore I've moved parts of IAccessibleHandler which are imported by various other files in this package to two new files:
    
    types.py contains typing information for IAccessibleHandler
    utils.py contains various utility functions mostly introduced in #11521
    
    Co-authored-by: buddsean <sean@nvaccess.org>

commit 11b9950c3bdf09dadcc6c531c6cc9f2b8b3c8075
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Wed May 12 09:59:16 2021 +0200

    Ensure not to maintain AccessibleTable2 when fetching child nodes when the underlying table has neither rows nor columns (#12360)
    
    When creating a virtual buffer and NVDA encounters a table, it wil render the children of that table. It keeps a reference to the IAccessibleTable2 interface of the table until it has found a cell in that table. However, when a table contains no cells (i.e. when it has neither rows nor columns) and it encounters an inner table in that table, that inner table is ignored and table navigation does not work.
    
    Description of how this pull request fixes the issue:
    This pr ensures that when row and column count are 0, the IAccessibleTable2 reference isn't used when rendering children. Therefore, for every child, the logic that checks for IAccessibleTable2 will apply and issue #12359 no longer occurs.
    As a bonus, I removed support for IAccessibleTable2 support. This support was left in the VBuf code to support older versions of Seamonkey. I verified that Seamonkey now uses a version of Gecko that also uses IAccessibleTable2.
    
    Co-authored-by: buddsean <sean@nvaccess.org>

commit 8938ca4c9cf049fc758d69597704d1af9321798c
Author: Sean Budd <sean@nvaccess.org>
Date:   Wed May 12 11:21:47 2021 +1000

    improve state management in speech.py (#12395)
    
    Summary of the issue:
    Using shift to resume speech after using shift to pause speech does not resume speech.
    
    This is because when isPaused is imported through speech\__init__.py it is does not reference the global variable used in speech.py
    
    Description of how this pull request fixes the issue:
    Removes the use of top level variables in speech.py in favour of a private dataclass to manage state, and an enum for certain modes. Constants (or rather, variables with names in all capitals) remain as is.

commit 5d4e64f47d4d67420ea7566d9596db587f99078a
Author: Sean Budd <sean@nvaccess.org>
Date:   Wed May 12 10:27:11 2021 +1000

    always reset speechWithoutPauses instance when sayAll cancelled (#12396)
    
    The function header for sayAllHandler is incorrect, and the behaviour of cancelling sayAll speech changed in #12251

commit a794a4eed2192a825e89663640e71c4fad8f4f9b
Author: Cyrille Bougot <cyrille.bougot2@laposte.net>
Date:   Tue May 11 09:41:22 2021 +0200

    In MS Word, fixed table quick navigation when include layout table option is enabled (#11899)
    
    Summary of the issue:
    In MS Word/Outlook browse mode, layout tables (i.e. tables with no border) are skipped when using table quick navigation key (T and shift+T), even if "Include layout tables" options is enabled in Browse mode settings.
    
    Description of how this pull request fixes the issue:
    In NVDAObjects\window\winword, I have modified the TableWinWordCollectionQuicknavIterator filter method so that the iterator returns a table if borders are enabled or if layout tables should be included.
    
    I have checked in nvdaHelper\remote\winword.cpp that the presence or the absence of a border was already the criterion that defines if a table is a layout table or not. (so nothing done in this file)
    
    Co-authored-by: buddsean <sean@nvaccess.org>

commit 01605b61ac537287ae60918e9c2d13273d3574d6
Author: Sean Budd <sean@nvaccess.org>
Date:   Mon May 10 19:08:16 2021 +1000

    move changes to correct header (#12390)
    
    A changes item was accidentally added to the wrong release header in PR #11598
    
    Description of how this pull request fixes the issue:
    Move the changelog item to the correct release

commit fa708d70c36cbbbf886ea1f30af12f4718c5ad09
Merge: b60b9749e 37f902d7a
Author: Sean Budd <sean@nvaccess.org>
Date:   Mon May 10 19:06:35 2021 +1000

    Merge pull request #12388 from nvaccess/beta
    
    Merge Beta (and translations) into master

commit b60b9749e8441a8ac688cfb41fbec506afb0906f
Merge: a2a6e23f7 b95743da9
Author: Sean Budd <sean@nvaccess.org>
Date:   Mon May 10 17:00:13 2021 +1000

    Merge pull request #12251 from nvaccess/sayAllHandler-refactor
    
    refactor of sayAllHandler into speech

commit b95743da959148924183effa98ffcc7f6e5f0349
Author: buddsean <sean@nvaccess.org>
Date:   Mon Apr 12 11:09:00 2021 +1000

    refactor of sayAllHandler into speech. (#12251)
    
    SpeechWithoutPauses is only used by sayAllHandler, but the code lies in speech\__init__.py. Due to code changes sayAllHandler needs to instantiate a SpeechWithoutPauses instance, and would either introduce a circular dependency or require a singleton to be created when the instance is needed.
    
    Description of how this pull request fixes the issue:
    - sayAllHandler is moved to a new module - speech.sayAll.
    - SpeechWithoutPauses is moved to it's own module
    - speech\__init__.py has been moved to speech\speech.py so that speech.sayAll can import the necessary functions from speech.
    - sayAllHandler top level functions have been refactor into a class. An instance of SayAllHandler is initialised when NVDA is started in a consistent manner with other initialisations in the code base.

commit a2a6e23f747fa9ceb641d2a12585817bb12a7d11
Author: Sean Budd <sean@nvaccess.org>
Date:   Mon May 10 11:03:04 2021 +1000

    Only run AppVeyor linting check on branches which aren't master (#12378)
    
    Master builds are currently failing at the linting step such as
    
    https://ci.appveyor.com/project/NVAccess/nvda/builds/39046507
    https://ci.appveyor.com/project/NVAccess/nvda/builds/39045879
    Lint checking doesn't need to occur for master builds
    
    Description of how this pull request fixes the issue:
    Don't run the appveyor lint checking on master branches

commit 509b7fa13387b137a558453711d18d4bded59531
Author: buddsean <sean@nvaccess.org>
Date:   Fri May 7 15:45:04 2021 +1000

    move SpeechWithoutPauses out of speech.py

commit 8eff942e5aee5eeb230f7c928bf1fa99e284df46
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon May 10 09:40:24 2021 +1000

    Update what's new for pr #12369

commit e2c206d0fcce6965d9d82d6d72babe0c501320c4
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Mon May 10 01:37:58 2021 +0200

    Elements List dialog: Remove the accelerator key on the "Activate" button (#6167) (#12369)
    
    Fixes #6167
    
    Summary of the issue:
    In the English locale, there is an accelerator key collision between the "Annotation" element type and the "Activate" button, both set to the letter "A".
    In the French locale, there is collision between the element type "Form field" ("Champs de formulaire") and the same button ("Activer"), both set to the letter "C".
    This changes the behavior of the accelerator key that focuses the radio button but does not activate it.
    This is not a bug at all, but is not ergonomically optimum, especially for less advanced users.
    
    Description of how this pull request fixes the issue:
    As suggested by @Qchristensen, remove the accelerator key setting from the "Activate" button as it is, when available, the default action of the dialog upon pressing the enter key.
    In most locale, this change should not raise the need for a new translation, as the "Activate" label already exists without an accelerator marker as "a message reported when the action at the position of the review cursor or navigator object is performed.".
    Just to be sure, I also added a warning in the translators comment for the button label to ask them to beware of the risk of collision.

commit ef53fb54d37a4e17ff5259751afa8f9f49c54a9e
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Mon May 10 00:54:39 2021 +0200

    EditableText: Do not treat "\r\n" as two characters when `backspace` is pressed (#12379)
    
    In Notepad++, when hitting backspace to delete a line break, NVDA announces "blank" instead of "new line".
    The TextInfo of the Scintilla implementation may contain "\r\n" instead of "\n".
    The current implementation of EditableText._backspaceScriptHelper treats it as two characters and thus fails to trigger a proper announce.
    
    Description of how this pull request fixes the issue:
    Replace "\r\n" by "\n" before further treatment of the deleted chunk.

commit f8c182680978e4e63f28cf381603557dceffed11
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Mon May 10 00:50:22 2021 +0200

    Developer Guide: Minor fixes (#12384)
    
    * Fix broken link to 7-zip
     * Add a missing internal link to the "Packaging code as NVDA Add-ons" section
     * Remove extraneous or trailing whitespace

commit c22509baa5972c9b546c79ed4896b9bb4076fc55
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Fri May 7 08:45:09 2021 +0200

    Python Console: Jump to previous/next result (PR #9785)
    
    Fixes #9784
    
    Summary of the issue:
    In the output pane of the Python Console, it can be tedious to inspect a series of lengthy output results.
    
    Description of how this pull request fixes the issue:
    Provide key bindings to jump to the previous/next result, select a whole result and clear the output pane.
    
    Co-authored-by: Reef Turner <reef@nvaccess.org>

commit 57f2791654b3e10d929680c769c9d2ab09b5c2b3
Author: buddsean <sean@nvaccess.org>
Date:   Mon Apr 12 11:05:55 2021 +1000

    move speech/__init__.py to speech/speech.py and move sayAllHandler.py to speech/sayAll.py

commit 9dc1f3661c2a2fc274f2be49c4fcb7fc62dc7291
Author: Sean Budd <sean@nvaccess.org>
Date:   Fri May 7 12:31:15 2021 +1000

    refactor the exit of nvda and gui.terminate (#12342)
    
    Summary of the issue:
    
    Changes introduced in #12183
    
    - caused the braille viewer to be closed without saving state properly
    - lost code that destroyed the system tray and menu in some instances
    - made most of gui.terminate no longer necessary/redundant
    
    Description of how this pull request fixes the issue:
    
    - Creates `core.triggerNVDAExit` which terminates necessary modules safely and then closes all windows
    - Destroys the system tray icon and menu
    - Uses a parser error message if a new NVDA instance fails to end a running instance.
    - Uses an enum for ChangeWindowMessageFilter filters.
    
    Known issues with pull request:
    WM_QUIT will not exit the app safely (called from a new NVDA instance) when a dialog such as WelcomeDialog is still open

commit a110d14b919dd46451681779c63b588240af3808
Author: Sean Budd <sean@nvaccess.org>
Date:   Fri May 7 11:06:58 2021 +1000

    Increase AppVeyor git clone depth and lint try branch builds (#12346)
    
    Up the clone depth to unlimited (by removing setting the value)
    Fetch master directly when performing a try-branch build so that lint checks can now run on try branch builds
    recursively fetch submodules on demand.

commit 37f902d7a1629d6fabc4e9aaf23dd0a9908d5d1f
Merge: 89ca062ab fc8cf58c0
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 7 00:01:19 2021 +0000

    Update translations.
    
    From translation svn revision: 61209

commit fc8cf58c08331b0118135b31b1eefaa3a2271bdc
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 7 00:01:16 2021 +0000

    L10n updates for: zh_CN
    From translation svn revision: 61209
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen_0528@outlook.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    1872265132@qq.com
    
    Stats:
    51      53      source/locale/zh_CN/LC_MESSAGES/nvda.po
    43      43      user_docs/zh_CN/userGuide.t2t
     2 files changed, 94 insertions(+), 96 deletions(-)

commit 343aea3033e7ae5e349f1191b4947eb2b0f63d3d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 7 00:00:54 2021 +0000

    L10n updates for: mn
    From translation svn revision: 61209
    
    Authors:
    Mongol NVDA-Translation <mongoliannvdatranslation@gmail.com>
    
    Stats:
    4       4       source/locale/mn/LC_MESSAGES/nvda.po
     1 file changed, 4 insertions(+), 4 deletions(-)

commit ca0c86851efb8a31303028f14c10829b9ddc358c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 7 00:00:51 2021 +0000

    L10n updates for: ko
    From translation svn revision: 61209
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    4       4       source/locale/ko/LC_MESSAGES/nvda.po
     1 file changed, 4 insertions(+), 4 deletions(-)

commit 00b0fc1f0727144b3066dd909ec5db4409477123
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 7 00:00:25 2021 +0000

    L10n updates for: cs
    From translation svn revision: 61209
    
    Authors:
    Martina Letochova <letochova@seznam.cz>
    
    Stats:
    191     14      source/locale/cs/LC_MESSAGES/nvda.po
     1 file changed, 191 insertions(+), 14 deletions(-)

commit a7f9d47d48578e841e2435c8ec4488123b21f615
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Thu May 6 03:25:59 2021 -0700

    Recognize Windows 10 build 19043 as Version 21H1 (May 2021 Update) (PR #12259)
    
    * WinVersion: recognize Windows 10 build 19043 as Version 21H1.
    
    Add WIN10_21H1 constant and 21H1 key to Windows 10 versions to builds map.
    
    * AppX: update max version tested key to 10.0.19043.0 (Version 21H1).

commit a3e983a8687e45aeeaf9931b09b6922a8e317cef
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Thu May 6 16:16:52 2021 +0800

    Fix wx assertion error (PR #12363)
    
    Fixes: #12336
    Fixes: #12220
    
    # Summary of the issue:
    Issue#12220 Causes a wx assertion message when either the Braille or Speech settings panels are open.
    This seems to be related to the expando text control used on both panels.
    The assertion is in wx's accessibility code, which has been introduced in our latest upgrade of wxPython.
    The PR #12292 attempted to fix this by explicitly destroying the expando text control when closing.
    In #12292 it was missed that the onSave callback was also called for the apply button.
    
    # Description of how this pull request fixes the issue:
    While looking at adding an explicit close callback for panels, I noticed that Destroy was being called manually during the event handler.
    Scheduling a destroy call after the event handler seems to resolve this issue.
    As I understand, destroying children explicitly is not required.
    
    While here also:
    - Tidy onSave / onApply
    - Add type info for 'catIdToInstanceMap' and 'categoryClasses'

commit 54e18f51b2bbd664edad80188b86812798a164a5
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Thu May 6 08:00:16 2021 +0200

    No startup sound for launcher --minimal (PR #12322)
    
    Fixes #12289
    
    Co-authored-by: Reef Turner <reef@nvaccess.org>

commit 5ce754558d1e6f45b8b3f19e5942b2e4eb1e1a67
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed May 5 17:14:18 2021 +1000

    Revert "Microsoft Word documents (both with UIA enabled and disabled) now get a treeInterceptor created straight way, but with passThrough (focus mode) enabled. Thus, NVDA+f7 (elements list) is now available with out having to switch to browse mode in Microsoft Word first. (#12051)" (#12365)
    
    This reverts pr #12051 commit db664bef7881d35c6af156287b9b518130aa2a69.
    
    Fixes #12117
    
    Summary of the issue:
    In both Outlook and Windows 10 Mail, a Microsoft Word document control is used to display content of received emails and emails currently being composed. In NVDA 2020.4, NVDA would use browse mode for reading emails, but not for writing emails.
    However, after merging of pr #12051 browse mode is no longer used by default when reading emails. This is because the base Microsoft Word document NVDAObject now creates a TreeInterceptor all the time, but set to focus mode, so that elements list is always available in Microsoft Word.
    But as hxMail and Outlook implementations assumed browse mode would be available for the TreeInterceptor always, and only created the TreeInterceptor in the reading pane, Windows 10 mail and Outlook ended up getting no treeInterceptor for writing email (ok) but for reading email it got a treeInterceptor but set to focus mode (not okay).
    
    Description of how this pull request fixes the issue:
    Reverts pr #12051 .

commit bacd1abe02a69d423872d551b624de8e1e4bbf62
Author: Sean Budd <sean@nvaccess.org>
Date:   Wed May 5 16:02:01 2021 +1000

    Focus chrome after starting in system tests (#12352)
    
    As discussed in #12293, our systems fail randomly. Usually this is due to another window stealing focus, such as the taskbar or Docker. As system tests are run locally, we shouldn't be killing these processes.
    
    Description of how this pull request fixes the issue:
    Use windows API to make the chrome window gain focus
    Adds logging that lists the foreground window and open windows if chrome doesn't gain focus
    Removes extra sleep time after starting NVDA

commit 86fe20ff6aeb07c22abec29d32fd1bcb19bf41b8
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Tue May 4 03:00:30 2021 +0200

    Elements List: Don't remove the label of a filled spin button input field (#12317) (#12318)
    
    In browse mode documents, when a spin button input field is filled with a value, its label goes missing from the Elements List dialog.
    
    Description of how this pull request fixes the issue:
    Remove the role ROLE_SPINBUTTON from the set of exceptions for which the content replaces the label.

commit 3f6bf0c749c76cb9c588152e2dde0801b8973f69
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Mon May 3 13:15:51 2021 +0800

    Fix missing issue auto-link (PR #12358)

commit f392c23a34df479861263491f84b67b3c1aec93c
Author: Luke Davis <8139760+XLTechie@users.noreply.github.com>
Date:   Fri Apr 30 04:43:01 2021 -0400

    Added guidance on where to provide info in github templates (PR #12333)
    
    Added a new paragraph to the bug, feature, and default issue templates, explaining that comments should appear BENEATH the lines with hashmarks.
    
    Updated the COM Reg. Fix Tool question in the default issue template, to the current bug template's revision.

commit a3af16ec54fe6fc474108403dc778c1ebb0a1dba
Author: Rowen <manchen_0528@outlook.com>
Date:   Fri Apr 30 16:38:02 2021 +0800

    Fix Sapi4 pitch change (PR #12354)
    
    Fixes: #12311
    
    Co-authored-by: Reef Turner <reef@nvaccess.org>

commit 89ca062ab28dc4c28a410e27aea6249be47b3ea4
Merge: f083254cf 7dd8318b5
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 30 00:01:23 2021 +0000

    Update translations.
    
    From translation svn revision: 61173

commit 7dd8318b5fb0a1d90ce4c76185c404a85d8cc9fa
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 30 00:01:21 2021 +0000

    L10n updates for: zh_CN
    From translation svn revision: 61173
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen_0528@outlook.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    1872265132@qq.com
    
    Stats:
    2       2       source/locale/zh_CN/LC_MESSAGES/nvda.po
    69      2       source/locale/zh_CN/symbols.dic
     2 files changed, 71 insertions(+), 4 deletions(-)

commit 557e25f5fec7864cfa1e26ec818d544fb39e9021
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 30 00:00:55 2021 +0000

    L10n updates for: mk
    From translation svn revision: 61173
    
    Authors:
    zvonimir stanecic <9a5dsz@gozaltech.org>
    Ertay Shashko <ertay@outlook.com>
    Aleksandar <glupav@gmail.com>
    Kiko Lazarev <kristijan.lazarev@gmail.com>
    
    Stats:
    3       3       source/locale/mk/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 3 deletions(-)

commit e2d269609ec475816655b64fb0062817af773456
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Thu Apr 29 06:43:06 2021 +0200

    Braille Viewer: Add a close button on the title bar for use with pointing devices (#12328)
    
    The Braille Viewer currently presents no close control on its GUI.
    It can only be closed with alt+F4 or by means of the dedicated NVDA Tools menu entry.
    
    Description of how this pull request fixes the issue:
    Add a standard close button on the title bar of the Braille Viewer dialog.

commit f84a7d9f8b7102bac201fab0674cf9ff7ff1987c
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Thu Apr 29 02:12:27 2021 +0200

    Speech Viewer: allow to close with alt+F4 & add a close button on the title bar for use with pointing devices (#10791) (#12330)
    
    The Speech Viewer currently has no close button nor can be closed with alt+F4.
    
    As described by @Qchristensen in #10791 (comment), most dialogs in NVDA can be closed with alt+F4.
    As argued by @bhavyashah in #10791 (comment), the Speech Viewer is especially useful for sighted testers who might be more familiar in using pointing devices than keyboard shortcuts.
    
    Description of how this pull request fixes the issue:
    Handle closing with alt+F4 & add a standard close button in the title bar of the dialog.
    
    Co-authored-by: Sean Budd <seanbudd123@gmail.com>

commit badd390c2d5278272eaf3dc730b1dcc6f726675f
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Thu Apr 29 01:28:57 2021 +0200

    Developer Guide: Fix not parsed headers (#12332)
    
    The following two snippets can be found in the current Developer Guide as rendered in HTML format:
    
    `+++ An Example Manifest File +++`
    `++ Plugins and Drivers ++`
    These have been around for quite some time.
    It seems quite obvious they should be rendered as headers, respectively:
    
    `4.2.2. An Example Manifest File`
    `4.3. Plugins and Drivers`

commit e8c32e3cbc648bded8a8d4fa93acb72cc5493fe9
Author: Sean Budd <sean@nvaccess.org>
Date:   Wed Apr 28 16:30:11 2021 +1000

    Create tool for comparing GUI and UI elements in copies of NVDA (#12308)
    
    GUI and UI features for NVDA can become lost through code refactors. Generating screenshots and comparing text across copies of NVDA is an annoying process for developers.
    
    A tool is created using our system tests to generate screenshots and text of all the content in NVDA settings. This can be expanded upon to include other GUI and UI features of NVDA.

commit 260063b8c79c69798f410b1ff5ed2e8ce24c975f
Author: Luke Davis <8139760+XLTechie@users.noreply.github.com>
Date:   Wed Apr 28 00:45:08 2021 -0400

    Suppressed the option to file a default issue on NVDA's Github new issue chooser page. (PR #12334) (#12334)
    
    The default issue is just a copy of the bug issue template with introductory text suggesting it not be used.
    Added a config.yml file to the Github issue config folder, which stops the option from being generated.
    Left the default issue template file in place, in case some Github quirk or error allows its filing in the future.

commit a0089a2fe2583b91536a8f8ececa0027ad1f4425
Author: Sean Budd <sean@nvaccess.org>
Date:   Tue Apr 27 12:06:29 2021 +1000

    Increase sleep to 5s after starting NVDA in chromeTests (#12343)

commit d9afe35d679d92424c76f5ff2bc408336640197b
Author: Sean Budd <sean@nvaccess.org>
Date:   Fri Apr 23 13:55:55 2021 +1000

    Revert "refactor the exit of nvda and gui.terminate (#12286)" (#12326)
    
    This reverts commit 60c0b76b8271a5b484d4cebf4486772e81828210.

commit f083254cfa07292b638f4ca54343dcf937072d8e
Merge: 8e2d03646 a394a0f68
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 23 00:01:40 2021 +0000

    Update translations.
    
    From translation svn revision: 61130

commit a394a0f68e0e9f85189227cbdd1da8548d577450
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 23 00:01:26 2021 +0000

    L10n updates for: ru
    From translation svn revision: 61130
    
    Authors:
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    
    Stats:
    14      0       source/locale/ru/symbols.dic
     1 file changed, 14 insertions(+)

commit 16502f70bd9356e8018a9e1fb862265d308cef57
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 23 00:01:23 2021 +0000

    L10n updates for: ro
    From translation svn revision: 61130
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <7ro2014@gmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    George Antonio Andrei <george.andrei2002@gmail.com>
    
    Stats:
    1       1       user_docs/ro/userGuide.t2t
     1 file changed, 1 insertion(+), 1 deletion(-)

commit bca24efe120701f480fde43bc148f666a825eada
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 23 00:00:56 2021 +0000

    L10n updates for: hr
    From translation svn revision: 61130
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Milo Ivir <mivir@milotype.de>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    7       7       user_docs/hr/changes.t2t
     1 file changed, 7 insertions(+), 7 deletions(-)

commit 03aec3f624ebf805b6c439c5b9e50177196221d0
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 23 00:00:25 2021 +0000

    L10n updates for: an
    From translation svn revision: 61130
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    3       3       source/locale/an/LC_MESSAGES/nvda.po
    2       2       source/locale/an/symbols.dic
     2 files changed, 5 insertions(+), 5 deletions(-)

commit 60c0b76b8271a5b484d4cebf4486772e81828210
Author: Sean Budd <sean@nvaccess.org>
Date:   Thu Apr 22 16:06:47 2021 +1000

    refactor the exit of nvda and gui.terminate (#12286)
    
    Summary of the issue:
    When restarting NVDA, WM_QUIT is posted as an event to the window, forcibly exiting the app. This leaves objects such as the system tray icon left behind.
    
    Additionally, changes introduced in #12183
    - caused the braille viewer to be closed without saving state properly
    - lost code that destroyed the system tray and menu in some instances
    - made most of gui.terminate no longer necessary/redundant
    
    Description of how this pull request fixes the issue:
    - A windows event winUser.WM_EXIT_NVDA is registered that triggers safeAppExit and can be called across instances of NVDA.
    - move the safe destruction of the brailleviewer to safeAppExit so that it is exited properly before destruction
    - reintroduce the destruction of the system tray icon and menu, and remove the icon manually.
    - ensured safeAppExit is not called from gui.terminate if it has been called elsewhere to terminate the app. WM_QUIT is the other way to exit the MainLoop other than safeAppExit
    - removed restarting the MainLoop in gui.terminate to process pending events as this doesn't work.
    
    Known issues with pull request:
    - When starting a new instance of NVDA with an existing instance running, where one is version <2020.4, NVDA will not exit safely. Instead, the running NVDA copy will terminate directly using the behaviour of 2020.4. This is because WM_EXIT_NVDA won't be registered on the older instance.
    - Issues with terminating NVDA across instances cannot be logged properly as the loghandler hasn't been initialized

commit 03746a1dbb542bbd001f2e10b31105817bf96322
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Thu Apr 22 13:58:01 2021 +1000

    Fix up from #12210: Excel without UIA enabled: again allow typing and editing in cells  (#12321)
    
    Fixes #12303
    
    After merging of pr #12210 editing cells in Excel without UIA enabled became im possible as NVDA did not report / track focus had ented the Cell Edit control.
    This was due to the EXCEL6 window accidentally being marked as having a good UIA implementation. This was testing code left over from the early implementation of #12210.
    
    Description of how this pull request fixes the issue:
    Remove EXCEL6 from the good UIA windows list.
    Also ensure that MSAA focus events on this window are ignored when using Excel with UIA enabled, as Excel will fire its own UIA focus event on an edit control within the active cell.

commit a94f5fe214640d3a02d297cd48ed0b8ae3324d26
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Thu Apr 22 00:33:26 2021 +0200

    No longer fail to report content of unfocused text fields in Firefox (#12319)
    
    Fixes #12114
    
    PR #12025 started catching only very specific exceptions when getting selection of edit fields. However in Firefox attempting to get caret for non focused edit fields results in RuntimeError which made it impossible to speak these controls.
    
    Description of how this pull request fixes the issue:
    When getting content of edit fields in speech, we're now catching RuntimeError as well and treating this situation like no selection.

commit 330961cc6174007bc37c407412524071b37c5025
Author: Luke Davis <8139760+XLTechie@users.noreply.github.com>
Date:   Wed Apr 21 04:56:00 2021 -0400

    Fix readme typo/grammar (PR #12301)
    
    In reading the README recently, I noticed several areas where minor grammar corrections could be made, and one or two where the grammar in certain paragraphs could be made to flow better for a more clear understanding.
    
    Mostly these are rather insignificant changes, and on their own wouldn't be worth a PR, but collected together I thought they might be considered.
    
    # Description of how this pull request fixes the issue:
    Thinking that improving the readability of the readme could aid new devs, I made the following changes:
    
    - Inserted a few missing words with my best guess as to what they should have been.
    - Fixed one capitalization error.
    - Converted indefinite articles to definite where appropriate.
    - Changed the format of a link to be like other links on the same site.
    - In one case, added a missing link.
    - Rephrased a couple small items, and the Get Support paragraph.

commit 4d47375fed91b9fb8d2563b43e407b1b50ad8515
Author: Cyrille Bougot <cyrille.bougot2@laposte.net>
Date:   Wed Apr 21 10:52:21 2021 +0200

    Correctly report accented letters after cap (PR #11977)
    
    Fixes #11948
    
    # Summary of the issue:
    As described in #11948, some letter with diacritic is not spelt correctly with some synth if "Say cap before capitale" is checked, e. g. 'À' is spelt 'cap A' instead of 'cap A grave'.
    Looking at getSpellingSpeech function in speech\__init__.py, it appears that this is due to the fact that the string 'cap À' is passed to the synth in the speech sequence in such a case. But the synth is only asked to use character mode for the strings whose length is 1. This is wrong in this case, because 'cap' should be spoken with character mode off, but 'À' should be spoken with character mode on.
    
    # Description of how this pull request fixes the issue:
    In getSpellingSpeech, in the string sequence, I have separated the 'cap' message string from the character to be spelt. If the character to be spelt is of length 1, i.e. not replaced by symbol description or modified pronunciation, character mode is activated. If a string in the speech sequence has a length > 1, because it is a capitalization message or because it corresponds to a character description or symbol replacement, character mode is disabled.
    
    Note that the 'cap' message can be of two types:
    - with 'cap' indication before as in English: 'cap %s'
    - with 'cap' indication after as in French: '%s majuscule'
    
    Co-authored-by: Reef Turner <reef@nvaccess.org>

commit dd950eb1b7ad54010acaeba5726e37f19c451afe
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Wed Apr 21 09:30:37 2021 +0200

    Reuse FILETIME from winKernel. (PR #12312)
    
    * Use FILETIME from winKernel in objidl and SAPI4 internal driver rather than defining it in every file.
    Follow up of PR #12250:

commit 46f66acd6b3d52953c86af0247762e5f5ebe9276
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Wed Apr 21 09:15:09 2021 +0200

    Fix copy config from portable during installation. (PR #12076)
    
    Related PR #9679
    Fixes #12071
    Fixes #12205
    
    Co-authored-by: Reef Turner <reef@nvaccess.org>

commit 6200a070a013d9c6322700922cc801194d48aafd
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Tue Apr 20 22:40:17 2021 -0700

    WinVersion class follow-up: remove ease of access is supported flag (#12222)
    
    NVDA requires Windows 7/Server 2008 R2 SP1 or later, therefore Ease of Access is available.
    
    This removes easeOfAccess.isSupported flag.

commit bc8eb11e79ec1b9336da8d5c76f73927261eeba0
Author: Sean Budd <sean@nvaccess.org>
Date:   Wed Apr 21 11:04:41 2021 +1000

    Ensure settings are scrolled to using tab navigation (#12300)
    
    Navigating through settings using tabbing does not visually scroll to the focused control.
    
    wxPython ScrolledPanels calculate the position to scroll to based on the relative position to a focus elements parent, rather than the relative position to the ScrolledPanel itself.
    
    When fixing right-to-left issues in #12181, another layer of nesting was introduced for controls in our settings panels, which caused the controls to no longer get scrolled to.
    
    A patched version of ScrolledPanel is created, which calculates relative position to the ScrolledPanel

commit 07030660b3b60d5c906b20150ca189efe9f0d80f
Author: Sean Budd <sean@nvaccess.org>
Date:   Wed Apr 21 11:01:11 2021 +1000

    prevent Chrome losing focus during systests (#12293)
    
    Our system tests randomly fail due to chrome not having focus, and so NVDA does not read the expected speech. Sometimes this is due to a Docker popup asking for feedback.
    
    Changes:
    - Log when the event postNvdaStartup fires
    - sleep for 2s before launching chrome
    
    
    Known issues with pull request:
    - Docker popups may still block the build
    - 2s of sleep might not be long enough (we have confidence that 10s is)
    - Lint checking occasionally blocks builds due to a failed merge (likely due to a rare GitHub issue)

commit d1c8ccd1ecbafac0c2973617ab75a9d551d76d40
Author: Luke Davis <8139760+XLTechie@users.noreply.github.com>
Date:   Tue Apr 20 20:58:46 2021 -0400

    Updated developer guide to clarify that the Remote Python Console is unavailable in binary builds (#12316)

commit f3306af9775387f46f052c4a7d3cd8d92e7bc189
Author: Sean Budd <sean@nvaccess.org>
Date:   Wed Apr 21 09:40:16 2021 +1000

    Move report formatting changes box to the correct parent (#12307)
    
    In #12181, the setting "Report formatting changes after the cursor" in "Document Formatting" was incorrectly moved to the wrong parent, the static box grouping above it, making it invisible to the user. It was readable using NVDA but not graphically visible to the user. This has been corrected.

commit 37d66a51ce23e4386182781d303261b56bf6e475
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Tue Apr 20 19:06:12 2021 +1000

    comInterfaces_sconscript: correct case of MathPlayer.py string. (#12310)
    
    Fixes #12281
    
    Math can no longer be read in NVDA with mathPlayer.
    a regression introduced by pr #12201
    comInterfaces_sconscript instructs comtypes to generate Python files from typelibs/mathPlayer.tlb. Comtypes produces MathPlayer.py (note the uppercase M). However, the sconscript target was hardcoded as "mathPlayer.py" (note the lowercase m). This has always been the case, and has not been a problem as scons and Windows is case insensitive and so Scons thought the target had been correctly created. However, pr #12201 makes use of the target's abspath property to rewrite the file with some extra imports. However, the path is made from the hardcoded target, so it has the lowercase m and therefore when the file is written out again, it has a lowercase m, and mathPres cannot then import MathPlayer with an uppercase M.
    
    Description of how this pull request fixes the issue:
    Correct the "mathPlayer.py" string in comInterfaces_sconscript to "MathPlayer.py".

commit 4781002709821072e2c770c3ff639e33083f2548
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue Apr 20 16:52:04 2021 +0800

    Add code owners and CONTRIBUTING (PR #12294)
    
    With code owners we can automatically request a code review from a code owner when a PR is no longer a draft.
    Hopefully this helps contributors communicate they are ready for a review from core developers.
    To facilitate this, new contributions should start in draft state, and be converted to "ready for review" when initial checks are complete.
    
    This adds a code owners file, docs: https://docs.github.com/en/github/creating-cloning-and-archiving-repositories/about-code-owners
    Docs for auto-assign code reviewer: https://docs.github.com/en/organizations/organizing-members-into-teams/managing-code-review-assignment-for-your-team
    Adds a CONTRIBUTING file which points to our full guide: https://github.com/nvaccess/nvda/wiki/Contributing

commit 240f6412e5ac3a63ac7e9d2c215b97246e4e4d97
Author: Sean Budd <sean@nvaccess.org>
Date:   Tue Apr 20 18:21:59 2021 +1000

    remove wx.CENTER_ON_SCREEN and wx.CENTRE_ON_SCREEN (#12309)
    
    We included code to add backwards compatibility for addons for the following deprecated wxPython constants wx.CENTER_ON_SCREEN = wx.CENTRE_ON_SCREEN when used with Dialog.Center()
    
    Description of how this pull request fixes the issue:
    Remove the deprecated code, and it's only usage in AskAllowUsageStatsDialog, replace with self.CentreOnScreen()

commit 381c976850c7417462ffe8152d074f35ad51c537
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Tue Apr 20 09:11:41 2021 +0200

    Fix up of 11738: Force UIA for Outlook messages list even though it doesn't support UIA natively (#12241)
    
    PR #11738 made it impossible to use UIA for controls which doesn't report as native UIA. This decreased accessibility of Outlook's messages list in some versions of Outlook (certainly for 2010 and possibly for 2013) which reports as non native UIA.
    
    Description of how this pull request fixes the issue:
    Similar to the fix in #11828 for these controls the fact that they're non native UIA is ignored.

commit 5de73c14fb09467a0e8f5a4016c79e3875ae6b8b
Author: Cyrille Bougot <cyrille.bougot2@laposte.net>
Date:   Tue Apr 20 08:48:53 2021 +0200

    Add missing formatting information in MS Excel cells (strikethrough, superscript/subscript) (#12264)
    
    Some formatting information is not reported when navigating from one cell to another in Excel, although the corresponding category is checked in Document formatting settings.
    
    - strikethrough is not reported even if font attributes is checked
    - superscript or subscript is not reported even if the corresponding option is checked
    
    Strikethrough, superscript and subscript are now reported when navigating through Excel cells if the corresponding option is enabled

commit da3028a54fd81f7e2080f64dd745ec46976eadd9
Author: Michael Fairchild <mfairchild365@gmail.com>
Date:   Tue Apr 20 00:38:13 2021 -0500

    Fix Issue 12147: new focus target is not always announced (#12252)
    
    fixes #12147
    
    The new focus target is not always announced when:
    1. The triggering button is activated while in browse mode
    2. The triggering button is removed
    3. The focus target is adjacent to where the triggering button was
    This is because of the overlapping logic for browse mode focus changes that is used to prevent duplicate announcements. That overlapping logic did not account for this scenario.
    See the linked codepens in #12147 for more examples.
    I can not specially point to an instance of this in the wild, as all of my use-cases are behind a firewall. However, I know that this behavior is not unusual in SPA-style web apps.
    
    Description of how this pull request fixes the issue:
    This PR fixes the issue by altering the overlapping detecting logic so that:
    1. We look at the state of the previous focus object
    2. If the state of the previous focus object is DEFUNCT (no longer available) and an overlap was detected, then continue as if there was not an overlap.

commit e019a243271a45816223c5f4fa661cda4b75d9fe
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Tue Apr 20 14:19:30 2021 +1000

    Downgrade to Python 3.7 due to stack corruption in Python 3.8+ (#12298)
    
    Fixes #12152
    Fixes #12154
    
    Since upgrading to Python 3.8, several serious crashes in NVDA have been reported. Specifically:
    • NVDA crashing when using the SAPI4 speech synthesizer: #12152
    • NVDA crashing when using Windows Explorer on Windows Server 2012: #12154
    Both of these issues were traced to stack corruption after a Python callback of NVDA's was called from external libraries. In SAPI4's case, after calling NVDA's implementation of ITTSBufNotifySink::TextDataStarted, and in the Windows Server 2012 case: IUIAutomationPropertyChangedEventHandler::handlePropertyChangedEvent.
    It seems as though libFFI / Python ctypes is not cleaning the stack properly after executing a Python callback with the stdcall calling convention (ctypes WINFUNCTYPE), where the callback contained at least one argument larger than 4 bytes (E.g. a long long, or a VARIANT struct), and the arguments preceding it were such that this argument was not aligned to an 8 byte boundary. E.g. the callback might be:
    • callback(void*, long long) or
    • callback(void*, void*, int, VARIANT)
    See Python bug: https://bugs.python.org/issue38748
    On that bug I have attached a minimal testcase.
    This bug affects both Python 3.8 and Python 3.9.
    The bug is most likely in the libFFI project used by Python's ctypes module. Python 3.8 switched to a much more recent and official version of libFFI I believe.
    Although we do really want to move to Python 3.8+ as soon as we can, right now this bug makes it impossible to do so. We could specifically work around the currently known manifestations by moving some of that code into C++, but that brings its own risks, and we still don't know where else this issue may appear in our code. The appropriate thing to do right now is stay on Python 3.7 until we can work with Python / libFFI to get this resolved.
    
    Description of how this pull request fixes the issue:
    Downgrades to Python 3.7 by referencing Python 3.7 (rather than 3.8) in NVDA's build system.
    The existing PRs that needed to be reverted were:
    • Updating brlAPI to a Python 3.8 build: nvaccess/nvda-misc-deps#20
    • Switching to using Python's own pgettext: #12109
    • calling os.add_dll_directory when loading liblouis: #12020
    None of these PRs provided any user visible changes.
    The rest of the Python 3.8 work, including the switch to a virtual
    environment etc is all compatible with Python 3.7 and can remain.

commit ce2825619e6c5c7a7a25aca21f583a368799474e
Author: Cyrille Bougot <cyrille.bougot2@laposte.net>
Date:   Tue Apr 20 05:01:09 2021 +0200

    Fix reporting of superscript / subscript in Wordpad (#12262)
    
    In IAccessible edit field such as WordPad, enabling "Superscript and subscript" reporting in Document formatting settings was not enough to have them reported. It was also required to have Font attributes reporting enabled.
    This is due to a forgotten part of the code when reporting of superscript/subscript has been separated from reporting of the other attributes in #10919.
    
    Description of how this pull request fixes the issue:
    Added the missing 'if' statement

commit f94aa0394c871265aba9137ac765f8e8f32e5f97
Author: Cyrille Bougot <cyrille.bougot2@laposte.net>
Date:   Tue Apr 20 04:51:29 2021 +0200

    Fixes in the user guide: broken link and typo. (#12297)

commit 1d038ff8b5619c9a64060cc5a3afca2d2b05bb23
Author: Cyrille Bougot <cyrille.bougot2@laposte.net>
Date:   Tue Apr 20 01:26:58 2021 +0200

    Fix for error on Chromium UIA combo-box when restoring Advanced Settings (#12302)
    
    Using .Selection on a combo-box rather than .GetSelection was causing an error when restoring Advanced settings to default.
    
    Modified .Selection to .GetSelection()

commit a17643ff98e320217eb7ac5b384c6010aedce5e9
Author: Sean Budd <sean@nvaccess.org>
Date:   Mon Apr 19 17:08:04 2021 +1000

    centre the progress dialog when updating (#12295)

commit 516706dd96a3cda25af87e325db7f14591533a3d
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Fri Apr 16 12:51:53 2021 +0800

    Work around wxWidgets assertion (PR #12292)
    
    See issue #12220
    
    There was a wxAssertion error when closing braille or speech settings panels.
    
    ERROR - unhandled exception (09:33:35.263) - MainThread (7112):
    wx._core.wxAssertionError: C++ assertion ""GetWindow() != 0"" failed at ..\..\src\common\wincmn.cpp(3919) in wxWindowAccessible::GetDescription():
    
    The above exception was the direct cause of the following exception:
    SystemError: <class 'wx._core.WindowDestroyEvent'> returned a result with an error set
    
    There is a lot more information about the investigation on the issue.
    
    This PR provides a workaround, the true cause of this assertion has not yet been determined.
    However in the meantime this PR will prevent the log error, and any additional instability in
    WX that may occur due to ending up in this situation.

commit 8e2d03646df6479a055b4f01db24e3c333667a18
Merge: c9841eceb 997987426
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 16 00:01:22 2021 +0000

    Update translations.
    
    From translation svn revision: 61116

commit 99798742678d10ead7f9fa96d2ec885f6402c776
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 16 00:00:43 2021 +0000

    L10n updates for: gl
    From translation svn revision: 61116
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    Javier Curras <javier.curras@nvda.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    3       3       source/locale/gl/symbols.dic
     1 file changed, 3 insertions(+), 3 deletions(-)

commit f4d245932aae738f33d3dc9978a79b3cc9a728c7
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 16 00:00:36 2021 +0000

    L10n updates for: es
    From translation svn revision: 61116
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    3       3       source/locale/es/symbols.dic
     1 file changed, 3 insertions(+), 3 deletions(-)

commit 59536cc6057b65155c5d0c528b4ad932f6e36f0a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 16 00:00:28 2021 +0000

    L10n updates for: da
    From translation svn revision: 61116
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    5       5       source/locale/da/LC_MESSAGES/nvda.po
     1 file changed, 5 insertions(+), 5 deletions(-)

commit 35ceac295888a6fef532ffb65e1a09d616944884
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Thu Apr 15 18:40:32 2021 +0800

    Improve logging of test for panel destruction (PR #12291)
    
    * Reduces the log noise during destruction of SettingsDialogs
    * Makes the log easier to follow, objects and constants are now more clearly described.
    * Fixes a space in the import statement, this was a typo and is strange style.

commit bd12c8859f9e6a654ea59049aa157e059391e9e9
Author: Luke Davis <8139760+XLTechie@users.noreply.github.com>
Date:   Tue Apr 13 23:10:38 2021 -0400

    Fixed  typo in db84870b3a045e12939 (PR #12276). (#12290)

commit 626e9b9ed0417b678ccbfeb56a4f32aa1e3b448a
Merge: 49a857888 db84870b3
Author: Quentin Christensen <quentin@nvaccess.org>
Date:   Tue Apr 13 09:53:22 2021 +1000

    Merge pull request #12276 from XLTechie/bugTemplateCRFTLanguage
    
    Bug issue template: Rewrote COM Reg. Fix Tool question, to make it more action-oriented

commit db84870b3a045e12939ddfc270d86ebd8c8488be
Author: Luke Davis <newanswertech@gmail.com>
Date:   Tue Apr 6 01:02:58 2021 -0400

    Bug issue template: Rewrote COM Reg. Fix Tool question, to make user more likely to run it before submitting

commit 49a857888990c33fe44b28a309e9aed7b353713f
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Fri Apr 9 15:15:02 2021 +0800

    Update espeak-ng to 1.51-dev commit cad1c8e8 (PR #12280)
    
    Adds readme for espeak, including how to update espeak submodule, sourced from:
    https://github.com/nvaccess/nvda/wiki/Updating-eSpeak-NG

commit 911d712b3153f7f60b96889bbac02776e9f67c7d
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Fri Apr 9 02:22:14 2021 +0200

    Fix NVDA crash when formatting a timestamp of a log entry under some versions of Universal CRT (#12250)
    
    Under some versions of Universal CRT Python can crash when formatting time with time.localtime and locale is set to a language which contains underscore it its name. For users this manifests in a crash of NVDA since default log formatter attempts to format current time with time.localtime when writing anything to the log.
    
    WX Python no longer tries to set Python locale to an nonexistent one when creating an instance of wx.app. While this is not necessary any longer when time.localtime is not used we are managing locale ourselves in languageHandler so it makes sense to do it just in one place. When formatting time of the log entries time.localtime is not used any more
    
    * Backport of `InitLocale` from Wx Python 4.1.2 to workaround crash encountered under particular versions of Universal  CRT.
    
    * Custom implementation of `formatTime` for log formatter using win32 API calls to avoid crashes under Server 2019 and  Windows 10 1809
    
    * Lint for winKernel:
    
    - Remove star imports
    - Remove duplicate definition of openProcess
    
    * logHandler: move import of winKernel to the top of the file and remove unused imports.
    
    Co-authored-by: buddsean <sean@nvaccess.org>

commit c9841ecebe7f2df2ba6ef9828f931b0548d87788
Merge: c09bdf3c9 8ae083d4b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 9 00:01:17 2021 +0000

    Update translations.
    
    From translation svn revision: 61104

commit 8ae083d4bee85f3c4bac7eb71d1729296c3d1c67
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 9 00:01:11 2021 +0000

    L10n updates for: uk
    From translation svn revision: 61104
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    11      11      source/locale/uk/LC_MESSAGES/nvda.po
    13      13      user_docs/uk/userGuide.t2t
     2 files changed, 24 insertions(+), 24 deletions(-)

commit 6f38453354090a4b5dd9fd622f08b9c7f570a502
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 9 00:01:09 2021 +0000

    L10n updates for: ta
    From translation svn revision: 61104
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    4       4       source/locale/ta/LC_MESSAGES/nvda.po
     1 file changed, 4 insertions(+), 4 deletions(-)

commit 76524db8203bd297ecfcfb720229a1d0ade286f2
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 9 00:00:52 2021 +0000

    L10n updates for: mn
    From translation svn revision: 61104
    
    Authors:
    Mongol NVDA-Translation <mongoliannvdatranslation@gmail.com>
    
    Stats:
    3       3       source/locale/mn/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 3 deletions(-)

commit 4d2745c60428b8201cd3c83b485ef7b959519d23
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 9 00:00:36 2021 +0000

    L10n updates for: fr
    From translation svn revision: 61104
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqué-Cazenave <corentin@progaccess.net>
    
    Stats:
    1       1       source/locale/fr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 1fdf8ec7c956938f2d9bdf14ffa839e624d6b288
Author: Sean Budd <sean@nvaccess.org>
Date:   Thu Apr 8 16:59:13 2021 +1000

    Ensure AppVeyor message is added for translation comment errors (#12283)
    
    Post a relevant message to appveyor and the PR when a build fails due to translation comments missing or unexpectedly included

commit 62eaba526a8b9876e3bf8dff3c7e51e7a6608748
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Apr 7 16:48:30 2021 +1000

    UIA NvDAObject's selectionContainer property: protect against a NULL selectionContainer on UIA's SelectionItemPattern, such as for Lutlook Attachment lists. (#12274)
    
    After merging of pr #12210 , The attachment list in Outlook no longer read with NVDA, and an error was produced in the log.
    It seems that Outlook's attachment list, gives back a NULL pointer for the SelectionContainer property on its UIA SelectionItemPattern.
    
    This commit Checks to see if CurrentSelectionContainer is NULL and returns None as there is nothing further we can do with that pattern.
    
    Fixes #12265

commit 0efeee4b7dbdd243a7b880cf08dcbef284b48896
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Tue Apr 6 21:06:04 2021 +1000

    Ensure TextInfo.getTextInChunks does not freeze, and provide new friendly compareable TextInfo endpoint properties (#12253)
    
    TextInfo.getTextInChunks could sometimes end up in an infinit loop when dealing with particular TextInfo implementations such as ITextDocument where setting start to the end of the document results in the start never quite getting there.
    
    To work around this specific freeze, getTextInChunks now double checks that the start has really moved to the end of the last chunk. If not, we break out of the loop.
    
    However, for a long time now we have wanted to make these TextInfo comparisons much more readable, which can aide in finding logic errors much easier.
    To that end, TextInfo objects now have start and end properties, which can be compared mathematically, and also set from another, removing the need to use compareEndPoints or setEndPoint.
    Some examples:
    Setting a's end to b's start
    Original code:
    a.setEndPoint(b, "endToStart")
    New code:
    a.end = b.start
    Is a's start at or past b's end?
    Original code:
    a.compareEndPoints(b, "startToEnd") >= 0
    New code:
    a.start >= b.end
    TextInfo.getTextInChunks has been rewritten to use these new properties.

commit ebe1ab5478629d037fd45b2b81a4942aadb42c6d
Author: Ty Gillespie <60036684+trypolis464@users.noreply.github.com>
Date:   Mon Apr 5 20:31:36 2021 -0600

    Fixed a typo in changes file (autoSettingUtils to autoSettingsUtils). (#12263)
    
    Co-authored-by: trypolis <60036684+TyGillespie@users.noreply.github.com>

commit c09bdf3c9db42541a177c0d233456379eedbaf05
Merge: 1e95320ad a5f5aea4b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 2 00:01:19 2021 +0000

    Update translations.
    
    From translation svn revision: 61091

commit a5f5aea4b2ec5a3fd680ad10a935f8cd12e010f5
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 2 00:01:16 2021 +0000

    L10n updates for: zh_CN
    From translation svn revision: 61091
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen_0528@outlook.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    1872265132@qq.com
    
    Stats:
    2       2       source/locale/zh_CN/LC_MESSAGES/nvda.po
    4       4       user_docs/zh_CN/userGuide.t2t
     2 files changed, 6 insertions(+), 6 deletions(-)

commit 67d3e034e95c4f1290a47f507c7bf0e328389305
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 2 00:01:12 2021 +0000

    L10n updates for: uk
    From translation svn revision: 61091
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    4       4       source/locale/uk/LC_MESSAGES/nvda.po
     1 file changed, 4 insertions(+), 4 deletions(-)

commit caa8a5e01fa5b5e4558eb11f8da1c04c08ca958b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 2 00:01:11 2021 +0000

    L10n updates for: tr
    From translation svn revision: 61091
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    1       1       user_docs/tr/userGuide.t2t
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 61ec3939ee68815f09c145604396bb2af716d11e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 2 00:00:37 2021 +0000

    L10n updates for: fr
    From translation svn revision: 61091
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqué-Cazenave <corentin@progaccess.net>
    
    Stats:
    9       8       source/locale/fr/LC_MESSAGES/nvda.po
     1 file changed, 9 insertions(+), 8 deletions(-)

commit 2e37433ea402b4f15d655ea995dd4397f965e4c9
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Mar 31 19:01:50 2021 +1000

    Microsoft Edge with UIA: move the browse mode caret to the target of a same-page link when it is activated, by supporting  UI Automation's activeTextPositionChanged event. (#12242)
    
    When following a same-page link in a web browser, the page is scrolled to the target of the same-page link, and it is expected that the screen reader will move its browse mode caret to that location as well.
    Recently a new ActiveTextPositionchanged event was added to UI Automation to allow browsers to communicate this to screen readers. Only in the last week or so, Microsoft Edge Canary has started firing this event when same-page links are activated.
    NVDA should make use of this.
    
    NVDA now registers for UI Automation's ActiveTextPositionChanged event globally, and when one is received, fires its own UIA_activetextPositionChanged NvDA event. This NVDA event is implemented on UIABrowseModeDocument, which uses BrowseMode's _handleScrollTo to move the browse mode caret to the new location.
    _handleScrollTo had to be changed to accept not just an NvDAObject, but now also a TextInfo, as the ActiveTextPositionChanged event is actually passed a IUIAutomationTextRange.

commit 55a9b32e4d3889c04a1ea4ad5834a59d8851e009
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Tue Mar 30 02:12:17 2021 +0200

    Ensure that `speech.cancelSpeech` clears instance of `SpeechWithoutPauses` which has been used for say all. (#12228)
    
    Fixes #12225
    
    PR #12195 removed speech.speakWithoutPauses which was an alias for speech._speakWithoutPauses. While all usages of speech.speakWithoutPauses were found and fixed it turned out than when cancelling speech during say all speech._speakWithoutPauses was cleared rather than instance of SpeakWithoutPauses used for say all.
    
    Now the instance of SpeechWithoutPauses which is used during say all is cleared. A function is added to sayAllHandler which creates it first if necessary, and ensures that the single instance is being used for say all.

commit e1a937f3ae14f556090bea6b394b59d1ec2f9334
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Mon Mar 29 02:02:07 2021 +0200

    Fix for #12234 (#12236)

commit d9ccf26a068f57daf205056c3a45a0790c176453
Author: Sean Budd <sean@nvaccess.org>
Date:   Mon Mar 29 10:50:00 2021 +1100

    Patch wx overriding the correct python locale (#12214)
    
    The thread executing this did not have the correct locale set by NVDA through languageHandler.setLanguage. This is due to the latest wxPython incorrectly overriding the locale with one not supported by python.
    
    The Windows/System language option should also call locale.setlocale in setLanguage and the locale needs to be reset after wx changes it.

commit 656ecb5f9bd3301812e8d0f73dbf8cf360f286a5
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Fri Mar 26 20:52:32 2021 +1000

    Allow UIA to work again on Win7 after pr #12210 (#12233)
    
    With the merging of pr #12210 it became impossible to interact with UI Automation controls on Windows 7.
    
    * Fetching the annotationTypes UIA property raises a COMError if not implemented by the control. On newer Operating Systems UIA core returns a default.
     * Fetching the SelectionPattern2 interface also causes a COMError on older Operating Systems if not implemented by the control.
    
    Therefore:
    * Catch COMError when fetching UIA annotationTypes.
    * Catch COMError when fetching the UIA SelectionPattern2 interface.
    
    Fixes #12227

commit 9a1cca54a86b575928852c9de81b71cdc3c9de75
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Fri Mar 26 05:28:16 2021 +0100

    Report appointment categories in Microsoft Outlook (PR #11598)
    
    Outlook appointments could have multiple categories (or colors) assigned to them.
    Fetch the categories from the object model and report them after other appointment details.

commit 6a0839d96d90a7ed29b393efc5fc5e431202edc1
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Fri Mar 26 01:35:58 2021 +0100

    Remove backwards compat code from IAccessibleHandler (#12232)
    
    removes code marked as deprecated in #10934
    
    PR #10934 refactored IAccessibleHandler into a package. This necessitated keeping some unused imports but marking them as deprecated. Also various parts of NVDA relied on the fact that IAccessibleHandler star imported all variables from IAccessible and IAccessible2 COM interfaces.
    
    Unused imports are removed from IAccessibleHandler
    NVDA's source has been modified to use IAccessible2 names from the COM interface rather than from IAccessibleHandler.

commit 1e95320ade8c09bca58374ce72cba17df4d44b90
Merge: 1273e89ec 197e0a6f7
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 26 00:01:30 2021 +0000

    Update translations.
    
    From translation svn revision: 61075

commit 197e0a6f7440697b4ec6244891346b20f7f0aec3
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 26 00:01:29 2021 +0000

    L10n updates for: zh_TW
    From translation svn revision: 61075
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    haach111000@gmail.com
    
    Stats:
    2       2       user_docs/zh_TW/userGuide.t2t
     1 file changed, 2 insertions(+), 2 deletions(-)

commit c5728b6fc7e772d168ab9d45fbf4c07373085979
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 26 00:01:21 2021 +0000

    L10n updates for: ta
    From translation svn revision: 61075
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    4       4       source/locale/ta/LC_MESSAGES/nvda.po
     1 file changed, 4 insertions(+), 4 deletions(-)

commit d90b24e7bb3e0e61814c24f4b163afa85beac3c7
Author: Cyrille Bougot <cyrille.bougot2@laposte.net>
Date:   Thu Mar 25 19:31:08 2021 +0100

    Restore advanced settings layout. (#12223)
    
    The new option introduced by #12210 was not located in the "Microsoft UI Automation" option group as it should.
    Probably due to missed changes during upmerge of master.
    
    It is now Put in this group as intended by using The static box of the sizer as parent for the checkbox rather than the whole panel.

commit ff79f51894718978ed8a81a86477a70eb4421d0d
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Thu Mar 25 03:26:45 2021 -0700

    Replace isWin10 with more flexible Windows version checking (PR #11909)
    
    Convenience methods and types have been added to the winVersion module for getting and comparing Windows versions.
      - isWin10 function found in winVersion module has been removed.
      - class winVersion.WinVersion is a comparable and order-able type encapsulating Windows version information.
      - Function winVersion.getWinVer has been added to get a winVersion.WinVersion representing the currently running OS.
      - Convenience constants have been added for known Windows releases, see winVersion.WIN* constants.
    
    Closes #11795
    Closes #11837
    Closes #11933
    Replaces #11796
    Replaces #11799

commit 8665526b573affa35d9d89b0650972482e45dc4c
Author: Sean Budd <sean@nvaccess.org>
Date:   Thu Mar 25 19:05:36 2021 +1100

    Exit NVDA safely by closing all top level windows (#12183)
    
    Unreleased silent installs of NVDA were causing a crash at the end of the install process.
    
    it was found NVDA closes the wxApp by forcibly exiting the MainLoop. This is not recommended and the behaviour of closing the TopWindow is recommended.
    
    NVDA now will exit even with windows still open, the exit process now closes all NVDA windows and dialogs

commit 8412adbd2030de9ae87246fc1c5f5adf0301600a
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Thu Mar 25 15:03:09 2021 +0800

    Make com interfaces ide friendly (PR #12201)
    
    * Make UIAutomationClient work for tools and runtime
    
    At runtime the import from comtypes.gen will work, as a fallback for IDE
    / Tools that can't find that, the relative import is used.
    
    Note: IDE's wont be aware of 'protected' symbols (beginning with
    underscore). Protected symbols aren't imported with the from x import * statment.
    
    * Auto fix generated files for IDE / tools.
    
    Generated "friendly name" comtypes.gen files are modified so that they
    can be used by tools / IDEs more easily.
    
    The files are read, the module name extracted, and the import statement
    replaced by a more elaborate version which include a fall back to a do a
    relative import if the comtypes.gen file is not found.

commit 57e02cae77b33a312b5adc190b150bca9e27967e
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Thu Mar 25 05:46:31 2021 +0100

    use wx.Accessible to improve accessibility of our settings panels and checkable list controls (#12215)
    
    To fix some accessibility issues in our settings panel and checkable lists, we had to use a custom com server with comtypes. However, wx has built-in functionality to manipulate accessibility properties.
    
    This commit removes our own accprop server in favour of wx' native support.
    
    Closes #12209

commit ed5fca6b3925ee656dc0ce66e15c24303e1efa09
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Thu Mar 25 13:21:25 2021 +1000

    Optional experimental support for Microsoft Excel via UI Automation (#12210)
    
    Since 2013, Microsoft has been slowly adding a UI Automation implementation to Microsoft Excel. For quite some time, this implementation was missing too much to be at all useful for NVDA. However, in the last year, Microsoft has increased its effort in this area, starting to fill many of the gaps in the implementation, providing more of a reason for NVDA to start consuming this experimentally, with the goal of one day switching to UI Automation in Excel by default.
    Not only would this provide significant performance improvemts for NVDA with Excel, but it would also enable scenarios such as using Excel in Application Guard, or remotely via Windows Virtual Desktop, where access to the object model and in-process injection is no longer possible.
    
    NVDA will now fall back to relying on UI Automation In Microsoft Excel if available, if NVDA is not able to inject in-process.
    A new option has been added to NVDA's Advanced settings, which when enabled, forces NVDA to use UI Automation in Microsoft Excel always when available.
    Although so far navigating, editing and querying cells is all supported, the following features are not yet implemented:
    • NvDA Elements List for listing formulas, comments etc. The needed UI Automation extensions are not yet available.
    • Browse mode quick nav. Again, same reason as above.
    • Setting / consuming screen reader specific column and row headers. This feature probably will not be supported. Instead it is recommended to make these particular sets of data into tables, marking the needed rows and columns as headers in the standrd way for modern Microsoft Excel.
    As some Excel-specific information on cells does not quite fit with standard NVDA concepts. A new Cell Appearance script (NVDA+o) has been added, which presents a browse mode document, listing these specific bits of information. This script may be changed or removed in future as it is possible to find this information out by looking in the Cell formatting dialog etc anyway, but for now it is there to demonstrate NVDa's ability to fetch this kind of information from UI Automation.
    Many of Excel's specific features have been exposed by Microsoft through UI automation via either annotations, or custom properties.
    Standard UIA annotations that NvDA consumes for this support are:
    • comment: For notes and comments. NVDA exposes the "has comment" state on cells, and reports the comment with a reportComment script (NVDA+alt+c).
    • Data validation error: the error text is included in the cell's description.
    • Formula error: the error text is included in the cell's description.
    • Circular reference error: the error text is included in the cell's description.
    Microsoft has made use of UI Automation's custom property feature in order to expose many more Excel-specific properties: https://docs.microsoft.com/en-us/office/uia/excel/excelcustomproperties
    This pr adds an infrastructure in UIAHandler / UIA NVDAObjects which allows registering and accessing these custom property IDs in a standard way.
    The properties that Microsoft exposes in Excel are:
    • cellFormula: mapped to NvDA's hasFormula state.
    • cellNumberFormat: exposed in Cell appearence script (NvDA+o). Note however that Excel currently exposes the raw template value and not the friendly name. So right now this is not as useful as it could be.
    • hasDataValidation: Exposed in Cell appearence script (NvDA+o)
    • hasDataValidationDropdown: Mapped to NvDA's submenu state.
    • dataValidationPrompt: exposed in cell description and Cell appearence script (NvDA+o)
    • hasConditionalFormatting: exposed in Cell appearence script (NvDA+o)
    • areGridlinesVisible: exposed in Cell appearence script (NvDA+o)
    • commentReplyCount: Included in reportComment script (NvDA+alt+c).
    The above annotations and properties have only been available in Microsoft Excel since build 16.0.13522.10000.
    Thus turning on this option will only be useful for this build or higher.

commit 0316158bc9f43066d6db44431bbd2402c27330b0
Author: Sean Budd <sean@nvaccess.org>
Date:   Wed Mar 24 10:15:27 2021 +1100

    fix installation crash from StaticBoxSizer changes (#12199)
    
    Summary of the issue:
    The standard installation process crashes with the following traceback, caused by #12181
    
    Description of how this pull request fixes the issue:
    Fix various crashing GUI bugs introduced to the installation process in #12181
    Add smoke tests for the installation process

commit ae38fcc7fcae1f1888bbdeb1ffc7e3af87ab9ed2
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Tue Mar 23 10:46:22 2021 +0100

    Remove Adobe Flash support from NVDA (PR #12207)
    
    Support for Adobe Flash content has been removed from NVDA due to the
    use of Flash being actively discouraged by Adobe.
    Fixes #11131
    
    Co-authored-by: Reef Turner <reef@nvaccess.org>

commit 6ede26783c39e01906fcb82cdb7a455311a38fd1
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue Mar 23 16:36:08 2021 +0800

    Fix routing to cell in selection (braille) (PR #12208)
    
    When routing to a cell within a selection, an error occurred.
    When there is a selection self.brailleCursorPos is None.

commit fc6b73f5c7d7375c724e91b1e447d538e33585c9
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Tue Mar 23 01:25:49 2021 +0100

    Move some classes from the main gui module. (#12105)
    
    Code layout in the gui module is sup optimal. This can easily cause cyclic imports for one such example see #11950
    While the issue mentioned above has been resolved it makes sense to reorganize this part of the code to minimize likelihood of similar problems in the future.
    
    Description of how this pull request fixes the issue:
    - `LauncherDialog`, `WelcomeDialog` and `AskAllowUsageStatsDialog` were moved to the `gui.startupDialogs` module
    - `getDocFilePath` has been moved into the new `documentationUtils` module as there is no logical connection between it and gui
    
    Co-authored-by: buddsean <sean@nvaccess.org>

commit 83738d7d9150fb379083eb3918e9c78c78610489
Author: André-Abush Clause <dev@andreabc.net>
Date:   Mon Mar 22 11:15:08 2021 +0100

    Update liblouis to 3.17.0 (PR #12137)
    
    Adds Urdu braille tables to the GUI
    Co-authored-by: Reef Turner <reef@nvaccess.org>

commit f2a734b092bc7cc41508436df2f6f5338da5ec5c
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Mon Mar 22 06:07:31 2021 +0100

    Remove backwards compat aliases from PR 10593 (#12195)
    
    Removes code provided for backwards compatibility in PR #10593
    
    ### Summary of the issue:
    
    PR #10593 introduced `speech.speakWithoutPauses ` as an alias for `speech._speakWithoutPauses.speakWithoutPauses` and `speech.re_last_pause` as an alias for `speech._speakWithoutPauses.re_last_pause` for backwards compatibility. Since 2021.1 is going to be backwards compatibility breaking release it makes sense to remove these.
    
    ### Description of how this pull request fixes the issue:
    
    These aliases are removed and their usages are replaces with `speech.SpeechWithoutPauses(speakFunc=speech.speak).speakWithoutPauses` and `speech.SpeechWithoutPauses.re_last_pause` respectively.

commit abdf77e91dc6597cba98277da417dc70ae810725
Author: Reef Turner <reef@nvaccess.org>
Date:   Mon Mar 22 11:50:28 2021 +0800

    Update changes file for PR #12202

commit b5ad8d6e8b85f4112415998c449d11427b1689f6
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Mon Mar 22 11:45:33 2021 +0800

    Update espeak to 1.51-dev commit 53915b (PR #12202)
    
    Now using 1.51-dev commit 53915bf0a7cd48f90c4a38ac52fff697723d9f4d

commit 1273e89ec42d1ca9a00873972cd428bd6af809c1
Merge: dad7d107d 8d57d40cd
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 19 00:01:32 2021 +0000

    Update translations.
    
    From translation svn revision: 61061

commit 8d57d40cdd102cdf394ff2aa3e9c82e381771b7b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 19 00:01:29 2021 +0000

    L10n updates for: zh_CN
    From translation svn revision: 61061
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen_0528@outlook.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    1872265132@qq.com
    
    Stats:
    6       6       user_docs/zh_CN/userGuide.t2t
     1 file changed, 6 insertions(+), 6 deletions(-)

commit 934a1c878062a2b7379f9cd2f3baf8082a0dd765
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 19 00:00:45 2021 +0000

    L10n updates for: es
    From translation svn revision: 61061
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       user_docs/es/userGuide.t2t
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 3c1693dd6533bd821cee233236c69da1b847e375
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Thu Mar 18 18:08:37 2021 +1000

    Stop printing some exceptions in __del__ to standard error (#12148)
    
    * garbageHandler.trackableObject's __del__method: handle the case where the object is being deleted while Python is exiting. In this situation, some global symbols could be None.
    
    * comtypesMonkeyPatches: in our override of compointer_base's __del__ method: handle the case where Python is exiting. In this situation some global symbols could become set to None.
    
    * Linting
    
    * Clarify comment.
    
    * comtypesMonkeyPatches._newCpbdel: make isFinalizer check a little easier to read.

commit 7139a9c4d4d3a2aa05dd3c204bd9d7b16bda75e4
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Thu Mar 18 18:07:41 2021 +1000

    Allow NVDA build system to still function if NvDA repository is moved or copied to another location (#12184)
    
    * venvUtils\ensureAndActivate.bat: rather than calling the standard activate.bat from the generated .venv, set the necessary environment variables manually, and make VIRTUAL_ENV be relative to this script, rather than a hard-coded path.
    This allows the NVDA repository to be moved or copied somewhere else on the same system and the environment used without having to be recreated.
    
    * Don't call the deactivate script from venvCmd.bat. We no longer call activate.bat so deactivate.bat may do the wrong thing. But more importantly, we already call endlocal which dumps all changes to the environment anyway, thus it is not needed.
    
    * Add extra comments to venvCmd.bat explaining setlocal / endlocal.
    
    * ensureAndActivate.bat: add more clearer comments, mentioning .venv's standard activate.bat.

commit 073826ae3eb345712561722181e4d42ca84ef118
Author: Sean Budd <sean@nvaccess.org>
Date:   Thu Mar 18 15:02:52 2021 +1100

    Fix right-to-left layout direction issues (#12181)
    
    * move to supported usage of wx.StaticBoxSizer
    
    standardize LTRStaticBoxSizer usage
    
    standardize LTRStaticBoxSizer usage
    
    test wx RTL workaround
    
    use wxWidgets workaround
    
    commit c59e874058cbe0f521806ae3f6ad1c59a68b6324
    Author: buddsean <sean@nvaccess.org>
    Date:   Tue Mar 16 14:09:26 2021 +1100
    
        try parent instead of sibling method
    
    commit 11017debd9047be24938ce4745d3a234ae3e8829
    Author: buddsean <sean@nvaccess.org>
    Date:   Tue Mar 16 13:25:59 2021 +1100
    
        remove LTRStaticBoxSizer workaround
    
    commit e17de62433affe91cc3029a25798f759a5c60702
    Author: buddsean <sean@nvaccess.org>
    Date:   Tue Mar 16 13:14:39 2021 +1100
    
        try parent instead of sibling method
    
    commit 45514f271ec569eb2fa363afbc0f35bd28e7c8f2
    Author: buddsean <sean@nvaccess.org>
    Date:   Tue Mar 16 11:48:24 2021 +1100
    
        try parent instead of sibling method
    
    commit 9575740f52590b9d4fa75e548b8d2b94f344a6dd
    Author: buddsean <sean@nvaccess.org>
    Date:   Tue Mar 16 11:23:59 2021 +1100
    
        try parent instead of sibling method
    
    commit 608fb66bb6c98225ac6298c22efcbd77d4a04ac6
    Author: buddsean <sean@nvaccess.org>
    Date:   Mon Mar 15 14:38:37 2021 +1100
    
        test wx RTL workaround
    
    commit f1189bf06b07c97a398169484ffcfe2c117e6bba
    Author: buddsean <sean@nvaccess.org>
    Date:   Mon Mar 15 14:03:20 2021 +1100
    
        test wx RTL workaround
    
    * fix flake8 issues
    
    * set layout on mainframe for locale
    
    * fix lint
    
    * move out wx import
    
    * use better typing and naming
    
    * remove unused variable
    
    * apply DRY
    
    * undo risky import change
    
    * fix lint
    
    * undo risky import change, fix lint
    
    * fix nose typing read
    
    * remove unneccessary typing import
    
    * update changes.t2t

commit 5fbe05d4ddb28a255ec10dde5372f2f3b34be6e3
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Wed Mar 17 18:56:59 2021 +0800

    Enable cancellable speech by default (PR #11266)
    
    First introduced with "Cancellable speech #10885"
    Several issues fixed with "Fix several issues in speech manager #11245"

commit 4b74c7bbf6a02735acddbe5ed609c003a8cd9b2b
Author: Sean Budd <sean@nvaccess.org>
Date:   Wed Mar 17 15:16:58 2021 +1100

    TextInfos must inherit from BaseContentRecogTextInfo (#12157)
    
    * usage of TextInfos that do not inherit from BaseContentRecogTextInfo is removed
    
    * remove unusued code
    
    * update changes.t2t

commit b3b2e1ff2467d599452277a7a9f57e5dae7aa462
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Wed Mar 17 02:42:42 2021 +0100

    Use DriverSetting classes from autoSettingUtils rather than from driverHandler (#12168)
    
    * Use DriverSetting classes from autoSettingUtils rather than from driverHandler
    
    * update changes.t2t
    
    Co-authored-by: buddsean <sean@nvaccess.org>

commit 04849b045aca55b1216aa0e0aa9c520df11af6c8
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Wed Mar 17 01:55:23 2021 +0100

    don't rely on star imports from synthDriverHandler (#12172)
    
    * synthDriverHandler: Remove unused imports, standardize copyright header
    
    * sayAllHandler: Remove unused import of synthDriverHandler
    
    * settingsDialog: don't rely on star imports from synthDriverHandler
    
    * globalCommands: don't rely onn star imports from synthDriverHandler, remove unused imports
    
    * update changes.t2t
    
    Co-authored-by: buddsean <sean@nvaccess.org>

commit 3dcba914b4e99c562281ba0661dfd4d5d9a9f960
Author: Sean Budd <sean@nvaccess.org>
Date:   Wed Mar 17 10:53:47 2021 +1100

    remove unused flag from horizontal sizer (#12182)

commit d67c3c7cd3db769aec137db376d57cad9ce1340d
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Wed Mar 17 00:16:45 2021 +0100

    controlTypes: Remove deprecated ROLE_EQUATION (#12164)
    
    * controlTypes: Remove deprecated ROLE_EQUATION
    
    * update changes.t2t
    
    Co-authored-by: buddsean <sean@nvaccess.org>

commit ef8a0d41be4a92f298f47bfd230da9414a7a44d6
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Wed Mar 17 00:15:12 2021 +0100

    Add diff used for linting changes to the list of files ignored by git (#12169)

commit ee1be353079364d4502c0f389d32ff10452d0533
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Wed Mar 17 00:14:10 2021 +0100

    Stop installer from attempting to delete lib directories for the version of NVDA which has just been installed (#12165)
    
    * installer: Unify usages of names from ctypes to avoid linter warnings about star imports
    
    * installer: Remove unused imports
    
    * Ensure that installer does not try to delete lib directories for the version of NVDA which is currently being installed.

commit a20e768134755f37b28aed7ba22769c1df46fb65
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Mar 17 08:11:23 2021 +1000

    Performance increase interacting with Visual Studio (#12170)
    
    * NVDAObjects.UIA.visualStudio.findExtraOverlayClasses: avoid fetching parent unless it is actually needed. Provides a significant performance increase.
    
    * Update what's new.

commit 4779af0d4a9ccac05dbaf328e001512639973c2a
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Tue Mar 16 19:08:02 2021 +1000

    Chrome system tests: ensure the page is fully loaded (including all iframes) before testing the page (#12174)
    
    * Chrome system tests: add a load status line after the start marker, and wait for it to become "Test page load complete" before continuing with the test. This is set by the boy's onload event.
    
    * Core: queue the PostNVDAStartup notification so that it is actually executed from within the core loop once running, and after any initial focus has been reported.

commit 52bf1ed60dab19d4fcd266e8d53b2462e68bbcea
Author: Sean Budd <sean@nvaccess.org>
Date:   Fri Mar 12 11:52:04 2021 +1100

    implement deprecation of SAYALL behaviour for speakTextInfo (#12150)
    
    * implement deprecation of SAYALL behaviour for speakTextInfo in favour of sayAllHandler
    
    * update changelog

commit c901b0f85eb9c9d04f6ef2156c9c576eb74531b7
Author: Sean Budd <sean@nvaccess.org>
Date:   Fri Mar 12 11:05:19 2021 +1100

    Deprecate import of Commands directly from speech module in favour of speech.commands (#12126)
    
    * Include deprecations of import commands directly from speech
    
    * fix flake8 issues
    
    * changes to match reproduction steps
    
    * update changelog

commit dad7d107de3daeb2af4938d65392afae116adf88
Merge: f3efe2ffd a37f219d1
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 12 00:01:24 2021 +0000

    Update translations.
    
    From translation svn revision: 61040

commit a37f219d17b607bd1ea30abb1b8c247013ad21c2
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 12 00:01:17 2021 +0000

    L10n updates for: ta
    From translation svn revision: 61040
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    4       4       source/locale/ta/LC_MESSAGES/nvda.po
     1 file changed, 4 insertions(+), 4 deletions(-)

commit b70b8d7971771820691faa36a82bff6c12355ee1
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 12 00:00:57 2021 +0000

    L10n updates for: ko
    From translation svn revision: 61040
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    3       40      source/locale/ko/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 40 deletions(-)

commit 47f2ba078ad5f1c56600dbe4449688bf8cf0e797
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 12 00:00:45 2021 +0000

    L10n updates for: ga
    From translation svn revision: 61040
    
    Authors:
    Cearbhall OMeadhra <cearbhall.omeadhra@blbc.ie>
    Ronan McGuirk <ronan.p.mcguirk@gmail.com>
    Kevin Scannell <kscanne@gmail.com>
    
    Stats:
    2       2       user_docs/ga/userGuide.t2t
     1 file changed, 2 insertions(+), 2 deletions(-)

commit 25962a8386a81b0b52c01cffba54b4eaf743be24
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 12 00:00:35 2021 +0000

    L10n updates for: de
    From translation svn revision: 61040
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    45      45      source/locale/de/LC_MESSAGES/nvda.po
    1       1       source/locale/de/gestures.ini
     2 files changed, 46 insertions(+), 46 deletions(-)

commit a6ba80c8560434ee853d0f36593a047f17b35d75
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Mar 12 07:44:26 2021 +1000

    What's new: mention upgraded Python dependencies.

commit e2c6f5076be061b0f9636e3fa2935a1308e45bfa
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Thu Mar 11 22:42:53 2021 +0100

    Update comtypes to 1.1.8 (#12155)
    
    * Update comtypes to 1.1.8
    
    * Fix check_version monkeypatch
    
    * Linting

commit 528d5708aa13a0a384e1fcd5ef00a933ba077695
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Thu Mar 11 18:06:57 2021 +1000

    Py3.8: Transparently use a Python virtual environment under the hood (#12075)
    
    A Python virtual environment is now used transparently by the NVDA build system, and all Python dependencies are installed into this environment using pip.
    From a developer's perspective using the NVDA build system, there is no need to worry about the Python virtual environment behind the scenes, nor should you create and or activate one manually. All NVDA build system commands will handle this transparently.
    * To build NVDA, SCons should continue to be used in the usual way. E.g. executing scons.bat in the root of the repository. Running py -m SCons is no longer supported, and scons.py has also been removed.
    * To run NVDA from source, rather than executing source/nvda.pyw directly, the developer should now use runnvda.bat in the root of the repository. If you do try to execute source/nva.pyw, a message box will alert you this is no longer supported.
    * To perform unit tests, execute rununittests.bat [<extra unittest discover options>]
    * To perform system tests: execute runsystemtests.bat [<extra robot options>]
    * To perform linting, execute runlint.bat <base branch>
    Behind the scenes, the above batch files (scons, runnvda, rununittests, runsystemtests and runlint) ensure that the Python virtual environment is created and up to date, activates the environment, runs the command and then deactivates. All transparently. A developer should not have to know about the Python virtual environment at all.
    The first time one of these commands are run, the virtual environment will be created, and all required Python dependencies will be installed with pip. You can see the entire list of packages and their exact versions that pip will use, in requirements.txt in the root of the repository.
    venvUtils/ensureVenv.py contains the logic to check for, create and update the virtual environment.
    If a previous virtual environment exists but has a miss-matching Python version or pip package requirements have changed, The virtual environment is recreated with the updated version of Python and packages.
    If a virtual environment is found but does not seem to be ours, the user is asked if it should be overwritten or not.
    This script also detects if it is being run from an existing 3rd party Python virtual environment and aborts if so. thus, it is impossible to execute SCons or NVDA from source within another Python virtual environment.
    venvUtils/ensureAndActivate.bat can be used to ensure the virtual environment exists and is up to date, and then activates it in the current shell, ready for other commands to be executed in the context of NVDA's build system Python virtual environment. this would never normally be executed by itself, though appVeyor uses it at the beginning of its execution and leaves the environment active for the remainder of its execution.
    venvUtils/venvCmd.bat is a script that runs a single command within the context of the NVDA build system Python virtual environment. It ensures and activates the environment, executes the command, and then deactivates the environment. this script is what all the high-level batch files use internally.
    SConstruct, and source/nvda.pyw both contain logic that detects the NVDA build system Python virtual environment, and abort if it is not active.
    As this PR is specific for Python 3.8, it also upgrades the following Python dependencies:
    • wxPython to 4.1.1
    • pySerial to 3.5
    • py2exe to 0.10.1.0

commit 8e4b189bfe51a4b31b3954348a6a57251d8e8fed
Author: Sean Budd <sean@nvaccess.org>
Date:   Thu Mar 11 13:33:35 2021 +1100

    remove getSpeechForSpelling alias for getSpellingSpeech (#12145)
    
    * remove getSpeechForSpelling alias for getSpellingSpeech
    
    * fix flake8 error
    
    * updated changes.t2t

commit 16b83338360cd110509dc5e59b0ea7393ea734cd
Author: Sean Budd <sean@nvaccess.org>
Date:   Thu Mar 11 12:24:22 2021 +1100

    remove DriverSettingsMixin alias for AutoSettingsMixin (#12144)
    
    * remove DriverSettingsMixin alias for AutoSettingsMixin
    
    * update changes.t2t

commit 0d22a00fe44358402d7e56f248d1558b25e2dfca
Author: Sean Budd <seanbudd123@gmail.com>
Date:   Thu Mar 11 11:56:18 2021 +1100

    remove winKernel.GetTimeFormat, winKernel.GetDateFormat and usages (#12139)
    
    * remove winKernel.GetTimeFormat, winKernel.GetDateFormat and usages
    
    * updated changes.t2t

commit f3efe2ffd87c92a3069564b53c48187bd1ed18f6
Merge: 85dc237c4 13fb02dff
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 5 00:01:20 2021 +0000

    Update translations.
    
    From translation svn revision: 61011

commit 13fb02dffc628178f38f27e0bdf226f3f4d20d56
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 5 00:01:15 2021 +0000

    L10n updates for: tr
    From translation svn revision: 61011
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    3       3       user_docs/tr/userGuide.t2t
     1 file changed, 3 insertions(+), 3 deletions(-)

commit aba8ef7e96a2b4cd9a5c4222e5f43db6e6147581
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 5 00:01:07 2021 +0000

    L10n updates for: ro
    From translation svn revision: 61011
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <7ro2014@gmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    George Antonio Andrei <george.andrei2002@gmail.com>
    
    Stats:
    3       3       source/locale/ro/LC_MESSAGES/nvda.po
    82      0       user_docs/ro/changes.t2t
     2 files changed, 85 insertions(+), 3 deletions(-)

commit ff5834161e9c9c129940a616e9fab8e7b5f08acd
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 5 00:00:58 2021 +0000

    L10n updates for: nb_NO
    From translation svn revision: 61011
    
    Authors:
    David Hole <balubathebrave@gmail.com>
    Bjornar Seppola <bjornar@seppola.net>
    
    Stats:
    123     223     source/locale/nb_NO/LC_MESSAGES/nvda.po
     1 file changed, 123 insertions(+), 223 deletions(-)

commit 923955e2d4f1d1ba6320b2414f3c56f07d98476a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 5 00:00:41 2021 +0000

    L10n updates for: ga
    From translation svn revision: 61011
    
    Authors:
    Cearbhall OMeadhra <cearbhall.omeadhra@blbc.ie>
    Ronan McGuirk <ronan.p.mcguirk@gmail.com>
    Kevin Scannell <kscanne@gmail.com>
    
    Stats:
    10      12      source/locale/ga/LC_MESSAGES/nvda.po
     1 file changed, 10 insertions(+), 12 deletions(-)

commit db664bef7881d35c6af156287b9b518130aa2a69
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Mar 3 17:10:34 2021 +1000

    Microsoft Word documents (both with UIA enabled and disabled) now get a treeInterceptor created straight way, but with passThrough (focus mode) enabled. Thus, NVDA+f7 (elements list) is now available with out having to switch to browse mode in Microsoft Word first. (#12051)

commit 2c4316dff06cea2aabb946752ae4b1716978333d
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Wed Mar 3 06:58:45 2021 +0100

    Fix usages of some remaining Python 2 names (#12036)
    
    * NVDA controller client  Python example: xrange -> range
    
    * Add unit test to make sure that locationHelper classes raises expected exceptions when attempting to create their isntances from wrong types.
    
    * locationHelper: Long no longer exists in Pythonn 3

commit 8e3657db8995ea8bb2e69da5891582d97154784b
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue Mar 2 12:01:48 2021 +0800

    Fix typos in issue template (PR #12111)

commit 5678c8beb2ccd4ce48ba81732940dcdf99c656b4
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Mon Mar 1 02:02:16 2021 +0100

    remove unused imports from the nvwave module (#12048)
    
    * Nvwave: Update copyright header
    
    * Nvwave: remove unused imports
    
    * virtualBuffers: Remove unused import of nvwave

commit 85dc237c40daf9e9f8f9a286a2b1383da0f09971
Merge: c058cbaf7 ce2d73788
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 26 00:01:17 2021 +0000

    Update translations.
    
    From translation svn revision: 60979

commit ce2d73788fc63f792b9616ef5ef4b3c58b53feea
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 26 00:00:54 2021 +0000

    L10n updates for: mn
    From translation svn revision: 60979
    
    Authors:
    Mongol NVDA-Translation <mongoliannvdatranslation@gmail.com>
    
    Stats:
    70      88      source/locale/mn/LC_MESSAGES/nvda.po
     1 file changed, 70 insertions(+), 88 deletions(-)

commit b9213927cbbab66e076567d9d668c47267456d9f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 26 00:00:46 2021 +0000

    L10n updates for: it
    From translation svn revision: 60979
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    5       5       source/locale/it/LC_MESSAGES/nvda.po
     1 file changed, 5 insertions(+), 5 deletions(-)

commit 62241632e582e33422f0e81a9f22e6eef8e91985
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 26 00:00:36 2021 +0000

    L10n updates for: fr
    From translation svn revision: 60979
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqué-Cazenave <corentin@progaccess.net>
    
    Stats:
    6       7       source/locale/fr/symbols.dic
     1 file changed, 6 insertions(+), 7 deletions(-)

commit b4087a2c447a272fc871477df5f7249a9ba58a64
Author: jakubl7545 <48619364+jakubl7545@users.noreply.github.com>
Date:   Tue Feb 23 10:09:26 2021 +0100

    Report 'unsupported' when toggling screen layout in Word (#10795)
    
    Report 'unsupported' when toggling screen layout in Word (PR #10795)
    
    Fixes #7297
    Report "unsupported" when trying to toggle screen layout (NVDA+v)
    in MS Word and other applications that don't have support for
    screen layout.
    
    Previously 'v' was passed through to the application which was
    confusing for users who expected screen layout to be available.
    
    Co-authored-by: Reef Turner <reef@nvaccess.org>

commit bdc71bacfbe1468324d1b4502d8bac3318a8ecd3
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue Feb 23 10:51:14 2021 +0800

    Fix command line length limit reached (PR #12083)
    
    The number of files passed to xgettext had grown too great, use a file list instead

commit e34085257074fc060cbbd965690f2bfdbac9039d
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue Feb 23 10:49:16 2021 +0800

    Fix isCurrent errors for Internet Explorer (PR #12066)

commit eea040691e3db08bc1b74a326861c951b4c67de6
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Feb 22 07:47:56 2021 +1000

    appveyor.yml: add a comment above the call to ssh warning of a freeze if the server address is changed yet known_hosts is not updated.

commit c058cbaf7c325401524758b929e196e8ab811921
Merge: 7ac511d6c 5b8eb8165
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 19 11:00:27 2021 +0000

    Update translations.
    
    From translation svn revision: 60963

commit 5b8eb81656aec76db8626f4ac7c1c6d100c8f490
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 19 11:00:03 2021 +0000

    L10n updates for: nb_NO
    From translation svn revision: 60963
    
    Authors:
    David Hole <balubathebrave@gmail.com>
    Bjornar Seppola <bjornar@seppola.net>
    
    Stats:
    2913    2922    user_docs/nb_NO/userGuide.t2t
     1 file changed, 2913 insertions(+), 2922 deletions(-)

commit cf35b8f7c1c99e0fbdc105036c78b17e9c7fdbc9
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 19 10:59:51 2021 +0000

    L10n updates for: hu
    From translation svn revision: 60963
    
    Authors:
    Aron OcsvAri <oaron@nvda.hu>
    
    Stats:
    2594    2593    user_docs/hu/userGuide.t2t
     1 file changed, 2594 insertions(+), 2593 deletions(-)

commit 71c385eae1d7f77c47a0871a690c1142c4c724e2
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Feb 19 01:11:32 2021 +1000

    Deploy via ssh to deploy.nvaccess.org this time with a correct entry in the ssh known_hosts file.

commit f2a509a2e4f0b7bd346dedae88a6170964312562
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Feb 18 18:58:04 2021 +1000

    appveyor: make ssh verbose to aide in debugging.

commit 1775a6da0447a8f44f271848a81b7d25b1d21c64
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Feb 18 18:15:32 2021 +1000

    appveyor: ensure deploy.json is utf8 encoded, not unicode.

commit a45b084d9a4acb57ea703c7ee93fdd11a5d1502b
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Feb 18 17:12:15 2021 +1000

    appveyor: fix syntax error.

commit ec1a5c5ca27ce13ede069cdfe7f68356c27040a3
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Feb 18 16:52:20 2021 +1000

    appveyor: save off the deploy json before sending it to NV Access.

commit 567627fdadbf8aa56826e2f9583370dc2a103375
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Feb 18 14:23:41 2021 +1000

    Deploy to deploy.nvaccess.org

commit 7ac511d6c548b924a64aba185cee87b044453e1a
Merge: 554f8f461 cf5f36761
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Thu Feb 18 03:43:07 2021 +0000

    Update translations.
    
    From translation svn revision: 60959

commit cf5f367617cb812f90a5c13a0f163dcf88610086
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Thu Feb 18 03:43:05 2021 +0000

    L10n updates for: zh_CN
    From translation svn revision: 60959
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen_0528@outlook.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    1872265132@qq.com
    
    Stats:
    7       7       user_docs/zh_CN/userGuide.t2t
     1 file changed, 7 insertions(+), 7 deletions(-)

commit 114f6eb97f04faa3b8664a2d30df52faa10e90a9
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Thu Feb 18 03:42:51 2021 +0000

    L10n updates for: pt_BR
    From translation svn revision: 60959
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    82      0       user_docs/pt_BR/changes.t2t
     1 file changed, 82 insertions(+)

commit 20376492d583937427bd573aa693861a6dedb9e4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Thu Feb 18 03:42:46 2021 +0000

    L10n updates for: nb_NO
    From translation svn revision: 60959
    
    Authors:
    David Hole <balubathebrave@gmail.com>
    Bjornar Seppola <bjornar@seppola.net>
    
    Stats:
    1999    208     user_docs/nb_NO/userGuide.t2t
     1 file changed, 1999 insertions(+), 208 deletions(-)

commit 375e481d69ffbfa8523040b9ac48498497b689b9
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Thu Feb 18 03:42:35 2021 +0000

    L10n updates for: hu
    From translation svn revision: 60959
    
    Authors:
    Aron OcsvAri <oaron@nvda.hu>
    
    Stats:
    501     307     user_docs/hu/userGuide.t2t
     1 file changed, 501 insertions(+), 307 deletions(-)

commit 554f8f46189f5f8c2b8225543c5e5234c8648370
Merge: 3cb49a300 d9728c4fc
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Thu Feb 18 03:29:40 2021 +0000

    Update translations.
    
    From translation svn revision: 60958

commit d9728c4fc6098a1f329247de065f5aedd5c99db6
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Thu Feb 18 03:29:35 2021 +0000

    L10n updates for: pt_BR
    From translation svn revision: 60958
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    4       4       source/locale/pt_BR/LC_MESSAGES/nvda.po
    2       1       source/locale/pt_BR/symbols.dic
     2 files changed, 6 insertions(+), 5 deletions(-)

commit 8e51a7f825845b69b0a74cdaf341d786a579b9c2
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Feb 18 13:26:29 2021 +1000

    Bump for alpha snapshots

commit e5d62e3296b6af1b9bc92d9cd6c5d3777b03cb06
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Fri Feb 12 14:48:11 2021 +0800

    Clarify code review checklist instructions (PR #12056)
    
    The intent of the checklist is to serve purely as a reminder, checking items communicates that you have considered the item, and have not accidentally forgotten about it.
    Further, the checklist acts as a reminder for reviewers, unfortunately GitHub does not yet provide a way to create a dedicated code review template.
    
    Additionally the wiki page has been adjusted: https://github.com/nvaccess/nvda/wiki/Github-pull-request-template-explanation-and-examples
    
    Co-authored-by: Cyrille Bougot <cyrille.bougot2@laposte.net>

commit 3cb49a3008c206c8bcd9e697d5c01a21057741f4
Merge: 22d9039dc 750d23b2b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 12 00:01:50 2021 +1000

    Update translations.
    
    From translation svn revision: 60863

commit 750d23b2b364fcc99e7b3e618610c22a8fb03f5d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 12 00:01:43 2021 +1000

    L10n updates for: uk
    From translation svn revision: 60863
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    11      1       user_docs/uk/userGuide.t2t
     1 file changed, 11 insertions(+), 1 deletion(-)

commit d5c8721ee9e2bea269bafa7055de112bebcabd58
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 12 00:01:33 2021 +1000

    L10n updates for: sk
    From translation svn revision: 60863
    
    Authors:
    Ondrej Rosik <ondrej.rosik@gmail.com>
    Peter Vagner <peter.v@datagate.sk>
    Jan Kulik <jan.kulik.szsle@outlook.sk>
    
    Stats:
    1       1       user_docs/sk/changes.t2t
     1 file changed, 1 insertion(+), 1 deletion(-)

commit e29a5f9768822b7a0c04abb4e530e4e09ff22b52
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 12 00:01:04 2021 +1000

    L10n updates for: it
    From translation svn revision: 60863
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    5       5       user_docs/it/userGuide.t2t
     1 file changed, 5 insertions(+), 5 deletions(-)

commit 3392435fab501018804f79505a882450d9e7d826
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 12 00:00:56 2021 +1000

    L10n updates for: gl
    From translation svn revision: 60863
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    Javier Curras <javier.curras@nvda.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    0       3       source/locale/gl/symbols.dic
     1 file changed, 3 deletions(-)

commit b178d61c8b7c50d68e0ceffb8e39c58ab243b9f3
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 12 00:00:45 2021 +1000

    L10n updates for: es
    From translation svn revision: 60863
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    0       3       source/locale/es/symbols.dic
     1 file changed, 3 deletions(-)

commit dcf3a32525acdf026f71c0c0fa96de9b5093cd7a
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue Feb 9 15:15:58 2021 +0800

    Fix typo in changes doc (PR #12053)

commit a73b481769ad324a89c5678740e51d6597e24fb0
Author: Cyrille Bougot <cyrille.bougot2@laposte.net>
Date:   Mon Feb 8 11:17:47 2021 +0100

    Add missing context help. (PR #12034)
    
    * Fixes some missing context help in advanced settings panel.

commit 068b18122c72ab03fc9d77eb833d0faf10601cfc
Merge: 1392aa3ac 22d9039dc
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Mon Feb 8 17:17:05 2021 +0800

    Merge pull request #12046 from nvaccess/beta
    
    Merge Beta (and translations) into master

commit 22d9039dcd0a53fb16f5e14b935fcafc5713dd78
Merge: b166b5610 b0ad7bb23
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Feb 8 16:44:54 2021 +1000

    Update translations.
    
    From translation svn revision: 60835

commit b0ad7bb2371a43c75f4d8e61cdc4a695fade16a7
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Feb 8 16:44:53 2021 +1000

    L10n updates for: zh_TW
    From translation svn revision: 60835
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    haach111000@gmail.com
    
    Stats:
    189     185     source/locale/zh_TW/characterDescriptions.dic
    1       1       user_docs/zh_TW/userGuide.t2t
     2 files changed, 190 insertions(+), 186 deletions(-)

commit b8bfb99a19bf5b771ee832c140f6051edd68daab
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Feb 8 16:44:51 2021 +1000

    L10n updates for: zh_CN
    From translation svn revision: 60835
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen_0528@outlook.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    1872265132@qq.com
    
    Stats:
    8       8       source/locale/zh_CN/LC_MESSAGES/nvda.po
     1 file changed, 8 insertions(+), 8 deletions(-)

commit c2da48d9697de2956d471c2c143da2e548819c8b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Feb 8 16:44:40 2021 +1000

    L10n updates for: sr
    From translation svn revision: 60835
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    2       3       source/locale/sr/LC_MESSAGES/nvda.po
    4       2       user_docs/sr/changes.t2t
    11      1       user_docs/sr/userGuide.t2t
     3 files changed, 17 insertions(+), 6 deletions(-)

commit eb3402791090b43ba08e1a0817179cb9d35b3848
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Feb 8 16:44:16 2021 +1000

    L10n updates for: ko
    From translation svn revision: 60835
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    1       1       source/locale/ko/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit ac1b6aa945d2220edd4c734693f10bf2dbf9f991
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Feb 8 16:43:59 2021 +1000

    L10n updates for: fr
    From translation svn revision: 60835
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqué-Cazenave <corentin@progaccess.net>
    
    Stats:
    4       4       source/locale/fr/symbols.dic
     1 file changed, 4 insertions(+), 4 deletions(-)

commit fcbf1636fd2c3bc793a4928f7dbbe65eb917e249
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Feb 8 16:43:55 2021 +1000

    L10n updates for: fa
    From translation svn revision: 60835
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    10      10      user_docs/fa/userGuide.t2t
     1 file changed, 10 insertions(+), 10 deletions(-)

commit 1392aa3acb3d6b9e042077caad7a3edba3065e08
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Fri Feb 5 15:50:56 2021 +0800

    Add code review checklist for PRs (PR #12037)
    
    Co-authored-by: Leonard de Ruijter <leonardder@users.noreply.github.com>

commit b166b561099a1008d8431442452e684c43dba5b7
Merge: c1307757c 894e3612c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 5 00:01:50 2021 +1000

    Update translations.
    
    From translation svn revision: 60801

commit 894e3612c0731f37948ed88e0be0f8b704f05f77
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 5 00:01:49 2021 +1000

    L10n updates for: zh_TW
    From translation svn revision: 60801
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    haach111000@gmail.com
    
    Stats:
    12      2       user_docs/zh_TW/userGuide.t2t
     1 file changed, 12 insertions(+), 2 deletions(-)

commit c5c863a23926f18919668d56a153ffa01085d1e6
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 5 00:01:47 2021 +1000

    L10n updates for: zh_HK
    From translation svn revision: 60801
    
    Authors:
    Eric Yip <ericycy@gmail.com>
    
    Stats:
    32      49      source/locale/zh_HK/LC_MESSAGES/nvda.po
     1 file changed, 32 insertions(+), 49 deletions(-)

commit 73cbbae3a95d257d5371ba2c5a80a228e1cec031
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 5 00:01:46 2021 +1000

    L10n updates for: zh_CN
    From translation svn revision: 60801
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen_0528@outlook.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    1872265132@qq.com
    
    Stats:
    3       1       source/locale/zh_CN/symbols.dic
    1       1       user_docs/zh_CN/changes.t2t
     2 files changed, 4 insertions(+), 2 deletions(-)

commit 695e8a8f14ff1acccc6fcab471421550c53ca9c6
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 5 00:01:33 2021 +1000

    L10n updates for: sk
    From translation svn revision: 60801
    
    Authors:
    Ondrej Rosik <ondrej.rosik@gmail.com>
    Peter Vagner <peter.v@datagate.sk>
    Jan Kulik <jan.kulik.szsle@outlook.sk>
    
    Stats:
    28      43      source/locale/sk/LC_MESSAGES/nvda.po
    1       0       source/locale/sk/symbols.dic
    75      0       user_docs/sk/changes.t2t
    42      17      user_docs/sk/userGuide.t2t
     4 files changed, 146 insertions(+), 60 deletions(-)

commit 509868a0bba64c0e86de71b9c1ae5a4835f5f98a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 5 00:01:30 2021 +1000

    L10n updates for: ru
    From translation svn revision: 60801
    
    Authors:
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    
    Stats:
    43      3       user_docs/ru/changes.t2t
    11      1       user_docs/ru/userGuide.t2t
     2 files changed, 54 insertions(+), 4 deletions(-)

commit b9a1938fccd20ef0baa3e61b5785dd15637f96a9
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 5 00:01:26 2021 +1000

    L10n updates for: pt_PT
    From translation svn revision: 60801
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    4       4       source/locale/pt_PT/LC_MESSAGES/nvda.po
    2       2       source/locale/pt_PT/gestures.ini
    2       1       source/locale/pt_PT/symbols.dic
    31      31      user_docs/pt_PT/changes.t2t
    1       0       user_docs/pt_PT/userGuide.t2t
     5 files changed, 40 insertions(+), 38 deletions(-)

commit dfcc4d4cf8b0d076590a9378700d269edae90125
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 5 00:01:21 2021 +1000

    L10n updates for: pl
    From translation svn revision: 60801
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Hubert Meyer <hubmeyer1989@gmail.com>
    Arkadiusz Swietnicki <nuno69a@gmail.com>
    
    Stats:
    0       2       source/locale/pl/symbols.dic
    29      29      user_docs/pl/changes.t2t
     2 files changed, 29 insertions(+), 31 deletions(-)

commit 1b969990fbd52a28f30d29979c331b213b3899dd
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 5 00:01:19 2021 +1000

    L10n updates for: nl
    From translation svn revision: 60801
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    25      1       user_docs/nl/changes.t2t
     1 file changed, 25 insertions(+), 1 deletion(-)

commit 9e7a5d18f626c5315853a6d5cdddbb7761af5514
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 5 00:01:11 2021 +1000

    L10n updates for: lt
    From translation svn revision: 60801
    
    Authors:
    Paulius Leveris <paulius.leveris@gmail.com>
    Rimas Kudelis <rq@akl.lt>
    
    Stats:
    560     703     source/locale/lt/LC_MESSAGES/nvda.po
     1 file changed, 560 insertions(+), 703 deletions(-)

commit f7d1b725f8b77bcc11e449080aa0950796f4f083
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 5 00:01:09 2021 +1000

    L10n updates for: ko
    From translation svn revision: 60801
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    5       5       source/locale/ko/LC_MESSAGES/nvda.po
    5       3       user_docs/ko/changes.t2t
     2 files changed, 10 insertions(+), 8 deletions(-)

commit 52c1bcb04ae611a12f2fd2ff24d890880a0e9c0e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 5 00:01:03 2021 +1000

    L10n updates for: it
    From translation svn revision: 60801
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    34      7       user_docs/it/userGuide.t2t
     1 file changed, 34 insertions(+), 7 deletions(-)

commit ce1dcbea6d6b7078c6725b06e3b7bed03a3eb43a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 5 00:00:52 2021 +1000

    L10n updates for: ga
    From translation svn revision: 60801
    
    Authors:
    Cearbhall OMeadhra <cearbhall.omeadhra@blbc.ie>
    Ronan McGuirk <ronan.p.mcguirk@gmail.com>
    Kevin Scannell <kscanne@gmail.com>
    
    Stats:
    19      33      source/locale/ga/LC_MESSAGES/nvda.po
     1 file changed, 19 insertions(+), 33 deletions(-)

commit cb980b53bebf4bff3ff3082324f85b75eac7bb78
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 5 00:00:48 2021 +1000

    L10n updates for: fa
    From translation svn revision: 60801
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    11      1       user_docs/fa/userGuide.t2t
     1 file changed, 11 insertions(+), 1 deletion(-)

commit f9aa4fb22cb2cb3f4fd8e4a035b1e749f91aa23a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 5 00:00:41 2021 +1000

    L10n updates for: el
    From translation svn revision: 60801
    
    Authors:
    Irene Nakas <irnakas@gmail.com>
    Nikos Demetriou <nikosdemetriou@googlemail.com>
    access@e-rhetor.com
    
    Stats:
    27      44      source/locale/el/LC_MESSAGES/nvda.po
     1 file changed, 27 insertions(+), 44 deletions(-)

commit fce5997c339e332de42edded7b3120aa39a1947a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 5 00:00:35 2021 +1000

    L10n updates for: da
    From translation svn revision: 60801
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    3       3       source/locale/da/LC_MESSAGES/nvda.po
    66      45      user_docs/da/changes.t2t
    42      17      user_docs/da/userGuide.t2t
     3 files changed, 111 insertions(+), 65 deletions(-)

commit 0afde07fbddb2fe6c9ec15bf6f1789d0c66083a1
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 5 00:00:33 2021 +1000

    L10n updates for: cs
    From translation svn revision: 60801
    
    Authors:
    Martina Letochova <letochova@seznam.cz>
    
    Stats:
    27      219     source/locale/cs/LC_MESSAGES/nvda.po
     1 file changed, 27 insertions(+), 219 deletions(-)

commit 1bcd0e8c57c76ec7ca6ab952480cf7fc5f8384aa
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 5 00:00:30 2021 +1000

    L10n updates for: bg
    From translation svn revision: 60801
    
    Authors:
    Zahari Yurukov <zahari.yurukov@gmail.com>
    Kostadin Kolev <k_kolev1985@mail.bg>
    
    Stats:
    33      48      source/locale/bg/LC_MESSAGES/nvda.po
    1       0       source/locale/bg/symbols.dic
    82      0       user_docs/bg/changes.t2t
    76      51      user_docs/bg/userGuide.t2t
     4 files changed, 192 insertions(+), 99 deletions(-)

commit 029defeb55fd1167b71b8dcc6d6a371178f7378b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 5 00:00:25 2021 +1000

    L10n updates for: ar
    From translation svn revision: 60801
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Omar Alojaimi <amrahmad1995@gmail.com>
    
    Stats:
    22      24      source/locale/ar/LC_MESSAGES/nvda.po
    9       2       user_docs/ar/changes.t2t
    16      3       user_docs/ar/userGuide.t2t
     3 files changed, 47 insertions(+), 29 deletions(-)

commit 8f31bdc884ec9cf4e9ed0d2ae464401d0aedd1fb
Author: jakubl7545 <48619364+jakubl7545@users.noreply.github.com>
Date:   Wed Feb 3 22:00:39 2021 +0100

    Report comments in MS Word with UIA enabled (#9631)
    
    * Change condition for filtering comments
    
    * Deal with unretrievable date
    
    * Split filtering condition to two separate lines
    
    * Replace gesture dictionary with script decorator
    
    * Adress review requests.
    
    * Create helper function
    
    * Address linting errors
    
    * Address more linting errors
    
    * Modify copyright header
    
    * Fixes
    
    * Correct syntax
    
    * Linting
    
    * Ensure comments are read in different Office versions.
    
    * Linting
    
    * Update what's new
    
    Co-authored-by: Michael Curran <mick@nvaccess.org>

commit 11ba984fd2071d75fc7a9386c3661645cdbb9a82
Author: Reef Turner <reef@nvaccess.org>
Date:   Wed Feb 3 17:02:40 2021 +0800

    Update changes file for PR #12025
    
    PR #12025 was not squash merged (which is the usual practice for this project).
    Instead, to preserve the history of moved then modified code, the commits have
    been rebased directly onto master.

commit 6a00a716d0d1f2f1d76b76c14662b0274669960c
Author: Leonard de Ruijter <L.de.Ruijter@sevenp.nl>
Date:   Fri May 1 15:55:24 2020 +0200

    Add user config for UIA with Chromium

commit 0defba76186b02550783c782a4f7b84b2370fc17
Author: Reef Turner <reef@nvaccess.org>
Date:   Tue Feb 2 11:04:49 2021 +0800

    Fix missing control names for Chromium with UIA
    
    Names of controls (that do not use their name as content)
    are always reported:
     Currently no way to tell if author has explicitly set name. Therefore
     always report the name if the control is not of a type that by
     definition uses its name for content. This may cause some duplicate
     speaking, but that is currently better than nothing at all.

commit 6c676a8d4876bac196c243e213d1186df7185550
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Dec 18 12:19:28 2020 +1000

    Fix missing value for comboboxes for Chromium with UIA
    
    Ensure the value of comboboxes are used as content.

commit 56eb0680be5e2560950ec330ca740d837f72ef4d
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Dec 15 16:54:01 2020 +1000

    Fix identification of layout tables for Chromium with UIA
    
    Allows ignoring of layout tables when configured to do so.

commit 8d90a619f3894d848d076b55310d1490397f32bf
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Nov 5 15:08:49 2020 +1000

    Fix overriding labels when embedded object chars present for Chromium with UIA
    
    Embedded object characters in Edgium should not stop overriding labels from being used.

commit 50a3097798e18b3b6bc7eb288478446735813580
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Nov 5 10:01:01 2020 +1000

    Fix list presentation while in browse mode for Chromium with UIA
    
    Make sure interactive / presentational lists are presented
    correctly in browseMode in Edgium.

commit 6809fc65639eeb14427b59af5f05ce01b27802fc
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Nov 5 09:59:50 2020 +1000

    Fix freeze on checkboxes for chromium with UIA
    
    UIATextInfo._getTextwithFieldsForUIARange:
    skip children that appear completely before the start of the parent textRange.
    Stops a freeze on some checkboxes in Edgium and is generally safer.

commit 9c825b6bc45f62c67fc316245f9fc3214cd99089
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Nov 5 09:55:33 2020 +1000

    Fix duplicate heading announcement Chromium with UIA
    
    As headings are exposed in the element tree,
    don't expose them in format fields.

commit 65c5b5914d921e20129d4906bf8b7f8218cda1cb
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Nov 3 17:23:22 2020 +1000

    Fix freeze in Chromium with UIA
    
    Trade-off: only the first line is fetched.
    
    speech.getObjectSpeech:
    If the given object should have its text presented (E.g. a document
    or edit field) and the line at the selection cannot be fetched, then
    only present the first line.
    
    Previously the text for the entire object would be fetched, which in
    the case of Edgium, was extremely costly and could cause a freeze of
    10 seconds or more.

commit 833ab785b26c1b72d48c9ad0ea6e6ee73e738529
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Nov 3 17:18:28 2020 +1000

    Fix freeze in Chromium with UIA
    
    Trade off: slight degradation of performance.
    
    UIATextInfo._getTextWithFieldsForUIARange:
    Test each child to see if it is clipped by or lives completely
    outside the parent text range, and if so appropriately clip
    the child range and break out of the for loop.
    
    Previously these checks only happened on the final child to try
    and avoid extra calls, but Edge sometimes returns many more
    children then it should when on the end of a list, and a trivial
    slow down is much preferred over a 20 second freeze.

commit 0032d5ff3c9284714c79ab505b776623a9dd1f09
Author: Leonard de Ruijter <L.de.Ruijter@sevenp.nl>
Date:   Fri May 1 15:59:37 2020 +0200

    Add chromium module
    
    Use chromium treeinterceptor
    
    Use Web module for chromium module
    
    Use chromium.ChromiumUIADocument in findOverlayClasses

commit 3f30bea9736246f1d9773cf66fa87d23409a19a1
Author: Reef Turner <reef@nvaccess.org>
Date:   Tue Jan 19 14:26:33 2021 +0800

    Fix lint for moved code

commit e3a47ae72265a1b5c7e8fa4df238fb3aeab8d526
Author: Reef Turner <reef@nvaccess.org>
Date:   Mon Feb 1 17:36:40 2021 +0800

    Depend upon abstract _isIframe rather than concrete impl
    
    The concrete implementation relied on knowing that self is
    actually a subclass and providing varied behaviour.
    
    Instead, abstract this test so it can be altered
    via polymorphism.

commit e0744215a24a80241524d43be7f3213dad2de0e0
Author: Reef Turner <reef@nvaccess.org>
Date:   Mon Jan 25 18:51:26 2021 +0800

    Rename edge -> spartanEdge

commit 64ef6147017762fa9239dcf3bb91c8a79db11325
Author: Leonard de Ruijter <alderuijter@gmail.com>
Date:   Fri May 1 19:01:32 2020 +0200

    Create new 'web' module
    
    This is a module containing common classes above the browser specific
    classes (edge.py, chromium.py). The browser specific classes inherit from
    these web module classes.
    
    - Move splitUIAElementAttribs(attribsString) from edge module to web module
    - Move common implementation of edge.EdgeNode and rename to web.UIAWeb(UIA),
      edge.EdgeNode now inherits from web.UIAWeb.
    - Move implementation of edge.EdgeList and rename to web.List(UIAWeb),
      edge.EdgeList now inherits from web.List
    - Move implementation of edge.EdgeHTMLTreeInterceptor and rename to
      web.UIAWebTreeInterceptor, edge.EdgeHTMLTreeInterceptor now inherits from
      web.UIAWebTreeInterceptor

commit edb0e880d0bd71a147087ca2ec48b0ba3c1dc1b9
Author: Reef Turner <reef@nvaccess.org>
Date:   Tue Jan 19 17:37:12 2021 +0800

    Move functions / classes edge -> web
    
    UIA.Web is a new base for browser specific implementations:
    - spartan-edge
    - Chromium based browsers: anaheim-edge, chrome
    
    This commit is a direct move (no alterations) of code to preserve history.
    
    - Move function splitUIAElementAttribs
    - Move EdgeTextInfo
    - Move shareable aspects of class EdgeNode:
      * _get_role
      * _get_states
      * _get_ariaProperties
      * _get_isCurrent
      * _get_roleText
      * _get_placeholder
      * _get_landmark
    - Move class EdgeList
    - Move class EdgeHeadingQuickNavItem
    - Move class EdgeHeadingQuicknavIterator
    - Move shareable aspects of class EdgeHTMLTreeInterceptor:
      * makeTextInfo
      * shouldPassThrough
      * _iterNodesByType

commit 1c0ab7c32967d5fa39920cb44dcd15965e3b5a66
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Wed Feb 3 16:41:53 2021 +0800

    add styles for userguide and changes (PR #12027)
    
    Co-authored-by: Michael Curran <mick@nvaccess.org>

commit 94f60a83d399162ea8a10090cebc63b66ead7c3c
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Wed Feb 3 15:59:00 2021 +0800

    Fix misleading log message for aria-current="true" (PR #11782)
    
    Types and naming for isCurrent were confusing, so normalize the types
    using an enum and only name as ariaCurrent when the data is specific to aria-current,
    otherwise use 'isCurrent'. Include comments to link aria-current as the
    potential (likely) source for 'isCurrent'

commit 65e183becf027d58d4e56804ec610f23531bfe21
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Feb 3 11:55:44 2021 +1000

    System tests: run Chrome in kiosk mode to stop treeGrid test failing (#12023)
    
    * Chrome system tests: run Chrome in kiosk mode, which removes the need to press f6 1 or more times to move from the Chrome to the document.
    
    * Linting
    
    * Force another pr build.

commit 376780f53e363d06e86d18191a3808275e4fc554
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Feb 3 10:25:39 2021 +1000

    speech.getformatFieldSpeech: Correct logic for heading levels which broke in #11969. (#12026)

commit 90dd4e9ab9afa4bb058d1650530b68918e13e98c
Author: Cyrille Bougot <cyrille.bougot2@laposte.net>
Date:   Mon Feb 1 01:03:36 2021 +0100

    Fix-up of #11467 in symbol file: (#12017)
    
    - deleted extra tab
    - removed duplicate symbol definition

commit 94e2926b8695495e0f4a5bf8445f63aee464fc55
Author: Cyrille Bougot <cyrille.bougot2@laposte.net>
Date:   Mon Feb 1 00:58:53 2021 +0100

    Fix up #11969: Fixed case issue. (#12015)

commit c1307757c2de2f10ca207a5fc87234bf0dce959b
Merge: 5df74181b 959afed7e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jan 29 00:01:49 2021 +1000

    Update translations.
    
    From translation svn revision: 60707

commit 959afed7edf6dcdbfb7e1d5be0c41a5f81a815cd
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jan 29 00:01:47 2021 +1000

    L10n updates for: zh_CN
    From translation svn revision: 60707
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen_0528@outlook.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    1872265132@qq.com
    
    Stats:
    26      24      user_docs/zh_CN/changes.t2t
    89      64      user_docs/zh_CN/userGuide.t2t
     2 files changed, 115 insertions(+), 88 deletions(-)

commit d5da38449c00f5b5fbba3d96fdc554c4e48a7acb
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jan 29 00:01:41 2021 +1000

    L10n updates for: tr
    From translation svn revision: 60707
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    3       3       source/locale/tr/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 3 deletions(-)

commit 3976337e3d4d90a311ca877c6beb19c6f782f89f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jan 29 00:01:27 2021 +1000

    L10n updates for: pt_PT
    From translation svn revision: 60707
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    27      43      source/locale/pt_PT/LC_MESSAGES/nvda.po
    84      0       user_docs/pt_PT/changes.t2t
    42      18      user_docs/pt_PT/userGuide.t2t
     3 files changed, 153 insertions(+), 61 deletions(-)

commit f214e95aa0a510b084a41d9fd4e24aa62f54bb26
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jan 29 00:01:24 2021 +1000

    L10n updates for: pt_BR
    From translation svn revision: 60707
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    3       4       source/locale/pt_BR/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 4 deletions(-)

commit a27e7fe4f643ecd33269c2fc013e111b3feda3bb
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jan 29 00:01:22 2021 +1000

    L10n updates for: pl
    From translation svn revision: 60707
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Hubert Meyer <hubmeyer1989@gmail.com>
    Arkadiusz Swietnicki <nuno69a@gmail.com>
    
    Stats:
    41      16      user_docs/pl/userGuide.t2t
     1 file changed, 41 insertions(+), 16 deletions(-)

commit 520c7c25f648c076522397e962a7ef133074a9e2
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jan 29 00:01:13 2021 +1000

    L10n updates for: mk
    From translation svn revision: 60707
    
    Authors:
    zvonimir stanecic <9a5dsz@gozaltech.org>
    Ertay Shashko <ertay@outlook.com>
    Aleksandar <glupav@gmail.com>
    Kiko Lazarev <kristijan.lazarev@gmail.com>
    
    Stats:
    4       4       source/locale/mk/LC_MESSAGES/nvda.po
    57      26      source/locale/mk/characterDescriptions.dic
     2 files changed, 61 insertions(+), 30 deletions(-)

commit 3ecea5c43340e8967286007f1558fbc4873c5aa8
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jan 29 00:01:11 2021 +1000

    L10n updates for: ko
    From translation svn revision: 60707
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    3       4       source/locale/ko/LC_MESSAGES/nvda.po
    15      16      user_docs/ko/changes.t2t
     2 files changed, 18 insertions(+), 20 deletions(-)

commit ead21150b34ab119433d275418c4dbc9b6a7afb6
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jan 29 00:01:05 2021 +1000

    L10n updates for: it
    From translation svn revision: 60707
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    48      41      user_docs/it/changes.t2t
    14      5       user_docs/it/userGuide.t2t
     2 files changed, 62 insertions(+), 46 deletions(-)

commit bc66e33b73c477b9ef779f7c5072c83add6e91ad
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jan 29 00:00:58 2021 +1000

    L10n updates for: he
    From translation svn revision: 60707
    
    Authors:
    Shmuel Naaman <shmuel_naaman@yahoo.com>
    Afik Sofir <afik.sofer@gmail.com>
    
    Stats:
    25      32      source/locale/he/LC_MESSAGES/nvda.po
     1 file changed, 25 insertions(+), 32 deletions(-)

commit 7df956581dfe85ec4ad2733c30aaa19b94be7183
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jan 29 00:00:54 2021 +1000

    L10n updates for: fr
    From translation svn revision: 60707
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqué-Cazenave <corentin@progaccess.net>
    
    Stats:
    9       9       source/locale/fr/LC_MESSAGES/nvda.po
     1 file changed, 9 insertions(+), 9 deletions(-)

commit 66905e6833ae3d243a843e52c1c0861c8c747f62
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jan 29 00:00:51 2021 +1000

    L10n updates for: fi
    From translation svn revision: 60707
    
    Authors:
    Jani Kinnunen <janikinnunen340@gmail.com>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    2       2       source/locale/fi/symbols.dic
     1 file changed, 2 insertions(+), 2 deletions(-)

commit b55dadd8e4df1728bc76e735c4fba88ff7c6b99e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jan 29 00:00:42 2021 +1000

    L10n updates for: el
    From translation svn revision: 60707
    
    Authors:
    Irene Nakas <irnakas@gmail.com>
    Nikos Demetriou <nikosdemetriou@googlemail.com>
    access@e-rhetor.com
    
    Stats:
    72      72      source/locale/el/LC_MESSAGES/nvda.po
     1 file changed, 72 insertions(+), 72 deletions(-)

commit ca3b19eeb5470e4ccf46df81760eccdcd75dabcb
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jan 29 00:00:25 2021 +1000

    L10n updates for: an
    From translation svn revision: 60707
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    11      1       user_docs/an/userGuide.t2t
     1 file changed, 11 insertions(+), 1 deletion(-)

commit 856adec68f83a5ca6e48d6366e5c58d64957972d
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Wed Jan 27 00:10:15 2021 +0100

    Convert NVDA's code base to use output reasons from enum in controlTypes and remove deprecated REASON_* module level constants (#11969)
    
    * Convert NVDA's code base to use output reasons from enum in controlTypes rather than module level constants
    
    * Remove deprecated REASON_* constants from controlTypes
    
    * Update what's new
    
    Co-authored-by: Michael Curran <mick@nvaccess.org>

commit e8f14f9ae4d239fff28f78578c2a84128f214fa2
Author: Cyrille Bougot <cyrille.bougot2@laposte.net>
Date:   Fri Jan 22 03:09:34 2021 +0100

    Remove blank lines in browseable message (#12005)
    
    * Removed the blank lines in browseable message.
    
    * Code clean-up.
    
    * Addressed review comments: use html.escape to fully escape the message string.
    
    * Fixing commit issue (a modification was not correctly added in previous commit).
    
    * Update what's new
    
    Co-authored-by: Michael Curran <mick@nvaccess.org>

commit 5df74181b49956fd359d09e82a75e1793139864b
Merge: 92c09ad16 86610bbf9
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jan 22 00:01:58 2021 +1000

    Update translations.
    
    From translation svn revision: 60644

commit 86610bbf9311fc3a56da4f7d76914c564c023d96
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jan 22 00:01:54 2021 +1000

    L10n updates for: zh_CN
    From translation svn revision: 60644
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen_0528@outlook.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    1872265132@qq.com
    
    Stats:
    3       3       source/locale/zh_CN/LC_MESSAGES/nvda.po
    15      14      user_docs/zh_CN/changes.t2t
     2 files changed, 18 insertions(+), 17 deletions(-)

commit cac359a6e13b15f8072f0cadabf070821100f395
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jan 22 00:01:51 2021 +1000

    L10n updates for: vi
    From translation svn revision: 60644
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>
    Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    11      1       user_docs/vi/userGuide.t2t
     1 file changed, 11 insertions(+), 1 deletion(-)

commit b41e4e0c164c5cced1aa699f4917d5438d9545ec
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jan 22 00:01:48 2021 +1000

    L10n updates for: tr
    From translation svn revision: 60644
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    12      2       user_docs/tr/userGuide.t2t
     1 file changed, 12 insertions(+), 2 deletions(-)

commit d7913b376583c7962399f00f6c702789ba0704d9
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jan 22 00:01:45 2021 +1000

    L10n updates for: ta
    From translation svn revision: 60644
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    11      1       user_docs/ta/userGuide.t2t
     1 file changed, 11 insertions(+), 1 deletion(-)

commit d5c2b480b6382fe231854fb84a8ee75cad63efbf
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jan 22 00:01:40 2021 +1000

    L10n updates for: sl
    From translation svn revision: 60644
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    101     140     source/locale/sl/LC_MESSAGES/nvda.po
     1 file changed, 101 insertions(+), 140 deletions(-)

commit 12ba8827400455605d6a7fb88b523127c207393b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jan 22 00:01:25 2021 +1000

    L10n updates for: nl
    From translation svn revision: 60644
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    4       4       source/locale/nl/LC_MESSAGES/nvda.po
    11      1       user_docs/nl/userGuide.t2t
     2 files changed, 15 insertions(+), 5 deletions(-)

commit 697172ee0828df396cafe0220f1ba1e150098080
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jan 22 00:01:17 2021 +1000

    L10n updates for: mk
    From translation svn revision: 60644
    
    Authors:
    zvonimir stanecic <9a5dsz@gozaltech.org>
    Ertay Shashko <ertay@outlook.com>
    Aleksandar <glupav@gmail.com>
    Kiko Lazarev <kristijan.lazarev@gmail.com>
    
    Stats:
    53      48      source/locale/mk/symbols.dic
     1 file changed, 53 insertions(+), 48 deletions(-)

commit d239dc2c5a9b198aee2a3e10bcfac5cf2f2b35c1
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jan 22 00:01:11 2021 +1000

    L10n updates for: ja
    From translation svn revision: 60644
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    11      1       user_docs/ja/userGuide.t2t
     1 file changed, 11 insertions(+), 1 deletion(-)

commit 3fcd6917b2da1cad60587d8d239811edddc84909
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jan 22 00:01:03 2021 +1000

    L10n updates for: hr
    From translation svn revision: 60644
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Milo Ivir <mivir@milotype.de>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    12      2       user_docs/hr/userGuide.t2t
     1 file changed, 12 insertions(+), 2 deletions(-)

commit 3bb39230a1c70b531286cfe322e637f5bca408a2
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jan 22 00:00:59 2021 +1000

    L10n updates for: gl
    From translation svn revision: 60644
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    Javier Curras <javier.curras@nvda.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    6       4       user_docs/gl/changes.t2t
    12      1       user_docs/gl/userGuide.t2t
     2 files changed, 18 insertions(+), 5 deletions(-)

commit 36a700cc894d6b58b53c64b1418b2ccb57571e5e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jan 22 00:00:57 2021 +1000

    L10n updates for: ga
    From translation svn revision: 60644
    
    Authors:
    Cearbhall OMeadhra <cearbhall.omeadhra@blbc.ie>
    Ronan McGuirk <ronan.p.mcguirk@gmail.com>
    Kevin Scannell <kscanne@gmail.com>
    
    Stats:
    12      21      source/locale/ga/LC_MESSAGES/nvda.po
     1 file changed, 12 insertions(+), 21 deletions(-)

commit 1956656ee9246f03826ff24a24f83ac93a3e72dd
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jan 22 00:00:56 2021 +1000

    L10n updates for: fr
    From translation svn revision: 60644
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqué-Cazenave <corentin@progaccess.net>
    
    Stats:
    11      1       user_docs/fr/userGuide.t2t
     1 file changed, 11 insertions(+), 1 deletion(-)

commit a7db8fdbe98d4f7b9512282bc2a71332d8c2c198
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jan 22 00:00:54 2021 +1000

    L10n updates for: fi
    From translation svn revision: 60644
    
    Authors:
    Jani Kinnunen <janikinnunen340@gmail.com>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    12      2       user_docs/fi/userGuide.t2t
     1 file changed, 12 insertions(+), 2 deletions(-)

commit fabf02c7776d0a0479a82c16209a8e89da9b6175
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jan 22 00:00:49 2021 +1000

    L10n updates for: es
    From translation svn revision: 60644
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    6       4       user_docs/es/changes.t2t
    11      1       user_docs/es/userGuide.t2t
     2 files changed, 17 insertions(+), 5 deletions(-)

commit 67e277b84a59586d7ba31b10945cd56004cc45aa
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jan 22 00:00:43 2021 +1000

    L10n updates for: de
    From translation svn revision: 60644
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    14      4       user_docs/de/userGuide.t2t
     1 file changed, 14 insertions(+), 4 deletions(-)

commit 84e2c6e662fb86f411dda2d128c022f171004ae9
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Jan 21 11:50:25 2021 +1000

    Update what's new

commit 2e0ebb5691b4eabff6bdceaab4f45a5485fca026
Author: Adriani90 <adriani.botez@googlemail.com>
Date:   Thu Jan 21 02:49:30 2021 +0100

    Added some mathematical symbols (#11467)
    
    * Added some mathematical symbols
    
    * Addressed missing tab character and a missing level
    
    * Added some more mathematical symbols and restructured for better overview
    
    * Fixed some symols to match different languages (i.e. see issue #11502
    
    * Addressed review actions and removed the ordinal symbols because they cause issues in many lating languages. Those ordinal symbols should be controlled by the synthesizers.
    
    * Addressed review actions (removed the mathematical constants and the incremental symbol to avoid confusions and improved consistency in ortographics)

commit 874947300921217edd94c444d44050deece2f650
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Jan 21 11:06:52 2021 +1000

    Update what's new

commit ed24425e84286bcc7bbb4bbbeddc076983f3c0da
Author: Ozancan Karataş <ozancankaratas96@outlook.com>
Date:   Thu Jan 21 04:04:35 2021 +0300

    Update CLDR to version 38.1 (#11943)

commit d353d1bc4f56f158ddf8a3fd2163605826da4594
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Thu Jan 21 01:53:32 2021 +0100

    Remove deprecated functions from the config module (#11935)
    
    * Remove  compatibility  wrappers around `hasUiAccess` and `execElevated` introduced in #10493 from the config module
    
    * Remove deprecated `getConfigDirs` from the config module
    
    * Add missing imports  from `typing` to the config module
    
    * Remove deprecated `canStartOnSecureScreens` from the config module
    
    * Update what's new
    
    Co-authored-by: Michael Curran <mick@nvaccess.org>

commit 90c37874578e98d4eca465adccb8f32d9ee8cb3f
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Jan 21 10:11:02 2021 +1000

    Update what's new

commit 561beeb369f754623596b1eabcc8fa66664df9f9
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Thu Jan 21 01:09:07 2021 +0100

    Python Console: Fix handling of the tab key in the input pane (#11532) (#11936)
    
    * Python Console: Fix handling of the tab key in the input pane (#11532)
    
     * Support indenting with tabs when editing a non-empty input line
     * Support tab-completion in the middle of an input line
    
    * Python Console: Tab-completion: Handle selection
    
     * Consider selection start rather than cursor position (different if selection is anchored at start)
     * Replace selection upon successful completion

commit b3b25d50c9d04c4f3b72a1c73771afb7848c45fe
Author: Cyrille Bougot <cyrille.bougot2@laposte.net>
Date:   Thu Jan 21 00:21:17 2021 +0100

    Prevent running Windows 10 OCR if screen curtain is enabled. (#11921)
    
    * Prevent running Windows 10 OCR if screen curtain is enabled.
    
    * Update what's new
    
    Co-authored-by: Michael Curran <mick@nvaccess.org>

commit c5697d6e9e45a5043bfbebb3047addc2b5db7211
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Jan 21 08:54:53 2021 +1000

    Update what's new

commit 33cd507817fbefbc0d1c46db13ea8768cde00c25
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Wed Jan 20 23:53:54 2021 +0100

    Enable activating a control with cursor routing on any of its braille cells (#7447) (#11922)

commit 5daf693f3aae504c414b3b62a7f651af929952aa
Author: Cyrille Bougot <cyrille.bougot2@laposte.net>
Date:   Wed Jan 20 23:48:46 2021 +0100

    Fix for inappropriate distance announcement when pressing shift+tab from Outlook message (#11925)
    
    * When writing an e-mail in MS Outlook, pressing shift+tab keystroke to go back to the e-mail's headers or attachments should not announce a distance anymore.
    
    * Fixed linting.
    
    * Update what's new
    
    Co-authored-by: Michael Curran <mick@nvaccess.org>

commit bf3671540481fc4a6ccd40043398e9d83432e94b
Author: eric <26911141+dingpengyu@users.noreply.github.com>
Date:   Thu Jan 21 06:14:54 2021 +0800

    Modify the copyrightYears = "2006-2020" copyrightYears = "2006-2021" (#11927)

commit 92c09ad1655c5a1cf6de21dc47452e8c880a67ad
Merge: 2e1a342c2 cfd423d80
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jan 15 14:41:37 2021 +1000

    Update translations.
    
    From translation svn revision: 60557

commit cfd423d809c361d33198032710406c51a569e2cb
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jan 15 14:41:34 2021 +1000

    L10n updates for: zh_CN
    From translation svn revision: 60557
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    1872265132@qq.com
    
    Stats:
    2       0       user_docs/zh_CN/changes.t2t
     1 file changed, 2 insertions(+)

commit 7df96462b34e6a9af8d26819a597f872ceaceb72
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jan 15 14:41:29 2021 +1000

    L10n updates for: tr
    From translation svn revision: 60557
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    82      80      user_docs/tr/changes.t2t
     1 file changed, 82 insertions(+), 80 deletions(-)

commit 79d081756420263c3884570265e207d54c4ad0ab
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jan 15 14:41:12 2021 +1000

    L10n updates for: pl
    From translation svn revision: 60557
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Hubert Meyer <hubmeyer1989@gmail.com>
    Arkadiusz Swietnicki <nuno69a@gmail.com>
    
    Stats:
    31      31      user_docs/pl/changes.t2t
     1 file changed, 31 insertions(+), 31 deletions(-)

commit 9a0c19191baa84b0f1e88bf11df8ae7676e4d578
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jan 15 14:40:56 2021 +1000

    L10n updates for: it
    From translation svn revision: 60557
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    1       1       source/locale/it/gestures.ini
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 2e1a342c25cec8a498ad58664e5d3716f4cc2711
Author: Quentin Christensen <quentin@nvaccess.org>
Date:   Tue Jan 12 23:38:16 2021 +1100

    Update OneCore voices URL and instructions (PR #11993)
    
    The existing URL in the user guide with the list of OneCore voices languages and installation instructions was out of date.
    
    - Added overview of how to install new voices
    - Added updated link to list of available languages / voices

commit 179c35036b88f1552e105321c6aaab4d66adffb9
Merge: 5563556fa a36d27c29
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 12 20:16:33 2021 +1000

    Update translations.
    
    From translation svn revision: 60531

commit a36d27c2967c4237b2df65b6f6d6944650ef4361
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 12 20:16:30 2021 +1000

    L10n updates for: zh_TW
    From translation svn revision: 60531
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    haach111000@gmail.com
    
    Stats:
    142     48      source/locale/zh_TW/LC_MESSAGES/nvda.po
     1 file changed, 142 insertions(+), 48 deletions(-)

commit 4280e62a7cb8dc730a1e6c9b568bd77d26cd619d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 12 20:16:28 2021 +1000

    L10n updates for: zh_HK
    From translation svn revision: 60531
    
    Authors:
    Eric Yip <ericycy@gmail.com>
    
    Stats:
    151     40      source/locale/zh_HK/LC_MESSAGES/nvda.po
     1 file changed, 151 insertions(+), 40 deletions(-)

commit 24f67ac3a1b1e5db3540dc83095b1f8c090c3a7c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 12 20:16:27 2021 +1000

    L10n updates for: zh_CN
    From translation svn revision: 60531
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    1872265132@qq.com
    
    Stats:
    143     49      source/locale/zh_CN/LC_MESSAGES/nvda.po
     1 file changed, 143 insertions(+), 49 deletions(-)

commit b60053bc00b2d233fd094efe1aaa947b7f364fa4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 12 20:16:25 2021 +1000

    L10n updates for: vi
    From translation svn revision: 60531
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>
    Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    139     43      source/locale/vi/LC_MESSAGES/nvda.po
     1 file changed, 139 insertions(+), 43 deletions(-)

commit 4b556c5591aff99c049b770ae204febcac79d841
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 12 20:16:23 2021 +1000

    L10n updates for: uk
    From translation svn revision: 60531
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    141     45      source/locale/uk/LC_MESSAGES/nvda.po
     1 file changed, 141 insertions(+), 45 deletions(-)

commit e4ff9e5e2a825f537b28861cce499080a7d2a0b5
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 12 20:16:21 2021 +1000

    L10n updates for: tr
    From translation svn revision: 60531
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    152     57      source/locale/tr/LC_MESSAGES/nvda.po
     1 file changed, 152 insertions(+), 57 deletions(-)

commit 3781da6d4e2c75c785c115177a4be62354bd8d10
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 12 20:16:20 2021 +1000

    L10n updates for: ta
    From translation svn revision: 60531
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    172     77      source/locale/ta/LC_MESSAGES/nvda.po
     1 file changed, 172 insertions(+), 77 deletions(-)

commit f9e16fb11888d69938066a362a4935f668fd7dbe
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 12 20:16:17 2021 +1000

    L10n updates for: sv
    From translation svn revision: 60531
    
    Authors:
    Daniel Johansson <daniel.johansson@coeptus.se>
    Niklas Johansson <sleeping.pillow@gmail.com>
    Karl-Otto Rosenqvist <Karl-otto@mawingu.se>
    
    Stats:
    148     52      source/locale/sv/LC_MESSAGES/nvda.po
     1 file changed, 148 insertions(+), 52 deletions(-)

commit 69aece5254c648237da8d67f3dbf347380200968
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 12 20:16:16 2021 +1000

    L10n updates for: sr
    From translation svn revision: 60531
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    139     42      source/locale/sr/LC_MESSAGES/nvda.po
     1 file changed, 139 insertions(+), 42 deletions(-)

commit e26f67252811b7b5980983c751ef880e6d1f9784
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 12 20:16:15 2021 +1000

    L10n updates for: so
    From translation svn revision: 60531
    
    Authors:
    Othmanothman <othman82@hotmail.com>
    
    Stats:
    410     123     source/locale/so/LC_MESSAGES/nvda.po
     1 file changed, 410 insertions(+), 123 deletions(-)

commit 855523a85eed1d03026e0d37567e40e1dfed2f6e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 12 20:16:14 2021 +1000

    L10n updates for: sl
    From translation svn revision: 60531
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    460     136     source/locale/sl/LC_MESSAGES/nvda.po
     1 file changed, 460 insertions(+), 136 deletions(-)

commit f8e39fdeb85f70a864e824f5db93252090f03bab
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 12 20:16:13 2021 +1000

    L10n updates for: sk
    From translation svn revision: 60531
    
    Authors:
    Ondrej Rosik <ondrej.rosik@gmail.com>
    Peter Vagner <peter.v@datagate.sk>
    Jan Kulik <jan.kulik.szsle@outlook.sk>
    
    Stats:
    151     40      source/locale/sk/LC_MESSAGES/nvda.po
     1 file changed, 151 insertions(+), 40 deletions(-)

commit 1c21d147bba5d482c09dd990e3cbf4d04893146d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 12 20:16:11 2021 +1000

    L10n updates for: ru
    From translation svn revision: 60531
    
    Authors:
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    
    Stats:
    140     44      source/locale/ru/LC_MESSAGES/nvda.po
     1 file changed, 140 insertions(+), 44 deletions(-)

commit f5746eb6d90f5578f2cfb5ba53a66762d45d5c3c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 12 20:16:08 2021 +1000

    L10n updates for: ro
    From translation svn revision: 60531
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <7ro2014@gmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    George Antonio Andrei <george.andrei2002@gmail.com>
    
    Stats:
    140     44      source/locale/ro/LC_MESSAGES/nvda.po
     1 file changed, 140 insertions(+), 44 deletions(-)

commit dfd71b5c24abf78780661532e02eb0e4b0fb22d6
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 12 20:16:06 2021 +1000

    L10n updates for: pt_PT
    From translation svn revision: 60531
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    152     40      source/locale/pt_PT/LC_MESSAGES/nvda.po
     1 file changed, 152 insertions(+), 40 deletions(-)

commit 1459c18e2f4a50be6c8241934818f7ed42490fa5
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 12 20:16:04 2021 +1000

    L10n updates for: pt_BR
    From translation svn revision: 60531
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    140     43      source/locale/pt_BR/LC_MESSAGES/nvda.po
     1 file changed, 140 insertions(+), 43 deletions(-)

commit 8fd953c6a22631effb8a8003aefac4125544a76e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 12 20:16:02 2021 +1000

    L10n updates for: pl
    From translation svn revision: 60531
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Hubert Meyer <hubmeyer1989@gmail.com>
    Arkadiusz Swietnicki <nuno69a@gmail.com>
    
    Stats:
    141     43      source/locale/pl/LC_MESSAGES/nvda.po
     1 file changed, 141 insertions(+), 43 deletions(-)

commit 2bd810fca1cd446bcec64e3ffe38b0ccb16235c8
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 12 20:16:00 2021 +1000

    L10n updates for: pa
    From translation svn revision: 60531
    
    Authors:
    Maheshinder Singh Khosla <mahesh.khosla@gmail.com>
    Dinesh Mittal <punjabimaster259@gmail.com>
    
    Stats:
    424     129     source/locale/pa/LC_MESSAGES/nvda.po
     1 file changed, 424 insertions(+), 129 deletions(-)

commit 22bfd93aef4ded7b3002fa47e5ccc632dfea1bbf
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 12 20:15:59 2021 +1000

    L10n updates for: nl
    From translation svn revision: 60531
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    143     47      source/locale/nl/LC_MESSAGES/nvda.po
     1 file changed, 143 insertions(+), 47 deletions(-)

commit e2b1a17ec87f9338eaeaaefea0a2b57942f5189e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 12 20:15:57 2021 +1000

    L10n updates for: ne
    From translation svn revision: 60531
    
    Authors:
    Puskal Gautam <nvda.nepali@gmail.com>
    
    Stats:
    446     132     source/locale/ne/LC_MESSAGES/nvda.po
     1 file changed, 446 insertions(+), 132 deletions(-)

commit 100e1a27b8ac3dec90e77ef534f9824da9d4a4f5
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 12 20:15:56 2021 +1000

    L10n updates for: nb_NO
    From translation svn revision: 60531
    
    Authors:
    David Hole <balubathebrave@gmail.com>
    Bjornar Seppola <bjornar@seppola.net>
    
    Stats:
    454     135     source/locale/nb_NO/LC_MESSAGES/nvda.po
     1 file changed, 454 insertions(+), 135 deletions(-)

commit 8bdb33488c15a9a865cc85b86fc82e800b77610d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 12 20:15:55 2021 +1000

    L10n updates for: my
    From translation svn revision: 60531
    
    Authors:
    Benedict La hkun <lkbenedict@gmail.com>
    
    Stats:
    452     131     source/locale/my/LC_MESSAGES/nvda.po
     1 file changed, 452 insertions(+), 131 deletions(-)

commit a4df54377f07c4831151e06bdf3f169415431093
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 12 20:15:54 2021 +1000

    L10n updates for: mn
    From translation svn revision: 60531
    
    Authors:
    Mongol NVDA-Translation <mongoliannvdatranslation@gmail.com>
    
    Stats:
    153     42      source/locale/mn/LC_MESSAGES/nvda.po
     1 file changed, 153 insertions(+), 42 deletions(-)

commit 21e312bfe3298b298b65219cd66e5f4cb4c6b0dc
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 12 20:15:51 2021 +1000

    L10n updates for: mk
    From translation svn revision: 60531
    
    Authors:
    zvonimir stanecic <9a5dsz@gozaltech.org>
    Ertay Shashko <ertay@outlook.com>
    Aleksandar <glupav@gmail.com>
    Kiko Lazarev <kristijan.lazarev@gmail.com>
    
    Stats:
    351     163     source/locale/mk/LC_MESSAGES/nvda.po
     1 file changed, 351 insertions(+), 163 deletions(-)

commit bcfb5b42fe3e6f01e1f1e69ffb9f263f0c43fcdf
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 12 20:15:50 2021 +1000

    L10n updates for: lt
    From translation svn revision: 60531
    
    Authors:
    Paulius Leveris <paulius.leveris@gmail.com>
    Rimas Kudelis <rq@akl.lt>
    
    Stats:
    452     133     source/locale/lt/LC_MESSAGES/nvda.po
     1 file changed, 452 insertions(+), 133 deletions(-)

commit a55baecae910f167e89b0f94f21d6db53726c6b5
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 12 20:15:49 2021 +1000

    L10n updates for: ko
    From translation svn revision: 60531
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    143     44      source/locale/ko/LC_MESSAGES/nvda.po
     1 file changed, 143 insertions(+), 44 deletions(-)

commit 8747998d4796530da0a7fec33eaf183331c911ee
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 12 20:15:47 2021 +1000

    L10n updates for: kn
    From translation svn revision: 60531
    
    Authors:
    Siddalingeshwar Ingalagi <ingalagisiddu@gmail.com>
    
    Stats:
    447     135     source/locale/kn/LC_MESSAGES/nvda.po
     1 file changed, 447 insertions(+), 135 deletions(-)

commit 29ccec72deeb23a4eb1a87b9b7a45f51f8ffdac2
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 12 20:15:46 2021 +1000

    L10n updates for: kmr
    From translation svn revision: 60531
    
    Authors:
    Imam Kahraman <imam.kahraman@googlemail.com>
    
    Stats:
    443     130     source/locale/kmr/LC_MESSAGES/nvda.po
     1 file changed, 443 insertions(+), 130 deletions(-)

commit c4abcdd6cb95b7f4309d6219d0d1ad1f78eb9a87
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 12 20:15:46 2021 +1000

    L10n updates for: ka
    From translation svn revision: 60531
    
    Authors:
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Goderdzi Gogoladze <goderdzigogoladze@gmail.com>
    
    Stats:
    452     133     source/locale/ka/LC_MESSAGES/nvda.po
     1 file changed, 452 insertions(+), 133 deletions(-)

commit 565db18ebdb4ceca721dd4036ea2504a311d55a2
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 12 20:15:45 2021 +1000

    L10n updates for: ja
    From translation svn revision: 60531
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    126     44      source/locale/ja/LC_MESSAGES/nvda.po
     1 file changed, 126 insertions(+), 44 deletions(-)

commit 3016e7ece4c6b2d26626311168c3b9845ac8b88a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 12 20:15:42 2021 +1000

    L10n updates for: it
    From translation svn revision: 60531
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    141     45      source/locale/it/LC_MESSAGES/nvda.po
     1 file changed, 141 insertions(+), 45 deletions(-)

commit d812a982eb247a54398ecf3546fdc1ba20ccc78f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 12 20:15:40 2021 +1000

    L10n updates for: is
    From translation svn revision: 60531
    
    Authors:
    Birkir R. Gunnarsson <birkir.gunnarsson@gmail.com>
    Eythor Thrastarsson <eythor364@gmail.com>
    Hlynur Hreinsson <hm.hreinsson@gmail.com>
    
    Stats:
    439     134     source/locale/is/LC_MESSAGES/nvda.po
     1 file changed, 439 insertions(+), 134 deletions(-)

commit 918a7144e09c0ab2c14795204d4d5387a3c9f09a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 12 20:15:38 2021 +1000

    L10n updates for: hu
    From translation svn revision: 60531
    
    Authors:
    Aron OcsvAri <oaron@nvda.hu>
    
    Stats:
    147     45      source/locale/hu/LC_MESSAGES/nvda.po
     1 file changed, 147 insertions(+), 45 deletions(-)

commit 4e184082485e626471aa2b401038dddc9fc19e96
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 12 20:15:36 2021 +1000

    L10n updates for: hr
    From translation svn revision: 60531
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Milo Ivir <mivir@milotype.de>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    149     53      source/locale/hr/LC_MESSAGES/nvda.po
     1 file changed, 149 insertions(+), 53 deletions(-)

commit 9aa351d22887f847068e29c506a1b134cbb2958b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 12 20:15:35 2021 +1000

    L10n updates for: hi
    From translation svn revision: 60531
    
    Authors:
    dipendra.lists@gmail.com
    Doc Mehta <joyofinspiring@gmail.com>
    
    Stats:
    455     132     source/locale/hi/LC_MESSAGES/nvda.po
     1 file changed, 455 insertions(+), 132 deletions(-)

commit 0bc3b63b06b6ffd686d072bd3498f0270e6a85b8
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 12 20:15:34 2021 +1000

    L10n updates for: he
    From translation svn revision: 60531
    
    Authors:
    Shmuel Naaman <shmuel_naaman@yahoo.com>
    Afik Sofir <afik.sofer@gmail.com>
    
    Stats:
    151     40      source/locale/he/LC_MESSAGES/nvda.po
     1 file changed, 151 insertions(+), 40 deletions(-)

commit 8242733bdad8291119b358033d0c20843961c672
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 12 20:15:33 2021 +1000

    L10n updates for: gl
    From translation svn revision: 60531
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    Javier Curras <javier.curras@nvda.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    141     44      source/locale/gl/LC_MESSAGES/nvda.po
     1 file changed, 141 insertions(+), 44 deletions(-)

commit 2d52b4e9ff120d2fd44a6e8af6b3bbcf8d1dd138
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 12 20:15:30 2021 +1000

    L10n updates for: ga
    From translation svn revision: 60531
    
    Authors:
    Cearbhall OMeadhra <cearbhall.omeadhra@blbc.ie>
    Ronan McGuirk <ronan.p.mcguirk@gmail.com>
    Kevin Scannell <kscanne@gmail.com>
    
    Stats:
    474     181     source/locale/ga/LC_MESSAGES/nvda.po
     1 file changed, 474 insertions(+), 181 deletions(-)

commit 8f3e3a9db513763afd417e05c188ba9eab7ac217
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 12 20:15:30 2021 +1000

    L10n updates for: fr
    From translation svn revision: 60531
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqué-Cazenave <corentin@progaccess.net>
    
    Stats:
    134     60      source/locale/fr/LC_MESSAGES/nvda.po
     1 file changed, 134 insertions(+), 60 deletions(-)

commit bb4df7a8311650b614e0d36fd05bf2b30475d603
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 12 20:15:28 2021 +1000

    L10n updates for: fi
    From translation svn revision: 60531
    
    Authors:
    Jani Kinnunen <janikinnunen340@gmail.com>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    140     44      source/locale/fi/LC_MESSAGES/nvda.po
     1 file changed, 140 insertions(+), 44 deletions(-)

commit 70d4534da96b6fcc7dbb9fa370001c9b65e56d4f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 12 20:15:25 2021 +1000

    L10n updates for: fa
    From translation svn revision: 60531
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    140     44      source/locale/fa/LC_MESSAGES/nvda.po
     1 file changed, 140 insertions(+), 44 deletions(-)

commit 519bb25280bc58f28aa05c4c4c357d1bc1c61a8c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 12 20:15:22 2021 +1000

    L10n updates for: es
    From translation svn revision: 60531
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    141     45      source/locale/es/LC_MESSAGES/nvda.po
     1 file changed, 141 insertions(+), 45 deletions(-)

commit e3b76452536ebcf034a86c7e059ea6b0dfa3fd78
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 12 20:15:20 2021 +1000

    L10n updates for: es_CO
    From translation svn revision: 60531
    
    Authors:
    Jorge Zarache <reydelasmaquinas@outlook.com>
    Luis Carlos Gonzáles Moráles <luiscarlosgm@hotmail.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    150     40      source/locale/es_CO/LC_MESSAGES/nvda.po
     1 file changed, 150 insertions(+), 40 deletions(-)

commit 4feaa0b138ccc4625b782b63c991a149a3b81a14
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 12 20:15:18 2021 +1000

    L10n updates for: el
    From translation svn revision: 60531
    
    Authors:
    Irene Nakas <irnakas@gmail.com>
    Nikos Demetriou <nikosdemetriou@googlemail.com>
    access@e-rhetor.com
    
    Stats:
    155     40      source/locale/el/LC_MESSAGES/nvda.po
     1 file changed, 155 insertions(+), 40 deletions(-)

commit 26b9583e79b20cdf2290faabb0dba8b902557ba3
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 12 20:15:17 2021 +1000

    L10n updates for: de
    From translation svn revision: 60531
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    146     50      source/locale/de/LC_MESSAGES/nvda.po
     1 file changed, 146 insertions(+), 50 deletions(-)

commit 98e30690bd859a489492b9bf9ff33757acfc75c3
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 12 20:15:14 2021 +1000

    L10n updates for: de_CH
    From translation svn revision: 60531
    
    Authors:
    Robert Hänggi <aarjay.robert@gmail.com>
    
    Stats:
    153     40      source/locale/de_CH/LC_MESSAGES/nvda.po
     1 file changed, 153 insertions(+), 40 deletions(-)

commit 8bdb4a6c185746dff013cf39d74b72277d27bc01
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 12 20:15:12 2021 +1000

    L10n updates for: da
    From translation svn revision: 60531
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    138     42      source/locale/da/LC_MESSAGES/nvda.po
     1 file changed, 138 insertions(+), 42 deletions(-)

commit 4e105dfd9ec6c5ba25d6442c66999b15c1cfaea0
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 12 20:15:11 2021 +1000

    L10n updates for: cs
    From translation svn revision: 60531
    
    Authors:
    Martina Letochova <letochova@seznam.cz>
    
    Stats:
    326     41      source/locale/cs/LC_MESSAGES/nvda.po
     1 file changed, 326 insertions(+), 41 deletions(-)

commit a8797a78eeb8ea36aac0955cb44c3f4803a5cbbf
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 12 20:15:09 2021 +1000

    L10n updates for: ckb
    From translation svn revision: 60531
    
    Authors:
    Ali Ustek <aliustek@gmail.com>
    Patrick Galasso <Patrice.galasso@gmail.com>
    Jwanro Mustafa <jwanroabdula@hotmail.com>
    Kosrat D Ahmad <kosrat.d.ahmad@gmail.com>
    silva.hm88@gmail.com
    
    Stats:
    392     121     source/locale/ckb/LC_MESSAGES/nvda.po
     1 file changed, 392 insertions(+), 121 deletions(-)

commit 736664e6da43f6085ebb5831fe150ace603948bf
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 12 20:15:09 2021 +1000

    L10n updates for: ca
    From translation svn revision: 60531
    
    Authors:
    Ruben Alcaraz <ruben.hangar1.8@gmail.com>
    Dr. Mireia Ribera <mireia.ribera@gmail.com>
    Santi Moese <santispock@gmail.com>
    Marina Salse Rovira <salse@ub.edu>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    458     133     source/locale/ca/LC_MESSAGES/nvda.po
     1 file changed, 458 insertions(+), 133 deletions(-)

commit 79361edfe09fe9335f3511cd35420eef13e8c33a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 12 20:15:07 2021 +1000

    L10n updates for: bg
    From translation svn revision: 60531
    
    Authors:
    Zahari Yurukov <zahari.yurukov@gmail.com>
    Kostadin Kolev <k_kolev1985@mail.bg>
    
    Stats:
    153     42      source/locale/bg/LC_MESSAGES/nvda.po
     1 file changed, 153 insertions(+), 42 deletions(-)

commit 33e15d0ad7aee3a8b07a6bb0b0ba7fd0c8d1f92a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 12 20:15:03 2021 +1000

    L10n updates for: ar
    From translation svn revision: 60531
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Omar Alojaimi <amrahmad1995@gmail.com>
    
    Stats:
    162     63      source/locale/ar/LC_MESSAGES/nvda.po
     1 file changed, 162 insertions(+), 63 deletions(-)

commit 5ddb3d047470c191730df725b110c987ef10d335
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 12 20:15:00 2021 +1000

    L10n updates for: an
    From translation svn revision: 60531
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    138     42      source/locale/an/LC_MESSAGES/nvda.po
     1 file changed, 138 insertions(+), 42 deletions(-)

commit 9a1d535f2f183184cab52f0704db02da7a6eaf33
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 12 20:14:57 2021 +1000

    L10n updates for: am
    From translation svn revision: 60531
    
    Authors:
    KETEMA ZEREGAW <kzeregaw@msn.com>
    Dr. Tamru E. Belay <g.braille@sympatico.ca>
    
    Stats:
    143     42      source/locale/am/LC_MESSAGES/nvda.po
     1 file changed, 143 insertions(+), 42 deletions(-)

commit 5563556fa91b173d183d5cef0aa0e8861a127a33
Merge: c63c0d9c2 cc0feb4f8
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 12 20:07:35 2021 +1000

    Update translations.
    
    From translation svn revision: 60529

commit cc0feb4f8d56509bb90393a8fc4b6fcc90289186
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 12 20:07:32 2021 +1000

    L10n updates for: zh_CN
    From translation svn revision: 60529
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    1872265132@qq.com
    
    Stats:
    9       10      user_docs/zh_CN/changes.t2t
     1 file changed, 9 insertions(+), 10 deletions(-)

commit 2797fcc21ff29015bbae46307a1bc46c2ced1d4b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 12 20:07:21 2021 +1000

    L10n updates for: ru
    From translation svn revision: 60529
    
    Authors:
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    
    Stats:
    30      4       user_docs/ru/changes.t2t
     1 file changed, 30 insertions(+), 4 deletions(-)

commit b523fbd47e227dfc6fe71d5bcbb56593344e938b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 12 20:07:18 2021 +1000

    L10n updates for: ro
    From translation svn revision: 60529
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <7ro2014@gmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    George Antonio Andrei <george.andrei2002@gmail.com>
    
    Stats:
    26      5       user_docs/ro/userGuide.t2t
     1 file changed, 26 insertions(+), 5 deletions(-)

commit 5701094d874257ea1ccb8fa897563ff40bb7026e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 12 20:07:05 2021 +1000

    L10n updates for: mk
    From translation svn revision: 60529
    
    Authors:
    zvonimir stanecic <9a5dsz@gozaltech.org>
    Ertay Shashko <ertay@outlook.com>
    Aleksandar <glupav@gmail.com>
    Kiko Lazarev <kristijan.lazarev@gmail.com>
    
    Stats:
    198     198     source/locale/mk/symbols.dic
    136     138     user_docs/mk/userGuide.t2t
     2 files changed, 334 insertions(+), 336 deletions(-)

commit 904b8a38155ab02f155d1a625a6ac9740996634b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 12 20:06:59 2021 +1000

    L10n updates for: it
    From translation svn revision: 60529
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    25      0       source/locale/it/gestures.ini
     1 file changed, 25 insertions(+)

commit dd1beb907344f7c569582d481c7d7f7fed08bed9
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 12 20:06:52 2021 +1000

    L10n updates for: gl
    From translation svn revision: 60529
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    Javier Curras <javier.curras@nvda.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       user_docs/gl/userGuide.t2t
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 7daa033ce6a32e96bb639db03b9fa97ba3242fd5
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 12 20:06:44 2021 +1000

    L10n updates for: es
    From translation svn revision: 60529
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    4       4       user_docs/es/userGuide.t2t
     1 file changed, 4 insertions(+), 4 deletions(-)

commit d56258e43ce03308655e46ff2587476a321a0058
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 12 20:06:26 2021 +1000

    L10n updates for: an
    From translation svn revision: 60529
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    36      21      user_docs/an/userGuide.t2t
     1 file changed, 36 insertions(+), 21 deletions(-)

commit c4d6fb5d87e887950f84a767e73362f7cc60f862
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Mon Jan 11 16:30:21 2021 -0800

    Global commands: replace gestures map with script decorator (#11974)
    
    * Global commands: convert basic commands to use script decorator. Re #11964.
    
    The following commands were edited to use scriptHandler.script decorator: NVDA+N (show NVDA menu), NVDA+1 (toggle input help), NVDA+Q (quit NVDA), NVDA+F2 (pass next key through), NVDA+Shift+S/Z (toggle sleep mode), as well as unassigned restart NVDA command. For sleep mode toggle command, allow sleep mode flag is kept, and for NVDA menu and sleep mode toggle commands, gestures tuple is used (gestures order: keyboard (desktop and laptop), braille (including braille input and emulated keys), touch).
    
    * Global commands: convert system status scripts to use script decorator. Re #11964.
    
    Convert the following scripts: NVDA+F12 (time and date), NVDA+C (clipboard data announcement), NVDA+Shift+B (battery status).
    
    * Global commands: convert system focus and caret scripts to use script decorator. Re #11964.
    
    Convert the following commands: NVDA+up arrow/L (read current line), NVDA+Tab (current focus), NVDA+End/Shift+End (read status line), NVDA+down arrow/A (say all), NVDA+Shift+up arrow/Shift+S (say selection), NVDA+T (say title), NVDA+B (read foreground window).
    
    * Global commands: convert object navigation scripts to use script decorator. Re #11964.
    
    Converted object navigation scripts: NVDA+Numpad 5/4/6/8/2, NVDA+Shift+O/right/left/up/down arrows, object touch mode flicks (announce current object/move to next/previous/parent/first child) and friends.
    
    * Global commands: convert review cursor commands to script decorator. Re #11964.
    
    Convert review cursor commands: Shift+Numpad 7/9, Control+NvDA+Home/End on laptop layout (top/bottom), Numpad 7/8/9 (previous/current/next line)m Numpad 4/5/6 (previous/current/next word), Numpad 1/2/3 (previous/current/next character), Shift+Numpad 1/3 (start/end of line) and touch equivalents in text mode, along with review mark/copy commands.
    
    * Global commands: convert mouse and browse mode scripts to use script decorator. Re #11964.
    
    Convert the following commands: left/right mouse click/lock, move navigator object to mouse and mouse to navigator object, focus/browse mode toggle, parent tree interceptor.
    
    * Global commands: convert config dialogs/panels commands to use script decorator. Re #11964.
    
    Convert settings dialogs/panels opener commands to use script decorator, including ones iwthout a set gesture such as dictionary dialogs and review cursor panel.
    
    * Global commands: convert config management scripts to use script decorator. Re #11964.
    
    Convert the following configuration management scripts: Control+NVDA+C (save configuration), Control+NVDA+R (revert/reset configuration), Control+NVDA+P (open config profiles dialog), and an unassigned command to toggle profile triggers.
    
    * Global commands: convert settings scripts to use script decorator. Re #11964.
    
    Convert various settings scripts to use script decorator, including NVDA+2 (toggle speak typed characters), NVDA+U (probress bar output) and others.
    
    * Global commands: convert synth settings ring scripts to use script decorator. Re #11964.
    
    Convert synth settings ring scripts: Control+NVDA+arrows/Control+NVDA+Shift+arrows (next/previous setting, increase/decrease current setting).
    
    * Global commands: convert document formatting settings scripts to use script decorator. Re #11964.
    
    Convert document formatting scripts to use script decorator, all of them unassigned.
    
    * Global commands: convert unassigned settings scripts to script decorator. Re #11964.
    
    Convert unassigned settings scripts such as braille focus presentation, change braille cursor/shape, mouse text resolution, all unassigned.
    
    * Global commands: convert tools scripts to use script decorator. Re #11964.
    
    Convert tools scripts to script decorator, including app module info, UWP OCR, speech viewer, and others, some of them with gestures unassigned.
    
    * Global commands: convert braille display scripts to use script decorator. Re 311964.
    
    Converted braille input and outpu scripts (except keyboard emulation) to use script decorator (tested with a HumanWare BrailleNote Touch Plus).
    
    * Global commands: convert touch gestures to use script decorator. Re #11964.
    
    Convert touch-specific scripts to use script decorator, including touch hover, right click, and touch mode toggle.
    
    * Global commands: convert keyboard emulation scripts to use script decorator. Re #11964.
    
    Convert keyboard emulation scripts for Control, Alt, Windows, Shift, and NVDA keys to use script decorator.
    
    * Global commands: rearrange bypassInputHelp and remove commas from ends of function argument definitions. Re #11964.
    
    * Global commands: lint (Flake8 E203, E251)
    
    * Global commands: lint (Flake8 E501)
    
    * Global commands: fix spelling - 'wil' -> 'will' in speech mode command description.
    
    * Global commands: scriptHandler.script -> script
    
    * Global commands: remove gestures map, replaced by script decorator. Re #11964.
    
    Replace gestures map found in global commands with script decorator.
    
    * Global commands: update copyright year
    
    * Global commands: use allowInSleepMode flag for sleep mode toggle script. Re #11964.

commit 4288882b4f83d3f2c7c3cdb3de0ac0067533a026
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Tue Jan 12 00:51:21 2021 +0100

    Don't use UnidentifiedEdit for windows with empty windowText (#11966)
    
    * Don't use UnidentifiedEdit for windows with empty windowText
    
    Fix-up of https://github.com/nvaccess/nvda/pull/8165
    
    * Update what's new
    
    Co-authored-by: Michael Curran <mick@nvaccess.org>

commit 04858db337dd13605bab0f73ab1d55feceec7e81
Author: Bill Dengler <codeofdusk@gmail.com>
Date:   Mon Jan 11 18:30:46 2021 -0500

    Update nvda_dmp to possibly address an autoread hang (#11998)
    
    * Update nvda_dmp.
    
    * Add flush calls for completeness.

commit 714fa6f3c8a018bb184146744b70e0d55aa2bf22
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
Date:   Tue Jan 12 00:17:51 2021 +0100

    Symbols: test regex group references through the symbols engine (#11961)
    
    * Symbols: test regex group references through the engine
    
    This adds a test for regex group reference replacement that goes through
    the complete speech symbol processor, using the French locale.
    
    * Fix test content

commit b58e6cc0786e44655a531fc5881c97edbaa531d4
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Sun Jan 10 23:13:18 2021 -0800

    Sphinx: remove 2.2.2 restriction and update readme regarding building source code docs locally (#11973)
    
    * Sphinx: remove version requirement (2.2.2).
    
    NVDA docs can be built using more recent Sphinx releases such as 3.4.1. Therefore remove checking for Sphinx 2.2.2 in dev docs requirements.
    
    * Readme: replace Epydoc with Sphinx, and remove dev docs limitation statement.
    
    Replace Epydoc with Sphinx. As a result, remove the Python 3 source dev docs limitation statement, as Sphinx will now build NVDA dev docs.
    
    * Readme: document how to build source code docs with 'scons devDocs'.
    
    * Readme: output/DevDocs -> output/NVDA for source code documentation.
    
    * Dev docs/Sphinx: specify Sphinx 3.4.1 (December 2020 release).
    
    Comment from Lukasz Golonka: specify Sphinx==3.4.1 to align with readme.

commit e34ec59e9b39cf790881553c956b75254bb4b0fd
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Sun Jan 10 23:07:34 2021 -0800

    Dev docs: tell NVDA to treat source directory as app directory, allowing dev docs build with Sphinx to succeed (#11972)
    
    * Dev docs/config: point globalVars.appDir to source directory when building source code dev docs. re #11971.
    
    Before building dev docs with Sphinx, config module is imported without NVDA knowing where the app dir is i.e. globalVars.appDir is undefined. Therefore tell Sphinx that globalVars.appDir is source directory so Sphinx can build source code documentation.
    
    * Dev docs/Sphinx config: update copyright header
    
    * Dev docs/Sphinx config: address review comments.
    
    Reviewed by Lukasz Golonka: move globalvars.appDir definition, along with removing duplicate globalVars import statement.

commit 8ec984e264635b60f9ee38f9538baa6c17025e61
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Mon Jan 11 07:27:00 2021 +0100

    Script decorator: add ability to specify that given script should be active in sleep mode. (#11979)
    
    * Script decorator: Allow to set `allowInSleepMode` for a decorated script.
    
    * Also take this oportunity to use type hints for script decorator parameters
    
    * Unit test for allowInSleepMode
    
    * Mention `allowInSleepMode` in script decorator's docstring
    
    * Lint fixes
    
    * Update developer guide
    
    * Update what's new
    
    Co-authored-by: Michael Curran <mick@nvaccess.org>

commit 4c49001d22c346b0cd071b6c5723f374ed6d7258
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Sun Jan 10 21:56:51 2021 -0800

    Synth drivers/eSpeak NG internal: pass in a NULL pointer (path string) when obtaining eSpeak NG version string (#11975)
    
    * Synth drivers/eSpeak NG internal: update copyright header
    
    * Synth drivers/eSpeak NG internal: passin NULL (None) when obtaining version info.
    
    Python 3.8: without passing in a path string, access violation is thrown, which can cause NVDA executable to hang when trying to obtain eSpeak NG version string. Therefore pass in NULL (None) because what NVDA is interested in is synthesizer version.
    
    * Synth drivers/eSpeak NG internal: address review comments.
    
    Comment from Lukasz Golonka: remove file name from copyright header, use bytes.decode to transform eSpeak NG version string from bytes to Unicode.

commit 1f43f98fec5d18ccd9500003c3f793105f0772b7
Author: Bill Dengler <codeofdusk@gmail.com>
Date:   Sun Jan 10 22:18:35 2021 -0500

    Fix user guide for DMP. (PR #11981)

commit c63c0d9c23f147ffdc1fdaa13ccf478d1a6dc7a8
Merge: 80bd3604e 4b2c58013
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jan 8 00:06:25 2021 +1000

    Update translations.
    
    From translation svn revision: 60380

commit 4b2c580131258b1fb9bd2a9b6ce23eb75b41b14a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jan 8 00:06:22 2021 +1000

    L10n updates for: zh_CN
    From translation svn revision: 60380
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    1872265132@qq.com
    
    Stats:
    24      24      user_docs/zh_CN/changes.t2t
     1 file changed, 24 insertions(+), 24 deletions(-)

commit 6a0f0973856cd04ce1ae8bb4e959509c0019067a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jan 8 00:05:46 2021 +1000

    L10n updates for: ja
    From translation svn revision: 60380
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    2       0       user_docs/ja/changes.t2t
     1 file changed, 2 insertions(+)

commit 5f035fdc75bcf63fdcb58f0167fd8a839746bb96
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jan 8 00:05:29 2021 +1000

    L10n updates for: fa
    From translation svn revision: 60380
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    60      45      user_docs/fa/userGuide.t2t
     1 file changed, 60 insertions(+), 45 deletions(-)

commit d3aaca53960673149a2e32509cdb574415189dec
Merge: 988928568 80bd3604e
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue Jan 5 15:55:29 2021 +0800

    Merge beta into alpha PR #11984
    
    - Translation updates
    - Fix for NVwave issue: #11968

commit 80bd3604e629aad0ae8b3c7e8d2bb978cd345af7
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Mon Jan 4 14:39:25 2021 +0800

    Fix no speech after removed USB audio device (PR #11978)

commit ef0c86cf80c9a2cbf43efcee8ff10e30aea8fcc6
Merge: b2d7b4c96 27b4dfe5b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jan 1 00:06:24 2021 +1000

    Update translations.
    
    From translation svn revision: 60349

commit 27b4dfe5b51e8947cebf25c8b7ac10b6fd6ca512
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jan 1 00:06:24 2021 +1000

    L10n updates for: zh_TW
    From translation svn revision: 60349
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    haach111000@gmail.com
    
    Stats:
    32      17      user_docs/zh_TW/userGuide.t2t
     1 file changed, 32 insertions(+), 17 deletions(-)

commit f189526c1d32f329f495156b53c55316e42c205b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jan 1 00:06:22 2021 +1000

    L10n updates for: zh_CN
    From translation svn revision: 60349
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    1872265132@qq.com
    
    Stats:
    3       0       source/locale/zh_CN/symbols.dic
    11      3       user_docs/zh_CN/changes.t2t
     2 files changed, 14 insertions(+), 3 deletions(-)

commit 93da87fdc39faf580a9ecbc41f825a342f628224
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jan 1 00:06:20 2021 +1000

    L10n updates for: vi
    From translation svn revision: 60349
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>
    Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    8       2       user_docs/vi/changes.t2t
     1 file changed, 8 insertions(+), 2 deletions(-)

commit faff91c6b2030ec432b989140dfebc451dc933d1
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jan 1 00:05:48 2021 +1000

    L10n updates for: ko
    From translation svn revision: 60349
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    16      15      user_docs/ko/changes.t2t
     1 file changed, 16 insertions(+), 15 deletions(-)

commit c2195dac022611d646529212b03349d2e5e04d74
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jan 1 00:05:37 2021 +1000

    L10n updates for: hr
    From translation svn revision: 60349
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Milo Ivir <mivir@milotype.de>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    4       6       user_docs/hr/changes.t2t
    10      10      user_docs/hr/userGuide.t2t
     2 files changed, 14 insertions(+), 16 deletions(-)

commit f9a7a1c990f707406200b8e0aab9f0e9310f2aed
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jan 1 00:05:32 2021 +1000

    L10n updates for: fr
    From translation svn revision: 60349
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqué-Cazenave <corentin@progaccess.net>
    
    Stats:
    2       0       user_docs/fr/changes.t2t
     1 file changed, 2 insertions(+)

commit b5abda18f415473aba5ef6088b166887487222c7
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jan 1 00:05:30 2021 +1000

    L10n updates for: fi
    From translation svn revision: 60349
    
    Authors:
    Jani Kinnunen <janikinnunen340@gmail.com>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    1       0       user_docs/fi/changes.t2t
     1 file changed, 1 insertion(+)

commit 150fd4fbefed47d450a2fdde25247b760f97e2a3
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jan 1 00:05:28 2021 +1000

    L10n updates for: fa
    From translation svn revision: 60349
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    71      0       user_docs/fa/changes.t2t
     1 file changed, 71 insertions(+)

commit 33f39956fa6cbb89f5f0a486bae7d8199c18079d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jan 1 00:05:20 2021 +1000

    L10n updates for: de
    From translation svn revision: 60349
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    2       0       user_docs/de/changes.t2t
     1 file changed, 2 insertions(+)

commit ca77de1670bb1467f2a5807b3be26f5ae11c0651
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jan 1 00:05:08 2021 +1000

    L10n updates for: ar
    From translation svn revision: 60349
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Omar Alojaimi <amrahmad1995@gmail.com>
    
    Stats:
    9       4       user_docs/ar/changes.t2t
    52      40      user_docs/ar/userGuide.t2t
     2 files changed, 61 insertions(+), 44 deletions(-)

commit 2703dc477933a41f45fd96ce2ad691e7c5cfd548
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jan 1 00:05:05 2021 +1000

    L10n updates for: an
    From translation svn revision: 60349
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       0       source/locale/an/symbols.dic
    82      0       user_docs/an/changes.t2t
     2 files changed, 83 insertions(+)

commit 9889285680dba4198330691f77f395f6f120abf8
Author: Bill Dengler <codeofdusk@gmail.com>
Date:   Thu Dec 31 04:24:36 2020 -0500

    diff-match-patch for LiveText (PR #11639)
    
    Refactor LiveText to use diff-match-patch via IPC with another process
    
    Changes diffing functions to operate at the string rather than line level.
    Adds diff-match-patch (DMP) as an optional diffing algorithm for LiveText objects.
    It is anticipated that DMP will become the default in a future NVDA release pending positive user testing.
    
    Unlike #11500, this PR does not import or dynamically link to DMP due to licensing issues.
    Instead, a Python application is run in another process that calls the DMP extension, and communicates over standard IO.
    
    Co-authored-by: Michael Curran <michaelDCurran@users.noreply.github.com>
    Co-authored-by: Reef Turner <feerrenrut@users.noreply.github.com>

commit b2d7b4c964f32007c961883479be99b98abf98fb
Merge: 971c04467 ae769082c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Dec 25 00:06:31 2020 +1000

    Update translations.
    
    From translation svn revision: 60176

commit ae769082c64d7c11961ec9b6b1cd5c48cf438d96
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Dec 25 00:06:26 2020 +1000

    L10n updates for: vi
    From translation svn revision: 60176
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>
    Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    7       0       user_docs/vi/changes.t2t
     1 file changed, 7 insertions(+)

commit 37d8bf55ef635842ff968857622751239b166d8e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Dec 25 00:06:23 2020 +1000

    L10n updates for: tr
    From translation svn revision: 60176
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    7       0       user_docs/tr/changes.t2t
    0       1       user_docs/tr/userGuide.t2t
     2 files changed, 7 insertions(+), 1 deletion(-)

commit a72556a0ff57b2e9b53b6773ab69a1318248c502
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Dec 25 00:06:20 2020 +1000

    L10n updates for: ta
    From translation svn revision: 60176
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    9       9       user_docs/ta/userGuide.t2t
     1 file changed, 9 insertions(+), 9 deletions(-)

commit f01d8aa92d7fcd9c96ef9dece2b170f62f9508bb
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Dec 25 00:06:17 2020 +1000

    L10n updates for: sr
    From translation svn revision: 60176
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    7       0       user_docs/sr/changes.t2t
     1 file changed, 7 insertions(+)

commit ee0e8cb00b475455acb0272c30a236b73a4f51c6
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Dec 25 00:06:01 2020 +1000

    L10n updates for: nl
    From translation svn revision: 60176
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    10      10      user_docs/nl/userGuide.t2t
     1 file changed, 10 insertions(+), 10 deletions(-)

commit 6ab08bdfba5b80cd44f55d20f830ee78e2f8f5fa
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Dec 25 00:05:54 2020 +1000

    L10n updates for: mk
    From translation svn revision: 60176
    
    Authors:
    zvonimir stanecic <9a5dsz@gozaltech.org>
    Ertay Shashko <ertay@outlook.com>
    Aleksandar <glupav@gmail.com>
    Kiko Lazarev <kristijan.lazarev@gmail.com>
    
    Stats:
    126     126     user_docs/mk/userGuide.t2t
     1 file changed, 126 insertions(+), 126 deletions(-)

commit fadc8bbc05f65119aec6d307ecd6acf76078faaf
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Dec 25 00:05:52 2020 +1000

    L10n updates for: ko
    From translation svn revision: 60176
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    76      0       user_docs/ko/changes.t2t
     1 file changed, 76 insertions(+)

commit 373b7d47249bd8e85048aecfec2b7f826aa69bcc
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Dec 25 00:05:49 2020 +1000

    L10n updates for: ja
    From translation svn revision: 60176
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    102     22      user_docs/ja/changes.t2t
    5       5       user_docs/ja/userGuide.t2t
     2 files changed, 107 insertions(+), 27 deletions(-)

commit 712daf70e369b48dab1380b5ee72df78557b404d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Dec 25 00:05:43 2020 +1000

    L10n updates for: hu
    From translation svn revision: 60176
    
    Authors:
    Aron OcsvAri <oaron@nvda.hu>
    
    Stats:
    73      0       user_docs/hu/changes.t2t
     1 file changed, 73 insertions(+)

commit 7639b2869d68004a033124675a1a577394f85e16
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Dec 25 00:05:40 2020 +1000

    L10n updates for: hr
    From translation svn revision: 60176
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Milo Ivir <mivir@milotype.de>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    77      0       user_docs/hr/changes.t2t
    23      8       user_docs/hr/userGuide.t2t
     2 files changed, 100 insertions(+), 8 deletions(-)

commit 53fdd6f1b29412d9ecab5e49a4e84a661e75a7ce
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Dec 25 00:05:37 2020 +1000

    L10n updates for: gl
    From translation svn revision: 60176
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    Javier Curras <javier.curras@nvda.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    7       0       user_docs/gl/changes.t2t
     1 file changed, 7 insertions(+)

commit 8ea130b954daccbbacbe11ea086d2ce58f4d5f72
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Dec 25 00:05:34 2020 +1000

    L10n updates for: fr
    From translation svn revision: 60176
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqué-Cazenave <corentin@progaccess.net>
    
    Stats:
    7       0       user_docs/fr/changes.t2t
    1       1       user_docs/fr/userGuide.t2t
     2 files changed, 8 insertions(+), 1 deletion(-)

commit c4ac9b48b7c96b37f3f598044e308b63f0a7d7cc
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Dec 25 00:05:32 2020 +1000

    L10n updates for: fi
    From translation svn revision: 60176
    
    Authors:
    Jani Kinnunen <janikinnunen340@gmail.com>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    7       0       user_docs/fi/changes.t2t
     1 file changed, 7 insertions(+)

commit ba48a07dabb91879c0f4ccb3219732ed2c561d1f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Dec 25 00:05:27 2020 +1000

    L10n updates for: es
    From translation svn revision: 60176
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    7       0       user_docs/es/changes.t2t
     1 file changed, 7 insertions(+)

commit 131e46d327b89511c565d1565b539937548104c7
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Dec 25 00:05:22 2020 +1000

    L10n updates for: de
    From translation svn revision: 60176
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    7       0       user_docs/de/changes.t2t
     1 file changed, 7 insertions(+)

commit 8fa03b38446bb1458374a350c0b706cedf70dca7
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Dec 25 00:05:09 2020 +1000

    L10n updates for: ar
    From translation svn revision: 60176
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Omar Alojaimi <amrahmad1995@gmail.com>
    
    Stats:
    68      1       user_docs/ar/changes.t2t
     1 file changed, 68 insertions(+), 1 deletion(-)

commit 7e5ffde2391c56981fa1f6f5382cbe95b3bb492e
Merge: 7b92e4425 57e234f63
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue Dec 22 16:56:22 2020 +0800

    Update alpha from beta - Merge PR #11962
    
    Merge beta to alpha

commit 57e234f6339b37b7de19d7f7d107ef15c0cde7ba
Merge: 971c04467 7b92e4425
Author: Reef Turner <reef@nvaccess.org>
Date:   Tue Dec 22 16:39:00 2020 +0800

    Merge remote-tracking branch 'origin/master' into mergeBetaToAlpha

commit 971c044676a02b85560beb1b5ca057fa44832f26
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Mon Dec 21 23:54:22 2020 -0800

    Liblouis 3.16.1: add Afrikaans grade 2 to braille input/output tables interface (PR #11946)

commit 4a451d0b79f5205ff7d06302fc12923710077fbd
Author: Cyrille Bougot <cyrille.bougot2@laposte.net>
Date:   Tue Dec 22 07:49:46 2020 +0100

    Fix error preventing a report of failed copy operation (PR #11959)
    
    Fix-up of #9843

commit 6e161eb4d5fb68996d93ecced369eadaa022d326
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue Dec 22 14:02:07 2020 +0800

    Fix cyclic import context help (PR #11958)
    
    * Fixes #11950
    
    Breaks the circular import in contextHelp by making imports of gui, ui, and queueHandler dynamic imports.
    
    This exposes another problem, the order of imports mattered. Several modules imported by gui, depended on ContextHelpMixin (imported name) in the gui module. This is fixed by referring directly to gui.contextHelp.ContextHelpMixin rather than gui.ContextHelpMixin in all those files. To prevent this from happening again (or being used by add-ons) it has been imported as _ContextHelpMixin.

commit 3f1e47e0cbf1fd8641fe65bd4fcb8c2aac87d08f
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Tue Dec 22 14:52:33 2020 +1000

    Fix QWERTY input - Papenmeier braille displays (PR #11944)
    
    * keyboardHandler.injectRawKeyboardInput:
    Previously, NVDA would send the input manually to its keyboard input hook, and then if the hook didn't handle the input, calling keybd_event. This now avoids assumptions about how NVDA's input hook worked, which are no longer true since #11478 and #11597 were merged.
    
    * Papenmeier braille driver:
    More gesture bindings and fix detection of keyboard input.

commit 5c91755e252760209217ba11a2e57cad9541b298
Merge: 7466c1b7d 98686f035
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Dec 18 00:06:34 2020 +1000

    Update translations.
    
    From translation svn revision: 59957

commit 98686f035aab2781b5d76f77cde7d6e5f9589a45
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Dec 18 00:06:33 2020 +1000

    L10n updates for: zh_TW
    From translation svn revision: 59957
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    haach111000@gmail.com
    
    Stats:
    1       0       source/locale/zh_TW/symbols.dic
     1 file changed, 1 insertion(+)

commit 5db7342915307ef202e8daead887288269d164cc
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Dec 18 00:06:30 2020 +1000

    L10n updates for: zh_CN
    From translation svn revision: 59957
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    1872265132@qq.com
    
    Stats:
    7       0       source/locale/zh_CN/symbols.dic
    73      0       user_docs/zh_CN/changes.t2t
     2 files changed, 80 insertions(+)

commit a626a6cdf696083c3176b6738ae5bd51b596e340
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Dec 18 00:06:28 2020 +1000

    L10n updates for: vi
    From translation svn revision: 59957
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>
    Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    12      1       user_docs/vi/changes.t2t
    11      11      user_docs/vi/userGuide.t2t
     2 files changed, 23 insertions(+), 12 deletions(-)

commit a4b4f6817ae5c74d598f6a90ce294d4ca7c1e920
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Dec 18 00:06:25 2020 +1000

    L10n updates for: uk
    From translation svn revision: 59957
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    2       1       source/locale/uk/symbols.dic
    40      25      user_docs/uk/userGuide.t2t
     2 files changed, 42 insertions(+), 26 deletions(-)

commit 098d763d13bdd593362b45e045dc2574ecbf58f4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Dec 18 00:06:24 2020 +1000

    L10n updates for: tr
    From translation svn revision: 59957
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    18      2       user_docs/tr/changes.t2t
    14      14      user_docs/tr/userGuide.t2t
     2 files changed, 32 insertions(+), 16 deletions(-)

commit af020431d29613f10dfacc5099ff573998c4c140
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Dec 18 00:06:18 2020 +1000

    L10n updates for: sr
    From translation svn revision: 59957
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    4       3       source/locale/sr/symbols.dic
    70      0       user_docs/sr/changes.t2t
    30      15      user_docs/sr/userGuide.t2t
     3 files changed, 104 insertions(+), 18 deletions(-)

commit 5e20b392537f29189e77f71f1c31ba63c592eb96
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Dec 18 00:06:14 2020 +1000

    L10n updates for: ru
    From translation svn revision: 59957
    
    Authors:
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    
    Stats:
    16      0       user_docs/ru/changes.t2t
    13      13      user_docs/ru/userGuide.t2t
     2 files changed, 29 insertions(+), 13 deletions(-)

commit 1c1e93718880092a2ac45fc971c598d638f8d7be
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Dec 18 00:06:04 2020 +1000

    L10n updates for: pl
    From translation svn revision: 59957
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Hubert Meyer <hubmeyer1989@gmail.com>
    Arkadiusz Swietnicki <nuno69a@gmail.com>
    
    Stats:
    17      2       user_docs/pl/changes.t2t
     1 file changed, 17 insertions(+), 2 deletions(-)

commit 7e6a9b924f1acfe925e0c8efa83f832fad93f7b1
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Dec 18 00:05:49 2020 +1000

    L10n updates for: ja
    From translation svn revision: 59957
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    30      15      user_docs/ja/userGuide.t2t
     1 file changed, 30 insertions(+), 15 deletions(-)

commit 48dbfd0654914a32a1732d6ea07579978a306e4b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Dec 18 00:05:46 2020 +1000

    L10n updates for: it
    From translation svn revision: 59957
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    5       5       source/locale/it/characterDescriptions.dic
    74      0       user_docs/it/changes.t2t
    26      11      user_docs/it/userGuide.t2t
     3 files changed, 105 insertions(+), 16 deletions(-)

commit d0f870f7c140e6d2f8a7c19d6c284bfc20c07060
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Dec 18 00:05:41 2020 +1000

    L10n updates for: hr
    From translation svn revision: 59957
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Milo Ivir <mivir@milotype.de>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    1       1       source/locale/hr/symbols.dic
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 42d41ef0384e81616a6af47791db59c797b57b27
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Dec 18 00:05:38 2020 +1000

    L10n updates for: gl
    From translation svn revision: 59957
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    Javier Curras <javier.curras@nvda.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    16      1       user_docs/gl/changes.t2t
    10      10      user_docs/gl/userGuide.t2t
     2 files changed, 26 insertions(+), 11 deletions(-)

commit a3b754d9d47c6eca2cd4add886f9bd288bca8409
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Dec 18 00:05:35 2020 +1000

    L10n updates for: fr
    From translation svn revision: 59957
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqué-Cazenave <corentin@progaccess.net>
    
    Stats:
    4       5       source/locale/fr/symbols.dic
    73      0       user_docs/fr/changes.t2t
    10      10      user_docs/fr/userGuide.t2t
     3 files changed, 87 insertions(+), 15 deletions(-)

commit e8100ce3ff73590631855ca0e2f58c78f7a7c6db
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Dec 18 00:05:33 2020 +1000

    L10n updates for: fi
    From translation svn revision: 59957
    
    Authors:
    Jani Kinnunen <janikinnunen340@gmail.com>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    16      1       user_docs/fi/changes.t2t
    7       7       user_docs/fi/userGuide.t2t
     2 files changed, 23 insertions(+), 8 deletions(-)

commit d05abea92261b618d78906418996a7b96c1f232d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Dec 18 00:05:28 2020 +1000

    L10n updates for: es
    From translation svn revision: 59957
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    16      1       user_docs/es/changes.t2t
    10      10      user_docs/es/userGuide.t2t
     2 files changed, 26 insertions(+), 11 deletions(-)

commit 8504fd20931e1d86ee57a9c30111d0af18b2f869
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Dec 18 00:05:22 2020 +1000

    L10n updates for: de
    From translation svn revision: 59957
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    18      2       user_docs/de/changes.t2t
    10      10      user_docs/de/userGuide.t2t
     2 files changed, 28 insertions(+), 12 deletions(-)

commit 7466c1b7d19bddd93d57d2375d1287599e92b8ed
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Wed Dec 16 13:42:18 2020 +0800

    Add release summary for 2020.4 (PR #11941)

commit 9800b5fcfc0345ac9248e667d8abf99aad15ea74
Merge: 7eb611749 f76085298
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue Dec 15 17:27:44 2020 +0800

    Add Missing Commits for 2020.4 release branch point. Merge PR #11940
    
    Several commits were missed when branching for Release 2020.4 (see PR #11910) which selected commit f99644e, however there are 3 commits after that and 325be94 (inclusive) before the version number was updated.
    
    Merge to the 2020.4 beta:
    - Fix: NVDA no longer fails to restart when running from sources and cw… 3737e3c
    - MS Word: report the number of pts of line spacing when line spacing t… 9c0b649
    - Fix-up of #10973: Fallback to POSITION_FIRST when reporting formattin… 325be94

commit 7b92e4425a7f0ae29252d42e46e6614d5dfb106e
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue Dec 15 17:09:36 2020 +0800

    Update espeak to commit 82d5b7b04 (PR #11928)
    
    * Update Espeak to commit 82d5b7b04
    
    Commit: "Ported voices from NVSpeechPlayer to espeak variants."
    Full sha: 82d5b7b04488412845101851f36da6953cac4378F
    
    * Update build process for Espeak
    - Split build environment settings for internal and 3rd party code.
    - Specifically don't enable warning level 3 for third party code builds.
    - Use 3rd party build config for Espeak and Libluis
    - centralize preprocessor macros

commit f760852985eccaf1331b97c033584b0e7b01950d
Merge: 325be94d9 7eb611749
Author: Reef Turner <reef@nvaccess.org>
Date:   Tue Dec 15 16:49:38 2020 +0800

    Merge remote-tracking branch 'origin/beta' into addMissingCommits2020.4

commit fba505895530d4c7d6fc53a4ba317427e1cf0b56
Merge: d3ba21a3a 7eb611749
Author: Reef Turner <reef@nvaccess.org>
Date:   Fri Dec 11 15:48:17 2020 +0800

    Merge Beta into Alpha
    
    Merge remote-tracking branch 'origin/beta'
    Including:
    - Update translations.
    - Update liblouis to 3.16.1 (PR #11888)
    - Fix deadlock between nvWave stop and feed (PR #11886)
    - Detect Humanware Brailliant BI 40X and 20X via both USB and Bluetooth (PR #11819)

commit 7eb6117498191fa46ecd72d9e0661325ca369245
Merge: 1b0338722 5f916b9e1
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Dec 11 00:06:33 2020 +1000

    Update translations.
    
    From translation svn revision: 59759

commit 5f916b9e1eb4c0ffc81ef45d49691460d8d24226
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Dec 11 00:06:22 2020 +1000

    L10n updates for: ta
    From translation svn revision: 59759
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    13      13      source/locale/ta/symbols.dic
    61      61      user_docs/ta/userGuide.t2t
     2 files changed, 74 insertions(+), 74 deletions(-)

commit 30d395a93d59899404b4198d18c60e6525a38e40
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Dec 11 00:05:54 2020 +1000

    L10n updates for: mk
    From translation svn revision: 59759
    
    Authors:
    zvonimir stanecic <9a5dsz@gozaltech.org>
    Ertay Shashko <ertay@outlook.com>
    Aleksandar <glupav@gmail.com>
    Kiko Lazarev <kristijan.lazarev@gmail.com>
    
    Stats:
    34      34      user_docs/mk/userGuide.t2t
     1 file changed, 34 insertions(+), 34 deletions(-)

commit 104bb41ee9ae23b67db68106370c8012419f4cdb
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Dec 11 00:05:46 2020 +1000

    L10n updates for: it
    From translation svn revision: 59759
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    24      24      source/locale/it/characterDescriptions.dic
     1 file changed, 24 insertions(+), 24 deletions(-)

commit b7ad7d65020742176af7fa717ad79aab53e99bbf
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Dec 11 00:05:40 2020 +1000

    L10n updates for: hr
    From translation svn revision: 59759
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Milo Ivir <mivir@milotype.de>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    1       0       source/locale/hr/symbols.dic
     1 file changed, 1 insertion(+)

commit 3250d5b932283f116a4a0c23054dbb54bebf4474
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Dec 11 00:05:35 2020 +1000

    L10n updates for: fr
    From translation svn revision: 59759
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqué-Cazenave <corentin@progaccess.net>
    
    Stats:
    11      4       source/locale/fr/gestures.ini
    3       3       user_docs/fr/userGuide.t2t
     2 files changed, 14 insertions(+), 7 deletions(-)

commit 1b03387227158d2d4a89602c3ff46a10eda94792
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Thu Dec 10 10:21:02 2020 +1000

    Detect Humanware Brailliant BI 40X and 20X via both USB and Bluetooth (#11819)
    
    * Detect Humanware Brailliant BI 40X and 20X via both USB and Bluetooth
    
    * Update what's new.

commit d3ba21a3a8840c1b07fe9ece40ab6c940f0403e4
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Wed Dec 9 10:28:33 2020 +0800

    Fix typo in changes file

commit 2030dd6ac88d792c478144bf0ee116ffdc9756fd
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Wed Dec 9 03:25:45 2020 +0100

    Developer Guide: inline docstring and  `__doc__` attribute explanation (PR #9949)
    
    Fixes #9943
    
    Explain not to provide inline docstring when no `__doc__` attribute and using the legacy script construct (#9943)

commit de7fb885815c2593ae0bc0382ae2ab3d0737a543
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue Dec 8 13:41:34 2020 +0800

    Fix deadlock between nvWave stop and feed (PR #11886)
    
    Fixes #11591
    
    ## The background:
    On at least one user's system, a deadlock seems to occur while using NVDA with the oneCore synth. This results in a
    freeze and a stack dump by the watchdog.
    
    Stacks to note, from [log](https://github.com/nvaccess/nvda/issues/11591#issuecomment-714629177):
    
    Python stack for thread 3128 (Dummy-82):
      File "synthDrivers\oneCore.pyc", line 365, in _callback
      File "nvwave.pyc", line 326, in feed
      File "nvwave.pyc", line 341, in _feedUnbuffered_handleErrors
      File "nvwave.pyc", line 369, in _feedUnbuffered
      File "nvwave.pyc", line 386, in sync
      File "winKernel.pyc", line 225, in waitForSingleObject
    
    Python stack for thread 9300 (MainThread):
      File "nvda.pyw", line 215, in <module>
      File "core.pyc", line 550, in main
      File "wx\core.pyc", line 2134, in MainLoop
      File "gui\__init__.pyc", line 1050, in Notify
      File "core.pyc", line 520, in run
      File "queueHandler.pyc", line 88, in pumpAll
      File "queueHandler.pyc", line 55, in flushQueue
      File "speech\__init__.pyc", line 146, in cancelSpeech
      File "speech\manager.pyc", line 737, in cancel
      File "synthDrivers\oneCore.pyc", line 209, in cancel
      File "nvwave.pyc", line 473, in stop
      File "nvwave.pyc", line 435, in _idleUnbuffered
    
    Because I can't reproduce this, I'm having to reason about how the code got into this state. What seems to have happened
    is that 'feed' and 'stop' have been called at the same time from the synth thread and the main thread respectively.
    These have both progressed to sub-routines, 'sync' and '_idleUnbuffered' respectively. '_idleUnbuffered' is blocked
    waiting to acquire the 'self._lock', and 'sync' has acquired the 'self._lock' mutex and is blocked by
    'waitForSingleObject'.
    
    'feed' has no locks until it calls into '_feedUnbuffered', however 'stop' does acquire locks that '_feedUnbuffered'
    needs, then releases them and then calls to '_idleUnbuffered' which has contention with '_feedUnbuffered' again.  It
    seems to me that the only way to get into this situation is if 'stop' acquires the locks it needs first. It calls
    'waveOutReset', then when it releases the locks and before they are acquired by '_idleUnbuffered' they are instead
    acquired by '_feedUnbuffered'. This results in 'waveOutWrite' being called before progressing to 'sync' and waiting on
    'waitForSingleObject'
    
    It's still not entirely clear to me why this set of events causes a deadlock. My best guess is that on this particular
    system, the 'whdr' (Wave Out Header) which includes 'dwFlags' that should have the 'WHDR_DONE' bit set when the
    associated buffer has finished being played is not getting updated due to the call to reset. Thus the synth thread gets
    stuck in a loop calling 'waitForSingleObject' and checking '_prev_whdr'.
    
    ## This change:
    Because I'm not 100% sure of the cause of the problem, I have covered a few potentials:
    - 'waitForSingleObject' now has a timeout, it then will check if 'nvWave' has been stopped before waiting again.
    - When resetting the device, the event is explicitly signaled. The documentation for 'winm' isn't explicit about whether
     this is handled.
    - When feed is called, don't send data to the device if cancel has already been called.
    
    ## Relevant Info from Docs:
    [When opening 'winm' device, the event signal args]
    (https://docs.microsoft.com/en-us/windows/win32/api/mmeapi/nf-mmeapi-waveoutopen):
    > If fdwOpen contains the CALLBACK_EVENT flag, dwCallback is a handle to an event. The event is signaled whenever the
    > state of the waveform buffer changes. The application can use WaitForSingleObject or WaitForMultipleObjects to wait
    > for the event. When the event is signaled, you can get the current state of the waveform buffer by checking the
    > dwFlags member of the WAVEHDR structure. (See waveOutPrepareHeader.)
    
    [waveOutReset](https://docs.microsoft.com/en-us/windows/win32/api/mmeapi/nf-mmeapi-waveoutreset):
    > The waveOutReset function stops playback on the given waveform-audio output device and resets the current position to
    > zero. All pending playback buffers are marked as done (WHDR_DONE) and returned to the application.
    
    ## The future:
    The locking logic for 'nvWave' is complicated, however given plans to re write 'nvWave' with modern Windows API's I
    think we should hold off on doing more than we need to resolve this specific issue

commit c7da02510c3f86c98a787f19e1c4bd34a0d9068e
Author: André-Abush Clause <dev@andreabc.net>
Date:   Tue Dec 8 06:01:28 2020 +0100

    Update liblouis to 3.16.1 (#11888)
    
    * Update liblouis to 3.16.1
    
    * Review action: "Russian grade 1" -> "Russian literary braille"
    
    * Review action: add the Coptic 8 dot computer braille table
    
    * Update what's new
    
    Co-authored-by: Michael Curran <mick@nvaccess.org>

commit 694912e95ce827953b1c4c33c48b55bfd2c047b6
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue Dec 8 10:47:15 2020 +0800

    Start dev cycle for 2021.1 (PR #11913)
    
    Branch for release 2020.4 PR #11910

commit ad43362469629f68802dd9349bf59a91a5460ddb
Merge: f74a86633 c6932ba27
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue Dec 8 10:42:56 2020 +0800

    Update beta with changes for 2020.4 (Merge PR #11910)
    
    Branch for release 2020.4
    Merge from branchForRelease2020.4

commit 325be94d985a3cb77b2be215a6d8e9de47352948
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Tue Dec 8 02:02:05 2020 +0100

    Fix-up of #10973: Fallback to POSITION_FIRST when reporting formatting info at caret to report in MS Excel (#11914)
    
    * Fallback to POSITION_FIRST when reporting formatting info at caret to report in Excel cells
    
    * Update what's new
    
    Co-authored-by: Michael Curran <mick@nvaccess.org>

commit c6932ba2717bcf86aa82ddbb5f2007c20e8762a1
Author: Reef Turner <reef@nvaccess.org>
Date:   Mon Dec 7 15:28:03 2020 +0800

    Fix case error for NVDA acronym in changes file

commit 9c0b64998c8c5427fc9b2575d0cae43cd1a4d401
Author: Cyrille Bougot <cyrille.bougot2@laposte.net>
Date:   Mon Dec 7 08:17:34 2020 +0100

    MS Word: report the number of pts of line spacing when line spacing type is set to 'Exactly'. (#11900)

commit 3737e3ce2797ba0b63e7d3f50d6cd792a0895037
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Mon Dec 7 08:05:07 2020 +0100

    Fix: NVDA no longer fails to restart when running from sources and cwd is different to the sources dir (#11904)

commit f95f8905c6a04aab81944ce39303cf1f033b5537
Merge: f74a86633 f99644e9a
Author: Reef Turner <reef@nvaccess.org>
Date:   Mon Dec 7 14:10:00 2020 +0800

    Merge remote-tracking branch 'origin/master' into branchForRelease2020.4

commit f99644e9ac9d6910a584b5b2ea2c36be4fc89b5f
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Fri Dec 4 11:20:48 2020 +0800

    Fix frequent error sounds with Cancellable speech (PR #11887)
    
    Fix an issue introduced with #11865, which incorrectly used the return value of _checkForCancellations
    to indicate error/success, rather than utterance canceled (correctly) or no cancellations found.
    
    Instead, an exception is raised when the method can not complete, and the error is logged in this case.

commit f74a866339e558d35c0d7a4079fb4fa21aafa4f4
Merge: 3f1ee2386 9180d27b6
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Dec 4 00:06:29 2020 +1000

    Update translations.
    
    From translation svn revision: 59663

commit 9180d27b6cc303c10e93923b9a68a9e791e9ae20
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Dec 4 00:06:27 2020 +1000

    L10n updates for: zh_CN
    From translation svn revision: 59663
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    1872265132@qq.com
    
    Stats:
    3       2       source/locale/zh_CN/symbols.dic
     1 file changed, 3 insertions(+), 2 deletions(-)

commit b0f980aefa967e6fa4c5a0324d6e9f0710255ca6
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Dec 4 00:06:19 2020 +1000

    L10n updates for: ta
    From translation svn revision: 59663
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    23      7       user_docs/ta/userGuide.t2t
     1 file changed, 23 insertions(+), 7 deletions(-)

commit 401d8caaba3629e208fcc802fb333e18aeaafdf8
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Dec 4 00:06:01 2020 +1000

    L10n updates for: pl
    From translation svn revision: 59663
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Hubert Meyer <hubmeyer1989@gmail.com>
    Arkadiusz Swietnicki <nuno69a@gmail.com>
    
    Stats:
    55      0       user_docs/pl/changes.t2t
     1 file changed, 55 insertions(+)

commit a547e2770e928f121e780d70df002215d03df8b2
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Dec 4 00:05:59 2020 +1000

    L10n updates for: nl
    From translation svn revision: 59663
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    23      7       user_docs/nl/userGuide.t2t
     1 file changed, 23 insertions(+), 7 deletions(-)

commit b2e10698327032c228cf50242c74ae273f3e11b2
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Dec 4 00:05:33 2020 +1000

    L10n updates for: fr
    From translation svn revision: 59663
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqué-Cazenave <corentin@progaccess.net>
    
    Stats:
    3       1       source/locale/fr/gestures.ini
     1 file changed, 3 insertions(+), 1 deletion(-)

commit f0391fbd9adbdcc04f64aa4b9791b361555c08c4
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Tue Dec 1 23:26:35 2020 +0100

    No longer override isAlive on UIA WordBrowseModeDocument (#11885)
    
    * No longer override isAlive on WordBrowseModeDocument
    
    * Always log an error when we couldn't update a tree interceptor
    
    * api.setFocusObject: log the exception if there is an error updating a treeInterceptor.
    
    Co-authored-by: Michael Curran <mick@nvaccess.org>

commit 7b72c212d4ea489d7de679c80e470625eb676fea
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Tue Dec 1 02:44:11 2020 -0800

    Win10 Calc: results announcement in compact overlay and unit converter (PR #11883)
    
    Follow on from #11880.
    
    * Avoid unit conversion result repetition.
    
    If a user presses Escape several times while focused on either 'convert from' or 'converts into' fields in unit converter, NVDA will announce the field again after a number is entered. This was traced to result announcement flag that is checked from name change event handler. To avoid repetition, add UIA Automation Id's for these elements (Value1 and Value2, respectively) to a list of no result announcement Id's.
    
    * Remove unit conversion Automation Id's from name change event handler element check
    
    Now that unit converter element Automation Id's were added to no result anouncement list, there's no need to check for these in name change event handler.
    
    * Announce calculation results in compact overlay (always on top) mode.
    
    Always on top (compact overlay) mode uses a different UIA Automation Id to represent results. Therefore add this to a list of Id's to be checked when handling results script (Enter, Numpad Enter, Escape).

commit 47bc91ed87cb4e0fa5834bb9022569dd356b855f
Author: Ozancan Karataş <ozancankaratas96@outlook.com>
Date:   Tue Dec 1 05:08:44 2020 +0300

    Change “Focus Highlight” to “Visual Highlight” (PR #11878)

commit 874230a782415548979e7ab35cd8ce18036366b2
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Mon Nov 30 10:19:23 2020 +0100

    Re-introduce new live region announcement implementation for mshtml (PR #11875)
    
    This reverts (the reversion) commit 53cecfd7c3a3f40a798da71570764303ebe8f58c.
    
    * Set to an empty string instead of trying to construct a string from a nullptr

commit 559ce07860479804b545995bfd4f71c44439184c
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Mon Nov 30 00:36:55 2020 -0800

    Windows 10 Calculator: resolve expression entry repetitions (PR #9429)
    
    Fixes #9428.
    
    Calculator raises UIA notification event (live region change event in older releases and in some screens) to communication progress and results of calculations. However, this results in repetitions if typed character announcement is turned on. Thus, as part of this new app module, suppress repetitive announcements if possible.
    
    * Windows 10 Calculator: remove live region handler.
    
    In the old days of Calculator, live regions were used from various places, including calculator expressions, unit conversion and other places. Now that uIA notification event and some name change events will take care of this, remove live region change event support code (and also becasue NVDA itself will announce live regions if possible).
    
    * Calculator: updates to notification and name change event handling due to UI changes in 2019.
    
    * Calculator: gather a list of UIA automation ID's for objects that should not allow NVDA to repeatedly announce calculation results or expressions. Re #9428.
    
    With the advent of always on top i.e. compact overlay mode in Calculator, additional UIA automation ID's were added for calculation results and expressions in overlay mode. Because of line length concerns, the additional ID's, together with the existing ones, are now housed inside a list of known ID's causing NVDA to announce expressions repeatedly. Not only this makes it easy to add more ID's in the future (either through NVDA Core or add-ons), it improves readability for name change and notification event handler methods (and keeps the lines short).
    
    * Calculator: support always on top (compact overlay) mode.
    
    In August 2019, Calculator app (preview) added always on top mode. As the name suggests, this puts standard calculator on top of other windows. Because of this, UIA tree has been changed, so work with old and new tree structure.
    
    * Calculator: announce more notifications except display updated activity ID.
    
    Display updated activity ID should be ignored unless needed, as it causes repetitions when entering calculations while speak typed characters is on.

commit be581e89514e9249ae34c14c2b62e65b7c05e2ee
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Mon Nov 30 06:42:42 2020 +0100

    Move _nvdaControllerInternal_reportLiveRegion to the end of interface definitions to fix add-ons installs. (#11877)
    
    Fix for https://github.com/nvaccess/nvda/issues/11867

commit ba21333f951f453203f2a374b0e852f1cf68cddd
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Fri Nov 27 10:44:12 2020 +0100

    Suppress duplicate Visual Studio tooltips (PR #11841)
    
    Co-authored-by: Reef Turner <reef@nvaccess.org>

commit f0e82c7613768a81f299b9ccee6150577d6e83f8
Author: Cyrille Bougot <cyrille.bougot2@laposte.net>
Date:   Fri Nov 27 08:21:18 2020 +0100

    Fix script for Word interfering with Outlook (PR #11824)
    
    # Added an appModule for Winword to gather the code specific to MSWord.
    
    The code common to MS Word and other applications (such as
    MS Outlook) should not be stored in this module but in common
    object files such as NVDAObjects/window/winword.py
    
    For now this appModule contains only toggleChangeTracking script
    since this feature is available in Word only.
    
    Co-authored-by: Leonard de Ruijter <leonardder@users.noreply.github.com>

commit c2ae2535197de3bdf114ce93d6cf13e308b10564
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Fri Nov 27 15:04:17 2020 +0800

    Fix crash opening BrailleViewer (PR #11873)
    
    When 'Hover for cell routing' was unchecked, the brailleviewer would attempt
    to unbind a not yet bound event causing wx to crash.
    
    Keep track of the binding and only unbind if it has been already bound.
    fixes #11846

commit 3f1ee23868b18be9969333821fe125484515d719
Merge: b413305a7 e0bc6649c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Nov 27 00:06:32 2020 +1000

    Update translations.
    
    From translation svn revision: 59586

commit e0bc6649cdf8395be4a852abc4dcdb362d9d41b6
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Nov 27 00:06:31 2020 +1000

    L10n updates for: zh_TW
    From translation svn revision: 59586
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    haach111000@gmail.com
    
    Stats:
    4       4       source/locale/zh_TW/characterDescriptions.dic
     1 file changed, 4 insertions(+), 4 deletions(-)

commit 590d4ed760781e1b2d6160d3c8f3450b848036e5
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Nov 27 00:06:28 2020 +1000

    L10n updates for: zh_CN
    From translation svn revision: 59586
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    1872265132@qq.com
    
    Stats:
    3       3       user_docs/zh_CN/userGuide.t2t
     1 file changed, 3 insertions(+), 3 deletions(-)

commit c7372a51024f291661737654d008a5b419748c1f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Nov 27 00:06:26 2020 +1000

    L10n updates for: vi
    From translation svn revision: 59586
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>
    Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    1       0       source/locale/vi/symbols.dic
    55      0       user_docs/vi/changes.t2t
    21      6       user_docs/vi/userGuide.t2t
     3 files changed, 77 insertions(+), 6 deletions(-)

commit aa885b53a405bda1d050cb52588c09dd520167ce
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Nov 27 00:06:22 2020 +1000

    L10n updates for: tr
    From translation svn revision: 59586
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    1       0       source/locale/tr/symbols.dic
    57      0       user_docs/tr/changes.t2t
    21      5       user_docs/tr/userGuide.t2t
     3 files changed, 79 insertions(+), 5 deletions(-)

commit 36a4d8a5b340142091dc5c37b0554c67452848ce
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Nov 27 00:06:20 2020 +1000

    L10n updates for: ta
    From translation svn revision: 59586
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    1       0       source/locale/ta/symbols.dic
     1 file changed, 1 insertion(+)

commit e5d346463226aac698c1bbcf65c412a7c7fca9f5
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Nov 27 00:06:12 2020 +1000

    L10n updates for: ru
    From translation svn revision: 59586
    
    Authors:
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    
    Stats:
    2       1       source/locale/ru/symbols.dic
    23      8       user_docs/ru/userGuide.t2t
     2 files changed, 25 insertions(+), 9 deletions(-)

commit dead054dbfa1b2e656bb540ee41f8ffcbb5e0e9c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Nov 27 00:06:03 2020 +1000

    L10n updates for: pl
    From translation svn revision: 59586
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Hubert Meyer <hubmeyer1989@gmail.com>
    Arkadiusz Swietnicki <nuno69a@gmail.com>
    
    Stats:
    1       0       source/locale/pl/symbols.dic
     1 file changed, 1 insertion(+)

commit ac8c9bcb0d91d3a605a60034a3a561985980f0c2
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Nov 27 00:06:00 2020 +1000

    L10n updates for: nl
    From translation svn revision: 59586
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    55      0       user_docs/nl/changes.t2t
     1 file changed, 55 insertions(+)

commit d3ecfaff8101b8df4afd3700f1b699b48ac78698
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Nov 27 00:05:37 2020 +1000

    L10n updates for: gl
    From translation svn revision: 59586
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    Javier Curras <javier.curras@nvda.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       0       source/locale/gl/symbols.dic
    57      0       user_docs/gl/changes.t2t
    20      5       user_docs/gl/userGuide.t2t
     3 files changed, 78 insertions(+), 5 deletions(-)

commit 621028f8498b6ae8a7f0921f17a178cbff15a743
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Nov 27 00:05:34 2020 +1000

    L10n updates for: fr
    From translation svn revision: 59586
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqué-Cazenave <corentin@progaccess.net>
    
    Stats:
    20      5       user_docs/fr/userGuide.t2t
     1 file changed, 20 insertions(+), 5 deletions(-)

commit 0baab9d95b2b433e4f0df9bec97d3999531ba21e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Nov 27 00:05:32 2020 +1000

    L10n updates for: fi
    From translation svn revision: 59586
    
    Authors:
    Jani Kinnunen <janikinnunen340@gmail.com>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    1       0       source/locale/fi/symbols.dic
    72      17      user_docs/fi/changes.t2t
    32      17      user_docs/fi/userGuide.t2t
     3 files changed, 105 insertions(+), 34 deletions(-)

commit 4ec9866928d27aaf9701ee6fa234e582bd7082bb
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Nov 27 00:05:27 2020 +1000

    L10n updates for: es
    From translation svn revision: 59586
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       0       source/locale/es/symbols.dic
    57      0       user_docs/es/changes.t2t
    20      5       user_docs/es/userGuide.t2t
     3 files changed, 78 insertions(+), 5 deletions(-)

commit 465de982a26f4dccf8fa5d91d4a7bffc7ef902e9
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Nov 27 00:05:22 2020 +1000

    L10n updates for: de
    From translation svn revision: 59586
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    1       0       source/locale/de/symbols.dic
    57      0       user_docs/de/changes.t2t
    25      10      user_docs/de/userGuide.t2t
     3 files changed, 83 insertions(+), 10 deletions(-)

commit 5f06d769df40b6a0a1f0627fc590a2280ec1e8ab
Author: Ozancan Karataş <ozancankaratas96@outlook.com>
Date:   Thu Nov 26 13:13:21 2020 +0300

    Update and use official CLDR repository (PR #11817)
    
    
    Co-authored-by: Leonard de Ruijter <L.de.Ruijter@sevenp.nl>

commit 4704df62248032ed569c60c4052fb86c9ad58da0
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Thu Nov 26 16:24:27 2020 +1000

    handle aria-invalid="spelling,grammar" (#11787)
    
    * support invalid:spelling,grammar in IAccessible2 text attributes.
    
    * Add system test for ARIA invalid spelling and grammar
    
    * Fix linting issue
    
    * Add extra info to ariaInvalid spelling and grammar test noting that it is not yet standard ARIA.
    
    * Update what's new.

commit 82c68350a0657a46a9a58f5e13854411e35c9d41
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Thu Nov 26 13:10:23 2020 +0800

    Prevent infinite recursion for unspeakable chars (PR #11865)
    
    Fixes #11752
    When reading characters that do not have any description in NVDA, a 'no content'
    utterance can be produced. In this case the empty string is the last
    'command' in the sequence passed to 'ensureEndUtterance', resulting in
    the sequence not being given an indexCommand or an EndUtteranceCommand.
    The indexCommand is required for the cancellable speech processing, to
    be able to track which utterance a cancellableSpeechCommand belongs to.
    
    Noticed and fixed a similar issue for 'latestCancelledUtteranceIndex': zero is a might
    be a valid index. Only no index (None) should take this path.

commit 001c99bb60f0960bf98d0e5cc90273c8236bf133
Author: Cyrille Bougot <cyrille.bougot2@laposte.net>
Date:   Wed Nov 25 10:41:03 2020 +0100

    Disable labels with the controls they are associated with (PR #11812)
    
    When wx controls (combo-box, edit, etc.) have an associated labels, disable the associated label when the control is disabled.
    Fixes #11809
    Co-authored-by: Reef Turner <reef@nvaccess.org>

commit 15ab401a444617bd3ac763255cd1dabc7e843a80
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Sun Nov 22 23:38:08 2020 +0100

    Once again report when copying text in browse mode in MS Word. (#11848)
    
    Fix for https://github.com/nvaccess/nvda/issues/11839

commit 043ca83aac17af974f8ed9c4c5df705ddfe857cd
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Sun Nov 22 23:34:57 2020 +0100

    Fix NVDA may freeze when copying large amount of text (#11843) (#11852)

commit 53cecfd7c3a3f40a798da71570764303ebe8f58c
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Fri Nov 20 09:25:12 2020 +0100

    Revert live region changes to mshtml virtual buffer (PR #11838)

commit 949416f5d70cba14ec4ae500b3cc31dbb16931f1
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Fri Nov 20 08:46:11 2020 +0100

    Improve presentation of graphical view table in disk management (PR #10048)
    
    * UX improvements for diskMGMT Graphical View
    Co-authored-by: Reef Turner <reef@nvaccess.org>

commit b5e1286b2a5fd159e3d261bd46ad5985fd22a2da
Author: Simon Pieters <zcorpan@gmail.com>
Date:   Fri Nov 20 07:24:15 2020 +0100

    Experimentially add a system test for APG checkbox (PR #11827)
    
    
    Co-authored-by: Reef Turner <feerrenrut@users.noreply.github.com>

commit b413305a70db75c3591ad85698901e61649916a8
Merge: e62a39eee 376edfcf0
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Thu Nov 19 18:35:25 2020 +0800

    Merge pull request #11844 from nvaccess/master
    
    Merge alpha into beta

commit e62a39eee9cdc5960ea1fba100b68862a26ee71d
Merge: c18724951 391ee73f4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Thu Nov 19 13:12:08 2020 +1000

    Update translations.
    
    From translation svn revision: 59419

commit 391ee73f434c3c80ba4917b4af9ae7d034e9ff20
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Thu Nov 19 13:11:27 2020 +1000

    L10n updates for: it
    From translation svn revision: 59419
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    7       7       user_docs/it/userGuide.t2t
     1 file changed, 7 insertions(+), 7 deletions(-)

commit 376edfcf0bac26fb26af4615b3860b09a1bc0f69
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Wed Nov 18 14:12:45 2020 +0800

    Add braille viewer braille routing (PR #11804)
    
    Pressing buttons on the braille viewer window would not work, since this would change the OS focus. Routing would no longer have the intended effect.
    
    Instead a mechanism has been devised that allows the user to interact with the virtual braille cells without changing focus. The user must instead hover the mouse over a braille cell for a short time. Feedback is given via the background color of the cell. The cell background immediately changes to a new color (yellow) to indicate the timer has started, then transitions gradually to orange, then snaps to green when routing is activated.

commit 1ffb6bd3848498c354351f7686206afd62cc6fc3
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Wed Nov 18 05:35:05 2020 +0100

    Fix broken support for container AutoPropertyObject (PR #11835)
    
    Issue introduced with PR #8393

commit d261fe453ea760c12a67911b95ba34f0f8036e95
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Tue Nov 17 09:05:08 2020 +0100

    Remove unused imports (PR #11833)
    
    Imports introduced with PR #8818

commit 318c2151a0f02dcd583c04d851f5ee37938087c3
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Tue Nov 17 08:50:53 2020 +0100

    Uniformize all "Copied to clipboard" messages (PR #9843)
    
    Fixes #6757
    
    Co-authored-by: Reef Turner <reef@nvaccess.org>

commit aecff99a4c22b14e601ba8b5882aa494d2c84bf8
Author: Cyrille Bougot <cyrille.bougot2@laposte.net>
Date:   Tue Nov 17 03:37:15 2020 +0100

    Context help: support more controls and dialogs (PR #11743)
    
    * Context help:
    - Added missing helpId in some dialogs/panels
    - Fixed some helpId
    - Added calls to self.bindHelpEvent
    - Fixed parameters (anchor) of some calls to self.bindHelpEvent
    * Changed the behaviour with voice settings:
    - if the setting is a standard setting, go to the paragraph that describes this specific setting in User Guide
    - if the setting is not standard, i.e. specific to a third-party synth, go to speech settings in the User Guide
    * Rewrite rate boost paragraph as per review comments.
    
    Fixes #7757
    Follow-up of #11456
    
    No change log entry required.
    
    Co-authored-by: Reef Turner <reef@nvaccess.org>

commit ae4ea8f90420d1c00afa251f90abc2b59f35f826
Author: Derek Riemer <derek.riemer@colorado.edu>
Date:   Mon Nov 16 03:06:16 2020 -0700

    Refactor NVDAHelper32remote Live region handler (PR #9079)
    
    Updates to ARIA live regions are now suppressed when reporting of dynamic content changes is disabled.
    
    ### Summary of the issue:
    
    The same logic was used for sending external applications speech to core and to send live region messages to core.
    
    ### Description of the Fix
    
    NVDAControllerInternal_speakMessage used to be used to send live regions at NVDA, which made it impossible to differentiate them from messages sent from external applications through the controller client. This change separates the passage of live regions into another function, nvdaControllerInternal_reportLiveRegion(wchar_t* text, wchar_t* level); which is part of the NVDAControllerInternal interface instead of the NVDAController interface. This is because I don't see a reason for non NVDA specific DLL's to call into this. This function is then used in place of speakText in ia2LiveRegions.cpp.
    
    Fixes #9077,
    Unblocks #7756,
    Closes #7743
    
    Co-authored-by: Leonard de Ruijter <alderuijter@gmail.com>
    Co-authored-by: Michael Curran <mick@nvaccess.org>
    Co-authored-by: Reef Turner <reef@nvaccess.org>

commit 0312687ca2cb0e4bc04ab8da277ae39c49c220d0
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Nov 16 10:59:06 2020 +1000

    Update what's new.

commit 93bbd21b77e1596309a67a4e4fc291b9f3af7589
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Mon Nov 16 01:57:59 2020 +0100

    Add --copy-portable-config command line parameter to automatically copy the portable configuration with a silent installation (#9679)
    
    * gui.installerGui.doInstall, kwargs
    
    * Added command line parameter to copy the portable configuration when installing
    
    * Fix linting issues
    
    * Fix linting
    
    Co-authored-by: Leonard de Ruijter <leonard@babbage.com>

commit 6af30832403e9bcbd7915f4bf079375eeaf4d681
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Fri Nov 13 01:05:47 2020 +0100

    Work around pop over menu stealing focus in Ms Teams (#11822)
    
    * Work around pop over menu stealing focus in Ms Teams
    
    * Add type annotation
    
    * Update what's new
    
    Co-authored-by: Michael Curran <mick@nvaccess.org>

commit c187249515ecbaf8329cc6b01898e3b355806828
Merge: aafa98493 4f0aa422f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Nov 13 00:06:35 2020 +1000

    Update translations.
    
    From translation svn revision: 59398

commit 4f0aa422f4b19d9ed858f8bad2157598035f43aa
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Nov 13 00:06:24 2020 +1000

    L10n updates for: ta
    From translation svn revision: 59398
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    15      15      source/locale/ta/LC_MESSAGES/nvda.po
    39      39      user_docs/ta/userGuide.t2t
     2 files changed, 54 insertions(+), 54 deletions(-)

commit 0ea91849db3446b925a652a2db044f90ffffbbb9
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Nov 13 00:05:39 2020 +1000

    L10n updates for: gl
    From translation svn revision: 59398
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    Javier Curras <javier.curras@nvda.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    8       8       source/locale/gl/LC_MESSAGES/nvda.po
     1 file changed, 8 insertions(+), 8 deletions(-)

commit ae15d15c03b5c24f5ee9b3fe67b54e847bbd672c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Nov 13 00:05:29 2020 +1000

    L10n updates for: es
    From translation svn revision: 59398
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    5       5       source/locale/es/LC_MESSAGES/nvda.po
     1 file changed, 5 insertions(+), 5 deletions(-)

commit 617f865d05269efbbd7879462f0c168f1afc63e9
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Thu Nov 12 02:00:32 2020 +0100

    Fix up of 11738: Force UIA for BrokenCommctrl5Item controls, even though they don't support UIA natively (#11828)
    
    * Force UIA for BrokenCommctrl5Item controls, even though they don't support UIA natively
    
    * Review actions

commit 05217094cfedbc3f6ab5ff9233d6477d68c73220
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Wed Nov 11 14:02:01 2020 +0800

    Chrome system tests - Off by one error (PR #11826)

commit 18572e4323b1af6c9ad80eec19ca3b94e3aa4c0f
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Tue Nov 10 08:19:02 2020 +1000

    Ignore winEvents with an objectID > 0 for EXCEL7 windows, as these are generated by UI Automation and can freeze NVDA on some systems. (#11818)

commit 6db502af5bb5edc93c30f86d6535ef15686f553d
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Nov 10 08:09:10 2020 +1000

    Update what's new

commit 6668e223329acb9a34107180f63b6e89f55d5856
Author: Cyrille Bougot <cyrille.bougot2@laposte.net>
Date:   Mon Nov 9 07:24:42 2020 +0100

    Add a specific debug channel for frequent synthDriver log messages. (#11816)

commit cb82f504b64172e93ea5e004f43c94d44c452fe5
Author: Cyrille Bougot <cyrille.bougot2@laposte.net>
Date:   Fri Nov 6 02:21:11 2020 +0100

    Restore the ability to report Emphasis formatting (#11813)
    
    * Restore the ability to report Emphase formatting.
    
    * Update what's new.
    
    Co-authored-by: Michael Curran <mick@nvaccess.org>

commit aafa98493337e980bf9a1fff7c04e42068186f52
Merge: 211cbf90e e84f83b68
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Nov 6 00:06:27 2020 +1000

    Update translations.
    
    From translation svn revision: 59378

commit e84f83b68c6c23fcfdd25c5baa2117191885365a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Nov 6 00:06:26 2020 +1000

    L10n updates for: zh_TW
    From translation svn revision: 59378
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    1       2       user_docs/zh_TW/changes.t2t
     1 file changed, 1 insertion(+), 2 deletions(-)

commit 3fce5d5396ed7a0a8a02ad5c99cef310191a2923
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Nov 6 00:06:20 2020 +1000

    L10n updates for: uk
    From translation svn revision: 59378
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    3       3       source/locale/uk/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 3 deletions(-)

commit 4f6abd61472ce89b2849d37ced9fef96e2160b26
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Nov 6 00:06:16 2020 +1000

    L10n updates for: ta
    From translation svn revision: 59378
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    18      16      source/locale/ta/LC_MESSAGES/nvda.po
    39      39      user_docs/ta/userGuide.t2t
     2 files changed, 57 insertions(+), 55 deletions(-)

commit c78f8b706aa74a838a722a2e4d6c299f5b3c9a3e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Nov 6 00:05:53 2020 +1000

    L10n updates for: mn
    From translation svn revision: 59378
    
    Authors:
    Mongol NVDA-Translation <mongoliannvdatranslation@gmail.com>
    
    Stats:
    13      13      source/locale/mn/LC_MESSAGES/nvda.po
     1 file changed, 13 insertions(+), 13 deletions(-)

commit 822f5fa3ae0a0fbc70865093f5291247af252e65
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Nov 6 00:05:51 2020 +1000

    L10n updates for: mk
    From translation svn revision: 59378
    
    Authors:
    zvonimir stanecic <9a5dsz@gozaltech.org>
    Ertay Shashko <ertay@outlook.com>
    Aleksandar <glupav@gmail.com>
    Kiko Lazarev <kristijan.lazarev@gmail.com>
    
    Stats:
    95      95      user_docs/mk/userGuide.t2t
     1 file changed, 95 insertions(+), 95 deletions(-)

commit f77eedb5dc06b242577fd8d6205df94d8e97c025
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Nov 6 00:05:25 2020 +1000

    L10n updates for: es
    From translation svn revision: 59378
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    2       2       source/locale/es/LC_MESSAGES/nvda.po
     1 file changed, 2 insertions(+), 2 deletions(-)

commit 7e4d9fd71053effc943da6876f469159ba5919f6
Author: Cyrille Bougot <cyrille.bougot2@laposte.net>
Date:   Thu Nov 5 07:17:47 2020 +0100

    Script to toggle marked (highlighted) text reporting. (#11807)
    
    * Added a script to toggle marked (highlighted) text reporting.
    
    * Added an accelerator key to 'Marked (highlighted) text' checkbox in Document formatting settings panel.
    
    * Fixed code linting.
    
    * Fixed / shortened messages and comments.
    
    * Update what's new.
    
    Co-authored-by: Michael Curran <mick@nvaccess.org>

commit 211cbf90e8f71404954ed53715eaacda98608027
Merge: 990218c91 7e2366164
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 30 00:06:25 2020 +1000

    Update translations.
    
    From translation svn revision: 59340

commit 7e2366164d8cf75c7bb072da4d379754390acedc
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 30 00:06:19 2020 +1000

    L10n updates for: uk
    From translation svn revision: 59340
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    1       1       user_docs/uk/userGuide.t2t
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 7432ba80c5929be5e9dcb6879163875d749bc8f7
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 30 00:05:53 2020 +1000

    L10n updates for: mn
    From translation svn revision: 59340
    
    Authors:
    Mongol NVDA-Translation <mongoliannvdatranslation@gmail.com>
    
    Stats:
    5       5       source/locale/mn/LC_MESSAGES/nvda.po
     1 file changed, 5 insertions(+), 5 deletions(-)

commit 2d15fc9dfb98b126b55948513fefb2980c7ad5c2
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 30 00:05:50 2020 +1000

    L10n updates for: mk
    From translation svn revision: 59340
    
    Authors:
    zvonimir stanecic <9a5dsz@gozaltech.org>
    Ertay Shashko <ertay@outlook.com>
    Aleksandar <glupav@gmail.com>
    Kiko Lazarev <kristijan.lazarev@gmail.com>
    
    Stats:
    212     212     user_docs/mk/userGuide.t2t
     1 file changed, 212 insertions(+), 212 deletions(-)

commit 71c2c419b3ba595b29b6925ee1781f017d8174d6
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Wed Oct 28 23:03:06 2020 +0100

    Observe TEXT_ATTRIBUTE_CHANGED in vbuf (#11790)
    
    The virtual buffer (vbuf) previously did not observe
    IA2_EVENT_TEXT_ATTRIBUTE_CHANGED events. While use cases for this
    seem slim, we can't rule them out, and we don't believe observing this
    event will be a detriment.
    
    In addition this will provide a work-around for issues such as #11761
    until Chrome is updated to send IA2_EVENT_OBJECT_ATTRIBUTE_CHANGED.

commit efa387b3e053273cdc3e64221498e516ce42ac5e
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Wed Oct 28 22:26:20 2020 +0100

    System test interference (#11788)
    
    * Don't look at older speech when checking if chrome has opened.
    
    Since chrome may already be open (with the last test case),
    and the title is the first thing spoken by NVDA.
    
    Only look at the speech that occurs after the new test case is launched.
    
    * Try to close the chrome tab after the test.
    
    * Name the Robot Framework Server thread

commit e73c64588b389ecfcd5cf8752d61bd1bf741bcb0
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Wed Oct 28 22:17:14 2020 +0100

    Rename CODE_OF_CONDUCT extension to lower case (#11791)
    
    * Rename CODE_OF_CONDUCT.MD to CODE_OF_CONDUCT.md
    
    Apparently the extension needs to be lower-case for it to be recognized by GitHub
    
    * Update case of links to CODE_OF_CONDUCT.md
    
    Co-authored-by: Michael Curran <mick@nvaccess.org>

commit 2d7d2988000a19df09fb05489302165326671149
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Oct 27 10:02:21 2020 +1000

    Update what's new.

commit 1cc5cb1c3788de4aae8aac78b7de7c0eba7e4f87
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Tue Oct 27 01:01:03 2020 +0100

    Support opening the Elements List dialog in focus mode (#10453) (#10454)
    
    * Support opening the Elements List dialog in focus mode (#10453)
    
    * WIP
    
    * Elements List: Toggle passThrough only when needed
    
    https://github.com/nvaccess/nvda/pull/10454#issuecomment-549618885
    
    * Elements List: Avoid double announce of newly focused item

commit 990218c91c557095e37b15ec617b8644b4373f8e
Merge: 700401d3e 3d259c9e2
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 23 00:06:30 2020 +1000

    Update translations.
    
    From translation svn revision: 59244

commit 3d259c9e25e3456f04fab27a5a014587de44f9bf
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 23 00:06:09 2020 +1000

    L10n updates for: ro
    From translation svn revision: 59244
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <7ro2014@gmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    George Antonio Andrei <george.andrei2002@gmail.com>
    
    Stats:
    25      3       source/locale/ro/symbols.dic
     1 file changed, 25 insertions(+), 3 deletions(-)

commit e6f65800b24fd5a9eccd5124e9d6a97eec07e810
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 23 00:06:03 2020 +1000

    L10n updates for: pl
    From translation svn revision: 59244
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Hubert Meyer <hubmeyer1989@gmail.com>
    Arkadiusz Swietnicki <nuno69a@gmail.com>
    
    Stats:
    7       7       user_docs/pl/changes.t2t
     1 file changed, 7 insertions(+), 7 deletions(-)

commit 48e9ee78a8e1acae9e68cefeb219b083b2315aa6
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 23 00:05:56 2020 +1000

    L10n updates for: mn
    From translation svn revision: 59244
    
    Authors:
    Mongol NVDA-Translation <mongoliannvdatranslation@gmail.com>
    
    Stats:
    686     512     source/locale/mn/LC_MESSAGES/nvda.po
     1 file changed, 686 insertions(+), 512 deletions(-)

commit 42ce3724ee6dfbf1b2720d9a6f555a2f311ace0f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 23 00:05:54 2020 +1000

    L10n updates for: mk
    From translation svn revision: 59244
    
    Authors:
    zvonimir stanecic <9a5dsz@gozaltech.org>
    Ertay Shashko <ertay@outlook.com>
    Aleksandar <glupav@gmail.com>
    Kiko Lazarev <kristijan.lazarev@gmail.com>
    
    Stats:
    36      36      source/locale/mk/LC_MESSAGES/nvda.po
     1 file changed, 36 insertions(+), 36 deletions(-)

commit e7cf66a95a37f3d1f40ceb7cbc90b1728fa83441
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 23 00:05:30 2020 +1000

    L10n updates for: fa
    From translation svn revision: 59244
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    3       3       source/locale/fa/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 3 deletions(-)

commit 9b0f7f78d454b599d793cfa7518aebdb2c05638f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 23 00:05:18 2020 +1000

    L10n updates for: da
    From translation svn revision: 59244
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    2       2       user_docs/da/userGuide.t2t
     1 file changed, 2 insertions(+), 2 deletions(-)

commit 111a0f030cf7b441226586f29d047422b3f17cfd
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Thu Oct 22 08:54:07 2020 +1000

    languageHandler.getAvailableLanguages: use globalVars.appDir rather than depending on the current directory  (#11778)
    
    * languageHandler.getAvailableLanguages: use globalVars.appDir rather than relying on the current  working directory.
    
    * languageHandler: no need to filter out '.' prefixed directories in locales as we don't use subversion anymore.

commit cb156d2056649e1e7b4fb17b611e82e9341ac879
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Wed Oct 21 12:08:48 2020 +0200

    Fix system tests (PR #11776)
    
    * Fix locking issue.
    
    Creating a new lock for each critical section is a bug.
    Instead, use a reentrant lock, only _onNvdaSpeech modifies speech cache
    and it will be called from another thread (NVDA Main), all asserts will
    be called from the RobotRemoteServer thread.
    
    * Ensure speech has started before declaring it has finished.
    
    There was a race condition after completing an action to trigger speech
    and waiting for that speech to be completed that meant speech may not
    not have been started at all.
    
    This is fixed by allowing the start index of the speech to be declared.
    
    * Avoid start marker search if focus is already correct
    
    Sometimes focus lands on the document (and sometimes URL) when
    starting system tests with Chrome. If the focus is already in the document
    just continue with the test to save time.
    
    * Add example to run the only the chrome tests locally.
    
    * reenable treegrid test

commit b842b683afbd4caceb561e30a4e0e1f97497938b
Author: Cyrille Bougot <cyrille.bougot2@laposte.net>
Date:   Wed Oct 21 00:02:13 2020 +0200

    Fix for last script count when an unbound gesture is executed between two identical bound gestures (#11767)
    
    * Fixed last script count when an unbound gesture is executed between two identical bound gestures.
    
    * Fixed linting and slightly modify comment.
    
    * Address review comments.
    
    * Update what's new
    
    Co-authored-by: Michael Curran <mick@nvaccess.org>

commit de30c94abaf5b8a2217df09ace59bfabf0a746eb
Author: Cyrille Bougot <cyrille.bougot2@laposte.net>
Date:   Mon Oct 19 18:03:57 2020 +0200

    Search initated with NVDA+shift+F3 will seach backwards (PR #11771)
    
    The search reverse direction is now respected when pressing NVDA+shift+F3 if nothing else was searched before.

commit 26273124849593377eddaa1c4a30895f3fc7a4a4
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Fri Oct 16 14:03:14 2020 +0200

    Fix typo in userGuide (PR #11758)

commit 6ceb8ac075499f0039875b6533a9f384b9eb2b60
Author: Bill Dengler <codeofdusk@gmail.com>
Date:   Fri Oct 16 08:02:41 2020 -0400

    Fix _getTextLines for 21H1 UIA console (PR #11760)
    
    Fixes #11740

commit aead5ce8df0c52fbf4620222e331928a19964b7d
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Thu Oct 15 20:50:37 2020 +0200

    Disable tree-grid system test (PR #11765)

commit 700401d3ebba31b420509bd424fe972e02418218
Merge: 9483e3091 37bcfce12
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 16 00:06:39 2020 +1000

    Update translations.
    
    From translation svn revision: 59192

commit 37bcfce12cc93e9e2421a3c3eec738eac53ca200
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 16 00:06:36 2020 +1000

    L10n updates for: zh_CN
    From translation svn revision: 59192
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    1872265132@qq.com
    
    Stats:
    2       2       source/locale/zh_CN/LC_MESSAGES/nvda.po
    2       0       user_docs/zh_CN/changes.t2t
    5       6       user_docs/zh_CN/userGuide.t2t
     3 files changed, 9 insertions(+), 8 deletions(-)

commit e3ee6f1cb59af9eccc16a72e222d4ef1d0f9b69f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 16 00:05:58 2020 +1000

    L10n updates for: mk
    From translation svn revision: 59192
    
    Authors:
    zvonimir stanecic <9a5dsz@gozaltech.org>
    Ertay Shashko <ertay@outlook.com>
    Aleksandar <glupav@gmail.com>
    Kiko Lazarev <kristijan.lazarev@gmail.com>
    
    Stats:
    465     425     source/locale/mk/LC_MESSAGES/nvda.po
     1 file changed, 465 insertions(+), 425 deletions(-)

commit 9179ee9d17cfb4c6eb21d257e1ee9cbe28eb72e4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 16 00:05:49 2020 +1000

    L10n updates for: it
    From translation svn revision: 59192
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    1       1       user_docs/it/changes.t2t
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 89fa1a34ad1836de0126ed00179e779deb84f190
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 16 00:05:45 2020 +1000

    L10n updates for: hu
    From translation svn revision: 59192
    
    Authors:
    Aron OcsvAri <oaron@nvda.hu>
    
    Stats:
    3       12      source/locale/hu/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 12 deletions(-)

commit 98d7edc5d4820e550d7ae9114916c7ce4a21c604
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 16 00:05:37 2020 +1000

    L10n updates for: fr
    From translation svn revision: 59192
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess.net>
    
    Stats:
    1       1       source/locale/fr/LC_MESSAGES/nvda.po
    10      11      source/locale/fr/symbols.dic
     2 files changed, 11 insertions(+), 12 deletions(-)

commit 4840e5fb8706d9127b8344c33ad0ae5a7e966575
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Oct 14 08:11:38 2020 +1000

    Treat ARIA treegrids as tables in browse mode (#11699)
    
    * Chrome/Gecko: Render all content of ARIA treegrids in browse mode as a table.
    
    * Gecko_ia2 bfubBackend: ensure that ARIA treegrids get a role of table as soon as possible, so that  it presents exactly like a table in brwose mode and quick nav to the table also works.
    
    * Fix linting issue
    
    * speech.getControlFieldSpeech: treeview items which are not normally spoken at all, should at least have expanded / collapsed / level announced.
    
    * Gecko vbufBackend: split fetching of IAccessible2 attributes into its own function.
    
    * Gecko vbufBackend: clarify comment
    
    * Gecko vbufBackend: split checking for xml roles into its own function.
    
    * Gecko vbufBackend: populateMapWithIA2AttributesFromPacc is now createMapOfIA2AttributesFromPacc, and returns a map.
    
    * Added system test for ARIA treegrid in browse mode.
    
    * Fix linting issues
    
    * system test for ARIA treegrid: use the actual html file from the w3c ARIA practices repository, rather than a local copy, as it is very likely we will want to use more of these test cases in future.
    
    * System tests: fix get_speech_at_index_until_now so that each line (sequence) is stripped of whitespace at its beginning and end. Previously whitespace was only stripped from the ends of the entire multiline string.
    
    * Fix linting issues
    
    * ARIA treegrid system test: focus a link in the iframe before moving to the treegrid so as to not have to deal with a possible focus event on the iframe document when switching to focus mode in the treegrid later.
    
    * system tests: _chrome.getSpeechAfterKey: wait for any new speech to finish after sending a key.
    
    * Update what's new.

commit 3abcc5174559bf05ba0f4b303f598f5604b2054a
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Tue Oct 13 18:44:07 2020 +0200

    Quick nav: tab headers as form fields (PR #10438)
    
    Fixes #10432

commit 8e17d44bf82c9321b0e316626f16caae7a9d4cfe
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Tue Oct 13 01:18:21 2020 +0200

    Fix access to content of 64-bit syslistview32 controls (#11745)
    
    * Fix access to content of 64-bit syslistview32 controls
    
    * Fix mistake and use constant
    
    * Flake8 fixes
    
    * Update what's new.
    
    Co-authored-by: Michael Curran <mick@nvaccess.org>

commit e274931c475d4e9faaced85b4bd0b80599e30a84
Author: Bill Dengler <codeofdusk@gmail.com>
Date:   Mon Oct 12 10:40:22 2020 -0400

    UIA with conhost / openconsole on Win 21H1 comError (PR #11039)
    
    Downgrade E_FAIL to debugWarning when comparing selection changes.

commit 7f9a12a22306c08462923fe99bed391a60ad080b
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Mon Oct 12 07:42:13 2020 +0200

    Respect aria live politeness for UIA objects (#11596)
    
    * Respect aria live politeness for UIA and Ia2Web objects
    
    * Implementation for MSHTML
    
    * Simpler logic to get politeness enum value
    
    * Review action
    
    * Update what's new
    
    Co-authored-by: Michael Curran <mick@nvaccess.org>

commit fe6a96b2646d7303da5a8f4ecc7919770cf59087
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Mon Oct 12 14:49:03 2020 +1100

    Support  the new Microsoft Quick and Pinyin input methods (#11562)
    
    * Fully support the UIAutomation-based IME Candidate UI, used for Chinese Microsoft Quick input method.
    
    * UIA-based IME candidates: delay reading of entire pages slightly to avoid being interupted by duplicate selection events.
    
    * Fix linting issues.
    
    * Support Associated phrases popup for Microsoft Quick Input.
    
    * Also support Microsoft New Pinyin input method
    
    Co-authored-by: Larry Wang <41977369+larry801@users.noreply.github.com>
    
    * Update what's new.
    
    * Remove debugging print statements
    
    Co-authored-by: Larry Wang <41977369+larry801@users.noreply.github.com>

commit ac31a795d01c4d57b43d3c6f53398a5a824ec6f7
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Fri Oct 9 07:40:44 2020 +1100

    Don't ever correct focus back to a UIA element that is not native or is from a window we have marked as bad UIA (#11738)
    
    * UIA NVDAObject's kwargsFromSuper: when fetching a UIA element for a relation of 'focus' ensure that the UIA element we get is usable (native and not a bad window etc). If it is not, return False so that other APIs can have a go instead.
    
    * remove accidental debugging code.
    
    * remove unneeded import
    
    * Update what's new

commit 3426905e49ca13183943b2f39b7134574f84480e
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Thu Oct 8 16:59:22 2020 +0200

    Fix nvda find title cancellation (PR #11632)
    
    Essentially this came down to a mismatch of the timing for when focus ancestors are set (in api.setFocusObject() called in doPreGainFocus) and when the lastQueuedFocusObject is set (in _trackFocusObject called via queueEvent). If the check for "cancelled" happened after a new focus event had been queued, but before that event was executed then the dialog object was no longer the lastQueuedFocusObject, but was not yet added to the focus ancestors.
    To resolve this mismatch, api.getFocusObject() is used to compare the object to NVDA's concept of the current focus, this is updated at the same time as focus ancestors.
    The state with inline functions was becoming confusing and hard to read, it has been replaced with a class.

commit 9483e3091e22c76a7c3b84d83f43649edfa49133
Merge: 616469fa5 2aeb250ec
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 9 00:06:48 2020 +1000

    Update translations.
    
    From translation svn revision: 59141

commit 2aeb250ecd9b31b1cb5d3197002374a8b323e9d7
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 9 00:06:44 2020 +1000

    L10n updates for: zh_CN
    From translation svn revision: 59141
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    1872265132@qq.com
    
    Stats:
    7       6       source/locale/zh_CN/LC_MESSAGES/nvda.po
    75      69      source/locale/zh_CN/symbols.dic
    3       3       user_docs/zh_CN/changes.t2t
    89      35      user_docs/zh_CN/userGuide.t2t
     4 files changed, 174 insertions(+), 113 deletions(-)

commit c1bcebe038b0fcbe24f7045b4fa8fff50ba533a8
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 9 00:06:19 2020 +1000

    L10n updates for: pt_BR
    From translation svn revision: 59141
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    70      2       user_docs/pt_BR/changes.t2t
     1 file changed, 70 insertions(+), 2 deletions(-)

commit 5f0ad52f9866163e28b3f35ddd633cea7cc06b97
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 9 00:06:04 2020 +1000

    L10n updates for: ko
    From translation svn revision: 59141
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    1       0       user_docs/ko/userGuide.t2t
     1 file changed, 1 insertion(+)

commit 58562ce949705c352646ca0e010cfa275869cf72
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 9 00:05:54 2020 +1000

    L10n updates for: is
    From translation svn revision: 59141
    
    Authors:
    Birkir R. Gunnarsson <birkir.gunnarsson@gmail.com>
    Eythor Thrastarsson <eythor364@gmail.com>
    Hlynur Hreinsson <hm.hreinsson@gmail.com>
    
    Stats:
    2780    1426    user_docs/is/userGuide.t2t
     1 file changed, 2780 insertions(+), 1426 deletions(-)

commit 0b34024815d5704ab6f9e9e6b89e6d238d9c8877
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 9 00:05:44 2020 +1000

    L10n updates for: fr
    From translation svn revision: 59141
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess.net>
    
    Stats:
    5       6       source/locale/fr/LC_MESSAGES/nvda.po
    1       1       user_docs/fr/userGuide.t2t
     2 files changed, 6 insertions(+), 7 deletions(-)

commit 9f0468f5ba53519d47dfc1567ff12abb385ae117
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 9 00:05:34 2020 +1000

    L10n updates for: es
    From translation svn revision: 59141
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    4       4       source/locale/es/LC_MESSAGES/nvda.po
     1 file changed, 4 insertions(+), 4 deletions(-)

commit f100987eea4894b3851cfd9b3dcd9188978835c4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 9 00:05:24 2020 +1000

    L10n updates for: de_CH
    From translation svn revision: 59141
    
    Authors:
    Robert Hänggi <aarjay.robert@gmail.com>
    
    Stats:
    1747    1626    source/locale/de_CH/LC_MESSAGES/nvda.po
    110     43      source/locale/de_CH/symbols.dic
    2998    2370    user_docs/de_CH/changes.t2t
    1778    1239    user_docs/de_CH/userGuide.t2t
     4 files changed, 6633 insertions(+), 5278 deletions(-)

commit cd4eb7f70b073ad47257953c374b45fa64ef1cff
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 9 00:05:05 2020 +1000

    L10n updates for: am
    From translation svn revision: 59141
    
    Authors:
    KETEMA ZEREGAW <kzeregaw@msn.com>
    Dr. Tamru E. Belay <g.braille@sympatico.ca>
    
    Stats:
    281     97      source/locale/am/LC_MESSAGES/nvda.po
     1 file changed, 281 insertions(+), 97 deletions(-)

commit 7df2560a36ae423e515e565c010fce3e5400551d
Merge: dc9a65412 616469fa5
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Wed Oct 7 19:11:27 2020 +0200

    Merge Beta into Master
    
    Merge pull request #11733 from nvaccess/beta

commit dc9a654120ea6e7fc935028d40e6797fed83ee09
Author: Dawid Pieper <dawidpieper@o2.pl>
Date:   Tue Oct 6 17:37:09 2020 +0200

    UX: braille message timeout (PR #11602)
    
    Improvements to the UX of the "braille message timeout" and "Show messages indefinitely" options.

commit 616469fa57cf2eb0059192d3eb0907e8f44f5858
Merge: 0d7d9a180 844521d05
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Oct 7 00:12:11 2020 +1000

    Update translations.
    
    From translation svn revision: 59080

commit 844521d056188b55d51818837918dfa2b55cb241
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Oct 7 00:12:09 2020 +1000

    L10n updates for: zh_TW
    From translation svn revision: 59080
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    85      84      source/locale/zh_TW/characterDescriptions.dic
    81      5       user_docs/zh_TW/changes.t2t
    1       0       user_docs/zh_TW/userGuide.t2t
     3 files changed, 167 insertions(+), 89 deletions(-)

commit adc392c409deaa5776ade22124894f5624bbfb2f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Oct 7 00:12:04 2020 +1000

    L10n updates for: zh_HK
    From translation svn revision: 59080
    
    Authors:
    Eric Yip <ericycy@gmail.com>
    
    Stats:
    275     99      source/locale/zh_HK/LC_MESSAGES/nvda.po
     1 file changed, 275 insertions(+), 99 deletions(-)

commit 4deb6b382d4dd7b15beb2577e737ba7ee26e086c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Oct 7 00:12:03 2020 +1000

    L10n updates for: zh_CN
    From translation svn revision: 59080
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    1872265132@qq.com
    
    Stats:
    4       3       source/locale/zh_CN/symbols.dic
    65      0       user_docs/zh_CN/changes.t2t
    109     59      user_docs/zh_CN/userGuide.t2t
     3 files changed, 178 insertions(+), 62 deletions(-)

commit ea837860d6e4fd49d8a459e9f87eee246ad1b54f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Oct 7 00:12:01 2020 +1000

    L10n updates for: vi
    From translation svn revision: 59080
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    1       1       user_docs/vi/changes.t2t
    1       0       user_docs/vi/userGuide.t2t
     2 files changed, 2 insertions(+), 1 deletion(-)

commit 2270302563035e9cd16bbb28d08abdd57d7517ca
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Oct 7 00:11:59 2020 +1000

    L10n updates for: uk
    From translation svn revision: 59080
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    1       0       user_docs/uk/userGuide.t2t
     1 file changed, 1 insertion(+)

commit 6cff98557e3cc42289b87e9abf6b2cfde2fc8def
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Oct 7 00:11:57 2020 +1000

    L10n updates for: tr
    From translation svn revision: 59080
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    1       1       user_docs/tr/changes.t2t
    1       0       user_docs/tr/userGuide.t2t
     2 files changed, 2 insertions(+), 1 deletion(-)

commit 74df2e8704390dbdf1d9f7f9a1dbdc0f9649d99f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Oct 7 00:11:55 2020 +1000

    L10n updates for: ta
    From translation svn revision: 59080
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    1       0       user_docs/ta/userGuide.t2t
     1 file changed, 1 insertion(+)

commit c5f154efd50e991feff38c98d2b44c6b72bccc54
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Oct 7 00:11:53 2020 +1000

    L10n updates for: sv
    From translation svn revision: 59080
    
    Authors:
    Daniel Johansson <daniel.johansson@coeptus.se>
    Niklas Johansson <sleeping.pillow@gmail.com>
    Karl-Otto Rosenqvist <Karl-otto@mawingu.se>
    
    Stats:
    300     112     source/locale/sv/LC_MESSAGES/nvda.po
     1 file changed, 300 insertions(+), 112 deletions(-)

commit df602521e0fc1a5bef6c9b9d47368430cf157cfe
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Oct 7 00:11:51 2020 +1000

    L10n updates for: sr
    From translation svn revision: 59080
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    2       2       source/locale/sr/LC_MESSAGES/nvda.po
    3       0       user_docs/sr/changes.t2t
    1       0       user_docs/sr/userGuide.t2t
     3 files changed, 6 insertions(+), 2 deletions(-)

commit 550995a52e81ffa3730bc0714886fb6fb1c6f686
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Oct 7 00:11:48 2020 +1000

    L10n updates for: sk
    From translation svn revision: 59080
    
    Authors:
    Ondrej Rosik <ondrej.rosik@gmail.com>
    Peter Vagner <peter.v@datagate.sk>
    Jan Kulik <jan.kulik.szsle@outlook.sk>
    
    Stats:
    284     101     source/locale/sk/LC_MESSAGES/nvda.po
    56      0       user_docs/sk/changes.t2t
    70      32      user_docs/sk/userGuide.t2t
     3 files changed, 410 insertions(+), 133 deletions(-)

commit 807bd74aadc43f908e653a039245f4de5fdb3f36
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Oct 7 00:11:46 2020 +1000

    L10n updates for: ru
    From translation svn revision: 59080
    
    Authors:
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    
    Stats:
    47      8       user_docs/ru/changes.t2t
    51      50      user_docs/ru/userGuide.t2t
     2 files changed, 98 insertions(+), 58 deletions(-)

commit 292ade877248b6e6dad3d2d4073aab4b86f611f6
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Oct 7 00:11:42 2020 +1000

    L10n updates for: ro
    From translation svn revision: 59080
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <7ro2014@gmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    George Antonio Andrei <george.andrei2002@gmail.com>
    
    Stats:
    4       4       source/locale/ro/LC_MESSAGES/nvda.po
    4       1       user_docs/ro/changes.t2t
     2 files changed, 8 insertions(+), 5 deletions(-)

commit da2a7d4c5adf44f1efae04ee536a2357a8230742
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Oct 7 00:11:40 2020 +1000

    L10n updates for: pt_PT
    From translation svn revision: 59080
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    1       2       user_docs/pt_PT/changes.t2t
    1       0       user_docs/pt_PT/userGuide.t2t
     2 files changed, 2 insertions(+), 2 deletions(-)

commit e2543ca3dc8c6d4d3dbf0dd4454aaa62cc8e1ca5
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Oct 7 00:11:36 2020 +1000

    L10n updates for: pl
    From translation svn revision: 59080
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Hubert Meyer <hubmeyer1989@gmail.com>
    Arkadiusz Swietnicki <nuno69a@gmail.com>
    
    Stats:
    1       0       user_docs/pl/changes.t2t
    1       0       user_docs/pl/userGuide.t2t
     2 files changed, 2 insertions(+)

commit 3edcd705b5ec15d3e36d8fdbf0bfa2c81a206e96
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Oct 7 00:11:34 2020 +1000

    L10n updates for: nl
    From translation svn revision: 59080
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    4       4       user_docs/nl/changes.t2t
    1       0       user_docs/nl/userGuide.t2t
     2 files changed, 5 insertions(+), 4 deletions(-)

commit c8433354ab6bc295734affec1096243ec363c971
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Oct 7 00:11:27 2020 +1000

    L10n updates for: mk
    From translation svn revision: 59080
    
    Authors:
    zvonimir stanecic <9a5dsz@gozaltech.org>
    Ertay Shashko <ertay@outlook.com>
    Aleksandar <glupav@gmail.com>
    Kiko Lazarev <kristijan.lazarev@gmail.com>
    
    Stats:
    77      16      source/locale/mk/symbols.dic
    2619    1961    user_docs/mk/userGuide.t2t
     2 files changed, 2696 insertions(+), 1977 deletions(-)

commit 87ec7481b6fd4ea53ca5ab6b1aadd748d376378f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Oct 7 00:11:24 2020 +1000

    L10n updates for: ko
    From translation svn revision: 59080
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    4       7       source/locale/ko/LC_MESSAGES/nvda.po
    16      19      user_docs/ko/changes.t2t
     2 files changed, 20 insertions(+), 26 deletions(-)

commit 08f9adda3e41d27309da69d2e6aca74c76673df6
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Oct 7 00:11:21 2020 +1000

    L10n updates for: ja
    From translation svn revision: 59080
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    146     78      user_docs/ja/changes.t2t
     1 file changed, 146 insertions(+), 78 deletions(-)

commit 0f73e8bbc56493c69cd751dc8b81700e9988db4a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Oct 7 00:11:18 2020 +1000

    L10n updates for: it
    From translation svn revision: 59080
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    12      8       source/locale/it/LC_MESSAGES/nvda.po
    70      31      user_docs/it/userGuide.t2t
     2 files changed, 82 insertions(+), 39 deletions(-)

commit 8409751a2d439ebab5fc097be1ee71ec27df7c3a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Oct 7 00:11:14 2020 +1000

    L10n updates for: hu
    From translation svn revision: 59080
    
    Authors:
    Aron OcsvAri <oaron@nvda.hu>
    
    Stats:
    314     116     source/locale/hu/LC_MESSAGES/nvda.po
    53      1       user_docs/hu/changes.t2t
     2 files changed, 367 insertions(+), 117 deletions(-)

commit 7c64dc12b6dbc70b56692dcd6ccb3650574e5c6e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Oct 7 00:11:12 2020 +1000

    L10n updates for: hr
    From translation svn revision: 59080
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Milo Ivir <mivir@milotype.de>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    3       3       user_docs/hr/changes.t2t
    1       0       user_docs/hr/userGuide.t2t
     2 files changed, 4 insertions(+), 3 deletions(-)

commit d65277751fe7ccfccd810498d7235832fcf33c61
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Oct 7 00:11:10 2020 +1000

    L10n updates for: he
    From translation svn revision: 59080
    
    Authors:
    Shmuel Naaman <shmuel_naaman@yahoo.com>
    Afik Sofir <afik.sofer@gmail.com>
    
    Stats:
    291     110     source/locale/he/LC_MESSAGES/nvda.po
     1 file changed, 291 insertions(+), 110 deletions(-)

commit 3bb5542dbc93b0cb6c0a402064929a00dee4af2d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Oct 7 00:11:08 2020 +1000

    L10n updates for: gl
    From translation svn revision: 59080
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    Javier Curras <javier.curras@nvda.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    2       2       user_docs/gl/changes.t2t
    1       0       user_docs/gl/userGuide.t2t
     2 files changed, 3 insertions(+), 2 deletions(-)

commit 6dfbd89319169f3743c0aa796adb626c7f037bdd
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Oct 7 00:11:06 2020 +1000

    L10n updates for: fr
    From translation svn revision: 59080
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess.net>
    
    Stats:
    13      13      source/locale/fr/LC_MESSAGES/nvda.po
    3       0       user_docs/fr/changes.t2t
    33      32      user_docs/fr/userGuide.t2t
     3 files changed, 49 insertions(+), 45 deletions(-)

commit 5c63e3a8f55a3403565abe6bcde52522d2987276
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Oct 7 00:11:03 2020 +1000

    L10n updates for: fi
    From translation svn revision: 59080
    
    Authors:
    Jani Kinnunen <janikinnunen340@gmail.com>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    8       8       source/locale/fi/LC_MESSAGES/nvda.po
    6       6       user_docs/fi/changes.t2t
    3       2       user_docs/fi/userGuide.t2t
     3 files changed, 17 insertions(+), 16 deletions(-)

commit 0eb51ef942e8d85da2427c3bf03c1dd14dcc38c4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Oct 7 00:11:00 2020 +1000

    L10n updates for: fa
    From translation svn revision: 59080
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    327     142     source/locale/fa/LC_MESSAGES/nvda.po
    61      5       user_docs/fa/changes.t2t
    71      33      user_docs/fa/userGuide.t2t
     3 files changed, 459 insertions(+), 180 deletions(-)

commit 6c0ba1b4cf06be57006d1c10824cb28ee42cd768
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Oct 7 00:10:57 2020 +1000

    L10n updates for: es
    From translation svn revision: 59080
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    5       4       user_docs/es/changes.t2t
    1       0       user_docs/es/userGuide.t2t
     2 files changed, 6 insertions(+), 4 deletions(-)

commit fc829fd610e217823ed56766c437703a6206ba87
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Oct 7 00:10:53 2020 +1000

    L10n updates for: el
    From translation svn revision: 59080
    
    Authors:
    Irene Nakas <irnakas@gmail.com>
    Nikos Demetriou <nikosdemetriou@googlemail.com>
    access@e-rhetor.com
    
    Stats:
    295     101     source/locale/el/LC_MESSAGES/nvda.po
     1 file changed, 295 insertions(+), 101 deletions(-)

commit 29c7816398915acb0094bf5a7b92538d91ba3922
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Oct 7 00:10:51 2020 +1000

    L10n updates for: de
    From translation svn revision: 59080
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    4       4       source/locale/de/LC_MESSAGES/nvda.po
    1       1       user_docs/de/changes.t2t
    1       0       user_docs/de/userGuide.t2t
     3 files changed, 6 insertions(+), 5 deletions(-)

commit 8be6fad30f8c2ecff75eec1929664d81ffa890d5
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Oct 7 00:10:47 2020 +1000

    L10n updates for: da
    From translation svn revision: 59080
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    3       4       source/locale/da/LC_MESSAGES/nvda.po
    2       3       user_docs/da/changes.t2t
    2       1       user_docs/da/userGuide.t2t
     3 files changed, 7 insertions(+), 8 deletions(-)

commit 8c37338b733c52fc2819a20b9d68af2a9e916afd
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Oct 7 00:10:42 2020 +1000

    L10n updates for: bg
    From translation svn revision: 59080
    
    Authors:
    Zahari Yurukov <zahari.yurukov@gmail.com>
    Kostadin Kolev <k_kolev1985@mail.bg>
    
    Stats:
    304     112     source/locale/bg/LC_MESSAGES/nvda.po
    69      1       user_docs/bg/changes.t2t
    68      30      user_docs/bg/userGuide.t2t
     3 files changed, 441 insertions(+), 143 deletions(-)

commit 4fb9921b34c65cebf2a8d8ee2abd478d60ef3437
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Oct 7 00:10:38 2020 +1000

    L10n updates for: ar
    From translation svn revision: 59080
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Omar Alojaimi <amrahmad1995@gmail.com>
    
    Stats:
    10      9       source/locale/ar/LC_MESSAGES/nvda.po
    6       2       user_docs/ar/changes.t2t
    10      9       user_docs/ar/userGuide.t2t
     3 files changed, 26 insertions(+), 20 deletions(-)

commit 5c2acaa0b0e3cc8e7a65bb56b80b464a6cd520d4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Oct 7 00:10:34 2020 +1000

    L10n updates for: an
    From translation svn revision: 59080
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    68      0       user_docs/an/changes.t2t
    103     65      user_docs/an/userGuide.t2t
     2 files changed, 171 insertions(+), 65 deletions(-)

commit 1c2598e0bf25b096b0afb5a7ff3291e57d67c632
Author: Cyrille Bougot <cyrille.bougot2@laposte.net>
Date:   Mon Oct 5 11:28:05 2020 +0200

    Fix messages when context help is not available (PR #11711)
    
    Fix-up of #11456: Fix for messages when context help is not available

commit 0d7d9a1807c9a2f1f43619360db8be24a57a03e8
Author: Cyrille Bougot <cyrille.bougot2@laposte.net>
Date:   Fri Oct 2 17:24:36 2020 +0200

    Fixed t2t formatting issue in User guide (PR #11719)
    
    Missing final dash (or double newline) causes heading not to be recognized, leaving "====" in the HTML.

commit c61eb42d9138aa1a61c271d29bf823335656d207
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Fri Oct 2 11:15:56 2020 +0200

    Azure Data Studio performance improvement (PR #11715)
    
    Workaround for Azure Data Studio
    Data studio also has an insiders versions

commit 780f04db94df4f7f9b360eb32526df480a1104a3
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Fri Oct 2 01:36:36 2020 +0200

    Remap F3 key for HIMS displays to avoi  conflicts with number 6 in computer braille tables (#11710)
    
    * Remap F3 key for HIMS displays to avoi  conflicts with number 6 in computer braille tables
    
    * Update what's new
    
    Co-authored-by: Michael Curran <mick@nvaccess.org>

commit 974cd863feb8c01e637a9fdd0b00db6216865879
Merge: 74902265f d8e709e1c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 2 00:06:31 2020 +1000

    Update translations.
    
    From translation svn revision: 58779

commit d8e709e1cf4e1642c9383769275d8bae17d59114
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 2 00:06:30 2020 +1000

    L10n updates for: zh_TW
    From translation svn revision: 58779
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    5       5       source/locale/zh_TW/LC_MESSAGES/nvda.po
     1 file changed, 5 insertions(+), 5 deletions(-)

commit 376bcf82ba91d2604531756533b1a4d053ffd0f5
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 2 00:06:25 2020 +1000

    L10n updates for: vi
    From translation svn revision: 58779
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    4       1       user_docs/vi/changes.t2t
     1 file changed, 4 insertions(+), 1 deletion(-)

commit 07f9fd9303ecc308a7dcc3534d375d42b9a29e82
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 2 00:06:23 2020 +1000

    L10n updates for: uk
    From translation svn revision: 58779
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    61      90      source/locale/uk/LC_MESSAGES/nvda.po
     1 file changed, 61 insertions(+), 90 deletions(-)

commit 67e090e854f43fa03c55008d2ff0df6c5b15d8ef
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 2 00:06:22 2020 +1000

    L10n updates for: tr
    From translation svn revision: 58779
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    4       1       user_docs/tr/changes.t2t
     1 file changed, 4 insertions(+), 1 deletion(-)

commit adb87d7535b88e6a36b6ebdee84ce4c75b2535c2
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 2 00:06:12 2020 +1000

    L10n updates for: ru
    From translation svn revision: 58779
    
    Authors:
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    
    Stats:
    11      9       source/locale/ru/LC_MESSAGES/nvda.po
    31      2       user_docs/ru/changes.t2t
    69      32      user_docs/ru/userGuide.t2t
     3 files changed, 111 insertions(+), 43 deletions(-)

commit 5d142a62d942dca85b89904fc5e456b89ae175c6
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 2 00:06:07 2020 +1000

    L10n updates for: pt_PT
    From translation svn revision: 58779
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    3       0       user_docs/pt_PT/changes.t2t
    43      26      user_docs/pt_PT/userGuide.t2t
     2 files changed, 46 insertions(+), 26 deletions(-)

commit 52690b88a68ae8696b9d00633b002e0d8e453b17
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 2 00:06:03 2020 +1000

    L10n updates for: pl
    From translation svn revision: 58779
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Hubert Meyer <hubmeyer1989@gmail.com>
    Arkadiusz Swietnicki <nuno69a@gmail.com>
    
    Stats:
    5       2       user_docs/pl/changes.t2t
    4       10      user_docs/pl/userGuide.t2t
     2 files changed, 9 insertions(+), 12 deletions(-)

commit b9de4197da2c6c62ec991bc769a097d48ad2c964
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 2 00:06:01 2020 +1000

    L10n updates for: nl
    From translation svn revision: 58779
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    5       5       source/locale/nl/LC_MESSAGES/nvda.po
    3       0       user_docs/nl/changes.t2t
     2 files changed, 8 insertions(+), 5 deletions(-)

commit ac1784b21aeca57cab4004f9593d63d9bc9b055d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 2 00:05:51 2020 +1000

    L10n updates for: ko
    From translation svn revision: 58779
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    7       7       source/locale/ko/LC_MESSAGES/nvda.po
    0       1       source/locale/ko/symbols.dic
    5       2       user_docs/ko/changes.t2t
    26      26      user_docs/ko/userGuide.t2t
     4 files changed, 38 insertions(+), 36 deletions(-)

commit 1f322ccd4c60d35ecc65bd8e677ba3324d45755c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 2 00:05:48 2020 +1000

    L10n updates for: ja
    From translation svn revision: 58779
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    1       0       user_docs/ja/userGuide.t2t
     1 file changed, 1 insertion(+)

commit 912525f97262f63d95dd3c56a7f8dc0d4c435942
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 2 00:05:45 2020 +1000

    L10n updates for: it
    From translation svn revision: 58779
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    5       5       source/locale/it/LC_MESSAGES/nvda.po
    68      0       user_docs/it/changes.t2t
     2 files changed, 73 insertions(+), 5 deletions(-)

commit c6692f2676b7316e8c976452ed7a5ce18e482e13
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 2 00:05:40 2020 +1000

    L10n updates for: hr
    From translation svn revision: 58779
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Milo Ivir <mivir@milotype.de>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    3       0       user_docs/hr/changes.t2t
     1 file changed, 3 insertions(+)

commit e5acff564722a0119b7edc9da8f8d99864f1028b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 2 00:05:37 2020 +1000

    L10n updates for: gl
    From translation svn revision: 58779
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    Javier Curras <javier.curras@nvda.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    4       4       source/locale/gl/LC_MESSAGES/nvda.po
    3       0       user_docs/gl/changes.t2t
     2 files changed, 7 insertions(+), 4 deletions(-)

commit 7931939acb78779c0aece4cd16484fd31a51d0f7
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 2 00:05:34 2020 +1000

    L10n updates for: fr
    From translation svn revision: 58779
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess.net>
    
    Stats:
    1       1       source/locale/fr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 0a870388cbb745419eb1f70cbe0fd8fec5a425eb
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 2 00:05:32 2020 +1000

    L10n updates for: fi
    From translation svn revision: 58779
    
    Authors:
    Jani Kinnunen <janikinnunen340@gmail.com>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    3       0       user_docs/fi/changes.t2t
     1 file changed, 3 insertions(+)

commit 6cc535303ec6a70a352ef626bad1a2ee2c1f91ac
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 2 00:05:27 2020 +1000

    L10n updates for: es
    From translation svn revision: 58779
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    224     225     source/locale/es/LC_MESSAGES/nvda.po
    3       1       user_docs/es/changes.t2t
     2 files changed, 227 insertions(+), 226 deletions(-)

commit 26315673d2588847a9758b5e6649fd28900ab54c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 2 00:05:22 2020 +1000

    L10n updates for: de
    From translation svn revision: 58779
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    3       0       user_docs/de/changes.t2t
     1 file changed, 3 insertions(+)

commit ae2665c7c6517b12d6de7d434feaaa42c9cdb595
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 2 00:05:18 2020 +1000

    L10n updates for: da
    From translation svn revision: 58779
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    10      10      source/locale/da/LC_MESSAGES/nvda.po
    3       0       user_docs/da/changes.t2t
    27      8       user_docs/da/userGuide.t2t
     3 files changed, 40 insertions(+), 18 deletions(-)

commit a7742c2c587591711d434ef6620aeedac15dc78b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 2 00:05:16 2020 +1000

    L10n updates for: cs
    From translation svn revision: 58779
    
    Authors:
    Martina Letochova <letochova@seznam.cz>
    
    Stats:
    284     269     source/locale/cs/LC_MESSAGES/nvda.po
     1 file changed, 284 insertions(+), 269 deletions(-)

commit 52a19b6451364c1ef6ad75f884a8d82b064cb2a8
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Oct 2 00:05:09 2020 +1000

    L10n updates for: ar
    From translation svn revision: 58779
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Omar Alojaimi <amrahmad1995@gmail.com>
    
    Stats:
    110     128     source/locale/ar/LC_MESSAGES/nvda.po
    25      11      user_docs/ar/changes.t2t
    105     71      user_docs/ar/userGuide.t2t
     3 files changed, 240 insertions(+), 210 deletions(-)

commit dc0582eb52dab65f90fb4d43c6e351f98904b7db
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Wed Sep 30 03:15:05 2020 -0700

    isWin10 learns about 2009/20H2/build 19042. (PR #11666)
    
    WinVersion: add support for Windows 10 October 2020 Update (Version 20H2/build 19042)
    Although it will be marketed as Version 20H2, release ID is still '2009'. Unless this changes next year, 2009 will be used to refer to 20H2.

commit 61f6c70f44d0c3ecc21b7618f360fa55dbde61ea
Merge: 40e1d0708 55a365e0a
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Wed Sep 30 09:53:12 2020 +0200

    Merge beta into master
    
    Merge pull request #11703 from nvaccess/updateMasterFromBeta

commit 40e1d070853e21a43d07db989dde6bca8a26e85a
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Sep 30 13:59:02 2020 +1000

    Allow NVDA to still function if a component changes the current directory  (#11707)
    
    * nvda.pyw: ensure that all paths coming from commandline arguments are made absolute as soon as possible  to protect against the current directory changing later on.
    Also store NVDA's app dir in globalVars.
    
    * Use the NVDA app dir rather than the current directory for relative paths.
    
    * Fix unit tests.
    
    * Remove all usage of os.getcwd and replace it with globalVars.appDir
    
    * Replace all remaining os.path.join("* calls with os.path.join(globalVars.appDir calls.
    
    * nvda.pyw: provide an absolute path to gettext.translate
    
    * nvda_slave: set globalVars.appDir, and provide an absolute path to gettext.translate
    
    * getDefaultLogFilePath no longer uses the current directory.
    
    * brailleTables: TABLES_DIR is no longer relative to the current directory.
    
    * ui.browsableMessage no longer uses a relative path to get to the html file.
    
    * Change all playWavefile calls to be non-relative
    
    * Fix linting issues
    
    * another relative wave file path
    
    * Fix linting issues
    
    * speechDictHandler: the path to builtin.dic is no longer relative.
    
    * config: slave_fileName is no longer relative
    
    * Lilli braille driver: path to dll is no longer relative.
    
    * Fix linting issues
    
    * nvda_slave: don't load nvdaRemote with a relative path.
    
    * Remove all usage of os.path.abspath, but add a couple of assertions in places where we can't be completely sure the path is absolute.
    
    * Fix translation comments
    
    * Add the ALTERED_LIBRARY_SEARCH_PATH constant to winKernel and use it in NVDAHelper and nvda_slave when loading NvDAHelperRemote.
    
    * Lili  braille dirver: remove unneeded import.
    
    * Update what's new
    
    * addonHandler.getCodeAddon: make sure to normalize paths when comparing them to stop an infinite while loop  introduced in #11650

commit 55a365e0a1a73a6c78a8bfa3cc879255cbd262bf
Merge: 74902265f afb8fce51
Author: Reef Turner <reef@nvaccess.org>
Date:   Tue Sep 29 15:01:30 2020 +0200

    Merge remote-tracking branch 'origin/master' into updateMasterFromBeta

commit 74902265fdbc1941d63ce1e4f66d26e454e016e2
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Tue Sep 29 14:34:20 2020 +0200

    Set focus when automatic focus mode is triggered (PR #11668)
    
    Ensure that "Automatically set system focus to focusable elements" set to disabled and "Automatic focus mode for focus changes" set to enabled are compatible. I.E. focus is set correctly.
    
    Fixes #11663

commit 82144deca5021f34980d9e2f592e6222eb9f67fa
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue Sep 29 13:52:37 2020 +0200

    Revert "Fix SAPI5 synthesizers missing some messages" (PR #11701)
    
    This reverts commit de18dc12880f7467ddfd05c2e5f899bb1a1cc29e
    merged into beta via PR #11586

commit afb8fce518f4471ab622e0510f1dc97750c4faa4
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Mon Sep 28 18:25:12 2020 -0700

    App modules: add commsapps app module for Windows 10 Mail and Calendar in order to restore browse mode functionality when reading emails (#11608)
    
    * appModules: add commsapps app module for Windows 10 Mail and Calendar 16005.13110 in order to restore browse mode functionality. Re #11439.
    
    In 2020, as part of unifying Mail and Calendar, hxoutlook.exe was renamed to commsapps.exe. Without the new app module, browse mode in Mail will not function, therefore add an alias app module for hxoutlook.py.
    
    * appModules/commsapps: flake8 (NOQA: F401, F403 as this is an alias app module)
    
    * Update what's new
    
    Co-authored-by: Michael Curran <mick@nvaccess.org>

commit 36ce3cd4e6270972fd359be14fdb0869c1b6cc53
Merge: 18c737ba5 9966d9e7b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 25 00:06:34 2020 +1000

    Update translations.
    
    From translation svn revision: 58637

commit 9966d9e7baaaa847748e833b5bafea45ffc7c3b0
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 25 00:06:33 2020 +1000

    L10n updates for: zh_TW
    From translation svn revision: 58637
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    319     140     source/locale/zh_TW/LC_MESSAGES/nvda.po
     1 file changed, 319 insertions(+), 140 deletions(-)

commit 13e7e210e3a5220df753fd48dd35f4d18fb54bf3
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 25 00:06:28 2020 +1000

    L10n updates for: vi
    From translation svn revision: 58637
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    4       4       source/locale/vi/LC_MESSAGES/nvda.po
     1 file changed, 4 insertions(+), 4 deletions(-)

commit 5200e96b7cbe5e019a2744f2f4726a34b2aff158
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 25 00:06:26 2020 +1000

    L10n updates for: uk
    From translation svn revision: 58637
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    101     64      user_docs/uk/userGuide.t2t
     1 file changed, 101 insertions(+), 64 deletions(-)

commit 750a3b733af440bcb4a6a5ebcad4b8c7293b9dd5
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 25 00:06:25 2020 +1000

    L10n updates for: tr
    From translation svn revision: 58637
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    2       2       source/locale/tr/LC_MESSAGES/nvda.po
     1 file changed, 2 insertions(+), 2 deletions(-)

commit 62e6e5f81d89a484665bb91fc5fb75e73e17630c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 25 00:06:22 2020 +1000

    L10n updates for: ta
    From translation svn revision: 58637
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    4       4       source/locale/ta/LC_MESSAGES/nvda.po
    14      15      user_docs/ta/userGuide.t2t
     2 files changed, 18 insertions(+), 19 deletions(-)

commit 1e323c439675d3087c3dc8a7ba7a00ddba2b95b5
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 25 00:06:12 2020 +1000

    L10n updates for: ro
    From translation svn revision: 58637
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <7ro2014@gmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    George Antonio Andrei <george.andrei2002@gmail.com>
    
    Stats:
    3       3       source/locale/ro/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 3 deletions(-)

commit ad2b98cc1e18d2a26f16c1616dfa3cc43d1ea8f7
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 25 00:06:10 2020 +1000

    L10n updates for: pt_PT
    From translation svn revision: 58637
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    295     103     source/locale/pt_PT/LC_MESSAGES/nvda.po
    69      2       user_docs/pt_PT/changes.t2t
    34      14      user_docs/pt_PT/userGuide.t2t
     3 files changed, 398 insertions(+), 119 deletions(-)

commit 87d709cf1c9c3ecde5b2a3c2681b0608a97f33b0
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 25 00:06:08 2020 +1000

    L10n updates for: pt_BR
    From translation svn revision: 58637
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    3       3       source/locale/pt_BR/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 3 deletions(-)

commit c4342cd655fbd04f29926ac3bce1fb531c6f5515
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 25 00:06:05 2020 +1000

    L10n updates for: pl
    From translation svn revision: 58637
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Hubert Meyer <hubmeyer1989@gmail.com>
    Arkadiusz Swietnicki <nuno69a@gmail.com>
    
    Stats:
    290     101     source/locale/pl/LC_MESSAGES/nvda.po
    35      35      user_docs/pl/changes.t2t
    67      24      user_docs/pl/userGuide.t2t
     3 files changed, 392 insertions(+), 160 deletions(-)

commit 987007b5ad766aedd7224b2c002aa6e038d6b8e4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 25 00:06:03 2020 +1000

    L10n updates for: nl
    From translation svn revision: 58637
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    2       2       source/locale/nl/LC_MESSAGES/nvda.po
     1 file changed, 2 insertions(+), 2 deletions(-)

commit f55eb5bf1a39dfcf8db73ee9a32faf30cc1613c6
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 25 00:05:53 2020 +1000

    L10n updates for: ko
    From translation svn revision: 58637
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    291     101     source/locale/ko/LC_MESSAGES/nvda.po
    63      4       user_docs/ko/changes.t2t
     2 files changed, 354 insertions(+), 105 deletions(-)

commit c9cd7a54339aa1ab94f81f33d8dde374233f1c71
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 25 00:05:49 2020 +1000

    L10n updates for: ja
    From translation svn revision: 58637
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    10      7       source/locale/ja/LC_MESSAGES/nvda.po
     1 file changed, 10 insertions(+), 7 deletions(-)

commit 6735ee3bf88076b068e6e9c51aab5c07c752104c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 25 00:05:42 2020 +1000

    L10n updates for: hr
    From translation svn revision: 58637
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Milo Ivir <mivir@milotype.de>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    7       31      source/locale/hr/LC_MESSAGES/nvda.po
     1 file changed, 7 insertions(+), 31 deletions(-)

commit 2d2db02c6ce21a1e93dc65ebf0125f1252a19cb7
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 25 00:05:35 2020 +1000

    L10n updates for: fr
    From translation svn revision: 58637
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess.net>
    
    Stats:
    4       4       source/locale/fr/LC_MESSAGES/nvda.po
     1 file changed, 4 insertions(+), 4 deletions(-)

commit e5a6d75d41e6ec6bada77248115315ec18c12666
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 25 00:05:33 2020 +1000

    L10n updates for: fi
    From translation svn revision: 58637
    
    Authors:
    Jani Kinnunen <janikinnunen340@gmail.com>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    3       3       source/locale/fi/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 3 deletions(-)

commit 4727b54866b53e1e59f609652b80cda746320715
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 25 00:05:26 2020 +1000

    L10n updates for: es_CO
    From translation svn revision: 58637
    
    Authors:
    Jorge Zarache <reydelasmaquinas@outlook.com>
    Luis Carlos Gonzáles Moráles <luiscarlosgm@hotmail.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    327     110     source/locale/es_CO/LC_MESSAGES/nvda.po
     1 file changed, 327 insertions(+), 110 deletions(-)

commit ec93a80f9697dcecd8cba85f226801b202b797fc
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 25 00:05:22 2020 +1000

    L10n updates for: de
    From translation svn revision: 58637
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    2       2       source/locale/de/LC_MESSAGES/nvda.po
     1 file changed, 2 insertions(+), 2 deletions(-)

commit 8557584c89fda62e1410d894bf209afeabf2101d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 25 00:05:07 2020 +1000

    L10n updates for: an
    From translation svn revision: 58637
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    296     103     source/locale/an/LC_MESSAGES/nvda.po
     1 file changed, 296 insertions(+), 103 deletions(-)

commit 37c7a29b6220678ef3c7db8075652900c848533d
Merge: ea8606c01 18c737ba5
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Thu Sep 24 12:57:40 2020 +0200

    Merge beta to master
    
    Merge pull request #11656 from nvaccess/beta

commit ea8606c018f67f932901e8efd09351e360870c17
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Sep 24 12:14:53 2020 +1000

    Fix case of code of conduct filename. Fix for pr #11659

commit e212721587fa1ddde8168c0cc91152fe2ea021bc
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Thu Sep 24 12:10:51 2020 +1000

    Add a code of conduct for the NVDA project adopted by NV Access (#11659)
    
    * Code of conduct
    
    * Link to code of conduct from readme, issue and pull request templates.

commit 18c737ba5593ba8b2e4315f9e99ab1e64f0e1f0a
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Wed Sep 23 16:56:23 2020 +0200

    Work around VS Code specific performance issues (PR #11657)

commit 66bcf8ea9450c2cd19aacf6863b7941c8a068367
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Tue Sep 22 23:13:12 2020 +1000

    Speech manager no longer sends synths utterances containing only param change and index commands.  (#11651)
    
    * Speech manager: no longer send pointless sequences to a synth that only contain synth param commands and indexCommands. This was causing some synths to ignore the index.
    
    * Fix linting issue
    
    * unit test test_4_profiles: use create_expectedIndex rather than ExpectedIndex directly.
    
    * Address review comment
    
    * Added unit test for pr #11651 that tests that a redundant sequence containing param change and index commands is no longer emmitted after an utterance that contains param change commands and ends in an EndUtterance command E.g. speaking a character.
    
    * Fix linting issue
    
    * Apply suggestions from code review
    
    Co-authored-by: Reef Turner <feerrenrut@users.noreply.github.com>
    
    * Update what's new
    
    Co-authored-by: Reef Turner <feerrenrut@users.noreply.github.com>

commit de18dc12880f7467ddfd05c2e5f899bb1a1cc29e
Author: Dawid Pieper <dawidpieper@o2.pl>
Date:   Tue Sep 22 14:36:12 2020 +0200

    Fix SAPI5 synthesizers missing some messages (PR #11586)
    
    Fix for someSAPI5 sy

commit fb5473ecfc73f440861ee0fffced81f2e070bae7
Author: FelixGruetzmacher <constantlyvariable@gmail.com>
Date:   Tue Sep 22 13:40:55 2020 +0200

    Active Braille now supports joystick (PR #11655)

commit baad03ea65787df50918ae474236581c4a88f6dc
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Mon Sep 21 06:04:11 2020 -0700

    Ensure that 'Microsoft Sound Mapper' entry under output devices is translated. (PR #11627)
    
    In a summer 2020 cumulative update for Windows 10 May 2020 Update, Microsoft Sound Mapper is once again printed when asking for audio output device names but is not translated. Therefore 'translate' this entry. This change is only applicable to 2020 feature updates (May 2020 Update/20H1 and 20H2).
    
    Fixes #11349
    Tweaks #11353

commit dd487560e5fc9a381c296555d714189e21b14ffa
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Mon Sep 21 14:08:07 2020 +0200

    Fix typo in changelog (PR #11633)

commit 36a74bdc3db0f231fa61722cf4588e3521449397
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Mon Sep 21 14:07:04 2020 +0200

    Fix Firefox/Chrome tab title speech cancellation (PR #11631)
    
    - Fix speech manager logging
    
    Despite unit test logging being hardcoded to False, it
    appeared that these messages were showing in the log.
    
    This was caused by the extra frame before the log call.
    
    - Fix for switching Tabs in Firefox.
    
    In this case the speech is triggered by a tree interceptor (see
    event_treeInterceptor_gainFocus in source/browseMode.py)
    
    which calls speech.speakObject(self.rootNVDAObject ....),
    and even thought self.rootNVDAObject may refer to the same object, it may
    not be exactly the same instance.

commit e587fdc4a575b3754c1982a8f9a6c9c8bf1f48d8
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Fri Sep 18 17:27:49 2020 +0200

    Prevent users from creating regex errors in Speech Dictionary (PR #11409)
    
    Fixes #11407

commit 3523461aafc6f4a3e920cf4f5f28a0e9d1b78611
Merge: 39e828c3a 3ea7d9bff
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 18 00:06:31 2020 +1000

    Update translations.
    
    From translation svn revision: 58483

commit 3ea7d9bff4a636846222072e12c0eceade968160
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 18 00:06:30 2020 +1000

    L10n updates for: zh_TW
    From translation svn revision: 58483
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    86      49      user_docs/zh_TW/userGuide.t2t
     1 file changed, 86 insertions(+), 49 deletions(-)

commit 5b6c9af51e03c4cbb2dc3ca8c42f1f56478294ca
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 18 00:06:28 2020 +1000

    L10n updates for: zh_CN
    From translation svn revision: 58483
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    1872265132@qq.com
    
    Stats:
    4       4       source/locale/zh_CN/LC_MESSAGES/nvda.po
    59      12      source/locale/zh_CN/symbols.dic
    6       6       user_docs/zh_CN/userGuide.t2t
     3 files changed, 69 insertions(+), 22 deletions(-)

commit cdd18c949726ced9339f68decddeb2459cfd3b48
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 18 00:06:25 2020 +1000

    L10n updates for: vi
    From translation svn revision: 58483
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    7       5       user_docs/vi/changes.t2t
     1 file changed, 7 insertions(+), 5 deletions(-)

commit 177e81748e413ddc2350e7ff7e541d313cf81d3e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 18 00:06:22 2020 +1000

    L10n updates for: tr
    From translation svn revision: 58483
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    2       0       user_docs/tr/changes.t2t
     1 file changed, 2 insertions(+)

commit edf0e8cd90274452a701c150dc7a1972971a7531
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 18 00:06:20 2020 +1000

    L10n updates for: ta
    From translation svn revision: 58483
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    299     113     source/locale/ta/LC_MESSAGES/nvda.po
    27      32      user_docs/ta/userGuide.t2t
     2 files changed, 326 insertions(+), 145 deletions(-)

commit 7abdb9c7da4cecbfaacf0d5561f1ce4822af3a18
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 18 00:06:17 2020 +1000

    L10n updates for: sr
    From translation svn revision: 58483
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    7       0       user_docs/sr/changes.t2t
    3       9       user_docs/sr/userGuide.t2t
     2 files changed, 10 insertions(+), 9 deletions(-)

commit baf7b1f1a824ff0e17f2c57cf3ce570867c33d98
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 18 00:06:12 2020 +1000

    L10n updates for: ru
    From translation svn revision: 58483
    
    Authors:
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    
    Stats:
    20      20      source/locale/ru/LC_MESSAGES/nvda.po
     1 file changed, 20 insertions(+), 20 deletions(-)

commit b719a63f9ccb2068cb0b432d867b2671edbdaf30
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 18 00:06:09 2020 +1000

    L10n updates for: ro
    From translation svn revision: 58483
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <7ro2014@gmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    George Antonio Andrei <george.andrei2002@gmail.com>
    
    Stats:
    296     104     source/locale/ro/LC_MESSAGES/nvda.po
    5       3       user_docs/ro/changes.t2t
     2 files changed, 301 insertions(+), 107 deletions(-)

commit 7606d031319dccaeb1743e12f9b390dd1518efee
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 18 00:06:05 2020 +1000

    L10n updates for: pt_BR
    From translation svn revision: 58483
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    293     103     source/locale/pt_BR/LC_MESSAGES/nvda.po
     1 file changed, 293 insertions(+), 103 deletions(-)

commit ab5f96b469df47fbe94db4de0b88a8af2f1d825f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 18 00:06:03 2020 +1000

    L10n updates for: pl
    From translation svn revision: 58483
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Hubert Meyer <hubmeyer1989@gmail.com>
    Arkadiusz Swietnicki <nuno69a@gmail.com>
    
    Stats:
    57      0       user_docs/pl/changes.t2t
     1 file changed, 57 insertions(+)

commit 5e6ef00bdd718ba138e124974c8e82c8bc42663a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 18 00:06:01 2020 +1000

    L10n updates for: nl
    From translation svn revision: 58483
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    339     185     source/locale/nl/LC_MESSAGES/nvda.po
    141     0       user_docs/nl/changes.t2t
     2 files changed, 480 insertions(+), 185 deletions(-)

commit f0419b7cb1ef5935c832b0c2e0e192680eea22f2
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 18 00:05:51 2020 +1000

    L10n updates for: ko
    From translation svn revision: 58483
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    3       9       user_docs/ko/userGuide.t2t
     1 file changed, 3 insertions(+), 9 deletions(-)

commit acf0fa982917fee6692daae14a6eaa2099d8f388
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 18 00:05:48 2020 +1000

    L10n updates for: ja
    From translation svn revision: 58483
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    272     101     source/locale/ja/LC_MESSAGES/nvda.po
    3       9       user_docs/ja/userGuide.t2t
     2 files changed, 275 insertions(+), 110 deletions(-)

commit fe3602712772edbcc46a25bf28b466876af26288
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 18 00:05:45 2020 +1000

    L10n updates for: it
    From translation svn revision: 58483
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    12      18      source/locale/it/LC_MESSAGES/nvda.po
     1 file changed, 12 insertions(+), 18 deletions(-)

commit a9bfe3340e6a8c659aa3f905538579bff250157f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 18 00:05:40 2020 +1000

    L10n updates for: hr
    From translation svn revision: 58483
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Milo Ivir <mivir@milotype.de>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    2       0       user_docs/hr/changes.t2t
     1 file changed, 2 insertions(+)

commit b3f6b91af90043ddccd77d99965f86441ad04f4f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 18 00:05:37 2020 +1000

    L10n updates for: gl
    From translation svn revision: 58483
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    Javier Curras <javier.curras@nvda.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    299     114     source/locale/gl/LC_MESSAGES/nvda.po
    9       0       user_docs/gl/changes.t2t
    2       8       user_docs/gl/userGuide.t2t
     3 files changed, 310 insertions(+), 122 deletions(-)

commit 71bee0c991c090b07f658262a2e04f62b13b2a1d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 18 00:05:34 2020 +1000

    L10n updates for: fr
    From translation svn revision: 58483
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess.net>
    
    Stats:
    302     110     source/locale/fr/LC_MESSAGES/nvda.po
    2       0       user_docs/fr/changes.t2t
    7       13      user_docs/fr/userGuide.t2t
     3 files changed, 311 insertions(+), 123 deletions(-)

commit 1e9d5d9b1040c501b816be2a472b4de4f6cc7250
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 18 00:05:31 2020 +1000

    L10n updates for: fi
    From translation svn revision: 58483
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    296     110     source/locale/fi/LC_MESSAGES/nvda.po
    12      5       user_docs/fi/changes.t2t
    12      16      user_docs/fi/userGuide.t2t
     3 files changed, 320 insertions(+), 131 deletions(-)

commit b436f38e7456d33cc854dc6ed9b19becbd34ccb5
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 18 00:05:26 2020 +1000

    L10n updates for: es
    From translation svn revision: 58483
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    297     108     source/locale/es/LC_MESSAGES/nvda.po
    15      2       user_docs/es/changes.t2t
    3       9       user_docs/es/userGuide.t2t
     3 files changed, 315 insertions(+), 119 deletions(-)

commit 51e7ff3b10d70883a6923effec4a92ca653965cb
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 18 00:05:21 2020 +1000

    L10n updates for: de
    From translation svn revision: 58483
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    295     104     source/locale/de/LC_MESSAGES/nvda.po
    16      2       user_docs/de/changes.t2t
    4       10      user_docs/de/userGuide.t2t
     3 files changed, 315 insertions(+), 116 deletions(-)

commit f08340b8fa728b5a993d3c3692c4d0746ef1f8d0
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 18 00:05:17 2020 +1000

    L10n updates for: da
    From translation svn revision: 58483
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    292     104     source/locale/da/LC_MESSAGES/nvda.po
    42      36      user_docs/da/changes.t2t
    11      17      user_docs/da/userGuide.t2t
     3 files changed, 345 insertions(+), 157 deletions(-)

commit 4898f659415cf4eeb8ede5232aee1c3f73d32d07
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 18 00:05:09 2020 +1000

    L10n updates for: ar
    From translation svn revision: 58483
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Omar Alojaimi <amrahmad1995@gmail.com>
    
    Stats:
    299     98      source/locale/ar/LC_MESSAGES/nvda.po
    43      2       user_docs/ar/changes.t2t
     2 files changed, 342 insertions(+), 100 deletions(-)

commit 33d7b64c2e7fb1e783692796688712c70300e76a
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Thu Sep 17 06:51:41 2020 +1000

    Announce the correct line when on the end of a link at the end of a list item in a contenteditable (#11606)
    
    * MozillaCompoundTextInfo: when trying to normalize the caret position at the end of an inline element, make sure not to search above the deepest non-inline element. This stops accidentally falling out of the current paragraph or list item etc and then inappropriately reading the next line instead of the current.
    
    
    * Fix linting issues
    
    * Add system test.
    
    * Fix linting issue
    
    * Make comment more explicit.
    
    Co-authored-by: Reef Turner <feerrenrut@users.noreply.github.com>
    
    * Update what's new
    
    Co-authored-by: Reef Turner <feerrenrut@users.noreply.github.com>

commit 39e828c3abea98b5a31377916f94053744e9e1c1
Author: Cyrille Bougot <cyrille.bougot2@laposte.net>
Date:   Wed Sep 16 18:43:58 2020 +0200

    Filter an extra call to log.debug in nvwave channel. (PR #11614)
    
    Fix-up of PR #11582

commit 0baf0ceb4b8cc9c10c08ccaf5473857a8160660d
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Wed Sep 16 13:29:09 2020 +0200

    Redirect focus to Desktop when start menu closed in Win 7 (PR #10567)
    
    When Windows 7 start menu closes and focus lands on a WorkewW pane redirect it to the focused desktop item.

commit 468761f189d26e40254ce98a1eb1a14f560055ec
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Sep 16 20:46:13 2020 +1000

    Announce entering a listItem when moving by character or word in contentEditables and browse mode  (#11569)
    
    * Announce entering a listItem when moving by character or word in rich text. this includes contentEditables and browse mode.
    
    * Fix linting issues.
    
    * Add system test for list item change.
    
    * Fix linting issues
    
    * Improve listItem system test to be much closer to the actual case. I.e. actually uses contentEditable in focus mode, and also tests moving by word.
    
    * Fix linting issues.
    
    * this system test now forces and verifies focus mode.
    
    * Update what's new

commit 1216502cb5c1142220374f1bde7ae0c1ac409106
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Sep 16 17:59:50 2020 +1000

    Chrome: Don't announce 'list' on every line of ul, dl and ol tags in contenteditables (#11605)
    
    * Ensure that ul, dl and ol tags in Chrome get the readonly state so that 'list' is not announced on every line when in a contenteditable.
    
    * Add system test for #7562
    
    * Fix linting issues
    
    * Improve docstring
    
    * Chrome system tests: The Before and After markers are now paragraphs rather than buttons. They no longer need to be focusable as we use f6 not tab.
    
    * System test NVDA configs: disable browse mode passThroughAudioIndication, which then means that switching between browse and focus modes produces a spoken string we can check for.
    
    * System test i7562: explicitly force focus mode at the beginning to ensure we don't accidentally test in browse mode.
    
    * Fix linting issues
    
    * Update what's new

commit f1ec7aa471b75ee46ae6716f27940ac86c82eb6c
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Wed Sep 16 08:52:28 2020 +0200

    Use Intellisense menu items to provide instant Intellisense feedback in Visual Studio 2019 (#11609)
    
    * Use Intellisense menu items to provide instant Intellisense feedback in Visual Studio 2019
    
    * Update What's new
    
    Co-authored-by: Michael Curran <mick@nvaccess.org>

commit a82adfcf347f3971526c09a36b4effb70f374ef2
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Sep 16 16:20:29 2020 +1000

    Support aria roleDescription in contentEditables (#11607)
    
    * CompoundDocumentTextInfo._getControlFieldForObject: support roleText.
    
    * Update what's new

commit c4de9f99475a91ea14f25022a1e84e6d96b49eb1
Merge: c6d6d10fa 9cac34bc7
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Mon Sep 14 10:25:00 2020 +0200

    Merge beta to master
    
    Merge pull request #11592 from nvaccess/beta

commit c6d6d10fadb81f287978915f1aa3ac11a860abeb
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Mon Sep 14 09:31:46 2020 +0200

    Make PR and bug templates more obvious (PR #11595)
    
    When landing on the edit field for the first time, often first time contributors do not notice that there is a template.

commit 9cac34bc737a4606abc1f3437a461d3e3b445b37
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Sun Sep 13 15:05:45 2020 +1000

    KeyboardInputGesture.executeScript: send the VK_NONE (to work around problematic modifiers that perform an action) before, rather than after executing the script, as if the script takes too long, and the user releases these modifiers before then, the VK_NONE is too late. (#11597)

commit 8359066f58a46610ee0da185c1e5499cc7cfbca9
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Fri Sep 11 15:35:32 2020 +0200

    Visual Studio appmodule: fix bugs in object model implementation (PR #10387)
    
    * Strip down the visual studio appModule
    * allow using object model on newer versions
    * Remove focus juggle
    * Remove ability to override WPF implementation for text controls

commit d25e3dedcd9da818235202a8c5a20e1386ebd118
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
Date:   Fri Sep 11 14:24:05 2020 +0200

    Symbols: support regex group references in replacements (PR #11116)
    
    fixes #11107

commit 8c3774536b8c82a17bd0678657ec14052434d22a
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Fri Sep 11 13:41:35 2020 +0200

    Add auto complete IntelliSense in SSMS and Visual Studio 2017 (PR #11421)
    
    Support for IntelliSense using the UIA Element Selected event. In the past this was very slow, but with selective UIA event registration enabled this is improved. Having said that, even without selective registration enabled it at least reads results, though with somewhat more delay.

commit 9b21fc3b7bc4e709978e335f8ffcaaf39634561a
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Fri Sep 11 04:03:48 2020 -0700

    Fix missing space in command description/input help mode message. (PR #11589)
    
    Reported by a translator and subsequently confirmed: as move to focus description message is divided into two lines, the first line ends with no space at the end, which will result in no space between ',' and 'and'. Therefore add a space at the end of the first line.

commit 864ff77f08ebe22b2e45e3f9c50829a2d61d2f59
Author: Cyrille Bougot <cyrille.bougot2@laposte.net>
Date:   Fri Sep 11 12:55:24 2020 +0200

    NVDA find commands no longer stop say all if allow skim reading option is enabled (PR #11564)
    
    When reading with say all in browse mode, the find next and find previous commands do not stop reading anymore if 'Allow skim reading option' is enabled; say all rather resumes from after the next or previous found term.
    
    Co-authored-by: Reef Turner <reef@nvaccess.org>

commit adff1e4e15b228e32125d4dfab847e21360365e0
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Fri Sep 11 08:08:35 2020 +1000

    emulate key presses for system tests using NVDA directly (#11581)
    
    * watchdog: add a isCoreAsleep function.
    
    * System tests: send keyboard input via NvDA's own input gesture framework, so that key press strings confirm to NVDA, and we block on key presses until the actual is actually executed.
    
    * Fix linting issues
    
    * Remove now unused  KeyInputLib system test library.
    
    * System tests: we no longer require PyGetWindow or PyAutoGui packages.
    
    * Add type hint to emulateKeyPress method on System test spy.
    
    Co-authored-by: Reef Turner <feerrenrut@users.noreply.github.com>
    
    * Clarify docstring for system test spy's emulateKeyPress method.
    
    * Update what's new
    
    Co-authored-by: Reef Turner <feerrenrut@users.noreply.github.com>

commit e245b98ba3c49da467f1977c6aae6822fe72054f
Author: Bram Duvigneau <bram@bramd.nl>
Date:   Thu Sep 10 16:51:29 2020 +0200

    Improve handling of elapsed/remaining time reporting in Foobar2000 (PR #11337)
    
    - Report elapsed time if total time is not available (e.g. when playing a live stream)
    - Report when remaining/total time is not available instead of keeping silent

commit 6713408e42f6b8937265fdf6e042af20d235e420
Merge: 04ff72727 36e106828
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 11 00:06:24 2020 +1000

    Update translations.
    
    From translation svn revision: 58327

commit 36e10682811c0b4042ed1454de6d7bf852e06a25
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 11 00:06:21 2020 +1000

    L10n updates for: zh_CN
    From translation svn revision: 58327
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    1872265132@qq.com
    
    Stats:
    273     99      source/locale/zh_CN/LC_MESSAGES/nvda.po
     1 file changed, 273 insertions(+), 99 deletions(-)

commit 36c3a2bf6675e8e25d9ae733794e2055a30313bf
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 11 00:06:19 2020 +1000

    L10n updates for: vi
    From translation svn revision: 58327
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    290     101     source/locale/vi/LC_MESSAGES/nvda.po
    5       0       user_docs/vi/changes.t2t
    5       11      user_docs/vi/userGuide.t2t
     3 files changed, 300 insertions(+), 112 deletions(-)

commit de30fa8db61e36e7fd77f168e67301793071c1c2
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 11 00:06:17 2020 +1000

    L10n updates for: uk
    From translation svn revision: 58327
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    316     99      source/locale/uk/LC_MESSAGES/nvda.po
     1 file changed, 316 insertions(+), 99 deletions(-)

commit 550a8b0662b9e801581e82825035a569d1a1ba6f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 11 00:06:15 2020 +1000

    L10n updates for: tr
    From translation svn revision: 58327
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    293     102     source/locale/tr/LC_MESSAGES/nvda.po
    12      1       user_docs/tr/changes.t2t
    3       9       user_docs/tr/userGuide.t2t
     3 files changed, 308 insertions(+), 112 deletions(-)

commit 751934d62d66923a70832cf08e29f570537f43d4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 11 00:06:13 2020 +1000

    L10n updates for: ta
    From translation svn revision: 58327
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    75      31      user_docs/ta/userGuide.t2t
     1 file changed, 75 insertions(+), 31 deletions(-)

commit 68a6add14c997c08e8af1b25f8c521a4232fe47f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 11 00:06:10 2020 +1000

    L10n updates for: sr
    From translation svn revision: 58327
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    296     103     source/locale/sr/LC_MESSAGES/nvda.po
     1 file changed, 296 insertions(+), 103 deletions(-)

commit 322c6e8da9f69466dfe95fe61a620365eff7be3b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 11 00:06:05 2020 +1000

    L10n updates for: ru
    From translation svn revision: 58327
    
    Authors:
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    
    Stats:
    297     104     source/locale/ru/LC_MESSAGES/nvda.po
     1 file changed, 297 insertions(+), 104 deletions(-)

commit c545a0e0a69f0aa24a6ac2e2f26012cda3c8955b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 11 00:06:02 2020 +1000

    L10n updates for: ro
    From translation svn revision: 58327
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <7ro2014@gmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    George Antonio Andrei <george.andrei2002@gmail.com>
    
    Stats:
    63      0       user_docs/ro/changes.t2t
     1 file changed, 63 insertions(+)

commit 3d92a4a3ee0846edb4c2c2e088cf26fd7d90652e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 11 00:05:55 2020 +1000

    L10n updates for: nl
    From translation svn revision: 58327
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    3       7       user_docs/nl/userGuide.t2t
     1 file changed, 3 insertions(+), 7 deletions(-)

commit 876f49478f6fd0efa9a32c444f1f567eb44b046b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 11 00:05:43 2020 +1000

    L10n updates for: ja
    From translation svn revision: 58327
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    68      25      user_docs/ja/userGuide.t2t
     1 file changed, 68 insertions(+), 25 deletions(-)

commit b40ce3658b8fd3c132decb849aac0f89aa25eb9c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 11 00:05:41 2020 +1000

    L10n updates for: it
    From translation svn revision: 58327
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    304     104     source/locale/it/LC_MESSAGES/nvda.po
     1 file changed, 304 insertions(+), 104 deletions(-)

commit 51b2c95d3c74001007592d32105869354e4837a9
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 11 00:05:36 2020 +1000

    L10n updates for: hr
    From translation svn revision: 58327
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Milo Ivir <mivir@milotype.de>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    290     101     source/locale/hr/LC_MESSAGES/nvda.po
    46      42      user_docs/hr/changes.t2t
    69      32      user_docs/hr/userGuide.t2t
     3 files changed, 405 insertions(+), 175 deletions(-)

commit 2d35f2e4c12f4e91d97e1459214b8ed420b17b76
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 11 00:05:30 2020 +1000

    L10n updates for: fr
    From translation svn revision: 58327
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess.net>
    
    Stats:
    11      0       user_docs/fr/changes.t2t
     1 file changed, 11 insertions(+)

commit b6e194a1a1997c5d2c295c15b294213ec4645d89
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 11 00:05:26 2020 +1000

    L10n updates for: fa
    From translation svn revision: 58327
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    2       2       user_docs/fa/userGuide.t2t
     1 file changed, 2 insertions(+), 2 deletions(-)

commit 04ff727278bb54f6ec866cf59558b5e4370c88cc
Author: André-Abush Clause <dev@andreabc.net>
Date:   Thu Sep 10 15:56:24 2020 +0200

    Ensure that 'charFormat' is not None for 'reportSuperscriptsAndSubscripts' (PR #11575)
    
    Fixes a rare exception: AttributeError: 'NoneType' object has no attribute 'dwEffects'

commit 7896e8842e62a2831652f0c1cbc42ff313f2980e
Author: Cyrille Bougot <cyrille.bougot2@laposte.net>
Date:   Thu Sep 10 15:26:35 2020 +0200

    Add nvwave debug log channel (PR #11582)
    
    The majority of the message logged in nvwave.py is disabled by default.
    To enable it, check the nvwave item in the "Enabled logging categories" list of the "Advanced" setting panel.
    
    Co-authored-by: Reef Turner <feerrenrut@users.noreply.github.com>

commit a32db1bc80f518db65fc07d82b90ec88c078d032
Author: Cyrille Bougot <cyrille.bougot2@laposte.net>
Date:   Thu Sep 10 07:52:28 2020 +0200

    Developer guide: document resumeSayAllMode keyword in script decorator parameters. (#11571)

commit 213a3c2d8574df90826aef0039b3d4509e21756b
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Wed Sep 9 18:10:50 2020 +0200

    Use DisplayModelEditableText in Fast Log Entry edit field (PR #11488)
    
    Fixes #8996
    
    In #8165 we started using Unidentifiededit for editable text fields in which there is a caret and which seems to support Edit API. While both of these criterion's are true for Fast Log Entry edit fields their WindowText contains complete garbage and UnidentifiedEdit relies on Windowtext being correct.
    
    Instead:
    1. For edit field in Fast Log Entry DisplayModelEditableText is used similar to the pre #8165
    2. DisplayModelEditableText no longer inherits from EditableText rather from EditableTextWithoutAutoSelectDetection which makes selection announced when the color used for highlight in a particular app is the default Windows highlight color  - This has been suggested by @jcsteh in #4535

commit 423674eae68d4a8020f300fc44ab12cb2bac937d
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Wed Sep 9 16:41:25 2020 +0200

    Context sensitive help (PR #11456)
    
    Fixes #7757
    Fixes #8354
    Supersedes PR #8355
    
    Add initial support for opening the user guide at a particular section based on the context when the user presses F1 (in NVDA dialogs). For the sake of simplicity, this is done by opening the user guide in the browser. Unfortunately, this results in a lot of unnecessary verbosity. However, this is still quicker for the user than manually opening the user guide separately (also in a browser) and navigating to the chosen section manually.
    
    Co-authored-by: ThomasStivers <thomas.stivers@gmail.com>
    Co-authored-by: Leonard de Ruijter <leonardder@users.noreply.github.com>

commit 322370758f3ffa8bb8156fe81a9cc8d276b51209
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Wed Sep 9 15:37:53 2020 +0200

    Update liblouis to version 3.15.0 (PR #11537)
    
    Co-authored-by: Reef Turner <reef@nvaccess.org>

commit 43d3aa1bb6a5c3065c2ad5779f04e1c6550d703c
Author: Levi <34293774+levyadams@users.noreply.github.com>
Date:   Wed Sep 9 09:17:58 2020 -0400

    Add "ServiceMark" character to symbols.dic (PR #11559)
    
    Add the legal special character "Service Mark" (unicode U+2120) to "some" punctuation setting

commit 82ddb3711b1cbe1b7a4d75a924f9e3f4a821843e
Author: Luke Davis <8139760+XLTechie@users.noreply.github.com>
Date:   Wed Sep 9 09:16:04 2020 -0400

    Spelling and grammar corrections (PR #11557)

commit 30e97bc2d13ebea8a43a57fbc30f808867b8350f
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Wed Sep 9 14:57:47 2020 +0200

    Add 2020.3 Release Highlights (PR #11578)

commit ea2c5ce50c4fbaf307082f3194d452c4edadfd54
Merge: f33664ec4 f0438bfc2
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Wed Sep 9 14:40:56 2020 +0200

    Start 2020.4 dev cycle (PR #11577)

commit f0438bfc236ee5dafbebcbd8c3af2f62930c5b8d
Author: Reef Turner <reef@nvaccess.org>
Date:   Wed Sep 9 14:29:15 2020 +0200

    Update NVDA version

commit 2e7144c2d71a9f418eacae89525882a7fadf6429
Author: Reef Turner <reef@nvaccess.org>
Date:   Tue Sep 8 18:11:59 2020 +0200

    Prepare changes file for 2020.4

commit 929b5f846a3ee2bf547250b8516f362c33b14aab
Merge: 938751cad f33664ec4
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue Sep 8 15:27:01 2020 +0200

    Merge alpha into beta
    
    Merge pull request #11549 from nvaccess/master

commit f33664ec4935872e95f3add083a1e0ee96499832
Merge: c8d6ab95a 938751cad
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Mon Sep 7 10:41:29 2020 +0200

    Update translations on alpha
    
    Merge pull request #11558 from nvaccess/beta

commit c8d6ab95a14a61d99a614e08674fccd196c0a30c
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Sat Sep 5 17:19:33 2020 +1000

    NLS eReader is also known as NLS eReader Humanware (#11561)
    
    * NLS eReader is also known as NLS eReader Humanware
    
    * Update what's new

commit c5aa20ff2f0c5cdff96bccbe78b03f89e60d577b
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Sat Sep 5 07:16:21 2020 +1000

    Don't filter out MSAA events for the currently focused object, even if the winEvent limit has been exceeded for that thread (#11520)
    
    * IAccessibleHandler: Still allow processing of winEvents for the currently focused object, even if the winEvent limit has been exceeded for that thread.
    
    * IAccessibleHandler.OrderedWinEventLimitor.flushEvents: alwaysAllowedObjects is now optional.
    
    * OrderedWinEventLimitor.flushEvents: counts of events per thread should still go up if the event is for the focus, even though we won't drop the event if we are over the limit.
    
    * IAccessibleHandler: add typing information to OrderedWinEventLimitor.flushEvents and improve logic readability around skipping events due to exceeded count per thread.
    
    * Tests for limit of events per thread
    
    * OrderedWinEventLimiter: fix off-by-one error: 10 events per thread is emitted now, not 11.
    
    * OrderedWinEventLimiter unit tests: remove work-arounds for off-by-one error for events per thread, and no longer expect certain failures
    
    * Fix linting issue
    
    * Update what's new
    
    Co-authored-by: Reef Turner <reef@nvaccess.org>

commit 0b21e78d6c24d4dc91d35a007f1d625c2a2c034d
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Sat Sep 5 06:45:04 2020 +1000

    Address misleading garbage handler warnings and fix another reference cycle (#11552)
    
    * GarbageHandler: ensure that objects due to logging (WavePlayer for example) don't get logged as an object being cleaned up by the garbage collector.
    Specifically:
    * change the first log.error to a log.warning (so the error sound does not play). Note that this message still must be logged as it is the one that contains the stack trace showing where the garbage collection is running.
    * Increase the report count before logging any message in notifyOfObjectDeletion so that any objects deleted in the log calls themselves don't get tracked as the first  object to be deleted.
    * Clear the garbage collection threadID in the gc hook before logging the final error, otherwise that error (and the error sound) is tracked as an object deletion.
    
    * MozillaCompoundTextInfo: only cache lastCaretObj if the compoundTextInfo is on the current focus, otherwise the caretObj may not be cleaned up and a reference cycle may remain.

commit 938751cad460dfae968372be6d8009275ae0b3e0
Merge: 684d7e683 40eb62d72
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 4 00:06:36 2020 +1000

    Update translations.
    
    From translation svn revision: 58191

commit 40eb62d72233c8fb69b26ce1bd4b3a2e6acb16ec
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 4 00:06:36 2020 +1000

    L10n updates for: zh_TW
    From translation svn revision: 58191
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    151     150     source/locale/zh_TW/LC_MESSAGES/nvda.po
     1 file changed, 151 insertions(+), 150 deletions(-)

commit 839d1a2f47c4ea8c17490f29b3abb583f64048f9
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 4 00:06:33 2020 +1000

    L10n updates for: zh_CN
    From translation svn revision: 58191
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    1872265132@qq.com
    
    Stats:
    5       5       user_docs/zh_CN/userGuide.t2t
     1 file changed, 5 insertions(+), 5 deletions(-)

commit 91b358d7adbd24c00626bba2d625ab1cbefd6a95
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 4 00:06:27 2020 +1000

    L10n updates for: tr
    From translation svn revision: 58191
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    2       2       source/locale/tr/LC_MESSAGES/nvda.po
     1 file changed, 2 insertions(+), 2 deletions(-)

commit 07a358fea50951f255b01b548dfb84c45ef69e6a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 4 00:05:54 2020 +1000

    L10n updates for: ko
    From translation svn revision: 58191
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    49      49      user_docs/ko/userGuide.t2t
     1 file changed, 49 insertions(+), 49 deletions(-)

commit 1fef3f59b360a62c2f2394a75ced2862fae3c9aa
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 4 00:05:47 2020 +1000

    L10n updates for: it
    From translation svn revision: 58191
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    30      33      source/locale/it/symbols.dic
     1 file changed, 30 insertions(+), 33 deletions(-)

commit c6488abec26fe39b4d7636fa853f15deb0fb5322
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Sep 4 00:05:35 2020 +1000

    L10n updates for: fr
    From translation svn revision: 58191
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess.net>
    
    Stats:
    55      3       user_docs/fr/changes.t2t
     1 file changed, 55 insertions(+), 3 deletions(-)

commit f4cb08475b870467f21db238c3e613898addc3fc
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Sep 2 09:12:04 2020 +1000

    Add significant optional debug logging for MSAA events (#11521)
    
    * Add significant optional debug logging for MSAA events.
    
    * Fix typo
    
    Co-authored-by: Leonard de Ruijter <leonardder@users.noreply.github.com>
    
    * Include winEvent params in log message.
    
    Co-authored-by: Leonard de Ruijter <leonardder@users.noreply.github.com>
    
    * Include winEvent params in log message.
    
    Co-authored-by: Leonard de Ruijter <leonardder@users.noreply.github.com>
    
    * Include window handle and windowClass name in log message about native UIA window.
    
    Co-authored-by: Leonard de Ruijter <leonardder@users.noreply.github.com>
    
    * Fix linting issues.
    
    * * Included winEvent info to several more log calls.
    * Added several more log calls.
    * Improved log call for error in AccessibleObjectFromEvent and put it behind isMSAADebugLoggingEnabled.
    * Fixed typo.
    * Included threadID, processID and process name in winEvent log info where possible.
    
    * Added yet more MSAA debug log messages.
    
    * Fix typo
    
    * Update what's new
    
    Co-authored-by: Leonard de Ruijter <leonardder@users.noreply.github.com>

commit 71408ee6577e4dca1c8b8bdd37cb11c0d4457c7d
Author: Dang Manh Cuong <40142033+manhcuong0312@users.noreply.github.com>
Date:   Wed Sep 2 00:24:09 2020 +0700

    Userguide: Fixed a misspelling (PR #11496)

commit 54c6e32ee1ca5d015911ed85f36002725fe57e87
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue Sep 1 17:24:06 2020 +0200

    nvWave: Keep audio device open (PR #11531)
    
    Fixes #5172
    Fixes #10721
    Fixes #11482
    Fixes #11490
    
    ### History
    #5172
    Some audio drivers/hardware take a long time to open the device and/or truncate the start/end of the audio.
    
    #10721
    Calling WaveOutOpen in the OneCore synth callback mysteriously blocks (and thus lags) for ~100 ms. Because we close the audio device on idle, we can trigger this problem. Although PR #11023 mostly fixed this, it's impossible (or at least very difficult) to resolve this completely from within the OneCore driver.
    
    PR #11024 attempted to fix these issues by waiting 10 seconds before closing the audio device"
    
    ### Problem to solve
    Subsequent to #11024, there are occasional exceptions from nvwave, particularly when switching synthesisers. In particular the following cases need to be handled smoothly:
    - When using Microsoft Sound Mapper, NVDA should use the Windows default device (even if it changes)
    - When the NVDA configured devices becomes invalid, nvWave should fall back to Microsoft Sound Mapper
    - When the NVDA configured device becomes available again, NVDA should switch back to using it.
    - Handle no audio device at all.
    
    Since these issues needed to be fixed, and also:
    - Closing and opening the audio device was originally introduced to support Remote Desktop audio, this is now better served by other solutions.
    - Performance is improved by keeping it open, using a timeout means that the lag is more rare, but will still occur.
    
    ### How it is solved
    Instead, now don't close the device at all. As per the discussion:
    https://github.com/nvaccess/nvda/pull/11505#issuecomment-674879807
    
    To fix issues with current / preferred device:
    - nvWave now saves the preferred device when it is constructed.
    - If using a device fails, it is considered unavailable, nvWave attempts to fall back to "Microsoft Sound Mapper".
    - From my testing, using "Microsoft Sound Mapper" correctly handled changing the default device (Win 10 2004). It would be helpful if others could confirm, especially on different OS versions.
    - During `_idleUnbuffered`
      - The current device is checked to see if it matches the preferred device.
      - The available devices are polled to see if the preferred device is available, if so it switches.

commit 684d7e6833f052958913c31f583e460ec6eed6f3
Merge: c09cc073a 1b73dbb76
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 28 00:06:45 2020 +1000

    Update translations.
    
    From translation svn revision: 58107

commit 1b73dbb767961ec7c84ed49ac3f681438f591007
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 28 00:06:42 2020 +1000

    L10n updates for: zh_CN
    From translation svn revision: 58107
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    1872265132@qq.com
    
    Stats:
    19      18      source/locale/zh_CN/LC_MESSAGES/nvda.po
    1       5       user_docs/zh_CN/userGuide.t2t
     2 files changed, 20 insertions(+), 23 deletions(-)

commit 94c89df8d72206eb6bdbf2aaa9921c00c2959276
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 28 00:06:33 2020 +1000

    L10n updates for: ta
    From translation svn revision: 58107
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    2       2       source/locale/ta/LC_MESSAGES/nvda.po
     1 file changed, 2 insertions(+), 2 deletions(-)

commit a4e5dafe1387227c62f3965652ab2747177d09cd
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 28 00:06:23 2020 +1000

    L10n updates for: ru
    From translation svn revision: 58107
    
    Authors:
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    
    Stats:
    1       1       source/locale/ru/symbols.dic
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 5969df1555f38447a2b1b530c910ab88fef3622d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 28 00:05:59 2020 +1000

    L10n updates for: ko
    From translation svn revision: 58107
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    18      18      source/locale/ko/LC_MESSAGES/nvda.po
    569     204     user_docs/ko/userGuide.t2t
     2 files changed, 587 insertions(+), 222 deletions(-)

commit 0078229c9e0ca8b7e4ec694e4e799438395176d5
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 28 00:05:51 2020 +1000

    L10n updates for: it
    From translation svn revision: 58107
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    13      14      source/locale/it/symbols.dic
     1 file changed, 13 insertions(+), 14 deletions(-)

commit 81fa3b19159b9ca992a67ad5898e7f561f9df7f4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 28 00:05:39 2020 +1000

    L10n updates for: fr
    From translation svn revision: 58107
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess.net>
    
    Stats:
    2       2       source/locale/fr/symbols.dic
    67      24      user_docs/fr/userGuide.t2t
     2 files changed, 69 insertions(+), 26 deletions(-)

commit d3a65efe392d9f92f6c0d0f4a75c8acfaf75fafe
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 28 00:05:36 2020 +1000

    L10n updates for: fi
    From translation svn revision: 58107
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    2       2       user_docs/fi/changes.t2t
    37      37      user_docs/fi/userGuide.t2t
     2 files changed, 39 insertions(+), 39 deletions(-)

commit 34aa663373ecffcad2b6d8e089f07ca20edf8f7e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 28 00:05:20 2020 +1000

    L10n updates for: da
    From translation svn revision: 58107
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    90      49      user_docs/da/userGuide.t2t
     1 file changed, 90 insertions(+), 49 deletions(-)

commit 9a4074bce12fc83c6deb2040f5bbfcfdbaca2b20
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Mon Aug 24 04:17:22 2020 -0700

    User guide: remove extra blank lines and mark ends of lists properly (PR #11517)

commit c09cc073a0c60e65fbec2f6b4910f7d344104632
Merge: 000e696db 20685bb8e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 21 00:06:47 2020 +1000

    Update translations.
    
    From translation svn revision: 57958

commit 20685bb8e45e8a399961019a533dea88612fff30
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 21 00:06:44 2020 +1000

    L10n updates for: zh_CN
    From translation svn revision: 57958
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    
    Stats:
    3       3       source/locale/zh_CN/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 3 deletions(-)

commit 8141a171e0225399f7c280855d2074ca3b0c3be6
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 21 00:06:41 2020 +1000

    L10n updates for: vi
    From translation svn revision: 57958
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    50      0       user_docs/vi/changes.t2t
    60      17      user_docs/vi/userGuide.t2t
     2 files changed, 110 insertions(+), 17 deletions(-)

commit cb004986b7d5bb02b1cba756db9b3aa50f9a1e3a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 21 00:06:37 2020 +1000

    L10n updates for: tr
    From translation svn revision: 57958
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    54      2       user_docs/tr/changes.t2t
    93      33      user_docs/tr/userGuide.t2t
     2 files changed, 147 insertions(+), 35 deletions(-)

commit 72ef1f02194ea0cef0c99157a895cb6e164823f4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 21 00:06:31 2020 +1000

    L10n updates for: sr
    From translation svn revision: 57958
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    52      2       user_docs/sr/changes.t2t
    66      23      user_docs/sr/userGuide.t2t
     2 files changed, 118 insertions(+), 25 deletions(-)

commit e13ff4f7c592e3cbce566170bc1a98d048eac04b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 21 00:06:13 2020 +1000

    L10n updates for: nl
    From translation svn revision: 57958
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    65      25      user_docs/nl/userGuide.t2t
     1 file changed, 65 insertions(+), 25 deletions(-)

commit bbf66dcda2584ac3417d429b76e7f37c4d2f317a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 21 00:06:07 2020 +1000

    L10n updates for: mn
    From translation svn revision: 57958
    
    Authors:
    Mongol NVDA-Translation <mongoliannvdatranslation@gmail.com>
    
    Stats:
    3       3       source/locale/mn/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 3 deletions(-)

commit f29a49d6256cf65f153b589869a5666abda79685
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 21 00:05:49 2020 +1000

    L10n updates for: hr
    From translation svn revision: 57958
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Milo Ivir <mivir@milotype.de>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    50      0       user_docs/hr/changes.t2t
     1 file changed, 50 insertions(+)

commit 52a23184a8f6d0b4ca07d9f75fe9ee706724f7de
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 21 00:05:44 2020 +1000

    L10n updates for: gl
    From translation svn revision: 57958
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    Javier Curras <javier.curras@nvda.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    7       1       source/locale/gl/symbols.dic
    50      0       user_docs/gl/changes.t2t
    68      25      user_docs/gl/userGuide.t2t
     3 files changed, 125 insertions(+), 26 deletions(-)

commit 6827387590b4765a9cb45c9a6c73216dd127763f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 21 00:05:40 2020 +1000

    L10n updates for: fr
    From translation svn revision: 57958
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess.net>
    
    Stats:
    4       2       source/locale/fr/symbols.dic
     1 file changed, 4 insertions(+), 2 deletions(-)

commit 47ed9ea30275b2076fa018fe0ca9da9fe5554fdf
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 21 00:05:38 2020 +1000

    L10n updates for: fi
    From translation svn revision: 57958
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    7       7       source/locale/fi/LC_MESSAGES/nvda.po
    50      0       user_docs/fi/changes.t2t
    92      51      user_docs/fi/userGuide.t2t
     3 files changed, 149 insertions(+), 58 deletions(-)

commit 3f7086f1fa597e560c52311efb196d417b63039a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 21 00:05:31 2020 +1000

    L10n updates for: es
    From translation svn revision: 57958
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    7       1       source/locale/es/symbols.dic
    52      0       user_docs/es/changes.t2t
    68      25      user_docs/es/userGuide.t2t
     3 files changed, 127 insertions(+), 26 deletions(-)

commit b8aa002e39b37d2e6ec9f84f4bd3b29c513dd450
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 21 00:05:25 2020 +1000

    L10n updates for: de
    From translation svn revision: 57958
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    54      2       user_docs/de/changes.t2t
    72      32      user_docs/de/userGuide.t2t
     2 files changed, 126 insertions(+), 34 deletions(-)

commit 1ef4dfb0ebf3d86e1d2bdc1572be43c5a0d90661
Author: Bill Dengler <codeofdusk@gmail.com>
Date:   Thu Aug 20 06:42:37 2020 -0400

    Minor typo's in docs (#PR 11511)

commit b65608ac2680f105db29ba614c65802763d09d6a
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Thu Aug 20 15:50:47 2020 +1000

    Remove reference cycles in contentRecog objects (#11510)
    
    * ContentRecog: add a BaseContentRecogTextInfo class which all TextInfos emitted by RecogResult objects should now inherit from to avoid creating reference cycles. the built-in ContentRecognizer TextInfos now do this.
    
    * Add comment

commit 0098a31a7fb97919d6e55e8d0b2dd3bf62e8bc70
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Tue Aug 18 13:47:46 2020 +1000

    Detect and log objects being cleaned up by the Python cyclic garbage collector, and remove several more reference cycles (#11499)
    
    * Track deleting of important unreachable objects by the Python garbage collector. Includes COM pointers, and most NVDA-specific classes (AutoPropertyObject, _eventExecutor, WavePlayer, sayAll readers).
    
    * ia2Web.Editor NVDAObject: clean up _lastCaretObj in event_loseFocus added by MozillaCompoundTextInfo, in order to break a reference cycle.
    
    * logHandler: stop a reference cycle when fetching a frame's locals within an exception caluse where the Exception is exposed as a local variable within the clause.
    
    * eventHandler: ensure that _eventExecutor does not end up as a reference cycle when there is an exception when executing an event.
    
    * garbageHandler: add copyright header.
    
    * Update What's new.
    
    * Track some UpdateCheck classes with garbageHandler.

commit 89c84b84b6b9dbc43798840c200459ebfd3a1669
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Sun Aug 16 05:09:44 2020 +0200

    Provide proper path to the .reg file in COMRegistrationFixes tool (#11494)

commit 000e696dba8b47074624b65cc907be83300a96b6
Merge: 9edb6c429 f242b05fd
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 14 00:07:27 2020 +1000

    Update translations.
    
    From translation svn revision: 57761

commit f242b05fd434b03f47ed5a745be929fee18ddc15
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 14 00:07:24 2020 +1000

    L10n updates for: zh_TW
    From translation svn revision: 57761
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    1       1       source/locale/zh_TW/LC_MESSAGES/nvda.po
    1       1       user_docs/zh_TW/userGuide.t2t
     2 files changed, 2 insertions(+), 2 deletions(-)

commit 3f549248402839294f81cfb4e97badd3b32c1c28
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 14 00:07:21 2020 +1000

    L10n updates for: zh_HK
    From translation svn revision: 57761
    
    Authors:
    Eric Yip <ericycy@gmail.com>
    
    Stats:
    1       1       source/locale/zh_HK/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit bc75bd7481cd4dd16ffcf7b97eff5f234ced221d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 14 00:07:20 2020 +1000

    L10n updates for: zh_CN
    From translation svn revision: 57761
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    
    Stats:
    1       1       source/locale/zh_CN/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit be2f8a0e5c324df1240a8102a55d1e98e7c8c298
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 14 00:07:17 2020 +1000

    L10n updates for: vi
    From translation svn revision: 57761
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    4       4       source/locale/vi/LC_MESSAGES/nvda.po
     1 file changed, 4 insertions(+), 4 deletions(-)

commit 9b131d201b6ec90af47c9a971837797314b6e94f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 14 00:07:15 2020 +1000

    L10n updates for: uk
    From translation svn revision: 57761
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    1       1       source/locale/uk/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit a65177a168ccda492813005f5c875365d43fa6d4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 14 00:07:12 2020 +1000

    L10n updates for: tr
    From translation svn revision: 57761
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    1       1       source/locale/tr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 510bc184a88b93877d730c2191de44f3a9c66ffc
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 14 00:07:09 2020 +1000

    L10n updates for: ta
    From translation svn revision: 57761
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    13      13      source/locale/ta/LC_MESSAGES/nvda.po
     1 file changed, 13 insertions(+), 13 deletions(-)

commit d46af0b74e5b3fe0ffe4e2f6cf7aeeafd03d7e1b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 14 00:07:06 2020 +1000

    L10n updates for: sv
    From translation svn revision: 57761
    
    Authors:
    Daniel Johansson <daniel.johansson@coeptus.se>
    Niklas Johansson <sleeping.pillow@gmail.com>
    Karl-Otto Rosenqvist <Karl-otto@mawingu.se>
    
    Stats:
    1       1       source/locale/sv/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 4727ee03f64be825fe43acbcf0be8b29d950a6c2
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 14 00:07:05 2020 +1000

    L10n updates for: sr
    From translation svn revision: 57761
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    1       1       source/locale/sr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit d26a206767f2c5d65fbeb9b7aa9c9184069e54b8
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 14 00:07:03 2020 +1000

    L10n updates for: so
    From translation svn revision: 57761
    
    Authors:
    Othmanothman <othman82@hotmail.com>
    
    Stats:
    1       1       source/locale/so/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 085cb1c2a5647214106ea1a7dc7455e1efa6f829
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 14 00:07:02 2020 +1000

    L10n updates for: sl
    From translation svn revision: 57761
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    1       1       source/locale/sl/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit ae176ce42e17f6ae279eb83fb4ce2e0f0ad5e4db
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 14 00:07:00 2020 +1000

    L10n updates for: sk
    From translation svn revision: 57761
    
    Authors:
    Ondrej Rosik <ondrej.rosik@gmail.com>
    Peter Vagner <peter.v@datagate.sk>
    Jan Kulik <jan.kulik.szsle@outlook.sk>
    
    Stats:
    1       1       source/locale/sk/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit b03239e1105b1741495caff9af983a8fbf14c922
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 14 00:06:57 2020 +1000

    L10n updates for: ru
    From translation svn revision: 57761
    
    Authors:
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    
    Stats:
    1       1       source/locale/ru/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit d0ad5fad0dd549f4cf3266b0d0ac240fddfeb583
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 14 00:06:53 2020 +1000

    L10n updates for: ro
    From translation svn revision: 57761
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <7ro2014@gmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    George Antonio Andrei <george.andrei2002@gmail.com>
    
    Stats:
    1       1       source/locale/ro/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 577ad472941e247448dcbf456178e008a317564d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 14 00:06:50 2020 +1000

    L10n updates for: pt_PT
    From translation svn revision: 57761
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    1       1       source/locale/pt_PT/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 564fe59b60825b4080b00fc6bdc2b37fb8808571
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 14 00:06:47 2020 +1000

    L10n updates for: pt_BR
    From translation svn revision: 57761
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    1       1       source/locale/pt_BR/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 7978ef06f8b0d6eda343d6d5abda24af375af807
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 14 00:06:44 2020 +1000

    L10n updates for: pl
    From translation svn revision: 57761
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Hubert Meyer <hubmeyer1989@gmail.com>
    Arkadiusz Swietnicki <nuno69a@gmail.com>
    
    Stats:
    1       1       source/locale/pl/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 9e2b557b0c3d86b0b471926e7ce2012cf8024224
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 14 00:06:41 2020 +1000

    L10n updates for: pa
    From translation svn revision: 57761
    
    Authors:
    Maheshinder Singh Khosla <mahesh.khosla@gmail.com>
    Dinesh Mittal <punjabimaster259@gmail.com>
    
    Stats:
    1       1       source/locale/pa/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit ff53dac83e6d60d138bca99222c9f306e4aed126
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 14 00:06:40 2020 +1000

    L10n updates for: nl
    From translation svn revision: 57761
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    1       1       source/locale/nl/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 2a90e8369e8c5f8a6c2409d87b0f7b6add807139
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 14 00:06:38 2020 +1000

    L10n updates for: ne
    From translation svn revision: 57761
    
    Authors:
    Puskal Gautam <nvda.nepali@gmail.com>
    
    Stats:
    1       1       source/locale/ne/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 4ae64438d3dd827a8f41919cc82a5d530d749ef9
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 14 00:06:36 2020 +1000

    L10n updates for: nb_NO
    From translation svn revision: 57761
    
    Authors:
    David Hole <balubathebrave@gmail.com>
    Bjornar Seppola <bjornar@seppola.net>
    
    Stats:
    1       1       source/locale/nb_NO/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit e63afde883ce5419672ce8b1081f191acce00e47
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 14 00:06:34 2020 +1000

    L10n updates for: my
    From translation svn revision: 57761
    
    Authors:
    Benedict La hkun <lkbenedict@gmail.com>
    
    Stats:
    1       1       source/locale/my/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 3e5a549e7166705205474d63db3968be90c9d688
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 14 00:06:32 2020 +1000

    L10n updates for: mn
    From translation svn revision: 57761
    
    Authors:
    Mongol NVDA-Translation <mongoliannvdatranslation@gmail.com>
    
    Stats:
    495     520     source/locale/mn/LC_MESSAGES/nvda.po
     1 file changed, 495 insertions(+), 520 deletions(-)

commit abe1c32437529722f7c9902cef9a16ce756d9969
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 14 00:06:29 2020 +1000

    L10n updates for: mk
    From translation svn revision: 57761
    
    Authors:
    zvonimir stanecic <9a5dsz@gozaltech.org>
    Kiko Lazarev <kristijan.lazarev@gmail.com>
    
    Stats:
    1       1       source/locale/mk/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit b210ba746d76de41c314e7da6ec0fa5ab53a03cc
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 14 00:06:26 2020 +1000

    L10n updates for: lt
    From translation svn revision: 57761
    
    Authors:
    Paulius Leveris <paulius.leveris@gmail.com>
    Rimas Kudelis <rq@akl.lt>
    
    Stats:
    1       1       source/locale/lt/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 26afef813ba062f67fb190e2427d2854776f8005
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 14 00:06:24 2020 +1000

    L10n updates for: ko
    From translation svn revision: 57761
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    1       1       source/locale/ko/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 2982590d39c4288345937accb5d5a255d8c5a68a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 14 00:06:20 2020 +1000

    L10n updates for: kn
    From translation svn revision: 57761
    
    Authors:
    Siddalingeshwar Ingalagi <ingalagisiddu@gmail.com>
    
    Stats:
    1       1       source/locale/kn/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 9ecdca957037c58b4d521c1808fcc2c64fe07858
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 14 00:06:18 2020 +1000

    L10n updates for: kmr
    From translation svn revision: 57761
    
    Authors:
    Imam Kahraman <imam.kahraman@googlemail.com>
    
    Stats:
    1       1       source/locale/kmr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit b59db542be37266ac167982df5cda00a1e1caced
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 14 00:06:17 2020 +1000

    L10n updates for: ka
    From translation svn revision: 57761
    
    Authors:
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Goderdzi Gogoladze <goderdzigogoladze@gmail.com>
    
    Stats:
    1       1       source/locale/ka/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit ef394b206bb8cc33dd3e70ba503f77032601a9df
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 14 00:06:16 2020 +1000

    L10n updates for: ja
    From translation svn revision: 57761
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    1       1       source/locale/ja/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 1fa922dcfaf6444fe545b74f82b4af2102a1a217
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 14 00:06:10 2020 +1000

    L10n updates for: it
    From translation svn revision: 57761
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    1       1       source/locale/it/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit d516be580098896a795039b2143ce55fee3ece7a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 14 00:06:06 2020 +1000

    L10n updates for: is
    From translation svn revision: 57761
    
    Authors:
    Birkir R. Gunnarsson <birkir.gunnarsson@gmail.com>
    Hlynur Hreinsson <hm.hreinsson@gmail.com>
    
    Stats:
    1       1       source/locale/is/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit e951dda0b067f878cdf90a8000927a4ef3177fc1
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 14 00:06:04 2020 +1000

    L10n updates for: hu
    From translation svn revision: 57761
    
    Authors:
    Aron OcsvAri <oaron@nvda.hu>
    
    Stats:
    1       1       source/locale/hu/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 462c8db02d584e68e432b616d17e530f63d1a186
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 14 00:06:01 2020 +1000

    L10n updates for: hr
    From translation svn revision: 57761
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Milo Ivir <mivir@milotype.de>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    1       1       source/locale/hr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit a54a7756863977fd807d50d4aa291adc54a53f5b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 14 00:05:58 2020 +1000

    L10n updates for: hi
    From translation svn revision: 57761
    
    Authors:
    dipendra.lists@gmail.com
    Doc Mehta <joyofinspiring@gmail.com>
    
    Stats:
    1       1       source/locale/hi/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit beb1e4f01693404944f0776e49cbe2db4bae2986
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 14 00:05:57 2020 +1000

    L10n updates for: he
    From translation svn revision: 57761
    
    Authors:
    Shmuel Naaman <shmuel_naaman@yahoo.com>
    Afik Sofir <afik.sofer@gmail.com>
    
    Stats:
    1       1       source/locale/he/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit eed43fff7a044cb3114e9566edb19042b6c417ab
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 14 00:05:54 2020 +1000

    L10n updates for: gl
    From translation svn revision: 57761
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    Javier Curras <javier.curras@nvda.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/gl/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 1d890682236a126584640c1d3f155cc3d3d79a9c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 14 00:05:51 2020 +1000

    L10n updates for: ga
    From translation svn revision: 57761
    
    Authors:
    Cearbhall OMeadhra <cearbhall.omeadhra@blbc.ie>
    Ronan McGuirk <ronan.p.mcguirk@gmail.com>
    Kevin Scannell <kscanne@gmail.com>
    
    Stats:
    1       1       source/locale/ga/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 3e103fc43c12e42026e69ceac3f31e3e729ef8fe
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 14 00:05:50 2020 +1000

    L10n updates for: fr
    From translation svn revision: 57761
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess.net>
    
    Stats:
    1       1       source/locale/fr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 413f19c46226863058e923db513688471c77a601
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 14 00:05:47 2020 +1000

    L10n updates for: fi
    From translation svn revision: 57761
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    1       1       source/locale/fi/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 1b05da1786d53c45ba433d3c1f1338beca4515bb
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 14 00:05:44 2020 +1000

    L10n updates for: fa
    From translation svn revision: 57761
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    1       1       source/locale/fa/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 869b416e812b4bb4b6da2c231a13503c7e27c508
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 14 00:05:40 2020 +1000

    L10n updates for: es
    From translation svn revision: 57761
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/es/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit e43696ba0e0f3110a31c2beef8f259ee32f721df
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 14 00:05:37 2020 +1000

    L10n updates for: es_CO
    From translation svn revision: 57761
    
    Authors:
    Jorge Zarache <reydelasmaquinas@outlook.com>
    Luis Carlos Gonzáles Moráles <luiscarlosgm@hotmail.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/es_CO/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit fa46a19dae1562e38e1d95b59370d3c5da3f8186
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 14 00:05:34 2020 +1000

    L10n updates for: el
    From translation svn revision: 57761
    
    Authors:
    Irene Nakas <irnakas@gmail.com>
    Nikos Demetriou <nikosdemetriou@googlemail.com>
    access@e-rhetor.com
    
    Stats:
    1       1       source/locale/el/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 2ea175cf534b769c29800c4e930290c267cecf8c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 14 00:05:32 2020 +1000

    L10n updates for: de
    From translation svn revision: 57761
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    6       6       source/locale/de/LC_MESSAGES/nvda.po
     1 file changed, 6 insertions(+), 6 deletions(-)

commit 4a4d1c9883d5d69ad5ec9ef4c733f9c6ff9ca154
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 14 00:05:29 2020 +1000

    L10n updates for: de_CH
    From translation svn revision: 57761
    
    Authors:
    Robert Hänggi <aarjay.robert@gmail.com>
    
    Stats:
    1       1       source/locale/de_CH/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 54575e293ab1a2a0ff4292ce4fc7e31e627672c7
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 14 00:05:27 2020 +1000

    L10n updates for: da
    From translation svn revision: 57761
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    1       1       source/locale/da/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 312ce5aa5144aa297a2ecdc746e6a4a249da603b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 14 00:05:24 2020 +1000

    L10n updates for: cs
    From translation svn revision: 57761
    
    Authors:
    Martina Letochova <letochova@seznam.cz>
    
    Stats:
    1       1       source/locale/cs/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit f36cb4a1592825e5b76ef87953c364403bb937ba
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 14 00:05:23 2020 +1000

    L10n updates for: ckb
    From translation svn revision: 57761
    
    Authors:
    Ali Ustek <aliustek@gmail.com>
    Patrick Galasso <Patrice.galasso@gmail.com>
    Jwanro Mustafa <jwanroabdula@hotmail.com>
    Kosrat D Ahmad <kosrat.d.ahmad@gmail.com>
    silva.hm88@gmail.com
    
    Stats:
    1       1       source/locale/ckb/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 6d75a853616d19bbd9a3777f17745987aeb2a691
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 14 00:05:22 2020 +1000

    L10n updates for: ca
    From translation svn revision: 57761
    
    Authors:
    Ruben Alcaraz <ruben.hangar1.8@gmail.com>
    Dr. Mireia Ribera <mireia.ribera@gmail.com>
    Santi Moese <santispock@gmail.com>
    Marina Salse Rovira <salse@ub.edu>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/ca/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 85a05940565b4c8668c4952b7e8a1bdc074bd6b4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 14 00:05:19 2020 +1000

    L10n updates for: bg
    From translation svn revision: 57761
    
    Authors:
    Zahari Yurukov <zahari.yurukov@gmail.com>
    Kostadin Kolev <k_kolev1985@mail.bg>
    
    Stats:
    1       1       source/locale/bg/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 57cdf7e9da42bb97055ab26a7a7eb0e6137b7ffc
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 14 00:05:13 2020 +1000

    L10n updates for: ar
    From translation svn revision: 57761
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Omar Alojaimi <amrahmad1995@gmail.com>
    
    Stats:
    1       1       source/locale/ar/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 01f5e22de40e3d0da835505805850b3917452ea9
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 14 00:05:09 2020 +1000

    L10n updates for: an
    From translation svn revision: 57761
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/an/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit d052daf7424f766094e7c71e5eb91f2a9fff59d4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 14 00:05:05 2020 +1000

    L10n updates for: am
    From translation svn revision: 57761
    
    Authors:
    KETEMA ZEREGAW <kzeregaw@msn.com>
    Dr. Tamru E. Belay <g.braille@sympatico.ca>
    
    Stats:
    1       1       source/locale/am/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit d7e80693cfc9865283d5fc0744fbdc2088290365
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Aug 12 04:35:30 2020 +1000

    Update what's new for pr #11478

commit 9ab0ef826c21af0e646a1832fea1d01742a28317
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Aug 12 04:31:16 2020 +1000

    * inputCore.InputGesture: add an executeScript method which executes the given  script passing it this gesture, by using scriptHandler.executeScript. this is implemented to allow Gesture subclasses to perform actions before / after script execution. (#11478)
    
    * scriptHandler._queueScriptCallback: call Gesture.executeScript rather than executeScript directly.
    * keyboardHandler.KeyboardInputGesture: track the number of times this Gesture instance is sent as input onto the Operating System (I.e. how many times Gesture.send is called). this is recorded on a sendCount instance variable. This is useful to see if a script has actually sent its gesture on or not.
    * keyboardHandler.KeyboardInputGesture: implement executeScript, which after executing the script normally, checks to see if the gesture was never actually sent, and that the gesture's modifiers could possibly perform an OS action (such as an input language change) and if so then sends key down and key up for the special VK_NONE key. This code was moved from internal_keyDownEvent. Having this code execute from the main thread as opposed to the keyboard hook, stops a deadlock with the ignoreInjection hook and stops deliberate reentrancy of the keyboard hook.

commit 633435db9d1abcf00bc47d047c3d3cd984b72109
Author: James Teh <jamie@jantrid.net>
Date:   Mon Aug 10 23:31:42 2020 +1000

    nvwave: Don't close the audio device unless there hasn't been any audio played for 10 seconds. (PR #11024)
    
    Fixes #5172
    Fixes #10721
    
    ## Summary of the issue:
    
    - As described in #5172, some audio drivers/hardware take a long time to open the device and/or truncate the start/end of the audio.
    - As described in #10721 (comment), calling WaveOutOpen in the OneCore synth callback mysteriously blocks (and thus lags) for ~100 ms. Because we close the audio device on idle, we can trigger this problem. Although #11023 mostly fixes this, it's impossible (or at least very difficult) to resolve this completely from within the OneCore driver.
    - Aside from all of this, closing and opening the audio device for rapid short utterances (e.g. rapid movement with the cursor keys or typing) doesn't seem particularly optimal. It's difficult to measure this, but I'd say mitigating this is likely to make audio performance faster/smoother.
    
    ## Description of how this pull request fixes the issue:
    
    When WavePlayer.idle() is called and closeWhenIdle is set, instead of closing the device immediately after the audio finishes, set a timer. If audio is played before the timer elapses, stop the timer. Close the device when the timer expires.

commit 68c7a39cfa2056d5793cabe6368521b4c181cfc7
Merge: 414044798 f681e2041
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Mon Aug 10 14:25:24 2020 +0200

    Add script to copy a fragment of the log to the clipboard (PR #9280)
    
    Fixes #9280
    
    When debugging, it was a pain to delimit the relevant fragment of the log.
    
    A global command has been added which marks the current end of the log as the start position of the fragment. When executed again, the fragment of the log is copied to the clipboard.

commit f681e204168536e86211ec1cb11fb03e37da5b7d
Author: Reef Turner <reef@nvaccess.org>
Date:   Mon Aug 10 13:57:11 2020 +0200

    Update changes file for PR #9844

commit ee2904a30dc5ae7afbbd1e9ddd1fc30be3551732
Merge: e0ddecfe5 414044798
Author: Reef Turner <reef@nvaccess.org>
Date:   Mon Aug 10 13:56:13 2020 +0200

    Merge remote-tracking branch 'origin/master' into i9280

commit 41404479881dd3af8d9654c3e6fac4614f3c9f28
Merge: a4afe098e 07d1388be
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Mon Aug 10 13:55:42 2020 +0200

    Browseable Messages - Centered and enlarged (PR #9910)
    
    Fixes #9910
    
    Browseable messages, as produced with ui.browseableMessage are no longer shown in a tiny window, located near the top-left corner of the display, sometimes partially off-screen.

commit 9edb6c429434181bc21ded76ba10117ced56722d
Merge: 869ea731b a4afe098e
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Mon Aug 10 13:43:13 2020 +0200

    Update Beta from Master
    
    Via pull request #11470

commit 07d1388be88df4c263e0feaa61c06b68796379ac
Author: Reef Turner <reef@nvaccess.org>
Date:   Mon Aug 10 13:41:09 2020 +0200

    Update changes file for PR #9911

commit c204b0eeecfd12c5f9e30aab8c95850467d42d59
Merge: 6f3960328 a4afe098e
Author: Reef Turner <reef@nvaccess.org>
Date:   Mon Aug 10 13:33:24 2020 +0200

    Merge remote-tracking branch 'origin/master' into i9910-browseableMessage

commit a4afe098ecd82ddea79855d94b803e8aafb0c994
Merge: 814fe6074 869ea731b
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Mon Aug 10 11:39:12 2020 +0200

    Merge branch 'beta' into master

commit 814fe60746857a3df8f2af39acc7b4ceb1ff9c1b
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Mon Aug 10 03:13:41 2020 +0200

    Fix getting name for SysListview32 item when column has no location (#11469)
    
    * Fix getting name for SysListview32 item when column has no location
    
    * Update what's new
    
    Co-authored-by: Michael Curran <mick@nvaccess.org>

commit 1b61316b6adb8e4883c78e4ff1ab8fabc4e62ed9
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Mon Aug 10 03:13:18 2020 +0200

    Fix faulty read only state on UIA objects (#11471)
    
    * Fix faulty read only state on UIA objects
    
    * Fix typo

commit 869ea731b87f9dae693709ba0d01854e095bf785
Merge: e7e494c88 5d6299122
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 7 00:06:50 2020 +1000

    Update translations.
    
    From translation svn revision: 57731

commit 5d62991227bdc84c3365bfb340867f4bb2634c35
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 7 00:06:48 2020 +1000

    L10n updates for: zh_TW
    From translation svn revision: 57731
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    1       1       source/locale/zh_TW/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 7445686cdbb578ac4f811adc2e93de0bf9895fd2
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 7 00:06:46 2020 +1000

    L10n updates for: zh_HK
    From translation svn revision: 57731
    
    Authors:
    Eric Yip <ericycy@gmail.com>
    
    Stats:
    1       1       source/locale/zh_HK/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit c676bda69480a3052a8182cc6fd33dc0648b7950
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 7 00:06:45 2020 +1000

    L10n updates for: zh_CN
    From translation svn revision: 57731
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    
    Stats:
    1       1       source/locale/zh_CN/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit cbe652ca24e997db24c412ed8460051f6d4c8c8a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 7 00:06:43 2020 +1000

    L10n updates for: vi
    From translation svn revision: 57731
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    9       9       source/locale/vi/LC_MESSAGES/nvda.po
     1 file changed, 9 insertions(+), 9 deletions(-)

commit c5829fbadfb1be7e065c2344e8c32541043473c1
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 7 00:06:40 2020 +1000

    L10n updates for: uk
    From translation svn revision: 57731
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    1       1       source/locale/uk/LC_MESSAGES/nvda.po
    1       1       user_docs/uk/userGuide.t2t
     2 files changed, 2 insertions(+), 2 deletions(-)

commit 7beb8aa6e295590369395d8760fa596fbe9e6582
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 7 00:06:39 2020 +1000

    L10n updates for: tr
    From translation svn revision: 57731
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    1       1       source/locale/tr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 9487f3ef77f72ca5d0cc914d969743a7059b7808
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 7 00:06:36 2020 +1000

    L10n updates for: ta
    From translation svn revision: 57731
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    3       3       source/locale/ta/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 3 deletions(-)

commit 986e4658f5cee06bc297c77d52b06252653a6bd3
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 7 00:06:34 2020 +1000

    L10n updates for: sv
    From translation svn revision: 57731
    
    Authors:
    Daniel Johansson <daniel.johansson@coeptus.se>
    Niklas Johansson <sleeping.pillow@gmail.com>
    Karl-Otto Rosenqvist <Karl-otto@mawingu.se>
    
    Stats:
    1       1       source/locale/sv/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 6ad232fd42097e3414d9d21308114b45bd862a50
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 7 00:06:33 2020 +1000

    L10n updates for: sr
    From translation svn revision: 57731
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    1       1       source/locale/sr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 2e409cbc6db38fd4cc888940c3f54a7cbe5713e8
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 7 00:06:31 2020 +1000

    L10n updates for: so
    From translation svn revision: 57731
    
    Authors:
    Othmanothman <othman82@hotmail.com>
    
    Stats:
    1       1       source/locale/so/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 278f5f49aecb2da409ea93caedd0e3d705584302
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 7 00:06:30 2020 +1000

    L10n updates for: sl
    From translation svn revision: 57731
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    1       1       source/locale/sl/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit e5467de10a442cad704530ea174aa77de9cb3e45
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 7 00:06:29 2020 +1000

    L10n updates for: sk
    From translation svn revision: 57731
    
    Authors:
    Ondrej Rosik <ondrej.rosik@gmail.com>
    Peter Vagner <peter.v@datagate.sk>
    Jan Kulik <jan.kulik.szsle@outlook.sk>
    
    Stats:
    1       1       source/locale/sk/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 70e22e283b25a32bb15d2fe36cc2c4eddb24e100
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 7 00:06:27 2020 +1000

    L10n updates for: ru
    From translation svn revision: 57731
    
    Authors:
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    
    Stats:
    1       1       source/locale/ru/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 5869b1ff3565d360acc15695bbfeaadb5c8e7458
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 7 00:06:23 2020 +1000

    L10n updates for: ro
    From translation svn revision: 57731
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <7ro2014@gmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    George Antonio Andrei <george.andrei2002@gmail.com>
    
    Stats:
    1       1       source/locale/ro/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit fc2302d4108bb72d4dc9bd4ede0fc07839994b51
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 7 00:06:21 2020 +1000

    L10n updates for: pt_PT
    From translation svn revision: 57731
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    1       1       source/locale/pt_PT/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 204669b40277edd31ddc22b84ab18c4cd1b5f889
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 7 00:06:19 2020 +1000

    L10n updates for: pt_BR
    From translation svn revision: 57731
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    1       1       source/locale/pt_BR/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 575750a7ea98b9ee46580064408257f93634ff48
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 7 00:06:16 2020 +1000

    L10n updates for: pl
    From translation svn revision: 57731
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Hubert Meyer <hubmeyer1989@gmail.com>
    Arkadiusz Swietnicki <nuno69a@gmail.com>
    
    Stats:
    1       1       source/locale/pl/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 981a94c3801c863cb9f8ea0074eb2917c2063377
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 7 00:06:14 2020 +1000

    L10n updates for: pa
    From translation svn revision: 57731
    
    Authors:
    Maheshinder Singh Khosla <mahesh.khosla@gmail.com>
    Dinesh Mittal <punjabimaster259@gmail.com>
    
    Stats:
    1       1       source/locale/pa/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 0599a1eeb6e6656c93f76d2e3f3fd2685d1a9636
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 7 00:06:14 2020 +1000

    L10n updates for: nl
    From translation svn revision: 57731
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    1       1       source/locale/nl/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit c2d05ae0208c8b7ff24e49b16ededf83ca1ea970
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 7 00:06:12 2020 +1000

    L10n updates for: ne
    From translation svn revision: 57731
    
    Authors:
    Puskal Gautam <nvda.nepali@gmail.com>
    
    Stats:
    1       1       source/locale/ne/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 9686e2bbd40e65368abf88281699669454c32bde
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 7 00:06:10 2020 +1000

    L10n updates for: nb_NO
    From translation svn revision: 57731
    
    Authors:
    David Hole <balubathebrave@gmail.com>
    Bjornar Seppola <bjornar@seppola.net>
    
    Stats:
    1       1       source/locale/nb_NO/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 6e91d3cfe47a2af7d11753e7ccf5af04f5993198
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 7 00:06:09 2020 +1000

    L10n updates for: my
    From translation svn revision: 57731
    
    Authors:
    Benedict La hkun <lkbenedict@gmail.com>
    
    Stats:
    1       1       source/locale/my/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 2017fc1373d6b5267cf11695ac9caad2a246f634
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 7 00:06:07 2020 +1000

    L10n updates for: mn
    From translation svn revision: 57731
    
    Authors:
    Mongol NVDA-Translation <mongoliannvdatranslation@gmail.com>
    
    Stats:
    1       1       source/locale/mn/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit c26074f02276071eba73a87f7a764f649367490f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 7 00:06:05 2020 +1000

    L10n updates for: mk
    From translation svn revision: 57731
    
    Authors:
    zvonimir stanecic <9a5dsz@gozaltech.org>
    Kiko Lazarev <kristijan.lazarev@gmail.com>
    
    Stats:
    1       1       source/locale/mk/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 97700beafd5a22f3a74ad4c6329a573b6cbde18e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 7 00:06:03 2020 +1000

    L10n updates for: lt
    From translation svn revision: 57731
    
    Authors:
    Paulius Leveris <paulius.leveris@gmail.com>
    Rimas Kudelis <rq@akl.lt>
    
    Stats:
    1       1       source/locale/lt/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 8921e76df8ae047941e4ecca15e46a51f5ae45f2
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 7 00:06:02 2020 +1000

    L10n updates for: ko
    From translation svn revision: 57731
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    1       1       source/locale/ko/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 1dd473d72a6f5172035ede744f5e9a5a0d61d631
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 7 00:05:59 2020 +1000

    L10n updates for: kn
    From translation svn revision: 57731
    
    Authors:
    Siddalingeshwar Ingalagi <ingalagisiddu@gmail.com>
    
    Stats:
    1       1       source/locale/kn/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 83b0f9d0f418184b45a2b28fc52287b8bdd1aa3d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 7 00:05:58 2020 +1000

    L10n updates for: kmr
    From translation svn revision: 57731
    
    Authors:
    Imam Kahraman <imam.kahraman@googlemail.com>
    
    Stats:
    1       1       source/locale/kmr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 0fbdf89c8fd6652ba758cb1a0dec6339c60c50ff
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 7 00:05:57 2020 +1000

    L10n updates for: ka
    From translation svn revision: 57731
    
    Authors:
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Goderdzi Gogoladze <goderdzigogoladze@gmail.com>
    
    Stats:
    1       1       source/locale/ka/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 8819a2c5051c974032d15e4281fc1e8aa7dc108b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 7 00:05:57 2020 +1000

    L10n updates for: ja
    From translation svn revision: 57731
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    1       1       source/locale/ja/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 592d67617c5c99e280e07f512eb5747eb91da486
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 7 00:05:54 2020 +1000

    L10n updates for: it
    From translation svn revision: 57731
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    1       1       source/locale/it/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit fea492bd53461a254c9392e0dd9244d76dcd1f87
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 7 00:05:51 2020 +1000

    L10n updates for: is
    From translation svn revision: 57731
    
    Authors:
    Birkir R. Gunnarsson <birkir.gunnarsson@gmail.com>
    Hlynur Hreinsson <hm.hreinsson@gmail.com>
    
    Stats:
    1       1       source/locale/is/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 499535c395d0a6115fb7e40a25878c4e04073902
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 7 00:05:50 2020 +1000

    L10n updates for: hu
    From translation svn revision: 57731
    
    Authors:
    Aron OcsvAri <oaron@nvda.hu>
    
    Stats:
    1       1       source/locale/hu/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 523e8f752abdac916bc99dd5a464b43561937510
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 7 00:05:48 2020 +1000

    L10n updates for: hr
    From translation svn revision: 57731
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Milo Ivir <mivir@milotype.de>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    1       1       source/locale/hr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit efc2a533876177640a67c1dce585b0f2f0537d28
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 7 00:05:46 2020 +1000

    L10n updates for: hi
    From translation svn revision: 57731
    
    Authors:
    dipendra.lists@gmail.com
    Doc Mehta <joyofinspiring@gmail.com>
    
    Stats:
    1       1       source/locale/hi/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 4c3141172f4308cb20ec3c851d945e28d9cc17c5
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 7 00:05:45 2020 +1000

    L10n updates for: he
    From translation svn revision: 57731
    
    Authors:
    Shmuel Naaman <shmuel_naaman@yahoo.com>
    Afik Sofir <afik.sofer@gmail.com>
    
    Stats:
    1       1       source/locale/he/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit ddf5c6f8a7933ae47f2a9db5c3f4f7fd279c655e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 7 00:05:43 2020 +1000

    L10n updates for: gl
    From translation svn revision: 57731
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    Javier Curras <javier.curras@nvda.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/gl/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit b57c7bf1d74293addb85a6db4905fc43507a257d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 7 00:05:41 2020 +1000

    L10n updates for: ga
    From translation svn revision: 57731
    
    Authors:
    Cearbhall OMeadhra <cearbhall.omeadhra@blbc.ie>
    Ronan McGuirk <ronan.p.mcguirk@gmail.com>
    Kevin Scannell <kscanne@gmail.com>
    
    Stats:
    1       1       source/locale/ga/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit b84bd01defc7b578ab0aecfcf3d99eb22a1e75f4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 7 00:05:40 2020 +1000

    L10n updates for: fr
    From translation svn revision: 57731
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess.net>
    
    Stats:
    1       1       source/locale/fr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit cb1b95e09d5078129a11c351f276c1692abff2e2
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 7 00:05:37 2020 +1000

    L10n updates for: fi
    From translation svn revision: 57731
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    1       1       source/locale/fi/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 2462bce2563a55c2dcd7665b320fe0f1919c0daa
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 7 00:05:35 2020 +1000

    L10n updates for: fa
    From translation svn revision: 57731
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    1       1       source/locale/fa/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 611015a53b49d757405da026b8521d70163bcf31
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 7 00:05:32 2020 +1000

    L10n updates for: es
    From translation svn revision: 57731
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/es/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 8bcf2d9eaecedda6154aa7723202607e2e1f01b3
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 7 00:05:29 2020 +1000

    L10n updates for: es_CO
    From translation svn revision: 57731
    
    Authors:
    Jorge Zarache <reydelasmaquinas@outlook.com>
    Luis Carlos Gonzáles Moráles <luiscarlosgm@hotmail.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/es_CO/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit d7de265bcbec99f0dfd0a3eb56393f2e21d50b51
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 7 00:05:27 2020 +1000

    L10n updates for: el
    From translation svn revision: 57731
    
    Authors:
    Irene Nakas <irnakas@gmail.com>
    Nikos Demetriou <nikosdemetriou@googlemail.com>
    access@e-rhetor.com
    
    Stats:
    1       1       source/locale/el/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 2c31d752a112833ed265eab211ba880009af656b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 7 00:05:25 2020 +1000

    L10n updates for: de
    From translation svn revision: 57731
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    2       2       source/locale/de/LC_MESSAGES/nvda.po
    35      35      source/locale/de/symbols.dic
     2 files changed, 37 insertions(+), 37 deletions(-)

commit 6cdecebadec9e4774180fae3300920ccb02536e9
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 7 00:05:23 2020 +1000

    L10n updates for: de_CH
    From translation svn revision: 57731
    
    Authors:
    Robert Hänggi <aarjay.robert@gmail.com>
    
    Stats:
    1       1       source/locale/de_CH/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 31cfc87a18cb651f3a36167aa8337eb4a894c7a3
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 7 00:05:20 2020 +1000

    L10n updates for: da
    From translation svn revision: 57731
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    1       1       source/locale/da/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit c4328c6f8d6588ca7abca34d7f2d2d055b8a6bc8
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 7 00:05:19 2020 +1000

    L10n updates for: cs
    From translation svn revision: 57731
    
    Authors:
    Martina Letochova <letochova@seznam.cz>
    
    Stats:
    1       1       source/locale/cs/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 666c2fd6d5170051f2050da5784bde7fc66f7a82
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 7 00:05:17 2020 +1000

    L10n updates for: ckb
    From translation svn revision: 57731
    
    Authors:
    Ali Ustek <aliustek@gmail.com>
    Patrick Galasso <Patrice.galasso@gmail.com>
    Jwanro Mustafa <jwanroabdula@hotmail.com>
    Kosrat D Ahmad <kosrat.d.ahmad@gmail.com>
    silva.hm88@gmail.com
    
    Stats:
    1       1       source/locale/ckb/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit b24e7334add3125632bc07e474c7eac899d1534c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 7 00:05:17 2020 +1000

    L10n updates for: ca
    From translation svn revision: 57731
    
    Authors:
    Ruben Alcaraz <ruben.hangar1.8@gmail.com>
    Dr. Mireia Ribera <mireia.ribera@gmail.com>
    Santi Moese <santispock@gmail.com>
    Marina Salse Rovira <salse@ub.edu>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/ca/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 69adf010c6e3bd278de088b54d2991ea3cee9dae
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 7 00:05:14 2020 +1000

    L10n updates for: bg
    From translation svn revision: 57731
    
    Authors:
    Zahari Yurukov <zahari.yurukov@gmail.com>
    Kostadin Kolev <k_kolev1985@mail.bg>
    
    Stats:
    1       1       source/locale/bg/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit ac61949fb51fa9f1f115a41b006b84dab6c55995
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 7 00:05:10 2020 +1000

    L10n updates for: ar
    From translation svn revision: 57731
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Omar Alojaimi <amrahmad1995@gmail.com>
    
    Stats:
    1       1       source/locale/ar/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 2521157bbd72fae978c341f0f8c594b87cf1e105
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 7 00:05:06 2020 +1000

    L10n updates for: an
    From translation svn revision: 57731
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/an/LC_MESSAGES/nvda.po
    15      21      source/locale/an/symbols.dic
     2 files changed, 16 insertions(+), 22 deletions(-)

commit ccbb2781b2c488404e49864580b0fe5c4c15a577
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Aug 7 00:05:04 2020 +1000

    L10n updates for: am
    From translation svn revision: 57731
    
    Authors:
    KETEMA ZEREGAW <kzeregaw@msn.com>
    Dr. Tamru E. Belay <g.braille@sympatico.ca>
    
    Stats:
    1       1       source/locale/am/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 435aedf1c8668e9a4df315937514c8c4327f9374
Merge: f48ce7ad9 e7e494c88
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Thu Aug 6 13:13:39 2020 +0200

    Merge pull request PR #11462 from nvaccess/beta
    
    Update translations on alpha from beta

commit f48ce7ad9eff034d98c90e5503ace25e2dd64196
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Thu Aug 6 13:12:17 2020 +0200

    Add emulated kb gesture support (PR #11402)
    
    Supersedes PR #7784
    Closes #6060.
    
    Co-authored-by: Leonard de Ruijter <leonard@babbage.com>

commit 8f1d6c88e3205e167296bac62d4efe5b1eb06aff
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Tue Aug 4 23:29:52 2020 +0200

    Implement `_get_childCount` for UIA to avoid infinite recursion inn some cases (#11463)
    
    Fixes https://github.com/nvaccess/nvda/issues/11444

commit a8d4ed8845d6f15a1bf445df635dd2945ebcd510
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Tue Aug 4 01:46:37 2020 +0200

    Don't activate Say All profile if there is nothing to read (#11453)
    
    * Don't actibate Say All profile if there is nothing to read
    
    Fixes https://github.com/nvaccess/nvda/issues/10899
    Fixes https://github.com/nvaccess/nvda/issues/9947
    
    * Update what's new
    
    Co-authored-by: Michael Curran <mick@nvaccess.org>

commit e2675e2a839bb40a6c1c64e643151a8a68370bdc
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Mon Aug 3 08:06:04 2020 +0200

    Fix-up of PR 9724. Stop including empty properties when copying object to the clipboard (#11441)
    
    * Stop including empty properties when copying object to the clipboard
    
    Fix for https://github.com/nvaccess/nvda/issues/11438
    
    * Update what's new
    
    Co-authored-by: Michael Curran <mick@nvaccess.org>

commit 3c35b91225111a5fcdbd0af608eff51455cb4898
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Sun Aug 2 22:34:04 2020 -0700

    NVDAObjects/UIA: add UIAAutomationId getter (#11447)
    
    * NVDAObjects.UIA.UIA: introduce UIAAutomationId getter. Re #11445.
    
    Sometimes a COM error is raised when trying to obtain cached automation Id, particularly if a UIA element isn't ready yet (for example, in modern keyboard). To avoid COM error, introduce a dedicated UIA Automation Id getter that either returns the Automation Id if found or an empty string. The overall structure is based on UIAFullDescription and UIAHelpText getters.
    
    * UIA find overlay classes: use a local UIA Automation Id variable to hold current Id information. Re #11445.
    
    When going through overlay classes, instead of fetching cached Automation Id from the underlying UIA element, use the current Automation Id as returned by what U*IA actually says (based on new Automation Id getter). This reduces attribute access and removes the need for a try/except block for some cases as either the actual Automation Id or an empty string will be recorded. However, for backward compatibility, some notable try/except blocks such as search field checks will remain.
    
    * UIA find overlay classes: lint on changed lines. Re #11445.
    
    * UIA dev info: explain that Automation Id will rely on cached value when asking for dev info. Re #11445.

commit bde1978c338b863836b3b40bb1c454cf7018ef7c
Author: James Teh <jamie@jantrid.net>
Date:   Mon Aug 3 15:25:42 2020 +1000

    Clean up Mozilla specific code (#11120)
    
    * Don't fetch NODE_CHILD_OF when fetching parent, since this is no longer needed (or useful) for combo boxes.
    
    * Get rid of mozilla.RootApplication, since this object is no longer reachable without NODE_CHILD_OF.
    
    * accParent is broken in Firefox for same-process iframe documents, so we must still use NODE_CHILD_OF for Documents (but nowhere else).
    
    * Gecko now prunes aria-hidden objects from the tree, so the hidden attribute is no longer used.
    
    * NVDA core: Drop code specific to supporting very old versions of Gecko.
    
    * Gecko vbuf backend: Drop code specific to supporting very old versions of Gecko.
    
    * Gecko always sets the focused state correctly now, so drop BrokenFocusedState code.
    
    * Remove unnecessary imports.
    
    * We only allow show/hide/reorder events for specific cases anyway, so the code to ignore these events for the Firefox location bar is redundant.
    
    * Firefox hasn't had a status bar for a long time, so the Firefox app module does nothing. Remove it.

commit 7e4c2887641f637731d911d57581561b575523a5
Author: James Teh <jamie@jantrid.net>
Date:   Mon Aug 3 12:48:41 2020 +1000

    Don't use sibling text as the description of groupings in IA2 web browsers. (#11448)

commit 87eee7f40bea7ad84d20f3ae8f34a52b0e157b5e
Author: clement <clement.boussiron@gmail.com>
Date:   Fri Jul 31 10:04:42 2020 +0200

    Fix say all error when on Desktop (PR #10723)
    
    Co-authored-by: Reef Turner <reef@nvaccess.org>

commit 39606f14504d614a6e6ba14d064afb8091f047d3
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Fri Jul 31 08:02:59 2020 +1000

    Support ARIA role='mark' and html mark tag (#11436)
    
    * Upgrade IAccessible2 to commit cbc1f29631780  in order to get the IA2_ROLE_MARK constant.
    
    * Add ROLE_MARKED_CONTENT to NVDA, which should represent marked (highlighted) content. Have speech and braille report its start and end within rich text if the report emphasis document formatting option is enabled. Map the IAccessible2 MARK role to the NVDA MARK role. This all means that the mark role will be reported in both Firefox and Chrome.
    
    * Fix linting issues
    
    * Support role=mark in Internet Explorer and standardize support for HTML mark tag with Firefox / Chrome.
    
    * Add a new 'report highlight' option to NVDA's document formatting settings, on by default, and have marked content be affected by that option rather than report emphasis.
    
    * Address linting issues
    
    * Gui: rename option in document formatting from Highlighting to Marked (highlighting).
    UserGuide: mention the braille abbreviation for marked content.
    
    * Update what's new

commit 10976a7419bc4af6a035b6710801d9c0ada573f5
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Fri Jul 31 07:34:56 2020 +1000

    Ensure that all in-process log calls never block an app's threads (#11431)
    
    * Ensure that all in-process log calls never block an app's threads.
    
    * nvdaHelperRemote logMessage: only queue via APC if the manager thread is initialized.
    
    * Fix indentation
    
    * nvdaHelper logging support: refactor for readability.
    
    * nvdaHelper logging: lock the log queue when inserting / fetching.
    
    * nvdaHelper logging: rather than popping items from tempQueue individually, just let them all get destroied when the queue is destroied.
    
    Co-authored-by: Reef Turner <feerrenrut@users.noreply.github.com>
    
    * nvdaHelper logging: if log_flushQueue is called outside of the manager thread, queue the call back to the manager thread with apc.
    
    Co-authored-by: Reef Turner <feerrenrut@users.noreply.github.com>
    
    * nvdaHelper logging:
    * Only try to queue a call to log_flushQueue via APC if the manager thread actually exists yet.
    * Declare log_flushQueue_apcFunc early so it actualy compiles :)
    * Remove a redundant blank line.
    
    * Update What's new
    
    Co-authored-by: Reef Turner <feerrenrut@users.noreply.github.com>

commit e7e494c8814006bd66a999a9f602c7f27910ebcd
Merge: 78ed7bb5c 6cb219cf9
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 31 00:06:50 2020 +1000

    Update translations.
    
    From translation svn revision: 57693

commit 6cb219cf984e48d509e88f2e14f0ef3825786e68
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 31 00:06:48 2020 +1000

    L10n updates for: zh_TW
    From translation svn revision: 57693
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    1       1       source/locale/zh_TW/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 6f24b40012a45be93022d2976b8beec8f437e94e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 31 00:06:46 2020 +1000

    L10n updates for: zh_HK
    From translation svn revision: 57693
    
    Authors:
    Eric Yip <ericycy@gmail.com>
    
    Stats:
    1       1       source/locale/zh_HK/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 393df11158fff5719327cc246680259a0bd98a7a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 31 00:06:45 2020 +1000

    L10n updates for: zh_CN
    From translation svn revision: 57693
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    
    Stats:
    1       1       source/locale/zh_CN/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit d2d61226e2b3b79433f5f82cd5eb9f30b8c874db
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 31 00:06:43 2020 +1000

    L10n updates for: vi
    From translation svn revision: 57693
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    3       3       source/locale/vi/LC_MESSAGES/nvda.po
    1       1       user_docs/vi/changes.t2t
     2 files changed, 4 insertions(+), 4 deletions(-)

commit b6880b8b1ccff914d903b2fbe2fd41001806586e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 31 00:06:40 2020 +1000

    L10n updates for: uk
    From translation svn revision: 57693
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    1       1       source/locale/uk/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 828cae7fbc180005b48fb23e1034df08a042158e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 31 00:06:39 2020 +1000

    L10n updates for: tr
    From translation svn revision: 57693
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    1       1       source/locale/tr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 307a082c575822b7d4b9f12518c5d71266c2c630
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 31 00:06:36 2020 +1000

    L10n updates for: ta
    From translation svn revision: 57693
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    3       3       source/locale/ta/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 3 deletions(-)

commit bdfc7ec0e50ccc4beda7b102c06dadf2e2da6e2f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 31 00:06:34 2020 +1000

    L10n updates for: sv
    From translation svn revision: 57693
    
    Authors:
    Daniel Johansson <daniel.johansson@coeptus.se>
    Niklas Johansson <sleeping.pillow@gmail.com>
    Karl-Otto Rosenqvist <Karl-otto@mawingu.se>
    
    Stats:
    1       1       source/locale/sv/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 9a4b7166955254240b90f4fa6a4a637803638c07
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 31 00:06:33 2020 +1000

    L10n updates for: sr
    From translation svn revision: 57693
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    1       1       source/locale/sr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit e8f070ca492aaf025c05dbffb9ab19c4407ee008
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 31 00:06:31 2020 +1000

    L10n updates for: so
    From translation svn revision: 57693
    
    Authors:
    Othmanothman <othman82@hotmail.com>
    
    Stats:
    1       1       source/locale/so/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit c4416e29f1cd1772467efb8999930b97b8d56fdf
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 31 00:06:31 2020 +1000

    L10n updates for: sl
    From translation svn revision: 57693
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    1       1       source/locale/sl/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit b85245f3d65cf86536cc60a918df57daad8c3718
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 31 00:06:29 2020 +1000

    L10n updates for: sk
    From translation svn revision: 57693
    
    Authors:
    Ondrej Rosik <ondrej.rosik@gmail.com>
    Peter Vagner <peter.v@datagate.sk>
    Jan Kulik <jan.kulik.szsle@outlook.sk>
    
    Stats:
    1       1       source/locale/sk/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 84395561a51075f48f2985796590b36d331f3154
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 31 00:06:27 2020 +1000

    L10n updates for: ru
    From translation svn revision: 57693
    
    Authors:
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    
    Stats:
    1       1       source/locale/ru/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 5e4564fb1c511227093b06addae1e8aec0400b20
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 31 00:06:24 2020 +1000

    L10n updates for: ro
    From translation svn revision: 57693
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <7ro2014@gmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    George Antonio Andrei <george.andrei2002@gmail.com>
    
    Stats:
    1       1       source/locale/ro/LC_MESSAGES/nvda.po
    57      0       source/locale/ro/symbols.dic
     2 files changed, 58 insertions(+), 1 deletion(-)

commit 9a893399899dc67296499c8b7468221c08aab7a8
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 31 00:06:22 2020 +1000

    L10n updates for: pt_PT
    From translation svn revision: 57693
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    1       1       source/locale/pt_PT/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 56d3c6e8f4665dc2c2bc1d6bd10e0b5becc3d46e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 31 00:06:19 2020 +1000

    L10n updates for: pt_BR
    From translation svn revision: 57693
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    1       1       source/locale/pt_BR/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 99281158150832e95efebe19a5c032aca9d48305
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 31 00:06:17 2020 +1000

    L10n updates for: pl
    From translation svn revision: 57693
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Hubert Meyer <hubmeyer1989@gmail.com>
    Arkadiusz Swietnicki <nuno69a@gmail.com>
    
    Stats:
    1       1       source/locale/pl/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit b389f6aeceb87290255e42f3065e1a72a9f84148
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 31 00:06:15 2020 +1000

    L10n updates for: pa
    From translation svn revision: 57693
    
    Authors:
    Maheshinder Singh Khosla <mahesh.khosla@gmail.com>
    Dinesh Mittal <punjabimaster259@gmail.com>
    
    Stats:
    1       1       source/locale/pa/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 2f701540b817a1341735fd48f659dddab16d774f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 31 00:06:14 2020 +1000

    L10n updates for: nl
    From translation svn revision: 57693
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    1       1       source/locale/nl/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 64fd5e650766820c01b886266e058ead32fb19dc
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 31 00:06:12 2020 +1000

    L10n updates for: ne
    From translation svn revision: 57693
    
    Authors:
    Puskal Gautam <nvda.nepali@gmail.com>
    
    Stats:
    1       1       source/locale/ne/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit d08b6fe0a3367db18ecd7f5969ef572caf2ed1be
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 31 00:06:11 2020 +1000

    L10n updates for: nb_NO
    From translation svn revision: 57693
    
    Authors:
    David Hole <balubathebrave@gmail.com>
    Bjornar Seppola <bjornar@seppola.net>
    
    Stats:
    1       1       source/locale/nb_NO/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit cff1c0cd1395cfba93adb1510a1b58a99d38ae65
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 31 00:06:09 2020 +1000

    L10n updates for: my
    From translation svn revision: 57693
    
    Authors:
    Benedict La hkun <lkbenedict@gmail.com>
    
    Stats:
    1       1       source/locale/my/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit f69ad9d45a18362c8c24bacbe226206509fd94de
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 31 00:06:08 2020 +1000

    L10n updates for: mn
    From translation svn revision: 57693
    
    Authors:
    Mongol NVDA-Translation <mongoliannvdatranslation@gmail.com>
    
    Stats:
    1       1       source/locale/mn/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit fa16d8a4cb7e90270699f751fc4debada75844ba
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 31 00:06:05 2020 +1000

    L10n updates for: mk
    From translation svn revision: 57693
    
    Authors:
    zvonimir stanecic <9a5dsz@gozaltech.org>
    Kiko Lazarev <kristijan.lazarev@gmail.com>
    
    Stats:
    1       1       source/locale/mk/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit ad1847d00c9097e4df3f5c1e13fb37047acd60e5
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 31 00:06:03 2020 +1000

    L10n updates for: lt
    From translation svn revision: 57693
    
    Authors:
    Paulius Leveris <paulius.leveris@gmail.com>
    Rimas Kudelis <rq@akl.lt>
    
    Stats:
    1       1       source/locale/lt/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit b8019964ba912ee23c5d86c961db419ff31eb9a2
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 31 00:06:02 2020 +1000

    L10n updates for: ko
    From translation svn revision: 57693
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    1       1       source/locale/ko/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit cfc18114cb8d97ebee966dacef0e61dc15236eab
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 31 00:06:00 2020 +1000

    L10n updates for: kn
    From translation svn revision: 57693
    
    Authors:
    Siddalingeshwar Ingalagi <ingalagisiddu@gmail.com>
    
    Stats:
    1       1       source/locale/kn/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit fcce43d0accacd751a95ba75c06d70782980feb3
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 31 00:05:59 2020 +1000

    L10n updates for: kmr
    From translation svn revision: 57693
    
    Authors:
    Imam Kahraman <imam.kahraman@googlemail.com>
    
    Stats:
    1       1       source/locale/kmr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 6db8a42637ad5ca9c3a6e933a131017a3c488218
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 31 00:05:58 2020 +1000

    L10n updates for: ka
    From translation svn revision: 57693
    
    Authors:
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Goderdzi Gogoladze <goderdzigogoladze@gmail.com>
    
    Stats:
    1       1       source/locale/ka/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 887975cf1129a80a126702511d35214a7b4e97e5
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 31 00:05:58 2020 +1000

    L10n updates for: ja
    From translation svn revision: 57693
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    1       1       source/locale/ja/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 80b92c31cdd91a9f3ac9e73ad123d100d035fcd9
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 31 00:05:54 2020 +1000

    L10n updates for: it
    From translation svn revision: 57693
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    1       1       source/locale/it/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 9ceac3a090421d2282548234b16b2590904c1971
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 31 00:05:52 2020 +1000

    L10n updates for: is
    From translation svn revision: 57693
    
    Authors:
    Birkir R. Gunnarsson <birkir.gunnarsson@gmail.com>
    Hlynur Hreinsson <hm.hreinsson@gmail.com>
    
    Stats:
    1       1       source/locale/is/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 79b31c241808bf7b92f8d3d2eef634a49fbd3eec
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 31 00:05:51 2020 +1000

    L10n updates for: hu
    From translation svn revision: 57693
    
    Authors:
    Aron OcsvAri <oaron@nvda.hu>
    
    Stats:
    1       1       source/locale/hu/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit e3d9ab501e6e09a0c5a74b59e26685ecfde3d1a6
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 31 00:05:49 2020 +1000

    L10n updates for: hr
    From translation svn revision: 57693
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Milo Ivir <mivir@milotype.de>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    1       1       source/locale/hr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 85060c4c96690f6c951a6ca27049b33a018331dc
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 31 00:05:47 2020 +1000

    L10n updates for: hi
    From translation svn revision: 57693
    
    Authors:
    dipendra.lists@gmail.com
    Doc Mehta <joyofinspiring@gmail.com>
    
    Stats:
    1       1       source/locale/hi/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit e322476b4861d38af121fdbfb98316fef4fdad4c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 31 00:05:46 2020 +1000

    L10n updates for: he
    From translation svn revision: 57693
    
    Authors:
    Shmuel Naaman <shmuel_naaman@yahoo.com>
    Afik Sofir <afik.sofer@gmail.com>
    
    Stats:
    1       1       source/locale/he/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 855d0049c58e1b15a354ef2c49ea41134702a195
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 31 00:05:44 2020 +1000

    L10n updates for: gl
    From translation svn revision: 57693
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    Javier Curras <javier.curras@nvda.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/gl/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 7682bf2a572903bc83ee32c713c1d90bdba9b2d6
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 31 00:05:42 2020 +1000

    L10n updates for: ga
    From translation svn revision: 57693
    
    Authors:
    Cearbhall OMeadhra <cearbhall.omeadhra@blbc.ie>
    Ronan McGuirk <ronan.p.mcguirk@gmail.com>
    Kevin Scannell <kscanne@gmail.com>
    
    Stats:
    1       1       source/locale/ga/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 39147faab8c88574fb3f81c27f8e964d84746a6f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 31 00:05:41 2020 +1000

    L10n updates for: fr
    From translation svn revision: 57693
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess.net>
    
    Stats:
    1       1       source/locale/fr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit c5cf60a82f8339754ec05c7671a4289282cdb4eb
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 31 00:05:39 2020 +1000

    L10n updates for: fi
    From translation svn revision: 57693
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    1       1       source/locale/fi/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit ad92532dbc0ccc0eb51749744854f551d33e93fe
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 31 00:05:36 2020 +1000

    L10n updates for: fa
    From translation svn revision: 57693
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    1       1       source/locale/fa/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 4d334228bcc6de940bb4a2ff29d81d152a1e49a7
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 31 00:05:33 2020 +1000

    L10n updates for: es
    From translation svn revision: 57693
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/es/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 29e4c03f680ff9e78297d27e0f5179b5793a0d00
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 31 00:05:31 2020 +1000

    L10n updates for: es_CO
    From translation svn revision: 57693
    
    Authors:
    Jorge Zarache <reydelasmaquinas@outlook.com>
    Luis Carlos Gonzáles Moráles <luiscarlosgm@hotmail.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/es_CO/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit ddb16a26aa3ac582470e3095ea57f71b519e301c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 31 00:05:29 2020 +1000

    L10n updates for: el
    From translation svn revision: 57693
    
    Authors:
    Irene Nakas <irnakas@gmail.com>
    Nikos Demetriou <nikosdemetriou@googlemail.com>
    access@e-rhetor.com
    
    Stats:
    1       1       source/locale/el/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 935468cfc87b580ae8aa029d51536a074acf8d24
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 31 00:05:27 2020 +1000

    L10n updates for: de
    From translation svn revision: 57693
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    1       1       source/locale/de/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 008e7dc08706aa1be5488e327c02cec4da88fb8d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 31 00:05:25 2020 +1000

    L10n updates for: de_CH
    From translation svn revision: 57693
    
    Authors:
    Robert Hänggi <aarjay.robert@gmail.com>
    
    Stats:
    1       1       source/locale/de_CH/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit b19e44c705cb17d8a80657afca7b8a02c10c6267
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 31 00:05:23 2020 +1000

    L10n updates for: da
    From translation svn revision: 57693
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    1       1       source/locale/da/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 1bb754b70b6023a58b5ff72833ac4f279c21f706
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 31 00:05:21 2020 +1000

    L10n updates for: cs
    From translation svn revision: 57693
    
    Authors:
    Martina Letochova <letochova@seznam.cz>
    
    Stats:
    1       1       source/locale/cs/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 00d95e8a05c06537a504c505fa8df9f3240bb9f0
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 31 00:05:20 2020 +1000

    L10n updates for: ckb
    From translation svn revision: 57693
    
    Authors:
    Ali Ustek <aliustek@gmail.com>
    Patrick Galasso <Patrice.galasso@gmail.com>
    Jwanro Mustafa <jwanroabdula@hotmail.com>
    Kosrat D Ahmad <kosrat.d.ahmad@gmail.com>
    silva.hm88@gmail.com
    
    Stats:
    1       1       source/locale/ckb/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 85d75289544a5993b647c1bf81638c69a031d952
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 31 00:05:19 2020 +1000

    L10n updates for: ca
    From translation svn revision: 57693
    
    Authors:
    Ruben Alcaraz <ruben.hangar1.8@gmail.com>
    Dr. Mireia Ribera <mireia.ribera@gmail.com>
    Santi Moese <santispock@gmail.com>
    Marina Salse Rovira <salse@ub.edu>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/ca/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 749e95e165022337e7d8987aaf247532699331df
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 31 00:05:17 2020 +1000

    L10n updates for: bg
    From translation svn revision: 57693
    
    Authors:
    Zahari Yurukov <zahari.yurukov@gmail.com>
    Kostadin Kolev <k_kolev1985@mail.bg>
    
    Stats:
    1       1       source/locale/bg/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 680cd5a64119b0aeb8562f4990a1f4c3ae3d9253
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 31 00:05:12 2020 +1000

    L10n updates for: ar
    From translation svn revision: 57693
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Omar Alojaimi <amrahmad1995@gmail.com>
    
    Stats:
    1       1       source/locale/ar/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit b81af66bf6174b4a5c81588bbf908570c1a328fc
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 31 00:05:08 2020 +1000

    L10n updates for: an
    From translation svn revision: 57693
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/an/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 56ab685c57006fc33f167a7ca72511988cf5b6cd
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 31 00:05:06 2020 +1000

    L10n updates for: am
    From translation svn revision: 57693
    
    Authors:
    KETEMA ZEREGAW <kzeregaw@msn.com>
    Dr. Tamru E. Belay <g.braille@sympatico.ca>
    
    Stats:
    1       1       source/locale/am/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit f308a0d6c2957bfb82dcbb760782604b45823334
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Thu Jul 30 04:49:19 2020 +0200

    Discard checkable state for toggle buttons in Chrome (#11420)

commit ac164ccabbeb781b1cfcadba445518fd03c84ef0
Merge: 619c32e7c 9afc1c6eb
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Jul 29 08:33:40 2020 +1000

    Merge branch 'rc'

commit 9afc1c6eb61b8e2d4ad1c2e98e2d48e9915ac8c1
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue Jul 28 14:18:03 2020 +0200

    Don't fail build when symbols can't be uploaded (PR #11433)
    
    Failing to upload symbols to Mozilla should not cause our build to fail.
    The symbols are already saved as artefacts, if the upload to Mozilla
    fails, it can be fixed manually.
    
    Make the attempt more robust by trying multiple times with a short wait
    in between.

commit 619c32e7cade91de15d2b7e8a16d6b579865c447
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Tue Jul 28 12:24:34 2020 +0200

    Fix qflushQueue trying to log an exception with queue name (#11432)

commit 5608333ea3216b57d8838954495d545ff4aeaf88
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Tue Jul 28 16:58:09 2020 +1000

    Don't block an app's main thread when sending typed characters to NVDA (#11425)
    
    * Ensure an app's main thread does not block when notifying NVDA about typed characters.
    
    * use constants for some literal values.
    
    * nvdaControllerInternal_typedCharacterNotify: don't take threadID as an argument as it is never used.
    
    * Fix typo in comment
    
    * Fix linting issues
    
    * fix typo
    
    * Fix typo
    
    Co-authored-by: Leonard de Ruijter <leonardder@users.noreply.github.com>
    
    * Address review comments
    
    Co-authored-by: Leonard de Ruijter <leonardder@users.noreply.github.com>

commit 27134cdaee2a5ae2421a94ef7142c37264bf4284
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Mon Jul 27 20:00:19 2020 +1000

    Reduce Python reference cycles especially when interacting with MS Word (#11414)
    
    * Ensure XMLParser does not create reference cycles by not holding the internal parser at the same time as assigning our object's methods to it.
    
    * WordDocumentTextInfo: refactor the lazyControlField so that it is no longer inline and does not create a reference cycle.
    
    * EditableTextWithAutoSelectDetection:  terminate automatic select detection in loseFocus event to ensure that NVDAObjects don't hold on to the TextInfo representing the selection for ever.
    
    * Fix linting issues
    
    * Address review comments

commit f79e76dfbe28520f3684aa63e9a68aecd7c1b457
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Mon Jul 27 11:39:28 2020 +0200

    GUI: Do not scale the default size of -1 (PR #11424)
    
    Fixes #10216

commit 3a9484fb86e2ad892621dcd3d4b824a048583db5
Author: James Teh <jamie@jantrid.net>
Date:   Mon Jul 27 11:58:50 2020 +1000

    Fix "AttributeError: 'NoneType' object has no attribute 'obj'" exceptions in ia2TextMozilla. (#11426)
    
    This occurs when an object dies while we're trying to fetch text.
    There's nothing we can do about this, so just log a debugWarning and return no text.

commit 5356588a11ed130def436bc9c9b9d39edace5e34
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Mon Jul 27 02:46:49 2020 +0200

    Upgrade to SCons 4.0.1 (#11422)

commit a68e63c68eb2c5271f5c211f3cff9e174d32ce3f
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Mon Jul 27 08:05:34 2020 +1000

    Watchdog: List stacks for all Python threads when trying to recover from freeze. (#11417)

commit e0ddecfe59d665454f5bd6e88259ed9f1b5a70d8
Merge: 3a0e55d6e 8d5d1802f
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Sat Jul 25 18:17:45 2020 +0200

    Merge branch 'master' into i9280

commit 6f39603283988fdad5e58cc889d6af38fb306628
Merge: ac400e27e 8d5d1802f
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Sat Jul 25 17:50:26 2020 +0200

    Merge branch 'master' into i9910-browseableMessage

commit 8d5d1802ffce0557f4ae72d779c2f977d83c1a93
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Fri Jul 24 10:30:09 2020 +0200

    Use F6 to get to doc and disable auto say all for chrome system tests (PR #11412)

commit efd15a0835ee2b1a8769dc2b9f371e0f8ce6389f
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Fri Jul 24 09:16:24 2020 +1000

    Revert change to typedCharacterNotify using executeEvent directly rather than queueEvent (#11416)
    
    * Revert "reduce chance of freeze when typing characters in MS Word (#11373)"
    
    This reverts commit 45d7cc5605ca007c3e7b136071ecef0ace77177d.
    
    * Fix linting issues
    
    * Switch Queue to SimpleQueue
    
    * Add comment

commit 124bb02fa5f1d792f2ff63b237c8c0d8ad290649
Author: Francisco R. Del Roio <francipvb@users.noreply.github.com>
Date:   Thu Jul 23 13:17:44 2020 -0300

    Detect read-only state for UIA text controls (PR #10494)
    
    Co-authored-by: Reef Turner <reef@nvaccess.org>

commit 78ed7bb5c2a43582b48aec0703742c62e14b4854
Merge: e35e7cbff 3cc20ad1f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 24 00:06:56 2020 +1000

    Update translations.
    
    From translation svn revision: 57646

commit 3cc20ad1fe70383c9a118c258b3e27e726f775c3
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 24 00:06:54 2020 +1000

    L10n updates for: zh_TW
    From translation svn revision: 57646
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    1       1       source/locale/zh_TW/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 1e41437396d66d321e6444ac0f761f6c673d19f4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 24 00:06:52 2020 +1000

    L10n updates for: zh_HK
    From translation svn revision: 57646
    
    Authors:
    Eric Yip <ericycy@gmail.com>
    
    Stats:
    1       1       source/locale/zh_HK/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 97310e6d93abef5bd77300f4439e12364dfb13a3
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 24 00:06:51 2020 +1000

    L10n updates for: zh_CN
    From translation svn revision: 57646
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    
    Stats:
    1       1       source/locale/zh_CN/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit b07a6ff7a0bc9ee6c8cf739c0e49f49b1bca1fdf
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 24 00:06:49 2020 +1000

    L10n updates for: vi
    From translation svn revision: 57646
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    1       1       source/locale/vi/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 9539226a2c6babf36c830658f6ecde84e98eb802
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 24 00:06:46 2020 +1000

    L10n updates for: uk
    From translation svn revision: 57646
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    1       1       source/locale/uk/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 6929aaa26c52eb4512c2e593a7707b20b31a3f43
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 24 00:06:44 2020 +1000

    L10n updates for: tr
    From translation svn revision: 57646
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    1       1       source/locale/tr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit bb73c13dd5670f73b0751ec315d3e71b73471101
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 24 00:06:42 2020 +1000

    L10n updates for: ta
    From translation svn revision: 57646
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    1       1       source/locale/ta/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 14bf208a90feed015aac0ffb8d1f08fc75603abe
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 24 00:06:39 2020 +1000

    L10n updates for: sv
    From translation svn revision: 57646
    
    Authors:
    Daniel Johansson <daniel.johansson@coeptus.se>
    Niklas Johansson <sleeping.pillow@gmail.com>
    Karl-Otto Rosenqvist <Karl-otto@mawingu.se>
    
    Stats:
    1       1       source/locale/sv/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit b2ccf18c0c05cf310b3e262c265f644493a0a40a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 24 00:06:38 2020 +1000

    L10n updates for: sr
    From translation svn revision: 57646
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    1       1       source/locale/sr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit fc0f773af0c4a9b9afbda473811aa3247348d2dd
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 24 00:06:36 2020 +1000

    L10n updates for: so
    From translation svn revision: 57646
    
    Authors:
    Othmanothman <othman82@hotmail.com>
    
    Stats:
    1       1       source/locale/so/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit a606a67b8392170aaf6f286ea4286af32ac46c4e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 24 00:06:36 2020 +1000

    L10n updates for: sl
    From translation svn revision: 57646
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    171     2       source/locale/sl/LC_MESSAGES/nvda.po
     1 file changed, 171 insertions(+), 2 deletions(-)

commit 6ce241575067c6e14e0f8c3d4b896774b3f41a1f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 24 00:06:34 2020 +1000

    L10n updates for: sk
    From translation svn revision: 57646
    
    Authors:
    Ondrej Rosik <ondrej.rosik@gmail.com>
    Peter Vagner <peter.v@datagate.sk>
    Jan Kulik <jan.kulik.szsle@outlook.sk>
    
    Stats:
    1       1       source/locale/sk/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 641430add5df5e167c2a0e1b5d3c2740eb39a996
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 24 00:06:32 2020 +1000

    L10n updates for: ru
    From translation svn revision: 57646
    
    Authors:
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    
    Stats:
    1       1       source/locale/ru/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit b6d107eccfb71fdc4cf22088a11cfbde69e36cc5
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 24 00:06:28 2020 +1000

    L10n updates for: ro
    From translation svn revision: 57646
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <7ro2014@gmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    George Antonio Andrei <george.andrei2002@gmail.com>
    
    Stats:
    1       1       source/locale/ro/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit e5596aeb9a80f5ef3cad49db6085a3f67144d721
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 24 00:06:26 2020 +1000

    L10n updates for: pt_PT
    From translation svn revision: 57646
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    1       1       source/locale/pt_PT/LC_MESSAGES/nvda.po
    3       1       source/locale/pt_PT/symbols.dic
     2 files changed, 4 insertions(+), 2 deletions(-)

commit 4681ad06423b340e6e2779a5327869a895e3ec1b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 24 00:06:24 2020 +1000

    L10n updates for: pt_BR
    From translation svn revision: 57646
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    1       1       source/locale/pt_BR/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit b7f913bbe15a77955f7dabb05694cf6c4300f292
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 24 00:06:21 2020 +1000

    L10n updates for: pl
    From translation svn revision: 57646
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Hubert Meyer <hubmeyer1989@gmail.com>
    Arkadiusz Swietnicki <nuno69a@gmail.com>
    
    Stats:
    1       1       source/locale/pl/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 733a3ad0fa92c9e621cdda63d394d2dbd16d9998
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 24 00:06:19 2020 +1000

    L10n updates for: pa
    From translation svn revision: 57646
    
    Authors:
    Maheshinder Singh Khosla <mahesh.khosla@gmail.com>
    Dinesh Mittal <punjabimaster259@gmail.com>
    
    Stats:
    1       1       source/locale/pa/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 337fecde496ecddaf468acc02455b212919b49de
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 24 00:06:18 2020 +1000

    L10n updates for: nl
    From translation svn revision: 57646
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    1       1       source/locale/nl/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit da1c9449dfc9fce4468a9aa651d525b86c937ea6
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 24 00:06:16 2020 +1000

    L10n updates for: ne
    From translation svn revision: 57646
    
    Authors:
    Puskal Gautam <nvda.nepali@gmail.com>
    
    Stats:
    1       1       source/locale/ne/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 06ab826af416605f8c2c547c11575cd28de3e1af
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 24 00:06:14 2020 +1000

    L10n updates for: nb_NO
    From translation svn revision: 57646
    
    Authors:
    David Hole <balubathebrave@gmail.com>
    Bjornar Seppola <bjornar@seppola.net>
    
    Stats:
    1       1       source/locale/nb_NO/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 0ef7d8bca625f8597997cf8ffea45a4e0e467095
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 24 00:06:13 2020 +1000

    L10n updates for: my
    From translation svn revision: 57646
    
    Authors:
    Benedict La hkun <lkbenedict@gmail.com>
    
    Stats:
    1       1       source/locale/my/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit c3c9053b71bcef342a0ebc80db28b8ef91756b64
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 24 00:06:11 2020 +1000

    L10n updates for: mn
    From translation svn revision: 57646
    
    Authors:
    Mongol NVDA-Translation <mongoliannvdatranslation@gmail.com>
    
    Stats:
    50      89      source/locale/mn/LC_MESSAGES/nvda.po
     1 file changed, 50 insertions(+), 89 deletions(-)

commit be359a415697cfd3cbd152aff10a9bbc4aea0071
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 24 00:06:09 2020 +1000

    L10n updates for: mk
    From translation svn revision: 57646
    
    Authors:
    zvonimir stanecic <9a5dsz@gozaltech.org>
    Kiko Lazarev <kristijan.lazarev@gmail.com>
    
    Stats:
    1       1       source/locale/mk/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit e044509577f4c7676ca83a2c4f9b5586562a99b6
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 24 00:06:07 2020 +1000

    L10n updates for: lt
    From translation svn revision: 57646
    
    Authors:
    Paulius Leveris <paulius.leveris@gmail.com>
    Rimas Kudelis <rq@akl.lt>
    
    Stats:
    1       1       source/locale/lt/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 042479c6f14d3d118507ed08c7feae8f381ec5e3
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 24 00:06:05 2020 +1000

    L10n updates for: ko
    From translation svn revision: 57646
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    1       1       source/locale/ko/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 692cfa30e98f5ae8e27156d76ac27cccfc4f277a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 24 00:06:03 2020 +1000

    L10n updates for: kn
    From translation svn revision: 57646
    
    Authors:
    Siddalingeshwar Ingalagi <ingalagisiddu@gmail.com>
    
    Stats:
    1       1       source/locale/kn/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit e8eb280b3785798c26ce0b3fbc3260b44792e552
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 24 00:06:02 2020 +1000

    L10n updates for: kmr
    From translation svn revision: 57646
    
    Authors:
    Imam Kahraman <imam.kahraman@googlemail.com>
    
    Stats:
    1       1       source/locale/kmr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit dddc530b22538791cb766e82744fcdcaa4ede9aa
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 24 00:06:01 2020 +1000

    L10n updates for: ka
    From translation svn revision: 57646
    
    Authors:
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Goderdzi Gogoladze <goderdzigogoladze@gmail.com>
    
    Stats:
    1       1       source/locale/ka/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit f3df95279a3ec8da4670610b1669a11bcf7769eb
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 24 00:06:00 2020 +1000

    L10n updates for: ja
    From translation svn revision: 57646
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    1       1       source/locale/ja/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit b7a5348170c035b4a706889c3f6dd598b3b32201
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 24 00:05:57 2020 +1000

    L10n updates for: it
    From translation svn revision: 57646
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    1       1       source/locale/it/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit a193b08c60f6ca9408531d6f647485ae18b4bcf1
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 24 00:05:54 2020 +1000

    L10n updates for: is
    From translation svn revision: 57646
    
    Authors:
    Birkir R. Gunnarsson <birkir.gunnarsson@gmail.com>
    Hlynur Hreinsson <hm.hreinsson@gmail.com>
    
    Stats:
    1       1       source/locale/is/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 3e5e27ddb5d8c94ccfa653cfe9088c839e3eae2b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 24 00:05:53 2020 +1000

    L10n updates for: hu
    From translation svn revision: 57646
    
    Authors:
    Aron OcsvAri <oaron@nvda.hu>
    
    Stats:
    1       1       source/locale/hu/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit b04e7ce70373e65256dd043634d2f5982fec9036
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 24 00:05:51 2020 +1000

    L10n updates for: hr
    From translation svn revision: 57646
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Milo Ivir <mivir@milotype.de>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    1       1       source/locale/hr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 25fd8d4fe60ffff92e636f7738543fb17af612cf
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 24 00:05:49 2020 +1000

    L10n updates for: hi
    From translation svn revision: 57646
    
    Authors:
    dipendra.lists@gmail.com
    Doc Mehta <joyofinspiring@gmail.com>
    
    Stats:
    1       1       source/locale/hi/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 9bef3dc5c1672c109137bb9e614a24410a606d28
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 24 00:05:48 2020 +1000

    L10n updates for: he
    From translation svn revision: 57646
    
    Authors:
    Shmuel Naaman <shmuel_naaman@yahoo.com>
    Afik Sofir <afik.sofer@gmail.com>
    
    Stats:
    1       1       source/locale/he/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit e5361bda401934f199ca0cfc8fdee485834e60d4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 24 00:05:46 2020 +1000

    L10n updates for: gl
    From translation svn revision: 57646
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    Javier Curras <javier.curras@nvda.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/gl/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit f0c96480bc4641f8bb2ec1f5365589403cc605c3
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 24 00:05:44 2020 +1000

    L10n updates for: ga
    From translation svn revision: 57646
    
    Authors:
    Cearbhall OMeadhra <cearbhall.omeadhra@blbc.ie>
    Ronan McGuirk <ronan.p.mcguirk@gmail.com>
    Kevin Scannell <kscanne@gmail.com>
    
    Stats:
    1       1       source/locale/ga/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 3995463609127eaa02fc4b9486c01e9782dc3bc6
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 24 00:05:43 2020 +1000

    L10n updates for: fr
    From translation svn revision: 57646
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess.net>
    
    Stats:
    1       1       source/locale/fr/LC_MESSAGES/nvda.po
    1       1       source/locale/fr/gestures.ini
     2 files changed, 2 insertions(+), 2 deletions(-)

commit ee4a71206684f6a2b8365ab110441b6e4863ca2d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 24 00:05:40 2020 +1000

    L10n updates for: fi
    From translation svn revision: 57646
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    1       1       source/locale/fi/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit cc8175c06093201279c03ac0d054c349acb66ffc
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 24 00:05:37 2020 +1000

    L10n updates for: fa
    From translation svn revision: 57646
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    1       1       source/locale/fa/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit c8294386392ed7ddf041ef721e3da26aec22e4d6
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 24 00:05:34 2020 +1000

    L10n updates for: es
    From translation svn revision: 57646
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    5       5       source/locale/es/LC_MESSAGES/nvda.po
     1 file changed, 5 insertions(+), 5 deletions(-)

commit 445e997a79564db500c54624a29c8c7937e046e2
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 24 00:05:32 2020 +1000

    L10n updates for: es_CO
    From translation svn revision: 57646
    
    Authors:
    Jorge Zarache <reydelasmaquinas@outlook.com>
    Luis Carlos Gonzáles Moráles <luiscarlosgm@hotmail.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/es_CO/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 22b2db10a110b32ece6b65b61408621821b15510
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 24 00:05:29 2020 +1000

    L10n updates for: el
    From translation svn revision: 57646
    
    Authors:
    Irene Nakas <irnakas@gmail.com>
    Nikos Demetriou <nikosdemetriou@googlemail.com>
    access@e-rhetor.com
    
    Stats:
    1       1       source/locale/el/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 7216a209e8585c7354c4b9aa839d7d5620ed0ab3
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 24 00:05:27 2020 +1000

    L10n updates for: de
    From translation svn revision: 57646
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    1       1       source/locale/de/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit e1aef22c1b7d05d48f8316bb06407f9540db7960
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 24 00:05:25 2020 +1000

    L10n updates for: de_CH
    From translation svn revision: 57646
    
    Authors:
    Robert Hänggi <aarjay.robert@gmail.com>
    
    Stats:
    1       1       source/locale/de_CH/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 34d6cb967e7f313fa88e51249dbc0a6b711d5b58
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 24 00:05:22 2020 +1000

    L10n updates for: da
    From translation svn revision: 57646
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    1       1       source/locale/da/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 19efb0b25a7d05d83e5364478e8426bf3268985f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 24 00:05:21 2020 +1000

    L10n updates for: cs
    From translation svn revision: 57646
    
    Authors:
    Martina Letochova <letochova@seznam.cz>
    
    Stats:
    1       1       source/locale/cs/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit ce88a58e5c0d83c124e201a3474546562cc7f5d5
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 24 00:05:19 2020 +1000

    L10n updates for: ckb
    From translation svn revision: 57646
    
    Authors:
    Ali Ustek <aliustek@gmail.com>
    Patrick Galasso <Patrice.galasso@gmail.com>
    Jwanro Mustafa <jwanroabdula@hotmail.com>
    Kosrat D Ahmad <kosrat.d.ahmad@gmail.com>
    silva.hm88@gmail.com
    
    Stats:
    1       1       source/locale/ckb/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 54fbf1a97a049019c6ad86d5eb6721bdf413e59f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 24 00:05:18 2020 +1000

    L10n updates for: ca
    From translation svn revision: 57646
    
    Authors:
    Ruben Alcaraz <ruben.hangar1.8@gmail.com>
    Dr. Mireia Ribera <mireia.ribera@gmail.com>
    Santi Moese <santispock@gmail.com>
    Marina Salse Rovira <salse@ub.edu>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/ca/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 6aa2069f1ce7e495265cb204403755f8a82fc189
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 24 00:05:16 2020 +1000

    L10n updates for: bg
    From translation svn revision: 57646
    
    Authors:
    Zahari Yurukov <zahari.yurukov@gmail.com>
    Kostadin Kolev <k_kolev1985@mail.bg>
    
    Stats:
    1       1       source/locale/bg/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 8d8b65cb1919fb98797b7142335e4f0c4d723ca3
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 24 00:05:12 2020 +1000

    L10n updates for: ar
    From translation svn revision: 57646
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Omar Alojaimi <amrahmad1995@gmail.com>
    
    Stats:
    1       1       source/locale/ar/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 769d409f030c6483f083bd438190f6c9548f1650
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 24 00:05:07 2020 +1000

    L10n updates for: an
    From translation svn revision: 57646
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/an/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 0375e7eff9adbdecbe395fc3dfc3f0ea7e705244
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 24 00:05:05 2020 +1000

    L10n updates for: am
    From translation svn revision: 57646
    
    Authors:
    KETEMA ZEREGAW <kzeregaw@msn.com>
    Dr. Tamru E. Belay <g.braille@sympatico.ca>
    
    Stats:
    1       1       source/locale/am/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 45d7cc5605ca007c3e7b136071ecef0ace77177d
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Thu Jul 23 18:52:53 2020 +1000

    reduce chance of freeze when typing characters in MS Word (#11373)
    
    * queuehandler: use queue.SimpleQueue rather than queue.Queue as SimpleQueue is much more light-wait and reduces the chance of deadlocks.
    
    * nvdaHelper: manually queue an executeEvent call for incoming typed character notifications rather than using queueEvent as queueEvent may cause a deadlock with the app who sent the typed character notification if Python's garbage collector runs and releases a COM object from that process during queueEvent's lock.
    
    * Fix linting issues

commit dfbda72e36bdf312b7e15d68a6d97a8d594287ca
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Tue Jul 21 18:30:46 2020 +0200

    Command navigatorObject_toFocus: set to position of the virtual caret. (PR #11376)
    
    When moving review cursor to focus in browse mode it is now set at the position of the virtual caret.
    Closes #9622
    Previously the navigator object may have been set to the document or some other object.
    Co-authored-by: Reef Turner <reef@nvaccess.org>

commit 2921748ba4db7a342676626ddf59c40bdcb1c70e
Author: Shubham Jain <30282054+ShubhamJain7@users.noreply.github.com>
Date:   Tue Jul 21 20:24:37 2020 +0530

    Validate bounds of capture before recognition in contentRecog (PR #11382)
    
    To allow greater flexibility for add-ons when using the contentRecog framework, allow the recognizer to validate the size / position of an object before an image is captured.
    
    Co-authored-by: Leonard de Ruijter <leonardder@users.noreply.github.com>

commit acf926a28249c4ca242ed87e456cbe0c43f8057e
Author: Shubham Jain <30282054+ShubhamJain7@users.noreply.github.com>
Date:   Tue Jul 21 16:52:27 2020 +0530

    Navigator object can be validated before recognition in contentRecog (PR #11381)
    
    To allow greater flexibility for add-ons when using the contentRecog framework, allow the recognizer to validate that the object to run detection on is actually of interest to the recognizer.

commit 74bd9b861b88ba26109c0c13ab0d1758cff03274
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Jul 20 15:27:22 2020 +1000

    Update what's new for pr #11384

commit 41970cae1914e93ca7d6b52646299215ef85081c
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Mon Jul 20 07:25:43 2020 +0200

    Use locale.getpreferredencoding rather than locale.getlocale as latter can fail if Python doesn't know the locale (#11384)
    
    * Use locale.getpreferredencoding rather than locale.getlocale as latter can fail if Python doesn't know the locale
    Fixes https://github.com/nvaccess/nvda/issues/11155
    
    * Review actions

commit 34d0dcbb5c0bc838927dade9a6dffe9bc29e3a80
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Jul 20 07:25:32 2020 +1000

    Update what's new for pr #11377

commit 76f48cdd15b54b769d715d3c91f01f8377654945
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Mon Jul 20 07:16:21 2020 +1000

    Map IA2_STATE_CHECKABLE to NVDA's checkable state. (#11377)

commit e35e7cbff0964cfec1fbd0c035668f69bdaa953d
Merge: 9f56cfb13 807f44cc2
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 17 00:06:41 2020 +1000

    Update translations.
    
    From translation svn revision: 57635

commit 807f44cc2ea869eaf83ff55d06b29583c8cc0970
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 17 00:06:38 2020 +1000

    L10n updates for: zh_CN
    From translation svn revision: 57635
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    
    Stats:
    1       1       user_docs/zh_CN/userGuide.t2t
     1 file changed, 1 insertion(+), 1 deletion(-)

commit aaa9ee690385857fd464080bd919a1a00c096968
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 17 00:05:40 2020 +1000

    L10n updates for: gl
    From translation svn revision: 57635
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    Javier Curras <javier.curras@nvda.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    17      0       user_docs/gl/userGuide.t2t
     1 file changed, 17 insertions(+)

commit 815dc10ad2d291eff671161d483d43463569b022
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 17 00:05:30 2020 +1000

    L10n updates for: es
    From translation svn revision: 57635
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    17      0       user_docs/es/userGuide.t2t
     1 file changed, 17 insertions(+)

commit e1f3ba998f9fc96023385d46bd3c67a665486e38
Author: CyrilleB79 <cyrille.bougot2@laposte.net>
Date:   Thu Jul 16 00:06:23 2020 +0200

    Fixes an Excel selection reading issue for some synth/languages when the selected cells contain 3-digit numbers. (#11364)

commit b5444fce67736e0b2c7377474e3e4478fe0509fa
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Wed Jul 15 10:27:16 2020 +0200

    Update eSpeak-ng to commit aafd2e72 (PR #11374)

commit 9f56cfb138a8b1156633f7b04fc3a13364c3e0d5
Merge: b94418db3 27ec5de6f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Jul 15 02:04:30 2020 +1000

    Update translations.
    
    From translation svn revision: 57628

commit 27ec5de6f0e6eada9e04214c618a92dcab09fe09
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Jul 15 02:04:28 2020 +1000

    L10n updates for: zh_TW
    From translation svn revision: 57628
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    1       1       source/locale/zh_TW/LC_MESSAGES/nvda.po
    10      7       source/locale/zh_TW/characterDescriptions.dic
    1       1       user_docs/zh_TW/changes.t2t
    3       3       user_docs/zh_TW/userGuide.t2t
     4 files changed, 15 insertions(+), 12 deletions(-)

commit 0fe851fcd7fa68688eb1528096279e7d3ae40098
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Jul 15 02:04:26 2020 +1000

    L10n updates for: zh_HK
    From translation svn revision: 57628
    
    Authors:
    Eric Yip <ericycy@gmail.com>
    
    Stats:
    1       1       source/locale/zh_HK/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 47a36c17fd9ad2588f8bb298bd4838c219662846
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Jul 15 02:04:25 2020 +1000

    L10n updates for: zh_CN
    From translation svn revision: 57628
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    
    Stats:
    1       1       source/locale/zh_CN/LC_MESSAGES/nvda.po
    73      1       source/locale/zh_CN/symbols.dic
    4       4       user_docs/zh_CN/changes.t2t
    17      8       user_docs/zh_CN/userGuide.t2t
     4 files changed, 95 insertions(+), 14 deletions(-)

commit 9b3cfb374f55b2704a2e45b4013d06d0ab683840
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Jul 15 02:04:23 2020 +1000

    L10n updates for: vi
    From translation svn revision: 57628
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    1       1       source/locale/vi/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit d64573a4bf80e7bf136fa2402597d27bed57d082
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Jul 15 02:04:21 2020 +1000

    L10n updates for: uk
    From translation svn revision: 57628
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    1       1       source/locale/uk/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 8b93b369cf1c6d4fc6a2d246092cc66f0fa92f03
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Jul 15 02:04:19 2020 +1000

    L10n updates for: tr
    From translation svn revision: 57628
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    1       1       source/locale/tr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 039295a3179178fc10b7e1ea3f10eeeed9d96b20
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Jul 15 02:04:17 2020 +1000

    L10n updates for: ta
    From translation svn revision: 57628
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    3       3       source/locale/ta/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 3 deletions(-)

commit da2c906aadca433a4a0665ed77c0e7e92cec742f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Jul 15 02:04:14 2020 +1000

    L10n updates for: sv
    From translation svn revision: 57628
    
    Authors:
    Daniel Johansson <daniel.johansson@coeptus.se>
    Niklas Johansson <sleeping.pillow@gmail.com>
    Karl-Otto Rosenqvist <Karl-otto@mawingu.se>
    
    Stats:
    1       1       source/locale/sv/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 6c6f2e1fac352553df58598abecafcace3d2da84
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Jul 15 02:04:13 2020 +1000

    L10n updates for: sr
    From translation svn revision: 57628
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    1       1       source/locale/sr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 97b3606788f58eface716c470d433ef97c8c8678
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Jul 15 02:04:12 2020 +1000

    L10n updates for: so
    From translation svn revision: 57628
    
    Authors:
    Othmanothman <othman82@hotmail.com>
    
    Stats:
    1       1       source/locale/so/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 09e914b704461513a82eba3941b725e28837e71c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Jul 15 02:04:11 2020 +1000

    L10n updates for: sl
    From translation svn revision: 57628
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    48      254     source/locale/sl/LC_MESSAGES/nvda.po
    2       1       source/locale/sl/symbols.dic
    91      48      user_docs/sl/userGuide.t2t
     3 files changed, 141 insertions(+), 303 deletions(-)

commit 5511b401f655c0b7a757d473c4b4ceec2c6760a5
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Jul 15 02:04:10 2020 +1000

    L10n updates for: sk
    From translation svn revision: 57628
    
    Authors:
    Ondrej Rosik <ondrej.rosik@gmail.com>
    Peter Vagner <peter.v@datagate.sk>
    Jan Kulik <jan.kulik.szsle@outlook.sk>
    
    Stats:
    1       1       source/locale/sk/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit e3922894162f1c54c800bc2307e6d71f0fe4651d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Jul 15 02:04:08 2020 +1000

    L10n updates for: ru
    From translation svn revision: 57628
    
    Authors:
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    
    Stats:
    1       1       source/locale/ru/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit f14d638a30ceeaca126fa56251dee3d906302b44
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Jul 15 02:04:04 2020 +1000

    L10n updates for: ro
    From translation svn revision: 57628
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <7ro2014@gmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    George Antonio Andrei <george.andrei2002@gmail.com>
    
    Stats:
    1       1       source/locale/ro/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 0a0043608a0384f7eefb25e4fae3669bf6498084
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Jul 15 02:04:02 2020 +1000

    L10n updates for: pt_PT
    From translation svn revision: 57628
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    5       9       source/locale/pt_PT/LC_MESSAGES/nvda.po
    1       1       source/locale/pt_PT/gestures.ini
    61      6       source/locale/pt_PT/symbols.dic
    6       6       user_docs/pt_PT/changes.t2t
    4       4       user_docs/pt_PT/userGuide.t2t
     5 files changed, 77 insertions(+), 26 deletions(-)

commit 4d62ca8fd3ede6fb07b123486d0e7c0deb632b08
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Jul 15 02:04:00 2020 +1000

    L10n updates for: pt_BR
    From translation svn revision: 57628
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    1       1       source/locale/pt_BR/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 23fe555d7299b05d6de0d499ced4df0c3c92a98e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Jul 15 02:03:57 2020 +1000

    L10n updates for: pl
    From translation svn revision: 57628
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Hubert Meyer <hubmeyer1989@gmail.com>
    Arkadiusz Swietnicki <nuno69a@gmail.com>
    
    Stats:
    1       1       source/locale/pl/LC_MESSAGES/nvda.po
    63      63      source/locale/pl/symbols.dic
    11      11      user_docs/pl/changes.t2t
    63      20      user_docs/pl/userGuide.t2t
     4 files changed, 138 insertions(+), 95 deletions(-)

commit 2fb908e80a25c5216a1e5de48f29cc39ef16cc12
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Jul 15 02:03:55 2020 +1000

    L10n updates for: pa
    From translation svn revision: 57628
    
    Authors:
    Maheshinder Singh Khosla <mahesh.khosla@gmail.com>
    Dinesh Mittal <punjabimaster259@gmail.com>
    
    Stats:
    1       1       source/locale/pa/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 277461d2dda32a7407cc1655cb0bd008394b1b15
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Jul 15 02:03:54 2020 +1000

    L10n updates for: nl
    From translation svn revision: 57628
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    1       1       source/locale/nl/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 35bdaf6d32ec5c0d43fe2caf41865d152b215655
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Jul 15 02:03:53 2020 +1000

    L10n updates for: ne
    From translation svn revision: 57628
    
    Authors:
    Puskal Gautam <nvda.nepali@gmail.com>
    
    Stats:
    1       1       source/locale/ne/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit e2ddf3581f939186891f347942a69c5bef6ee1d8
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Jul 15 02:03:51 2020 +1000

    L10n updates for: nb_NO
    From translation svn revision: 57628
    
    Authors:
    David Hole <balubathebrave@gmail.com>
    Bjornar Seppola <bjornar@seppola.net>
    
    Stats:
    1       1       source/locale/nb_NO/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 15feb7b119c8789cc503223a98ccf563c4f20299
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Jul 15 02:03:50 2020 +1000

    L10n updates for: my
    From translation svn revision: 57628
    
    Authors:
    Benedict La hkun <lkbenedict@gmail.com>
    
    Stats:
    1       1       source/locale/my/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 1e0d50962ffc4d2a28029ab06a17823035c03d67
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Jul 15 02:03:48 2020 +1000

    L10n updates for: mn
    From translation svn revision: 57628
    
    Authors:
    Mongol NVDA-Translation <mongoliannvdatranslation@gmail.com>
    
    Stats:
    1       1       source/locale/mn/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit c50f91907b07768aef5fb819dfbf036e042abdbb
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Jul 15 02:03:46 2020 +1000

    L10n updates for: mk
    From translation svn revision: 57628
    
    Authors:
    zvonimir stanecic <9a5dsz@gozaltech.org>
    Kiko Lazarev <kristijan.lazarev@gmail.com>
    
    Stats:
    1       1       source/locale/mk/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit a3d4e24e13b0981187b881895c0eadbe8b0e6272
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Jul 15 02:03:44 2020 +1000

    L10n updates for: lt
    From translation svn revision: 57628
    
    Authors:
    Paulius Leveris <paulius.leveris@gmail.com>
    Rimas Kudelis <rq@akl.lt>
    
    Stats:
    1       1       source/locale/lt/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 819797c477d705063087e4dfb9f911136e2d50a9
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Jul 15 02:03:43 2020 +1000

    L10n updates for: ko
    From translation svn revision: 57628
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    5       7       source/locale/ko/LC_MESSAGES/nvda.po
     1 file changed, 5 insertions(+), 7 deletions(-)

commit bb726ea66e30a76484a147b3c478f837c9989037
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Jul 15 02:03:40 2020 +1000

    L10n updates for: kn
    From translation svn revision: 57628
    
    Authors:
    Siddalingeshwar Ingalagi <ingalagisiddu@gmail.com>
    
    Stats:
    1       1       source/locale/kn/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 436d1422f215be20790d2b4fdfb51d9cb05a0838
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Jul 15 02:03:39 2020 +1000

    L10n updates for: kmr
    From translation svn revision: 57628
    
    Authors:
    Imam Kahraman <imam.kahraman@googlemail.com>
    
    Stats:
    1       1       source/locale/kmr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 22b07068e066c48b01751e0bd5ba4d30d59c0330
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Jul 15 02:03:39 2020 +1000

    L10n updates for: ka
    From translation svn revision: 57628
    
    Authors:
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Goderdzi Gogoladze <goderdzigogoladze@gmail.com>
    
    Stats:
    1       1       source/locale/ka/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 30512e7cb6370675b278752578fd8326c4a8035d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Jul 15 02:03:38 2020 +1000

    L10n updates for: ja
    From translation svn revision: 57628
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    1       1       source/locale/ja/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 64b0985628799570c1957b822b7d81eec0580e0f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Jul 15 02:03:35 2020 +1000

    L10n updates for: it
    From translation svn revision: 57628
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    1       1       source/locale/it/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 7502292651f91680804a63be4fafb082c0c284cd
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Jul 15 02:03:33 2020 +1000

    L10n updates for: is
    From translation svn revision: 57628
    
    Authors:
    Birkir R. Gunnarsson <birkir.gunnarsson@gmail.com>
    Hlynur Hreinsson <hm.hreinsson@gmail.com>
    
    Stats:
    1       1       source/locale/is/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 5eb740710f44363f271bd01f2e4e5dc28e2a29a7
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Jul 15 02:03:31 2020 +1000

    L10n updates for: hu
    From translation svn revision: 57628
    
    Authors:
    Aron OcsvAri <oaron@nvda.hu>
    
    Stats:
    1       1       source/locale/hu/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit b16ed2daaa1456a89c2a133b9fe6f77f3a1f3e73
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Jul 15 02:03:29 2020 +1000

    L10n updates for: hr
    From translation svn revision: 57628
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Milo Ivir <mivir@milotype.de>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    1       1       source/locale/hr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit fb06e38efcb47dfaad877012aa0e76f8818e4c76
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Jul 15 02:03:27 2020 +1000

    L10n updates for: hi
    From translation svn revision: 57628
    
    Authors:
    dipendra.lists@gmail.com
    Doc Mehta <joyofinspiring@gmail.com>
    
    Stats:
    1       1       source/locale/hi/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 7c1137a9b2d3b1a57ff9dd12ff94f2d7319a16b6
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Jul 15 02:03:26 2020 +1000

    L10n updates for: he
    From translation svn revision: 57628
    
    Authors:
    Shmuel Naaman <shmuel_naaman@yahoo.com>
    Afik Sofir <afik.sofer@gmail.com>
    
    Stats:
    72      93      source/locale/he/LC_MESSAGES/nvda.po
    1       1       source/locale/he/characterDescriptions.dic
     2 files changed, 73 insertions(+), 94 deletions(-)

commit 78a31d06becc2cf3ff8f2304181ab391f3a008db
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Jul 15 02:03:24 2020 +1000

    L10n updates for: gl
    From translation svn revision: 57628
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    Javier Curras <javier.curras@nvda.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/gl/LC_MESSAGES/nvda.po
    1       1       source/locale/gl/gestures.ini
     2 files changed, 2 insertions(+), 2 deletions(-)

commit ec4029dcc8d980ab366d278a93c752bdba421502
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Jul 15 02:03:22 2020 +1000

    L10n updates for: ga
    From translation svn revision: 57628
    
    Authors:
    Cearbhall OMeadhra <cearbhall.omeadhra@blbc.ie>
    Ronan McGuirk <ronan.p.mcguirk@gmail.com>
    Kevin Scannell <kscanne@gmail.com>
    
    Stats:
    1       1       source/locale/ga/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit c070d1f46d9ba97fe7bfe9ed7836bad9e6ddff4b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Jul 15 02:03:21 2020 +1000

    L10n updates for: fr
    From translation svn revision: 57628
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess.net>
    
    Stats:
    5       5       source/locale/fr/LC_MESSAGES/nvda.po
     1 file changed, 5 insertions(+), 5 deletions(-)

commit e32d36bf86eb27b670c5a0ea51deafd1210aaf83
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Jul 15 02:03:19 2020 +1000

    L10n updates for: fi
    From translation svn revision: 57628
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    1       1       source/locale/fi/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 1c7045d528cbf1c4edfde6284ddd65a2902ef394
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Jul 15 02:03:16 2020 +1000

    L10n updates for: fa
    From translation svn revision: 57628
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    1       1       source/locale/fa/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 2cbaca0e2115732e29478da2ad208228fa7d29c4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Jul 15 02:03:13 2020 +1000

    L10n updates for: es
    From translation svn revision: 57628
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/es/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 1f6487c8d01036d032b67eb67101026902b236b3
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Jul 15 02:03:11 2020 +1000

    L10n updates for: es_CO
    From translation svn revision: 57628
    
    Authors:
    Jorge Zarache <reydelasmaquinas@outlook.com>
    Luis Carlos Gonzáles Moráles <luiscarlosgm@hotmail.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/es_CO/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit a7170f86ea066b03d2fec3c8433a4bc43000dc34
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Jul 15 02:03:09 2020 +1000

    L10n updates for: el
    From translation svn revision: 57628
    
    Authors:
    Irene Nakas <irnakas@gmail.com>
    Nikos Demetriou <nikosdemetriou@googlemail.com>
    access@e-rhetor.com
    
    Stats:
    1       1       source/locale/el/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 8925a2f522a5cee3c31102e95a8af54548060794
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Jul 15 02:03:07 2020 +1000

    L10n updates for: de
    From translation svn revision: 57628
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    1       1       source/locale/de/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 5645984f78a82dfbeb808c68519c6278638fee44
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Jul 15 02:03:05 2020 +1000

    L10n updates for: de_CH
    From translation svn revision: 57628
    
    Authors:
    Robert Hänggi <aarjay.robert@gmail.com>
    
    Stats:
    1       1       source/locale/de_CH/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit f0f4ba4ea176ac346d9e6ddbe9bdfcd72daaadf4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Jul 15 02:03:02 2020 +1000

    L10n updates for: da
    From translation svn revision: 57628
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    1       1       source/locale/da/LC_MESSAGES/nvda.po
    63      3       source/locale/da/symbols.dic
    1       1       user_docs/da/changes.t2t
    1       1       user_docs/da/userGuide.t2t
     4 files changed, 66 insertions(+), 6 deletions(-)

commit 0d7c36d72c0b8ca4c5488d9317ae0dc555a182ea
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Jul 15 02:03:01 2020 +1000

    L10n updates for: cs
    From translation svn revision: 57628
    
    Authors:
    Martina Letochova <letochova@seznam.cz>
    
    Stats:
    171     2       source/locale/cs/LC_MESSAGES/nvda.po
     1 file changed, 171 insertions(+), 2 deletions(-)

commit 8e32b20d46c9ae653b271d9a03cbdae831161f08
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Jul 15 02:02:59 2020 +1000

    L10n updates for: ckb
    From translation svn revision: 57628
    
    Authors:
    Ali Ustek <aliustek@gmail.com>
    Patrick Galasso <Patrice.galasso@gmail.com>
    Jwanro Mustafa <jwanroabdula@hotmail.com>
    Kosrat D Ahmad <kosrat.d.ahmad@gmail.com>
    silva.hm88@gmail.com
    
    Stats:
    1       1       source/locale/ckb/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 7c73fc4325df7587b7b2d169d7f5d209e20df167
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Jul 15 02:02:59 2020 +1000

    L10n updates for: ca
    From translation svn revision: 57628
    
    Authors:
    Ruben Alcaraz <ruben.hangar1.8@gmail.com>
    Dr. Mireia Ribera <mireia.ribera@gmail.com>
    Santi Moese <santispock@gmail.com>
    Marina Salse Rovira <salse@ub.edu>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/ca/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 2a02d20567e2fbf62e32642f4253f5045357c760
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Jul 15 02:02:57 2020 +1000

    L10n updates for: bg
    From translation svn revision: 57628
    
    Authors:
    Zahari Yurukov <zahari.yurukov@gmail.com>
    Kostadin Kolev <k_kolev1985@mail.bg>
    
    Stats:
    47      83      source/locale/bg/LC_MESSAGES/nvda.po
    63      3       source/locale/bg/symbols.dic
    69      11      user_docs/bg/changes.t2t
    74      31      user_docs/bg/userGuide.t2t
     4 files changed, 253 insertions(+), 128 deletions(-)

commit b682be874aa05bdc55ebda29dffa4f88d57e0474
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Jul 15 02:02:53 2020 +1000

    L10n updates for: ar
    From translation svn revision: 57628
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Omar Alojaimi <amrahmad1995@gmail.com>
    
    Stats:
    1       1       source/locale/ar/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit f9e8f7cd9757745e0cf2c940d316c9ef6e1a2c3d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Jul 15 02:02:49 2020 +1000

    L10n updates for: an
    From translation svn revision: 57628
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    19      33      source/locale/an/LC_MESSAGES/nvda.po
    144     101     user_docs/an/userGuide.t2t
     2 files changed, 163 insertions(+), 134 deletions(-)

commit 28ff702a4ca74cdbde65da98f3e24202bb1465f2
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Jul 15 02:02:46 2020 +1000

    L10n updates for: am
    From translation svn revision: 57628
    
    Authors:
    KETEMA ZEREGAW <kzeregaw@msn.com>
    Dr. Tamru E. Belay <g.braille@sympatico.ca>
    
    Stats:
    1       1       source/locale/am/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit d221758fa04822ec6680a62eaa80001d653fce04
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Tue Jul 14 09:43:09 2020 +1000

    Watchdog: log all stacks (not just the main thread) when the core is frozen (#11371)
    
    * Watchdog: log a stack for all threads if the core completely freezes.
    
    * Add code comment
    
    Co-authored-by: Leonard de Ruijter <leonardder@users.noreply.github.com>
    
    Co-authored-by: Leonard de Ruijter <leonardder@users.noreply.github.com>

commit 41b6f7e77566eab3c726fd52572c985ed3b3b73e
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Mon Jul 13 19:39:51 2020 +0200

    I8438 fix ordered list start number in IE (PR #11346)
    
    * adds support for 'start' attribute for 'OL' tag which partially fixes order numbering for numbered lists.
      - Ordered lists that start with a letter or roman numeral will still be announced as digits.
    * Review actions for #8474
    * No longer treat unordered lists like ordered lists, they don't need an index to count their position.
    * Removes unused "type" attribute fetching for "OL" element
    
    Co-authored-by: Dinesh Kaushal <dineshkaushal@gmail.com>

commit 4eb6f52f2721ae7bca2eb76fd1a211ccdabd4489
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Mon Jul 13 10:08:12 2020 -0700

    Synthesizer dialog: ensure 'Microsoft Sound Mapper' is named (PR #11353)
    
    Replace empty string in output device names with 'Microsoft Sound Mapper'.
    
    Fixes #11349.
    
    On Windows 10 Version 2004 (20H1) and 20H2, an empty string is returned when asking Windows for the friendly name of WAVE_MAPPER constant (-1). In older Windows releases, this is named 'Microsoft Sound Mapper'. Therefore call it that when enumerating device names for 'output device' list in synthesizer dialog in NVDA.
    
    Co-authored-by: Reef Turner <reef@nvaccess.org>

commit b94418db32af9d7b7363c6d10978a9ab103b82c8
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Jul 13 08:31:39 2020 +1000

    Revert f593f6d362c which accidentally committed lowercase directories for zh_TW.

commit c536dea39a34adbe6027fd43d504fb4911d6c1ab
Merge: da2334b45 30071f282
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 10 00:06:46 2020 +1000

    Update translations.
    
    From translation svn revision: 57525

commit 30071f282f48c05a59f1d5ac459e04cb489be8e4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 10 00:06:45 2020 +1000

    L10n updates for: zh_TW
    From translation svn revision: 57525
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    4       4       source/locale/zh_TW/LC_MESSAGES/nvda.po
    61      1       user_docs/zh_TW/changes.t2t
     2 files changed, 65 insertions(+), 5 deletions(-)

commit 56e202deb7896e0f4f80e616254cfb8919ea8b4d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 10 00:06:42 2020 +1000

    L10n updates for: zh_HK
    From translation svn revision: 57525
    
    Authors:
    Eric Yip <ericycy@gmail.com>
    
    Stats:
    48      85      source/locale/zh_HK/LC_MESSAGES/nvda.po
     1 file changed, 48 insertions(+), 85 deletions(-)

commit b98ca2aa8bc8dc73511482ea0788f274d26dd0be
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 10 00:06:42 2020 +1000

    L10n updates for: zh_CN
    From translation svn revision: 57525
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    
    Stats:
    1       1       source/locale/zh_CN/LC_MESSAGES/nvda.po
    22      22      user_docs/zh_CN/changes.t2t
     2 files changed, 23 insertions(+), 23 deletions(-)

commit 97a208bab4c01249dac21ed9dfd85042daa31d64
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 10 00:06:39 2020 +1000

    L10n updates for: vi
    From translation svn revision: 57525
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    1       1       source/locale/vi/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit ab7f4575275ee1e039307b902e1310c93ac69206
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 10 00:06:37 2020 +1000

    L10n updates for: uk
    From translation svn revision: 57525
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    16      16      source/locale/uk/LC_MESSAGES/nvda.po
    29      29      user_docs/uk/userGuide.t2t
     2 files changed, 45 insertions(+), 45 deletions(-)

commit 4d59708631b316ee1f0ad7ae42a10083e5fb7006
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 10 00:06:36 2020 +1000

    L10n updates for: tr
    From translation svn revision: 57525
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    1       1       source/locale/tr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 1cb59dc0eab7d615b91982d26ad9ebee23bed49a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 10 00:06:33 2020 +1000

    L10n updates for: ta
    From translation svn revision: 57525
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    1       1       source/locale/ta/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit cbf4c5e4e71dd5e4355df1108aa998531a4dfb98
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 10 00:06:31 2020 +1000

    L10n updates for: sv
    From translation svn revision: 57525
    
    Authors:
    Daniel Johansson <daniel.johansson@coeptus.se>
    Niklas Johansson <sleeping.pillow@gmail.com>
    Karl-Otto Rosenqvist <Karl-otto@mawingu.se>
    
    Stats:
    1       1       source/locale/sv/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 6c7520ec43c63d881c4f53fb5cb1fe133521aae4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 10 00:06:30 2020 +1000

    L10n updates for: sr
    From translation svn revision: 57525
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    1       1       source/locale/sr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 810adf6c8467ebac33d46c91bb8af178cc869bbb
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 10 00:06:28 2020 +1000

    L10n updates for: so
    From translation svn revision: 57525
    
    Authors:
    Othmanothman <othman82@hotmail.com>
    
    Stats:
    1       1       source/locale/so/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 05540543b1f4bdc0b55d4f892412870ed72073bb
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 10 00:06:28 2020 +1000

    L10n updates for: sl
    From translation svn revision: 57525
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    1       1       source/locale/sl/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit e38c25b23d59c8903739e4431c8ca069bf80393b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 10 00:06:26 2020 +1000

    L10n updates for: sk
    From translation svn revision: 57525
    
    Authors:
    Ondrej Rosik <ondrej.rosik@gmail.com>
    Peter Vagner <peter.v@datagate.sk>
    Jan Kulik <jan.kulik.szsle@outlook.sk>
    
    Stats:
    55      92      source/locale/sk/LC_MESSAGES/nvda.po
    60      0       source/locale/sk/symbols.dic
    46      0       user_docs/sk/changes.t2t
    67      24      user_docs/sk/userGuide.t2t
     4 files changed, 228 insertions(+), 116 deletions(-)

commit 0e0206c4bfeedb06eea0321a3c1289bb0032755f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 10 00:06:24 2020 +1000

    L10n updates for: ru
    From translation svn revision: 57525
    
    Authors:
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    
    Stats:
    7       7       source/locale/ru/LC_MESSAGES/nvda.po
    1       0       source/locale/ru/symbols.dic
    4       4       user_docs/ru/userGuide.t2t
     3 files changed, 12 insertions(+), 11 deletions(-)

commit 04e4a4ae5f76e4b310ce8dbefcf8c030e86b5153
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 10 00:06:21 2020 +1000

    L10n updates for: ro
    From translation svn revision: 57525
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <7ro2014@gmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    George Antonio Andrei <george.andrei2002@gmail.com>
    
    Stats:
    4       4       source/locale/ro/LC_MESSAGES/nvda.po
     1 file changed, 4 insertions(+), 4 deletions(-)

commit d6d1081b84e23bc620fe88efd53baa08a6271870
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 10 00:06:19 2020 +1000

    L10n updates for: pt_PT
    From translation svn revision: 57525
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    1       1       source/locale/pt_PT/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit ba32bb917d8b49b27ab86d7068ad0955b9799309
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 10 00:06:17 2020 +1000

    L10n updates for: pt_BR
    From translation svn revision: 57525
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    1       1       source/locale/pt_BR/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 60b9b4e3381c1845678751b2f2fdacf226fd88f5
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 10 00:06:15 2020 +1000

    L10n updates for: pl
    From translation svn revision: 57525
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <hubmeyer1989@gmail.com>
    Arkadiusz Swietnicki <nuno69a@gmail.com>
    
    Stats:
    1       1       source/locale/pl/LC_MESSAGES/nvda.po
    60      0       source/locale/pl/symbols.dic
    34      34      user_docs/pl/changes.t2t
     3 files changed, 95 insertions(+), 35 deletions(-)

commit 7c1ba6636f6d83e70269693463dcb2bc60dcc419
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 10 00:06:12 2020 +1000

    L10n updates for: pa
    From translation svn revision: 57525
    
    Authors:
    Maheshinder Singh Khosla <mahesh.khosla@gmail.com>
    Dinesh Mittal <punjabimaster259@gmail.com>
    
    Stats:
    1       1       source/locale/pa/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 08b5f0f08ed86581b4d9e5dd2fba002092a52907
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 10 00:06:12 2020 +1000

    L10n updates for: nl
    From translation svn revision: 57525
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    1       1       source/locale/nl/LC_MESSAGES/nvda.po
    8       3       user_docs/nl/userGuide.t2t
     2 files changed, 9 insertions(+), 4 deletions(-)

commit b55208d7ba597d65237d625a62e365ed82c7e3fa
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 10 00:06:10 2020 +1000

    L10n updates for: ne
    From translation svn revision: 57525
    
    Authors:
    Puskal Gautam <nvda.nepali@gmail.com>
    
    Stats:
    1       1       source/locale/ne/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 9a968688e9d020e42b9017b79a2121a2d08bb3db
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 10 00:06:08 2020 +1000

    L10n updates for: nb_NO
    From translation svn revision: 57525
    
    Authors:
    David Hole <balubathebrave@gmail.com>
    Bjornar Seppola <bjornar@seppola.net>
    
    Stats:
    1       1       source/locale/nb_NO/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 1d6209159ff751f0ae1dae28ab140e81bb152f43
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 10 00:06:07 2020 +1000

    L10n updates for: my
    From translation svn revision: 57525
    
    Authors:
    Benedict La hkun <lkbenedict@gmail.com>
    
    Stats:
    1       1       source/locale/my/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 154375699970c96aacd7410ef7988304137baea7
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 10 00:06:06 2020 +1000

    L10n updates for: mn
    From translation svn revision: 57525
    
    Authors:
    Mongol NVDA-Translation <mongoliannvdatranslation@gmail.com>
    
    Stats:
    1       1       source/locale/mn/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 9a07ea63bd5cf5c1fe52eeaa9daac50c4eefd074
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 10 00:06:03 2020 +1000

    L10n updates for: mk
    From translation svn revision: 57525
    
    Authors:
    zvonimir stanecic <9a5dsz@gozaltech.org>
    Kiko Lazarev <kristijan.lazarev@gmail.com>
    
    Stats:
    1       1       source/locale/mk/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 3cb4fa496f8a8e0ac700c90106e39c113739fae9
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 10 00:06:01 2020 +1000

    L10n updates for: lt
    From translation svn revision: 57525
    
    Authors:
    Paulius Leveris <paulius.leveris@gmail.com>
    Rimas Kudelis <rq@akl.lt>
    
    Stats:
    1       1       source/locale/lt/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit a5100d4c84c079a47fef0efcf2e2dc3a9780ed65
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 10 00:06:00 2020 +1000

    L10n updates for: ko
    From translation svn revision: 57525
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    4       4       source/locale/ko/LC_MESSAGES/nvda.po
     1 file changed, 4 insertions(+), 4 deletions(-)

commit 046ddf8e8f9b7260671f13c3ab13975dd3e1aad4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 10 00:05:58 2020 +1000

    L10n updates for: kn
    From translation svn revision: 57525
    
    Authors:
    Siddalingeshwar Ingalagi <ingalagisiddu@gmail.com>
    
    Stats:
    1       1       source/locale/kn/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 189e84268fc87ee531a6a775895e4ccfb91b9463
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 10 00:05:57 2020 +1000

    L10n updates for: kmr
    From translation svn revision: 57525
    
    Authors:
    Imam Kahraman <imam.kahraman@googlemail.com>
    
    Stats:
    1       1       source/locale/kmr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 1304f9d2905af14a00f0395f597c6b7856fdb497
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 10 00:05:56 2020 +1000

    L10n updates for: ka
    From translation svn revision: 57525
    
    Authors:
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Goderdzi Gogoladze <goderdzigogoladze@gmail.com>
    
    Stats:
    1       1       source/locale/ka/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 5c591fb7c74dad8b8d1544b75734fbb5cd3c5662
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 10 00:05:55 2020 +1000

    L10n updates for: ja
    From translation svn revision: 57525
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    3       3       source/locale/ja/LC_MESSAGES/nvda.po
    2       2       user_docs/ja/changes.t2t
     2 files changed, 5 insertions(+), 5 deletions(-)

commit 9c4f2d108049dcd8dee208918f675942691341b7
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 10 00:05:52 2020 +1000

    L10n updates for: it
    From translation svn revision: 57525
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    6       7       source/locale/it/LC_MESSAGES/nvda.po
    57      0       user_docs/it/changes.t2t
    14      8       user_docs/it/userGuide.t2t
     3 files changed, 77 insertions(+), 15 deletions(-)

commit 8e3fc20186250e2e8f042ff9071b62ffc9c22a6e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 10 00:05:50 2020 +1000

    L10n updates for: is
    From translation svn revision: 57525
    
    Authors:
    Birkir R. Gunnarsson <birkir.gunnarsson@gmail.com>
    Hlynur Hreinsson <hm.hreinsson@gmail.com>
    
    Stats:
    1       1       source/locale/is/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 62a4ef97445280a6e62c4279ccff1c60f7270f70
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 10 00:05:48 2020 +1000

    L10n updates for: hu
    From translation svn revision: 57525
    
    Authors:
    Aron OcsvAri <oaron@nvda.hu>
    
    Stats:
    34      71      source/locale/hu/LC_MESSAGES/nvda.po
    49      0       user_docs/hu/changes.t2t
     2 files changed, 83 insertions(+), 71 deletions(-)

commit a06bd85057b0b0d6fdad27076bb50f4325c986a5
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 10 00:05:46 2020 +1000

    L10n updates for: hr
    From translation svn revision: 57525
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Milo Ivir <mivir@milotype.de>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    1       1       source/locale/hr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit e984ca085e3bdd6de4c00cb42a94e87290fe978f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 10 00:05:44 2020 +1000

    L10n updates for: hi
    From translation svn revision: 57525
    
    Authors:
    dipendra.lists@gmail.com
    Doc Mehta <joyofinspiring@gmail.com>
    
    Stats:
    1       1       source/locale/hi/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 6079f70996ec5fd5804d5d6059a008e8138e4697
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 10 00:05:43 2020 +1000

    L10n updates for: he
    From translation svn revision: 57525
    
    Authors:
    Shmuel Naaman <shmuel_naaman@yahoo.com>
    Afik Sofir <afik.sofer@gmail.com>
    
    Stats:
    1       1       source/locale/he/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 08419b62847c068880f5588782178a1a031032aa
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 10 00:05:42 2020 +1000

    L10n updates for: gl
    From translation svn revision: 57525
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    Javier Curras <javier.curras@nvda.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/gl/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit c9967afbaca62d1338c7ed77cefe5305ce2c7db2
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 10 00:05:39 2020 +1000

    L10n updates for: ga
    From translation svn revision: 57525
    
    Authors:
    Cearbhall OMeadhra <cearbhall.omeadhra@blbc.ie>
    Ronan McGuirk <ronan.p.mcguirk@gmail.com>
    Kevin Scannell <kscanne@gmail.com>
    
    Stats:
    1       1       source/locale/ga/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit a36f1bf53dc28299c11378424a1978cdc3a456a1
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 10 00:05:38 2020 +1000

    L10n updates for: fr
    From translation svn revision: 57525
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess.net>
    
    Stats:
    1       1       source/locale/fr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 8103f9b04eeca28d693a8082a4c3cedcdc90a420
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 10 00:05:36 2020 +1000

    L10n updates for: fi
    From translation svn revision: 57525
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    1       1       source/locale/fi/LC_MESSAGES/nvda.po
    2       2       user_docs/fi/changes.t2t
     2 files changed, 3 insertions(+), 3 deletions(-)

commit c88a64c65db2b6f746ededd25247559f3f0e91d1
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 10 00:05:34 2020 +1000

    L10n updates for: fa
    From translation svn revision: 57525
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    1       1       source/locale/fa/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit cb9830211207a8b056c72c9fcbb35239e71ab4a5
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 10 00:05:31 2020 +1000

    L10n updates for: es
    From translation svn revision: 57525
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/es/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 3cd4d8d8e12d6fa190cf23042dff4ce3ac6b450b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 10 00:05:28 2020 +1000

    L10n updates for: es_CO
    From translation svn revision: 57525
    
    Authors:
    Jorge Zarache <reydelasmaquinas@outlook.com>
    Luis Carlos Gonzáles Moráles <luiscarlosgm@hotmail.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/es_CO/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit d51a3996a776ad843cdce1d205f4c090d3ecc14a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 10 00:05:26 2020 +1000

    L10n updates for: el
    From translation svn revision: 57525
    
    Authors:
    Irene Nakas <irnakas@gmail.com>
    Nikos Demetriou <nikosdemetriou@googlemail.com>
    access@e-rhetor.com
    
    Stats:
    57      97      source/locale/el/LC_MESSAGES/nvda.po
     1 file changed, 57 insertions(+), 97 deletions(-)

commit 17b8141e4f9c0c9b9e5a0bc0c026daa062eea50b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 10 00:05:24 2020 +1000

    L10n updates for: de
    From translation svn revision: 57525
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    9       10      source/locale/de/LC_MESSAGES/nvda.po
     1 file changed, 9 insertions(+), 10 deletions(-)

commit ea0187ddd68d486cedf9e597dae0352896b0498a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 10 00:05:22 2020 +1000

    L10n updates for: de_CH
    From translation svn revision: 57525
    
    Authors:
    Robert Hänggi <aarjay.robert@gmail.com>
    
    Stats:
    1       1       source/locale/de_CH/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 17adfc2491095d56be7163d42c103d876e5500f7
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 10 00:05:20 2020 +1000

    L10n updates for: da
    From translation svn revision: 57525
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    33      69      source/locale/da/LC_MESSAGES/nvda.po
    52      26      user_docs/da/userGuide.t2t
     2 files changed, 85 insertions(+), 95 deletions(-)

commit 97ec1b2d115139f42aad343bdb165e9a6eb56006
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 10 00:05:18 2020 +1000

    L10n updates for: cs
    From translation svn revision: 57525
    
    Authors:
    Martina Letochova <letochova@seznam.cz>
    
    Stats:
    43      252     source/locale/cs/LC_MESSAGES/nvda.po
     1 file changed, 43 insertions(+), 252 deletions(-)

commit d6b10bad1b09174dc2ac9008bbd58c5fb3eb0c66
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 10 00:05:17 2020 +1000

    L10n updates for: ckb
    From translation svn revision: 57525
    
    Authors:
    Ali Ustek <aliustek@gmail.com>
    Patrick Galasso <Patrice.galasso@gmail.com>
    Jwanro Mustafa <jwanroabdula@hotmail.com>
    Kosrat D Ahmad <kosrat.d.ahmad@gmail.com>
    silva.hm88@gmail.com
    
    Stats:
    1       1       source/locale/ckb/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit f1faf5504288923ad4400b601c9387967bfde819
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 10 00:05:16 2020 +1000

    L10n updates for: ca
    From translation svn revision: 57525
    
    Authors:
    Ruben Alcaraz <ruben.hangar1.8@gmail.com>
    Dr. Mireia Ribera <mireia.ribera@gmail.com>
    Santi Moese <santispock@gmail.com>
    Marina Salse Rovira <salse@ub.edu>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/ca/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 651ecc5aac8f450c3675fdfffb4833c5013f57ad
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 10 00:05:14 2020 +1000

    L10n updates for: bg
    From translation svn revision: 57525
    
    Authors:
    Zahari Yurukov <zahari.yurukov@gmail.com>
    Kostadin Kolev <k_kolev1985@mail.bg>
    
    Stats:
    1       1       source/locale/bg/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 2e9f2fd01aeb87e62b096c62355c4da181f2abf6
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 10 00:05:10 2020 +1000

    L10n updates for: ar
    From translation svn revision: 57525
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Omar Alojaimi <amrahmad1995@gmail.com>
    
    Stats:
    60      61      source/locale/ar/LC_MESSAGES/nvda.po
    10      10      user_docs/ar/changes.t2t
    68      43      user_docs/ar/userGuide.t2t
     3 files changed, 138 insertions(+), 114 deletions(-)

commit 54060d5ee243814d83e6eee99b185c5a7336a76d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 10 00:05:06 2020 +1000

    L10n updates for: an
    From translation svn revision: 57525
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    34      57      source/locale/an/LC_MESSAGES/nvda.po
    16      0       source/locale/an/gestures.ini
    61      21      source/locale/an/symbols.dic
    57      0       user_docs/an/changes.t2t
     4 files changed, 168 insertions(+), 78 deletions(-)

commit 14c719f620e6963847b149e2e38e976e21bd1cb6
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 10 00:05:04 2020 +1000

    L10n updates for: am
    From translation svn revision: 57525
    
    Authors:
    KETEMA ZEREGAW <kzeregaw@msn.com>
    Dr. Tamru E. Belay <g.braille@sympatico.ca>
    
    Stats:
    1       1       source/locale/am/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit da2334b458ca96f262a2de1585ff24032fbf0d01
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Tue Jul 7 01:53:31 2020 +0200

    Use SetSelection rather than SetValue for combobox in Advanced settings  Fix for https://github.com/nvaccess/nvda/issues/11341 (#11344)

commit e87d8ab14ec86db2e677b9300c3301462c693b2c
Author: Adriani90 <adriani.botez@googlemail.com>
Date:   Mon Jul 6 17:33:45 2020 +0200

    Excel: refer to notes instead of comments (PR #11311)
    
    fixes #10923
    fixes #4864
    Addresses discussions in #11153.
    Co-authored-by: Reef Turner <reef@nvaccess.org>

commit 782000767219085955eed3b487355d76314db7d9
Author: Reef Turner <reef@nvaccess.org>
Date:   Mon Jul 6 14:24:23 2020 +0200

    Update changes file for PR #11329

commit 810cee55f46cffbaa801d61acc9891fd1c952145
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Mon Jul 6 14:00:00 2020 +0200

    Excel - Element List dialog: Present the localized formulas (PR #11329)
    
    Fixes #9144

commit 18a14d0c1a7426223bc5a70e40508d37f487e528
Author: Reef Turner <reef@nvaccess.org>
Date:   Mon Jul 6 13:58:23 2020 +0200

    Update changes file for PR #10087

commit b14878a7f57889cf17f97b2e2f29e5e2ddfb919e
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Mon Jul 6 13:56:40 2020 +0200

    Add-Ons Manager: Make "No" default in Delete Add-On Confirmation Dialog (PR #10087)
    
    Fixes #10015

commit a426c5a99c837d42b02d3d1fa931351f05e4a77d
Author: André-Abush Clause <dev@andreabc.net>
Date:   Mon Jul 6 13:28:18 2020 +0200

    Add new German braille tables (PR #11268)
    
    Fixes #11263
    
    Co-authored-by: Leonard de Ruijter <leonardder@users.noreply.github.com>
    Co-authored-by: Reef Turner <feerrenrut@users.noreply.github.com>

commit 1e5a1b9f18f7e766a6170b60014aba4c12784e2b
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Jul 6 17:34:17 2020 +1000

    Update what's new for pr #9119

commit 7b1d680f622f2df595f520d761ea26d8972925b2
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Mon Jul 6 00:32:15 2020 -0700

    App modules/WWAHost: use package functions to determine product name/version and which app module to load (#9119)
    
    * App modules/WWAHost: update copyright header.
    
    * WWAHost: fetch product name and version via GetPackageFullName function. Re #4259.
    
    AppModule.productName/productVersion looks at product name/version fields for the executable itself. For WWAHost, this means a generic product name (Microsoft Windows operating system) and version (Windows major.minor.build.revision) will be returned, thus not giving an accurate picture as to which app is being hosted and the guest app version. Thankfully, there is a function (kernel32.dll::GetPackageFullName) that will return a serialized package info text, which does return the actual product name and version of the hosted app. The package info structure consits of name, version, publisher, architecture and other relevant information for a package given the process ID for the app container, and is joined via an underscore character (_), with the first two indecies being publisher.name and version, respectively.
    Thus modified AppModule._setProductInfo for wwahost to fetch the app info via the function described above. This then allows the correct name and version of the hosted app to be returned. Note that in some cases, product version is 1.0.0.0 (especially Store app in Windows 8 and 8.1), but this can be ignored.
    
    * WWAHost: load appropriate app module for the hosted app. Re #4569.
    
    Just like Javaw (hosted Java apps): different app modules for apps hosted by WWAHost are desirable for handling individual apps. Thus fetch which app module to load via a call to kernel32.dll::GetApplicationUserModelId. The app model text consists of app family name, an exclamation point, and the app name. Because Python can't import files with exclamation marks in the middle of their name, just return the lowercase version of app name (latter half of the app model text).
    Note that app modules for WWAHost apps must import contents of wwahost app module in order to take advantage of package-specific product name/version field, as well as other potential services in the future.
    
    * appModules/WWAHost: docstring updates. Re #4569.
    
    Reviewed by Leonard de Ruijter (Babbage): clarify docstring, and give an explanation as to how app model text is constructed and reasoning behind returning only a portion of it.
    
    * Dev guide: add sections and an example on hosted apps. Re #4569.
    
    * appModules/wwahost: obtain length of the app module/full name string via length.value. Re #4259.
    
    Comment from James Teh (Mozilla): try using length.value instead of a dedicated buffer variable, as the function used returns nonimportant error codes instead of actual length.
    
    * Dev guide: remove confusing paragraph on wwahost notess.
    
    * WWAHost: app content should not become a browse mode document by default.
    
    Although content appears to be a webpage, it is actually part of an app hosted inside WWAHost. This includes apps from Windows 8.x days, as well as progressive web apps (PWA's) that are not really browse mode documents. Apps requiring browse mode may override 'disable browse mode by default' flag to suit their needs.
    
    * WWAHost: lint fixes.
    
    Lint fixes include splitting long lines and comment style.
    
    * WWAHost: remove product name and version setter. Re #4259.
    
    A more generic way of setting product name and version for hosted apps, including those hosted within WWAHost, will be used from base app module, thus this setter method is no longer needed.
    
    * appModules/wwahost: update copyright header
    
    * appModules/WWAHost: remove bulk of app module class apart from browse mode off flag.
    
    Comment from Mick Curran (NV Access): in 2012, WWA Host app module was reponsible for turning what was essentially a web application into a proper 'application'. This was needed prior to introduction of browse mode flag for app modules. Now that this flag is present, there is no need for role coercion anymore (users can toggle browse mode instead).

commit daa7907940385f976835f2cc43db73b88bd5ce31
Author: CyrilleB79 <cyrille.bougot2@laposte.net>
Date:   Mon Jul 6 09:29:03 2020 +0200

    Sort the following UI lists according to locale: (#11334)
    
    - Add-on list in add-on manager dialog
    - Gesture categories and gesture description in a category in the tree in the input gesture dialog
    - input and output table lists in the Braille setting panel
    - synthesizer list in the synth selection dialog
    - Braille display list in the Braille display selection dialog

commit 0358e7ffe538f7e4cc4c2b3fad681e32b8569192
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Mon Jul 6 09:10:44 2020 +0200

    Fix-up of #10307: Don't use bare except (#11338)

commit 1f1dbd966af4b4439ec81ca0151f30214c6df35a
Author: Masako Toda <todamasako0421@hotmail.com>
Date:   Sun Jul 5 23:59:59 2020 -0700

    Fix backspace issue with QLineEdit + Password echo mode with Qt 5.9 (#11322)
    
    * Fix backspace issue with QLineEdit + Password echo mode with Qt 5.9
    
    * Add null check before calling isHighSurrogate/isLowSurrogate
    
    Co-authored-by: Masako Toda <mtoda@blizzard.com>

commit 6ba754517759226ae9b169606a28f5d6c154695c
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Jul 6 14:07:41 2020 +1000

    Update what's new for pr #8858

commit 33d2477cc9308a7907059d8bcba08c71a935ed9d
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Mon Jul 6 06:03:48 2020 +0200

    Improve presentation of checkable list items (#8858)
    
    * Treat syslistview32 checkboxes as list items
    
    * Treat check boxes as list items when they are selectable
    
    * Change controlTypes tests to reflect new situation
    
    * Fix linter
    
    * Improve code style in controlTYpes
    
    * Fix typo
    
    Co-authored-by: Leonard de Ruijter <leonard@babbage.com>

commit fc4625b7a62042c5cab0c4bbd684ad94342a89db
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Jul 6 13:51:08 2020 +1000

    Update what's new for pr #8644

commit 4799068e26d2d7df52b0e17a2130c3f36c2f82da
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Sun Jul 5 20:49:10 2020 -0700

    App modules: add additional app properties such as app path, immersive process, and app architecture (#8644)
    
    * App modules: add appPath property, clarify that app module packages are also supported. Re #7894.
    
    Add appModuleHandler.AppModule.appPath property used to obtain the full path for the executable (e.g. C:\Windows\explorer.exe).
    Also, in app module docstring, clarify that app module packages (appmodname/__init__.py) are also supported.
    
    * App modules: add isWindowsStoreApp property. Re #7894.
    
    AppModule.isWindowsStoreApp will call user32.dll::IsImmersiveProcess to determine if the app is hosted inside a Windows RT container. This is useful for dealing with universla apps on Windows 10.
    
    * App modules: add appArchitecture property. Re #7894.
    
    appModule.appArchitecture will return the architecture for which the app is written. It can be x86 (32-bit app on 32-bit Windows), AMD64 (x64 app), or ARM64 (64-bit ARM app). This is accomplished by use of kernel32.dll's IsWow64Process2 (available on Windows 10 build 10586 and later).
    
    * App module properties: address review comments. Re #7894.
    
    appModule.isWindowsStoreApp: check if it is below Windows 8, also fixed tuple syntax.
    appModule.appArchitecture: variable renames to make it clear.
    
    * App modules/app architecture: use much improved is64bitProcess method. re #7894.
    
    Thanks to work on ARM64 detection in appModule.is64BitProcess: use kernel32::isWow64Process2 directly and obtain either AMD64 or ARM64, falling back to AMD64 if that Windows API function isn't present (the function is present in Windows 10 Version 1511 (build 10586) and later).
    
    * App architecture: rewrite the whole thing in order to support detection of 32-bit ARM apps. Re #7894.
    
    Windows 10 Version 1903 includes foundatoins to support 32-bit ARM apps. Because this means two 32-bit architectures must be handled, rewrite app architecture method to:
    1. Record architecture to arch names inside a map.
    2. Call kernel32::IsWow64Process2 first and obtain arch name fromthe arch values map.
    3. If IsWow64process2 fails for some reason (Windows 7 through 10 Version 1507), return appropriate architecture name based on 64-bit process status.
    
    * App architecture: mention ARM32. re #7894.
    
    * Lint fixes.
    
    Fixes include inline comments and spaces around dictionary operator.
    
    * App properties: use a dedicated (private) method for fetching package info for Microsoft Store apps. Re #7894.
    
    User32.dll::IsImmersiveProcess won't quite cut it for Store apps:
    * File Explorer is seen as an immersive app but it is not really a Store application.
    * Converted desktop apps are seen as not immersive but they are Store apps.
    The more accurate way to determine this information is looking for app package info, which can be done by calling kernel32.dll::GetPackageFullName. This returns a string representation of app name, version, architecture, language, and app ID (the first two are used in #4259). Every Store app comes with app model XML file that provides data for this structure (Store version of NVDA is no exception). Thus use this method, which is now part of a private function in the base app module so not only product name and version setter can use it, but also Store app property can call this method.
    
    * Product name and version for Store apps: use the dedicated package info function. Re #7894.
    
    Use the dedicated package info function for obtaining product name and version:
    * If the package info is a string, info will be parsed.
    * If it is None, executable file info will be fetched.
    
    * Windows Store property: use package info method to determine if the underlying process is a Windows Store app. Re #7894.
    
    User32.dll::IsImmersiveProcess won't work all the way, but package info fetching will (on Windows 8 and later). Therefore use the package info method to determine if a given process is a Windows Store app.
    
    * Windows Store app property: use platform version tuple from sys.getwindowsversion(). Re #7894.
    
    * App modules/immersive package info: use length instead of unused buffer to obtain actual package info length (addressing review action). Re #7894.

commit e1c72f3244587ff24b53e7719bd45e75172c9192
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Jul 6 11:55:03 2020 +1000

    Update what's new for pr #11214

commit f15d3c9cb2d9964aa6ed67fc5acc5c646e0d9d62
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Mon Jul 6 03:51:19 2020 +0200

    Selective UIA event handling (#11214)
    
    * Prototype
    
    * Fix unhandled error when comparing elements
    
    * Fix windows 7
    
    * Linting
    
    * Start with config flag
    
    * Start with flag in dialog
    
    * Finish integration in gui
    
    * Linter
    
    * Make selection events global
    
    * use gainFocus/loseFocus for event registration
    
    * Bind local event registration to gainFocus and loseFocus events on UIA objects
    
    * Satisfy the linter
    
    * Fix accidental commit of old liblouis
    
    * Fix gainFocus superCall in EditableTextWithAutoSelectDetection
    
    * Some optimisations
    
    * Update userdocs

commit a28fdf576952a3bba591d1be40ddd221ea2f8944
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Sun Jul 5 17:16:27 2020 -0700

    Open With: treat Shell-Flyout as a good UIA window (#11336)
    
    * appModules/Open With: copyright header update (note that this file was first added in 2011 as a temporary workaround for Open With issue in Windows 8 preview. Re #11335
    
    * appModules/open with: treat Shell_Flyout as a good UIA window. Re #11335.
    
    ON some systems running Windows 10 May 2020 UPdate (Version 2004), Open With dialog was not read, although NVDA will say 'pane'. Turns out this is a UIA element that is seen as an IAccessible by NVDA. Thus classify Sheell_Flyout window as a good UIA window. NOt only does this let NVDA announce Open With dialog in May 2020 Update, it also lets nVDA not announce 'pane' when Open With opens.
    
    * Update what's new for pr #11336
    
    Co-authored-by: Michael Curran <mick@nvaccess.org>

commit 563f7e670884bb2174f5bb6b13b9d65812cb1dff
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Fri Jul 3 15:08:51 2020 +0200

    Fix: NVDA remains silent when deleting characters while holding shift (PR #11328)
    
    Fixes #9132

commit 1869aa7316bfaf2a11a93ed41a2ea04cfca886b3
Author: Adriani90 <adriani.botez@googlemail.com>
Date:   Fri Jul 3 12:42:27 2020 +0200

    Fixed two links in changes file (PR #11325)
    
    fixes #11324

commit 3a0e55d6e51d9524a48d0e9bf61caa21d2c541b0
Merge: c35becef3 a145895e4
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Fri Jul 3 08:44:41 2020 +0200

    Merge branch 'master' into i9280

commit ac400e27e1f713b9244bf02fa648e08a437e44ef
Merge: 139aa7347 a145895e4
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Fri Jul 3 08:40:36 2020 +0200

    Merge branch 'master' into i9910-browseableMessage

commit a145895e4378e8693e2d5bc06d043d4c4581ba05
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Jul 3 15:06:37 2020 +1000

    Update changes file for pr #10796

commit 6154658c12bcfef4c4a86bfea11e2816c351c8f4
Author: André-Abush Clause <dev@andreabc.net>
Date:   Fri Jul 3 07:02:21 2020 +0200

    `brailleInput.handler.sendChars`: allow sending Unicode characters beyond U+FFFF (#10796)

commit 7023085104cc83d50775f5fa813442366abb7d50
Author: Reef Turner <reef@nvaccess.org>
Date:   Thu Jul 2 18:21:50 2020 +0200

    Update changes file for PR #10307

commit 02c481db3912efa0722ba71808d81cd156832d97
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Thu Jul 2 18:19:03 2020 +0200

    Input Gestures dialog: Async filtering for smoother response (PR #10307)
    
    Refactor using VirtualTree
    Expand categories only if there are few results

commit 3572106b64424df27caa04f4ad2ae86cfe36f991
Author: Reef Turner <reef@nvaccess.org>
Date:   Thu Jul 2 16:26:36 2020 +0200

    Update changes file for PR #10159

commit a646fcdf7959d9ff4046e678c22cb98735b223e4
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Thu Jul 2 16:18:43 2020 +0200

    GUI: Separate dismiss buttons and borders (PR #10159)
    
    Fixes #6468

commit dcd41e69b0f584bf65c1744fedc7675f37fcc003
Merge: d1231f9ba 2387abfaf
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 3 00:07:22 2020 +1000

    Update translations.
    
    From translation svn revision: 57438

commit 2387abfaf8488e52e335b81c87902424cbc413e1
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 3 00:07:19 2020 +1000

    L10n updates for: zh_TW
    From translation svn revision: 57438
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    16      8       source/locale/zh_TW/LC_MESSAGES/nvda.po
    48      47      source/locale/zh_TW/characterDescriptions.dic
    63      10      source/locale/zh_TW/symbols.dic
    5       5       user_docs/zh_TW/userGuide.t2t
     4 files changed, 132 insertions(+), 70 deletions(-)

commit 5a172d9ef0378ad907520dea57ce1ea394c41887
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 3 00:07:16 2020 +1000

    L10n updates for: zh_HK
    From translation svn revision: 57438
    
    Authors:
    Eric Yip <ericycy@gmail.com>
    
    Stats:
    15      5       source/locale/zh_HK/LC_MESSAGES/nvda.po
     1 file changed, 15 insertions(+), 5 deletions(-)

commit cc82d0b46ed63addfb7e72a4f1375782902a8a69
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 3 00:07:15 2020 +1000

    L10n updates for: zh_CN
    From translation svn revision: 57438
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    
    Stats:
    14      6       source/locale/zh_CN/LC_MESSAGES/nvda.po
    12      15      user_docs/zh_CN/userGuide.t2t
     2 files changed, 26 insertions(+), 21 deletions(-)

commit 62b65b4dedf3491487e9041e9fa3408069f4ecc1
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 3 00:07:13 2020 +1000

    L10n updates for: vi
    From translation svn revision: 57438
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    16      8       source/locale/vi/LC_MESSAGES/nvda.po
    0       1       source/locale/vi/symbols.dic
    8       8       user_docs/vi/changes.t2t
    5       5       user_docs/vi/userGuide.t2t
     4 files changed, 29 insertions(+), 22 deletions(-)

commit e3c3a9e6ed10843eb115c642006e9b5b80f983c4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 3 00:07:10 2020 +1000

    L10n updates for: uk
    From translation svn revision: 57438
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    993     334     source/locale/uk/LC_MESSAGES/nvda.po
    156     35      source/locale/uk/symbols.dic
    2       2       user_docs/uk/userGuide.t2t
     3 files changed, 1151 insertions(+), 371 deletions(-)

commit 79c9ea57515949786c665adb6b3c9716fe151dda
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 3 00:07:08 2020 +1000

    L10n updates for: tr
    From translation svn revision: 57438
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    15      7       source/locale/tr/LC_MESSAGES/nvda.po
    0       2       source/locale/tr/symbols.dic
    11      11      user_docs/tr/changes.t2t
     3 files changed, 26 insertions(+), 20 deletions(-)

commit 1571a10a85ffdcf1e83ac3f5857ce733170b05c6
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 3 00:07:05 2020 +1000

    L10n updates for: ta
    From translation svn revision: 57438
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    17      9       source/locale/ta/LC_MESSAGES/nvda.po
    0       1       source/locale/ta/symbols.dic
    40      17      user_docs/ta/userGuide.t2t
     3 files changed, 57 insertions(+), 27 deletions(-)

commit ec7b6e69af4cc807845e200d588d20e4dfbfd591
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 3 00:07:02 2020 +1000

    L10n updates for: sv
    From translation svn revision: 57438
    
    Authors:
    Daniel Johansson <daniel.johansson@coeptus.se>
    Niklas Johansson <sleeping.pillow@gmail.com>
    Karl-Otto Rosenqvist <Karl-otto@mawingu.se>
    
    Stats:
    17      5       source/locale/sv/LC_MESSAGES/nvda.po
     1 file changed, 17 insertions(+), 5 deletions(-)

commit fecd41806837132ff2189bdf4a2c88f72be58f94
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 3 00:07:00 2020 +1000

    L10n updates for: sr
    From translation svn revision: 57438
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    13      5       source/locale/sr/LC_MESSAGES/nvda.po
    66      6       source/locale/sr/symbols.dic
    52      1       user_docs/sr/changes.t2t
    74      31      user_docs/sr/userGuide.t2t
     4 files changed, 205 insertions(+), 43 deletions(-)

commit f7beb195ca68c513c7e9971c073e901d3b36a89c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 3 00:06:58 2020 +1000

    L10n updates for: so
    From translation svn revision: 57438
    
    Authors:
    Othmanothman <othman82@hotmail.com>
    
    Stats:
    15      5       source/locale/so/LC_MESSAGES/nvda.po
     1 file changed, 15 insertions(+), 5 deletions(-)

commit 6ea434569d919b7dbeb249de410c153c64a79f92
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 3 00:06:57 2020 +1000

    L10n updates for: sl
    From translation svn revision: 57438
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    15      5       source/locale/sl/LC_MESSAGES/nvda.po
     1 file changed, 15 insertions(+), 5 deletions(-)

commit f277c00be780b6d8543b1c4c06142ce14465b880
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 3 00:06:55 2020 +1000

    L10n updates for: sk
    From translation svn revision: 57438
    
    Authors:
    Ondrej Rosik <ondrej.rosik@gmail.com>
    Peter Vagner <peter.v@datagate.sk>
    Jan Kulik <jan.kulik.szsle@outlook.sk>
    
    Stats:
    15      5       source/locale/sk/LC_MESSAGES/nvda.po
     1 file changed, 15 insertions(+), 5 deletions(-)

commit 8d63c9ba7837d3b5af8cfdca3ec5cb14a4adf448
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 3 00:06:53 2020 +1000

    L10n updates for: ru
    From translation svn revision: 57438
    
    Authors:
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    37      46      source/locale/ru/LC_MESSAGES/nvda.po
    18      2       source/locale/ru/symbols.dic
    20      20      user_docs/ru/changes.t2t
    79      79      user_docs/ru/userGuide.t2t
     4 files changed, 154 insertions(+), 147 deletions(-)

commit a071576282579353cf3d11af9647ba7d82dba1a6
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 3 00:06:48 2020 +1000

    L10n updates for: ro
    From translation svn revision: 57438
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <7ro2014@gmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    George Antonio Andrei <george.andrei2002@gmail.com>
    
    Stats:
    56      83      source/locale/ro/LC_MESSAGES/nvda.po
    57      0       user_docs/ro/changes.t2t
     2 files changed, 113 insertions(+), 83 deletions(-)

commit 2a89a17b7cf0bc5dc6f1a1c7a59ff7ed94f0facc
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 3 00:06:45 2020 +1000

    L10n updates for: pt_PT
    From translation svn revision: 57438
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    17      5       source/locale/pt_PT/LC_MESSAGES/nvda.po
     1 file changed, 17 insertions(+), 5 deletions(-)

commit 618e3973bce6b496465a80134fe02526300fe81f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 3 00:06:41 2020 +1000

    L10n updates for: pt_BR
    From translation svn revision: 57438
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    16      9       source/locale/pt_BR/LC_MESSAGES/nvda.po
    61      1       source/locale/pt_BR/symbols.dic
    58      1       user_docs/pt_BR/changes.t2t
    171     128     user_docs/pt_BR/userGuide.t2t
     4 files changed, 306 insertions(+), 139 deletions(-)

commit f0019c4d3dd360a0f9cb41edb534f55fe586df5b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 3 00:06:38 2020 +1000

    L10n updates for: pl
    From translation svn revision: 57438
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <hubmeyer1989@gmail.com>
    Arkadiusz Swietnicki <nuno69a@gmail.com>
    
    Stats:
    16      8       source/locale/pl/LC_MESSAGES/nvda.po
     1 file changed, 16 insertions(+), 8 deletions(-)

commit f0704964de1b172b5c0383c5630faff0dd372abc
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 3 00:06:35 2020 +1000

    L10n updates for: pa
    From translation svn revision: 57438
    
    Authors:
    Maheshinder Singh Khosla <mahesh.khosla@gmail.com>
    Dinesh Mittal <punjabimaster259@gmail.com>
    
    Stats:
    12      5       source/locale/pa/LC_MESSAGES/nvda.po
     1 file changed, 12 insertions(+), 5 deletions(-)

commit 49bb135fdf6fd9312733c267ad48c1fc25ca52ff
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 3 00:06:34 2020 +1000

    L10n updates for: nl
    From translation svn revision: 57438
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    15      5       source/locale/nl/LC_MESSAGES/nvda.po
    55      39      user_docs/nl/userGuide.t2t
     2 files changed, 70 insertions(+), 44 deletions(-)

commit 19d2def86536bb9afcf1c60d6c3de43af242d352
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 3 00:06:31 2020 +1000

    L10n updates for: ne
    From translation svn revision: 57438
    
    Authors:
    Puskal Gautam <nvda.nepali@gmail.com>
    
    Stats:
    12      5       source/locale/ne/LC_MESSAGES/nvda.po
     1 file changed, 12 insertions(+), 5 deletions(-)

commit 4bdf4343e26d665a844e79b033ee828a319f476d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 3 00:06:30 2020 +1000

    L10n updates for: nb_NO
    From translation svn revision: 57438
    
    Authors:
    David Hole <balubathebrave@gmail.com>
    Bjornar Seppola <bjornar@seppola.net>
    
    Stats:
    15      5       source/locale/nb_NO/LC_MESSAGES/nvda.po
     1 file changed, 15 insertions(+), 5 deletions(-)

commit 6ad2a358717c437fda199e8f7f12501dc92725a2
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 3 00:06:28 2020 +1000

    L10n updates for: my
    From translation svn revision: 57438
    
    Authors:
    Benedict La hkun <lkbenedict@gmail.com>
    
    Stats:
    15      5       source/locale/my/LC_MESSAGES/nvda.po
     1 file changed, 15 insertions(+), 5 deletions(-)

commit 13732145389bb0c8c01bbfceac2dbbfba6dd505d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 3 00:06:26 2020 +1000

    L10n updates for: mn
    From translation svn revision: 57438
    
    Authors:
    Mongol NVDA-Translation <mongoliannvdatranslation@gmail.com>
    
    Stats:
    15      5       source/locale/mn/LC_MESSAGES/nvda.po
     1 file changed, 15 insertions(+), 5 deletions(-)

commit 6bbeeb6678b0b38aab0e1c1c4b85f041a26e1dc9
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 3 00:06:23 2020 +1000

    L10n updates for: mk
    From translation svn revision: 57438
    
    Authors:
    zvonimir stanecic <9a5dsz@gozaltech.org>
    Kiko Lazarev <kristijan.lazarev@gmail.com>
    
    Stats:
    15      5       source/locale/mk/LC_MESSAGES/nvda.po
     1 file changed, 15 insertions(+), 5 deletions(-)

commit 2f4e97bad185339f95afbe8f2c4c7cc29d88bdd4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 3 00:06:20 2020 +1000

    L10n updates for: lt
    From translation svn revision: 57438
    
    Authors:
    Paulius Leveris <paulius.leveris@gmail.com>
    Rimas Kudelis <rq@akl.lt>
    
    Stats:
    12      5       source/locale/lt/LC_MESSAGES/nvda.po
     1 file changed, 12 insertions(+), 5 deletions(-)

commit ddbb1c26a88d89f31086f9149c307c2b6da0bd33
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 3 00:06:19 2020 +1000

    L10n updates for: ko
    From translation svn revision: 57438
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    21      11      source/locale/ko/LC_MESSAGES/nvda.po
    5       6       user_docs/ko/changes.t2t
     2 files changed, 26 insertions(+), 17 deletions(-)

commit 97a42387ebd3da1d4681abb0595d368281617801
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 3 00:06:16 2020 +1000

    L10n updates for: kn
    From translation svn revision: 57438
    
    Authors:
    Siddalingeshwar Ingalagi <ingalagisiddu@gmail.com>
    
    Stats:
    12      5       source/locale/kn/LC_MESSAGES/nvda.po
     1 file changed, 12 insertions(+), 5 deletions(-)

commit 661096d6c8e21c605f7026cd04f2e195afc2f8ae
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 3 00:06:15 2020 +1000

    L10n updates for: kmr
    From translation svn revision: 57438
    
    Authors:
    Imam Kahraman <imam.kahraman@googlemail.com>
    
    Stats:
    15      5       source/locale/kmr/LC_MESSAGES/nvda.po
     1 file changed, 15 insertions(+), 5 deletions(-)

commit 94bcab631e512e6a3df55a9cf3f62442e77bd628
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 3 00:06:14 2020 +1000

    L10n updates for: ka
    From translation svn revision: 57438
    
    Authors:
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Goderdzi Gogoladze <goderdzigogoladze@gmail.com>
    
    Stats:
    12      5       source/locale/ka/LC_MESSAGES/nvda.po
     1 file changed, 12 insertions(+), 5 deletions(-)

commit 01dbb1d1c4fcd694c6e839f876a1fa55fba0faf5
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 3 00:06:13 2020 +1000

    L10n updates for: ja
    From translation svn revision: 57438
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    11      6       source/locale/ja/LC_MESSAGES/nvda.po
    0       1       source/locale/ja/symbols.dic
     2 files changed, 11 insertions(+), 7 deletions(-)

commit 98ce23aa046134ebbdf69e48e55999be0464d1f6
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 3 00:06:09 2020 +1000

    L10n updates for: it
    From translation svn revision: 57438
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    20      10      source/locale/it/LC_MESSAGES/nvda.po
    67      7       source/locale/it/symbols.dic
    67      29      user_docs/it/userGuide.t2t
     3 files changed, 154 insertions(+), 46 deletions(-)

commit 6685944a574d3eb629da506d72430a2a075a4fca
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 3 00:06:06 2020 +1000

    L10n updates for: is
    From translation svn revision: 57438
    
    Authors:
    Birkir R. Gunnarsson <birkir.gunnarsson@gmail.com>
    Hlynur Hreinsson <hm.hreinsson@gmail.com>
    
    Stats:
    12      5       source/locale/is/LC_MESSAGES/nvda.po
     1 file changed, 12 insertions(+), 5 deletions(-)

commit f211a4a270b49758eeff1d7f1bb2e9be4f69518b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 3 00:06:04 2020 +1000

    L10n updates for: hu
    From translation svn revision: 57438
    
    Authors:
    Aron OcsvAri <oaron@nvda.hu>
    
    Stats:
    15      5       source/locale/hu/LC_MESSAGES/nvda.po
     1 file changed, 15 insertions(+), 5 deletions(-)

commit 9398465983e22b086d3db1744f7790b43b90eed5
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 3 00:06:02 2020 +1000

    L10n updates for: hr
    From translation svn revision: 57438
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Milo Ivir <mivir@milotype.de>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    17      9       source/locale/hr/LC_MESSAGES/nvda.po
    0       1       source/locale/hr/symbols.dic
    41      41      user_docs/hr/changes.t2t
    2       2       user_docs/hr/userGuide.t2t
     4 files changed, 60 insertions(+), 53 deletions(-)

commit 736299fb026fff3bcccafeff7f2beb62db6a0137
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 3 00:05:59 2020 +1000

    L10n updates for: hi
    From translation svn revision: 57438
    
    Authors:
    dipendra.lists@gmail.com
    Doc Mehta <joyofinspiring@gmail.com>
    
    Stats:
    15      5       source/locale/hi/LC_MESSAGES/nvda.po
     1 file changed, 15 insertions(+), 5 deletions(-)

commit db70983cc621d6e69748a1f02519a2ce6cbaeb68
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 3 00:05:58 2020 +1000

    L10n updates for: he
    From translation svn revision: 57438
    
    Authors:
    Shmuel Naaman <shmuel_naaman@yahoo.com>
    Afik Sofir <afik.sofer@gmail.com>
    
    Stats:
    15      5       source/locale/he/LC_MESSAGES/nvda.po
     1 file changed, 15 insertions(+), 5 deletions(-)

commit 3e4f3a4b25d68e2af59c13362e08726a476e0cd5
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 3 00:05:56 2020 +1000

    L10n updates for: gl
    From translation svn revision: 57438
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    Javier Curras <javier.curras@nvda.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    17      5       source/locale/gl/LC_MESSAGES/nvda.po
    0       1       source/locale/gl/symbols.dic
    8       8       user_docs/gl/changes.t2t
    3       3       user_docs/gl/userGuide.t2t
     4 files changed, 28 insertions(+), 17 deletions(-)

commit 57816907a7d913473b3e9efa4541014822ced4fd
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 3 00:05:53 2020 +1000

    L10n updates for: ga
    From translation svn revision: 57438
    
    Authors:
    Cearbhall OMeadhra <cearbhall.omeadhra@blbc.ie>
    Ronan McGuirk <ronan.p.mcguirk@gmail.com>
    Kevin Scannell <kscanne@gmail.com>
    
    Stats:
    41      45      source/locale/ga/LC_MESSAGES/nvda.po
     1 file changed, 41 insertions(+), 45 deletions(-)

commit 3026598b06fa1c03024dc76f92461ffe73128f78
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 3 00:05:51 2020 +1000

    L10n updates for: fr
    From translation svn revision: 57438
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess.net>
    
    Stats:
    13      20      source/locale/fr/LC_MESSAGES/nvda.po
    8       8       user_docs/fr/changes.t2t
     2 files changed, 21 insertions(+), 28 deletions(-)

commit 37f7229aef2809a754944fa7a8614c9620c5d0ba
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 3 00:05:48 2020 +1000

    L10n updates for: fi
    From translation svn revision: 57438
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    16      8       source/locale/fi/LC_MESSAGES/nvda.po
    0       1       source/locale/fi/symbols.dic
    7       7       user_docs/fi/changes.t2t
    6       6       user_docs/fi/userGuide.t2t
     4 files changed, 29 insertions(+), 22 deletions(-)

commit 3047fd705f5cd9bb2996c54f2e048fb649d8f5ef
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 3 00:05:45 2020 +1000

    L10n updates for: fa
    From translation svn revision: 57438
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    17      9       source/locale/fa/LC_MESSAGES/nvda.po
    50      4       user_docs/fa/changes.t2t
    153     110     user_docs/fa/userGuide.t2t
     3 files changed, 220 insertions(+), 123 deletions(-)

commit f842f76ae4b9a0aa5c0a66a4e479525d1d572a3f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 3 00:05:41 2020 +1000

    L10n updates for: es
    From translation svn revision: 57438
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    44      38      source/locale/es/LC_MESSAGES/nvda.po
    1       1       source/locale/es/gestures.ini
    0       1       source/locale/es/symbols.dic
    8       8       user_docs/es/changes.t2t
    3       3       user_docs/es/userGuide.t2t
     5 files changed, 56 insertions(+), 51 deletions(-)

commit 15d755523544467e0276f07cb5a1fa6f29063970
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 3 00:05:38 2020 +1000

    L10n updates for: es_CO
    From translation svn revision: 57438
    
    Authors:
    Jorge Zarache <reydelasmaquinas@outlook.com>
    Luis Carlos Gonzáles Moráles <luiscarlosgm@hotmail.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    17      5       source/locale/es_CO/LC_MESSAGES/nvda.po
     1 file changed, 17 insertions(+), 5 deletions(-)

commit d72c42ff520ed4299c78ad12492e7dbbfb608198
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 3 00:05:35 2020 +1000

    L10n updates for: el
    From translation svn revision: 57438
    
    Authors:
    Irene Nakas <irnakas@gmail.com>
    Nikos Demetriou <nikosdemetriou@googlemail.com>
    access@e-rhetor.com
    
    Stats:
    15      5       source/locale/el/LC_MESSAGES/nvda.po
     1 file changed, 15 insertions(+), 5 deletions(-)

commit 55588dded80f91d76e3c5b478d9ebf9fb0b6faa7
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 3 00:05:32 2020 +1000

    L10n updates for: de
    From translation svn revision: 57438
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    19      24      source/locale/de/LC_MESSAGES/nvda.po
    4       4       source/locale/de/symbols.dic
    9       9       user_docs/de/changes.t2t
    3       3       user_docs/de/userGuide.t2t
     4 files changed, 35 insertions(+), 40 deletions(-)

commit 8baaf389ce36e47a93e5de47a6097cc81b4eda90
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 3 00:05:29 2020 +1000

    L10n updates for: de_CH
    From translation svn revision: 57438
    
    Authors:
    Robert Hänggi <aarjay.robert@gmail.com>
    
    Stats:
    15      5       source/locale/de_CH/LC_MESSAGES/nvda.po
     1 file changed, 15 insertions(+), 5 deletions(-)

commit d2e2d91aab1c44c1b3d76550e0c9384156aebc02
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 3 00:05:26 2020 +1000

    L10n updates for: da
    From translation svn revision: 57438
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    15      5       source/locale/da/LC_MESSAGES/nvda.po
    36      19      user_docs/da/changes.t2t
     2 files changed, 51 insertions(+), 24 deletions(-)

commit 7854883a65e1fc617f1e37a1fe3b55ab1be76ba1
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 3 00:05:24 2020 +1000

    L10n updates for: cs
    From translation svn revision: 57438
    
    Authors:
    Martina Letochova <letochova@seznam.cz>
    
    Stats:
    15      5       source/locale/cs/LC_MESSAGES/nvda.po
     1 file changed, 15 insertions(+), 5 deletions(-)

commit 5a0be063ad7e5c62bd5ac7799bb3d835ccac9228
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 3 00:05:23 2020 +1000

    L10n updates for: ckb
    From translation svn revision: 57438
    
    Authors:
    Ali Ustek <aliustek@gmail.com>
    Patrick Galasso <Patrice.galasso@gmail.com>
    Jwanro Mustafa <jwanroabdula@hotmail.com>
    Kosrat D Ahmad <kosrat.d.ahmad@gmail.com>
    silva.hm88@gmail.com
    
    Stats:
    15      5       source/locale/ckb/LC_MESSAGES/nvda.po
     1 file changed, 15 insertions(+), 5 deletions(-)

commit 0cd11130753b71c060853ce19cd8acfc1b283bf8
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 3 00:05:22 2020 +1000

    L10n updates for: ca
    From translation svn revision: 57438
    
    Authors:
    Ruben Alcaraz <ruben.hangar1.8@gmail.com>
    Dr. Mireia Ribera <mireia.ribera@gmail.com>
    Santi Moese <santispock@gmail.com>
    Marina Salse Rovira <salse@ub.edu>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    15      5       source/locale/ca/LC_MESSAGES/nvda.po
     1 file changed, 15 insertions(+), 5 deletions(-)

commit 4371818033489d3a3ba28661e41575c2e30e8b4c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 3 00:05:19 2020 +1000

    L10n updates for: bg
    From translation svn revision: 57438
    
    Authors:
    Zahari Yurukov <zahari.yurukov@gmail.com>
    Kostadin Kolev <k_kolev1985@mail.bg>
    
    Stats:
    15      5       source/locale/bg/LC_MESSAGES/nvda.po
     1 file changed, 15 insertions(+), 5 deletions(-)

commit db6ab2371d24dd270879fc321ef59dd9077e924b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 3 00:05:13 2020 +1000

    L10n updates for: ar
    From translation svn revision: 57438
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Omar Alojaimi <amrahmad1995@gmail.com>
    
    Stats:
    19      11      source/locale/ar/LC_MESSAGES/nvda.po
    30      30      user_docs/ar/changes.t2t
    51      33      user_docs/ar/userGuide.t2t
     3 files changed, 100 insertions(+), 74 deletions(-)

commit 4b4672bada119e41bd00dc8b309a6c378f4de08a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 3 00:05:07 2020 +1000

    L10n updates for: an
    From translation svn revision: 57438
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    15      5       source/locale/an/LC_MESSAGES/nvda.po
     1 file changed, 15 insertions(+), 5 deletions(-)

commit 131d62dfe003d9aecafb634cc61369d7c638c61c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jul 3 00:05:04 2020 +1000

    L10n updates for: am
    From translation svn revision: 57438
    
    Authors:
    KETEMA ZEREGAW <kzeregaw@msn.com>
    Dr. Tamru E. Belay <g.braille@sympatico.ca>
    
    Stats:
    12      5       source/locale/am/LC_MESSAGES/nvda.po
     1 file changed, 12 insertions(+), 5 deletions(-)

commit 71a7789b5053d19ac9aff75fdc7d47fbe86087f4
Author: CyrilleB79 <cyrille.bougot2@laposte.net>
Date:   Thu Jul 2 12:23:33 2020 +0200

    Sort languages list in general settings (PR #10355)
    
    Fixes #10348
    The language list in general settings panel was not ordered correctly in French due to 2 issues:
    - Some localized languages names returned by Windows start with lower case whereas the vast majority of the language names start with upper case.
    - "é" does not appear at the position of "e" when sorting but after all letters without accent marks. e.g. "Géorgien" incorrectly appears after "Grec".
    
    Co-authored-by: Leonard de Ruijter <leonardder@users.noreply.github.com>
    Co-authored-by: Reef Turner <feerrenrut@users.noreply.github.com>

commit b64005f8e88c8cc4c08bfd82a7c67bf979558618
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Thu Jul 2 11:06:39 2020 +0200

    Update espeak to commit f2939490e (PR #11321)

commit 409f617723ce03ae96a9aacab4afb243db4dd0f1
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Thu Jul 2 10:35:21 2020 +0200

    Fix pop error on empty list (PR #11318)

commit d520713211e070c66ab0debe14b229036183fa57
Author: eric <26911141+dingpengyu@users.noreply.github.com>
Date:   Tue Jun 30 20:08:51 2020 +0800

    Update CLDR to version 37 (PR #11306)
    
    Fixes #11303

commit 342b67d1bcd98634f64c5cd5a3778f26c20da837
Author: Reef Turner <reef@nvaccess.org>
Date:   Tue Jun 30 12:41:35 2020 +0200

    Update changes file for PR #11297

commit c7367c9a95576aaf83d35a478738608dba29bb87
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Tue Jun 30 12:34:52 2020 +0200

    Touch interaction: Add a global command to toggle support (PR #11297)
    
    Follow-up of #10557
    
    Default binding: NVDA+control+alt+t

commit 53b42eac4196749ea5953dc5235d03095778e42b
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue Jun 30 12:11:29 2020 +0200

    Restore chrome system tests (PR #11316)
    
    Fixes #11053
    The main issues causing test failures were variations in the chrome application title and the announcement order for "start marker" and "Button". These expectations are minimized.
    
    This change also addresses several other issues, and improves the ease of debugging failing system tests.
    
    - Fix deprecation warnings for `time import clock`
    - Add dev info to the dump to log command
    - Take Screenshot after failed test
    - Start Chrome more reliably
      * Use command line switches to start Chrome in a more reliable configuration.
    - Use OS env when running systemTests from scons to prevent issues when NVDA is run from the minimal SCons environment.

commit 9fe7eae49f858c88221d346eb81e6ceac196006d
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Mon Jun 29 21:32:29 2020 +0200

    User Guide: Link to Python RegEx HowTo in section 12.2.1. Speech dictionaries (PR #11313)
    
    Fixes #10958

commit 00cb342173908612da6bb631c2467f01140a5d72
Author: Reef Turner <reef@nvaccess.org>
Date:   Mon Jun 29 21:27:41 2020 +0200

    Update changes file for PR #11315

commit 6636d781c0fe06a4b77d5f9386fa18e50ec567ac
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Mon Jun 29 21:16:45 2020 +0200

    Announce deletions when using `control+delete` (PR #11315)
    
    When deleting a word with control+delete, NVDA no longer remains silent.
    Now the word to present at the immediate right of the deleted word.
    
    Fixes #3298
    Fixes #11029

commit da5ff4e8e112e0d9364e0338de7d18b9680cc944
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Mon Jun 29 05:50:30 2020 +0200

    Fix `keyCommandsDoc` raises `UnboundLocalError` for a malformed `settingsSection` command (#11309)

commit d1231f9bacbe4a6163cd39f9c268914d6d837f73
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Jun 26 11:58:18 2020 +1000

    Clarify what's new entry for removal of top/bottom/left/right messages in particular review cursor movement scripts.

commit 3677308bdcd8974c1e92a42d3f81e1fd2292d6ef
Merge: 8758df3fa 9480eb8f3
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 26 00:06:49 2020 +1000

    Update translations.
    
    From translation svn revision: 57106

commit 9480eb8f36c46b6e87656957c5e0ded235778b5e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 26 00:06:46 2020 +1000

    L10n updates for: zh_TW
    From translation svn revision: 57106
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    338     168     source/locale/zh_TW/LC_MESSAGES/nvda.po
    113     70      user_docs/zh_TW/userGuide.t2t
     2 files changed, 451 insertions(+), 238 deletions(-)

commit f593f6d362c7e924150873bada3bf4f64887e240
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 26 00:06:43 2020 +1000

    L10n updates for: zh_tw
    From translation svn revision: 57106
    
    Authors:
    unable to find language: zh_tw
    
    Stats:
    11642   0       source/locale/zh_tw/LC_MESSAGES/nvda.po
    15807   0       source/locale/zh_tw/characterDescriptions.dic
    1017    0       source/locale/zh_tw/symbols.dic
    2870    0       user_docs/zh_tw/changes.t2t
    3066    0       user_docs/zh_tw/userGuide.t2t
     5 files changed, 34402 insertions(+)

commit d864d748b15b948c5e563227b0e8e481d3ff7c74
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 26 00:06:41 2020 +1000

    L10n updates for: zh_HK
    From translation svn revision: 57106
    
    Authors:
    Eric Yip <ericycy@gmail.com>
    
    Stats:
    258     53      source/locale/zh_HK/LC_MESSAGES/nvda.po
     1 file changed, 258 insertions(+), 53 deletions(-)

commit 0638496182a7e1f4eda04b86bc6132360aefec66
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 26 00:06:40 2020 +1000

    L10n updates for: zh_CN
    From translation svn revision: 57106
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    
    Stats:
    232     62      source/locale/zh_CN/LC_MESSAGES/nvda.po
    61      0       user_docs/zh_CN/changes.t2t
     2 files changed, 293 insertions(+), 62 deletions(-)

commit 561fad32573dbef75263d59f7f341a91ac86c405
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 26 00:06:38 2020 +1000

    L10n updates for: vi
    From translation svn revision: 57106
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    236     66      source/locale/vi/LC_MESSAGES/nvda.po
    66      5       source/locale/vi/symbols.dic
    50      0       user_docs/vi/changes.t2t
    83      40      user_docs/vi/userGuide.t2t
     4 files changed, 435 insertions(+), 111 deletions(-)

commit 9462666225a32c93116e26f57badbddd29ad61b3
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 26 00:06:36 2020 +1000

    L10n updates for: uk
    From translation svn revision: 57106
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    959     1441    source/locale/uk/LC_MESSAGES/nvda.po
    542     499     user_docs/uk/userGuide.t2t
     2 files changed, 1501 insertions(+), 1940 deletions(-)

commit e46d2bc87f843537430a8f3fcc3ab5438387eaf5
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 26 00:06:34 2020 +1000

    L10n updates for: tr
    From translation svn revision: 57106
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    255     91      source/locale/tr/LC_MESSAGES/nvda.po
    57      9       source/locale/tr/symbols.dic
    57      0       user_docs/tr/changes.t2t
    47      21      user_docs/tr/userGuide.t2t
     4 files changed, 416 insertions(+), 121 deletions(-)

commit 6215ba76801ffa5e8ad48e663dbdf8208e67bc80
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 26 00:06:32 2020 +1000

    L10n updates for: ta
    From translation svn revision: 57106
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    247     74      source/locale/ta/LC_MESSAGES/nvda.po
    80      21      source/locale/ta/symbols.dic
    58      37      user_docs/ta/userGuide.t2t
     3 files changed, 385 insertions(+), 132 deletions(-)

commit c16a7dc6101ac00505f070e31061c5b6a0c5d0f8
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 26 00:06:29 2020 +1000

    L10n updates for: sv
    From translation svn revision: 57106
    
    Authors:
    Daniel Johansson <daniel.johansson@coeptus.se>
    Niklas Johansson <sleeping.pillow@gmail.com>
    Karl-Otto Rosenqvist <Karl-otto@mawingu.se>
    
    Stats:
    243     74      source/locale/sv/LC_MESSAGES/nvda.po
     1 file changed, 243 insertions(+), 74 deletions(-)

commit a6714577725195d9212ea8a4dedbeb2eac9a81ff
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 26 00:06:28 2020 +1000

    L10n updates for: sr
    From translation svn revision: 57106
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    241     71      source/locale/sr/LC_MESSAGES/nvda.po
     1 file changed, 241 insertions(+), 71 deletions(-)

commit 6e209599d44048693d095f1dc9441f370d1583cf
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 26 00:06:26 2020 +1000

    L10n updates for: so
    From translation svn revision: 57106
    
    Authors:
    Othmanothman <othman82@hotmail.com>
    
    Stats:
    236     56      source/locale/so/LC_MESSAGES/nvda.po
     1 file changed, 236 insertions(+), 56 deletions(-)

commit 4ede390b5ce7bef8257c4c8cfc61dd6cfddab177
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 26 00:06:26 2020 +1000

    L10n updates for: sl
    From translation svn revision: 57106
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    258     53      source/locale/sl/LC_MESSAGES/nvda.po
    1       0       source/locale/sl/symbols.dic
     2 files changed, 259 insertions(+), 53 deletions(-)

commit 41db8bcc5206eff6321fe5a27a6b46c1a976a2fb
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 26 00:06:24 2020 +1000

    L10n updates for: sk
    From translation svn revision: 57106
    
    Authors:
    Ondrej Rosik <ondrej.rosik@gmail.com>
    Peter Vagner <peter.v@datagate.sk>
    Jan Kulik <jan.kulik.szsle@outlook.sk>
    
    Stats:
    258     53      source/locale/sk/LC_MESSAGES/nvda.po
     1 file changed, 258 insertions(+), 53 deletions(-)

commit 5356a795a06f5ef04ab8ad4022a4858be99e9aa7
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 26 00:06:22 2020 +1000

    L10n updates for: ru
    From translation svn revision: 57106
    
    Authors:
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    319     148     source/locale/ru/LC_MESSAGES/nvda.po
    64      3       source/locale/ru/symbols.dic
    57      0       user_docs/ru/changes.t2t
    209     166     user_docs/ru/userGuide.t2t
     4 files changed, 649 insertions(+), 317 deletions(-)

commit cf0574aebdeb31a32b0ade87991ac438eee5ecda
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 26 00:06:18 2020 +1000

    L10n updates for: ro
    From translation svn revision: 57106
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu7@yandex.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    George Antonio Andrei <george.andrei2002@gmail.com>
    
    Stats:
    258     53      source/locale/ro/LC_MESSAGES/nvda.po
     1 file changed, 258 insertions(+), 53 deletions(-)

commit 8b007b6b90408730e50603129ecbbdfaabf33c74
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 26 00:06:17 2020 +1000

    L10n updates for: pt_PT
    From translation svn revision: 57106
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    236     64      source/locale/pt_PT/LC_MESSAGES/nvda.po
    15      2       source/locale/pt_PT/symbols.dic
    60      0       user_docs/pt_PT/changes.t2t
    76      32      user_docs/pt_PT/userGuide.t2t
     4 files changed, 387 insertions(+), 98 deletions(-)

commit 0d28bee828e1d84f6ef4fc80fa25c334d1e11e23
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 26 00:06:14 2020 +1000

    L10n updates for: pt_BR
    From translation svn revision: 57106
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    247     75      source/locale/pt_BR/LC_MESSAGES/nvda.po
     1 file changed, 247 insertions(+), 75 deletions(-)

commit f100a9343f6207e62c40cbfcc47703718ee986de
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 26 00:06:12 2020 +1000

    L10n updates for: pl
    From translation svn revision: 57106
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <hubmeyer1989@gmail.com>
    Arkadiusz Swietnicki <nuno69a@gmail.com>
    
    Stats:
    240     72      source/locale/pl/LC_MESSAGES/nvda.po
    50      0       user_docs/pl/changes.t2t
     2 files changed, 290 insertions(+), 72 deletions(-)

commit f601854efbef5ff08e410bad190c6fff4e5a84fa
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 26 00:06:10 2020 +1000

    L10n updates for: pa
    From translation svn revision: 57106
    
    Authors:
    Maheshinder Singh Khosla <mahesh.khosla@gmail.com>
    Dinesh Mittal <punjabimaster259@gmail.com>
    
    Stats:
    246     57      source/locale/pa/LC_MESSAGES/nvda.po
     1 file changed, 246 insertions(+), 57 deletions(-)

commit d9ab5da797fe71daadd9c782b99a62fb7d28249d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 26 00:06:09 2020 +1000

    L10n updates for: nl
    From translation svn revision: 57106
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    258     53      source/locale/nl/LC_MESSAGES/nvda.po
    31      5       user_docs/nl/userGuide.t2t
     2 files changed, 289 insertions(+), 58 deletions(-)

commit 243bdc24f446abf023c9cf49bf9dda07d89105f4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 26 00:06:08 2020 +1000

    L10n updates for: ne
    From translation svn revision: 57106
    
    Authors:
    Puskal Gautam <nvda.nepali@gmail.com>
    
    Stats:
    255     54      source/locale/ne/LC_MESSAGES/nvda.po
     1 file changed, 255 insertions(+), 54 deletions(-)

commit 0b1c39604131533962b0fd51f6a31f9003dc828e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 26 00:06:06 2020 +1000

    L10n updates for: nb_NO
    From translation svn revision: 57106
    
    Authors:
    David Hole <balubathebrave@gmail.com>
    Bjornar Seppola <bjornar@seppola.net>
    
    Stats:
    257     53      source/locale/nb_NO/LC_MESSAGES/nvda.po
     1 file changed, 257 insertions(+), 53 deletions(-)

commit b87272ff0d8ac84a8ac00f2ed33f3454dcef3130
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 26 00:06:05 2020 +1000

    L10n updates for: my
    From translation svn revision: 57106
    
    Authors:
    Benedict La hkun <lkbenedict@gmail.com>
    
    Stats:
    258     53      source/locale/my/LC_MESSAGES/nvda.po
     1 file changed, 258 insertions(+), 53 deletions(-)

commit ae9d584ded17a62aeb4e1c4600a603b90d9dc8c0
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 26 00:06:03 2020 +1000

    L10n updates for: mn
    From translation svn revision: 57106
    
    Authors:
    Mongol NVDA-Translation <mongoliannvdatranslation@gmail.com>
    
    Stats:
    258     53      source/locale/mn/LC_MESSAGES/nvda.po
     1 file changed, 258 insertions(+), 53 deletions(-)

commit 5be199856dbe4bfa42475e490a43233985413538
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 26 00:06:01 2020 +1000

    L10n updates for: mk
    From translation svn revision: 57106
    
    Authors:
    zvonimir stanecic <9a5dsz@gozaltech.org>
    Kiko Lazarev <kristijan.lazarev@gmail.com>
    
    Stats:
    258     53      source/locale/mk/LC_MESSAGES/nvda.po
    3       3       user_docs/mk/changes.t2t
     2 files changed, 261 insertions(+), 56 deletions(-)

commit be133a1435df7e068e70630db61da0e78d521b18
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 26 00:05:59 2020 +1000

    L10n updates for: lt
    From translation svn revision: 57106
    
    Authors:
    Paulius Leveris <paulius.leveris@gmail.com>
    Rimas Kudelis <rq@akl.lt>
    
    Stats:
    257     53      source/locale/lt/LC_MESSAGES/nvda.po
     1 file changed, 257 insertions(+), 53 deletions(-)

commit 87ea1cc609d2f60dd1e1484b23ce2493f23bdd1b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 26 00:05:58 2020 +1000

    L10n updates for: ko
    From translation svn revision: 57106
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    239     69      source/locale/ko/LC_MESSAGES/nvda.po
    87      31      source/locale/ko/symbols.dic
    50      0       user_docs/ko/changes.t2t
     3 files changed, 376 insertions(+), 100 deletions(-)

commit f877619fc1566c27dde2eaded59afb7e36b40732
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 26 00:05:56 2020 +1000

    L10n updates for: kn
    From translation svn revision: 57106
    
    Authors:
    Siddalingeshwar Ingalagi <ingalagisiddu@gmail.com>
    
    Stats:
    255     55      source/locale/kn/LC_MESSAGES/nvda.po
     1 file changed, 255 insertions(+), 55 deletions(-)

commit 7d7c56c3333a6d93085a040ffd96755e22c5e578
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 26 00:05:55 2020 +1000

    L10n updates for: kmr
    From translation svn revision: 57106
    
    Authors:
    Imam Kahraman <imam.kahraman@googlemail.com>
    
    Stats:
    248     53      source/locale/kmr/LC_MESSAGES/nvda.po
     1 file changed, 248 insertions(+), 53 deletions(-)

commit 020190b6d0a0a3bfd8183c3b885088ebc1667b77
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 26 00:05:54 2020 +1000

    L10n updates for: ka
    From translation svn revision: 57106
    
    Authors:
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Goderdzi Gogoladze <goderdzigogoladze@gmail.com>
    
    Stats:
    255     53      source/locale/ka/LC_MESSAGES/nvda.po
     1 file changed, 255 insertions(+), 53 deletions(-)

commit 69bcd071dfe6a295f5b1e8a93ad4ca6d5b6de486
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 26 00:05:53 2020 +1000

    L10n updates for: ja
    From translation svn revision: 57106
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    232     72      source/locale/ja/LC_MESSAGES/nvda.po
    64      4       source/locale/ja/symbols.dic
    57      0       user_docs/ja/changes.t2t
    84      41      user_docs/ja/userGuide.t2t
     4 files changed, 437 insertions(+), 117 deletions(-)

commit 74fc13445dec78152c51b8d5ffc3bafe9d4aea63
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 26 00:05:50 2020 +1000

    L10n updates for: it
    From translation svn revision: 57106
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    243     73      source/locale/it/LC_MESSAGES/nvda.po
     1 file changed, 243 insertions(+), 73 deletions(-)

commit b3621cf8481403a2beebd90d08239b75bbe02008
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 26 00:05:48 2020 +1000

    L10n updates for: is
    From translation svn revision: 57106
    
    Authors:
    Birkir R. Gunnarsson <birkir.gunnarsson@gmail.com>
    Hlynur Hreinsson <hm.hreinsson@gmail.com>
    
    Stats:
    249     54      source/locale/is/LC_MESSAGES/nvda.po
     1 file changed, 249 insertions(+), 54 deletions(-)

commit 09a22ff68d15d392f427576b92f9e01f8d1c25a1
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 26 00:05:47 2020 +1000

    L10n updates for: hu
    From translation svn revision: 57106
    
    Authors:
    Aron OcsvAri <oaron@nvda.hu>
    
    Stats:
    259     54      source/locale/hu/LC_MESSAGES/nvda.po
     1 file changed, 259 insertions(+), 54 deletions(-)

commit a586248c62afb142e04a0f775a94c59e4afe733a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 26 00:05:45 2020 +1000

    L10n updates for: hr
    From translation svn revision: 57106
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Milo Ivir <mivir@milotype.de>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    248     77      source/locale/hr/LC_MESSAGES/nvda.po
    72      13      source/locale/hr/symbols.dic
    50      0       user_docs/hr/changes.t2t
    62      19      user_docs/hr/userGuide.t2t
     4 files changed, 432 insertions(+), 109 deletions(-)

commit b02a314d574c46e2e3d4dee5be16549a5db003a5
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 26 00:05:43 2020 +1000

    L10n updates for: hi
    From translation svn revision: 57106
    
    Authors:
    dipendra.lists@gmail.com
    Doc Mehta <joyofinspiring@gmail.com>
    
    Stats:
    258     53      source/locale/hi/LC_MESSAGES/nvda.po
     1 file changed, 258 insertions(+), 53 deletions(-)

commit 714d79936ab1f7f33c80b59d3e2e89cb832b9398
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 26 00:05:42 2020 +1000

    L10n updates for: he
    From translation svn revision: 57106
    
    Authors:
    Shmuel Naaman <shmuel_naaman@yahoo.com>
    Afik Sofir <afik.sofer@gmail.com>
    
    Stats:
    258     53      source/locale/he/LC_MESSAGES/nvda.po
     1 file changed, 258 insertions(+), 53 deletions(-)

commit cf246b9671ce02048e52c9b9f6442c6660485b92
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 26 00:05:40 2020 +1000

    L10n updates for: gl
    From translation svn revision: 57106
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    Javier Curras <javier.curras@nvda.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    243     70      source/locale/gl/LC_MESSAGES/nvda.po
    252     199     source/locale/gl/symbols.dic
    57      0       user_docs/gl/changes.t2t
    55      28      user_docs/gl/userGuide.t2t
     4 files changed, 607 insertions(+), 297 deletions(-)

commit d31f0da8fa93e8031fed28d5976d22ec6abc0c6d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 26 00:05:38 2020 +1000

    L10n updates for: ga
    From translation svn revision: 57106
    
    Authors:
    Cearbhall OMeadhra <cearbhall.omeadhra@blbc.ie>
    Ronan McGuirk <ronan.p.mcguirk@gmail.com>
    Kevin Scannell <kscanne@gmail.com>
    
    Stats:
    258     53      source/locale/ga/LC_MESSAGES/nvda.po
     1 file changed, 258 insertions(+), 53 deletions(-)

commit 2343cf70869b9c2ffee6a62ba57645e659ae30f0
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 26 00:05:37 2020 +1000

    L10n updates for: fr
    From translation svn revision: 57106
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess.net>
    
    Stats:
    241     69      source/locale/fr/LC_MESSAGES/nvda.po
    222     165     user_docs/fr/changes.t2t
    250     207     user_docs/fr/userGuide.t2t
     3 files changed, 713 insertions(+), 441 deletions(-)

commit e8a2531da8819b85b0c0b25f7821c8447b994fc7
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 26 00:05:35 2020 +1000

    L10n updates for: fi
    From translation svn revision: 57106
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    241     70      source/locale/fi/LC_MESSAGES/nvda.po
    66      25      source/locale/fi/symbols.dic
    55      6       user_docs/fi/changes.t2t
    107     64      user_docs/fi/userGuide.t2t
     4 files changed, 469 insertions(+), 165 deletions(-)

commit bc0b7f4ab909774c6a98269739ff11be166135fb
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 26 00:05:32 2020 +1000

    L10n updates for: fa
    From translation svn revision: 57106
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    267     97      source/locale/fa/LC_MESSAGES/nvda.po
     1 file changed, 267 insertions(+), 97 deletions(-)

commit 82c2d3da685d84fbd71c5a11670cd4f07e63ee42
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 26 00:05:30 2020 +1000

    L10n updates for: es
    From translation svn revision: 57106
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    240     70      source/locale/es/LC_MESSAGES/nvda.po
    68      15      source/locale/es/symbols.dic
    57      0       user_docs/es/changes.t2t
    56      30      user_docs/es/userGuide.t2t
     4 files changed, 421 insertions(+), 115 deletions(-)

commit e907d94fd73b4884b8a6ff7e3b67f65df08e628f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 26 00:05:27 2020 +1000

    L10n updates for: es_CO
    From translation svn revision: 57106
    
    Authors:
    Jorge Zarache <reydelasmaquinas@outlook.com>
    Luis Carlos Gonzáles Moráles <luiscarlosgm@hotmail.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1224    1287    source/locale/es_CO/LC_MESSAGES/nvda.po
     1 file changed, 1224 insertions(+), 1287 deletions(-)

commit 08ce62bdbbf5ce4c79f580d9a69e500eef12eb90
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 26 00:05:25 2020 +1000

    L10n updates for: el
    From translation svn revision: 57106
    
    Authors:
    Irene Nakas <irnakas@gmail.com>
    Nikos Demetriou <nikosdemetriou@googlemail.com>
    access@e-rhetor.com
    
    Stats:
    260     53      source/locale/el/LC_MESSAGES/nvda.po
     1 file changed, 260 insertions(+), 53 deletions(-)

commit 1310b70c67b090055c36e00b58f3103fedc97e7b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 26 00:05:23 2020 +1000

    L10n updates for: de
    From translation svn revision: 57106
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    239     70      source/locale/de/LC_MESSAGES/nvda.po
    78      17      source/locale/de/symbols.dic
    58      0       user_docs/de/changes.t2t
    84      41      user_docs/de/userGuide.t2t
     4 files changed, 459 insertions(+), 128 deletions(-)

commit 2a061919ed763b55372ceb081e5030c5b9f8bc47
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 26 00:05:21 2020 +1000

    L10n updates for: de_CH
    From translation svn revision: 57106
    
    Authors:
    Robert Hänggi <aarjay.robert@gmail.com>
    
    Stats:
    256     53      source/locale/de_CH/LC_MESSAGES/nvda.po
     1 file changed, 256 insertions(+), 53 deletions(-)

commit 405958abde43107fd7501945634024ff668619b9
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 26 00:05:19 2020 +1000

    L10n updates for: da
    From translation svn revision: 57106
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    258     53      source/locale/da/LC_MESSAGES/nvda.po
     1 file changed, 258 insertions(+), 53 deletions(-)

commit 1e0e8e2340881717ed25bb7b499752a2514796d4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 26 00:05:18 2020 +1000

    L10n updates for: cs
    From translation svn revision: 57106
    
    Authors:
    Martina Letochova <letochova@seznam.cz>
    
    Stats:
    258     53      source/locale/cs/LC_MESSAGES/nvda.po
     1 file changed, 258 insertions(+), 53 deletions(-)

commit 6e4d3f2525f3c9d5fe8be08c308411bcc97bc354
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 26 00:05:16 2020 +1000

    L10n updates for: ckb
    From translation svn revision: 57106
    
    Authors:
    Ali Ustek <aliustek@gmail.com>
    Patrick Galasso <Patrice.galasso@gmail.com>
    Jwanro Mustafa <jwanroabdula@hotmail.com>
    Kosrat D Ahmad <kosrat.d.ahmad@gmail.com>
    silva.hm88@gmail.com
    
    Stats:
    224     51      source/locale/ckb/LC_MESSAGES/nvda.po
     1 file changed, 224 insertions(+), 51 deletions(-)

commit 9f7c3fdb330c2b39c7aa695ff714dfe040baeaca
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 26 00:05:16 2020 +1000

    L10n updates for: ca
    From translation svn revision: 57106
    
    Authors:
    Ruben Alcaraz <ruben.hangar1.8@gmail.com>
    Dr. Mireia Ribera <mireia.ribera@gmail.com>
    Santi Moese <santispock@gmail.com>
    Marina Salse Rovira <salse@ub.edu>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    258     53      source/locale/ca/LC_MESSAGES/nvda.po
     1 file changed, 258 insertions(+), 53 deletions(-)

commit aac89c0c0de67a475d6c96ee212a070215183413
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 26 00:05:14 2020 +1000

    L10n updates for: bg
    From translation svn revision: 57106
    
    Authors:
    Zahari Yurukov <zahari.yurukov@gmail.com>
    Kostadin Kolev <k_kolev1985@mail.bg>
    
    Stats:
    258     53      source/locale/bg/LC_MESSAGES/nvda.po
     1 file changed, 258 insertions(+), 53 deletions(-)

commit 641bb0fec532a1b9fcddbce8c83d523507af150b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 26 00:05:10 2020 +1000

    L10n updates for: ar
    From translation svn revision: 57106
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Omar Alojaimi <amrahmad1995@gmail.com>
    
    Stats:
    327     156     source/locale/ar/LC_MESSAGES/nvda.po
    49      0       user_docs/ar/changes.t2t
     2 files changed, 376 insertions(+), 156 deletions(-)

commit de3cfab910b8382a688136973d728c4c1ad30ce4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 26 00:05:07 2020 +1000

    L10n updates for: an
    From translation svn revision: 57106
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    258     53      source/locale/an/LC_MESSAGES/nvda.po
     1 file changed, 258 insertions(+), 53 deletions(-)

commit df05ce6d52ed8ab3b9353a026c1ad7780505a05d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 26 00:05:04 2020 +1000

    L10n updates for: am
    From translation svn revision: 57106
    
    Authors:
    KETEMA ZEREGAW <kzeregaw@msn.com>
    Dr. Tamru E. Belay <g.braille@sympatico.ca>
    
    Stats:
    232     56      source/locale/am/LC_MESSAGES/nvda.po
     1 file changed, 232 insertions(+), 56 deletions(-)

commit 675c4c5424d37107a5d2b9bdd59e0e1638c485ab
Author: Bill Dengler <codeofdusk@gmail.com>
Date:   Thu Jun 25 08:06:32 2020 -0400

    Disable "automatically set focus to focusable elements" by default (#11190)
    
    * Enable fast browse mode by default.
    
    * Fix year.
    
    * Update source/gui/settingsDialogs.py
    
    Co-authored-by: Reef Turner <feerrenrut@users.noreply.github.com>
    
    * Upadate changes file for PR #11190
    
    Co-authored-by: Reef Turner <feerrenrut@users.noreply.github.com>
    Co-authored-by: Reef Turner <reef@nvaccess.org>

commit b37ae7f813959511595da718224cde79728ef7a3
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Jun 24 09:15:55 2020 +1000

    Update what's new for pr #10557

commit 38743adf458264b7c28abae9f61e63aa116a4bdc
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Tue Jun 23 16:12:49 2020 -0700

    Touch interaction: allow users to disable touch support completely (#10557)
    
    * ConfSpec: add touch enabled key. Re #9682.
    
    Foundation: allow users to disable touch handler overlay by adding 'touch enabled' key to NVDA settings.
    
    * Touch handler: copyright header
    
    * Touch handler: use platform version tuple to determine if touch support should be used. Re #9682
    
    * Touch handler: enable touch support/overlay if told to do so by users. re #9682.
    
    Enable touch support if configured to do so via settings. Also, change log text on touchscreen detection to just announce how many touch points are available before proceeding to enable/disable touch support.
    
    * Settings/touch interaction: add touch support toggle. Re #9682.
    
    Allow users to enable/disable touch support via Touch Interaction settings panel.
    
    * Touch supporte3d: add debugLog flag so excessive log output will not be seen unless requested. Re #9682.
    
    * Touch handler: handle configuration profile switches via a dedicated touch mode setter function. Re #9682.
    
    Similar to audio ducking support: use a dedicated 'set touch support' function to enable/disable touch handler thread based on whether touch support should be anbeld or not. This function in turn will be called when configuration profile changes to support scenarios such as manually turning off touch support or using profiles for apps where NVDA's own touch support should be turned off.
    
    * Touch handler: set touch support mode and register/unregister profile switching support. Re #9682.
    
    Touch handler's initialize function will set appropriate touch support mode based on current config value. Also, both initialize and termiante methods support profile switching by calling register/unregister function, respectively.
    
    * Touch interaction settings panel: use touchHandler.setTouchSupport function to toggle touch handler thread. Re #9682.
    
    * Touch interaction panel: add accelerator.
    
    * User guide: add notes on touch interaction support checkbox in settings. Re #9682
    
    * Touch handler: review comments (annotations, docstring). Re #9682.
    
    Reviewed by Leonard de Ruijter: add type annotations, along with docstring for touch supported function.
    
    * Touch interaction panel: convert to use GUI helper. re #9682.
    
    Comment from Leonard de Ruijter: convert touch interaction panel to use GUI helper code just like other panels.
    
    * User guide: clarify the behavior of touch support when touch is disabled. Re #9682
    
    * Touch handler: update copyright years

commit e74d113bb65bd51d72be4955045b7b006008b300
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Jun 24 09:10:52 2020 +1000

    Update What's new for pr #9355

commit 19284ce39ad69145ed21332363be02b7999de828
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Wed Jun 24 01:09:17 2020 +0200

    Allow toggling reporting of graphics (#9355)
    
    * Allow toggling reporting of graphics
    
    * Update nvdaHelper/remote/winword.cpp
    
    Co-Authored-By: Reef Turner <feerrenrut@users.noreply.github.com>
    
    * Review actions
    
    * Use script decorator
    
    * Fix capital t in config spec
    
    * Linter fixes
    
    * Fix lint error
    
    * Revert accidental change in user guide
    
    * Ensure graphics content is shown in braille
    
    Co-authored-by: Leonard de Ruijter <leonard@babbage.com>
    Co-authored-by: Reef Turner <feerrenrut@users.noreply.github.com>

commit c081e515fbabc4f46a8f6f5f260407f47a18d697
Merge: 55783eb72 8758df3fa
Author: Reef Turner <reef@nvaccess.org>
Date:   Tue Jun 23 10:42:46 2020 +0200

    Merge remote-tracking branch 'origin/beta'

commit 8758df3fae231215dc640612d15ec1a6851a3591
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue Jun 23 10:30:47 2020 +0200

    Changes file fixes (PR #11264)
    
    Closes #11260

commit d7e59937dcb178af93a2721682819c2265fe2d65
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
Date:   Tue Jun 23 10:26:00 2020 +0200

    Remove rule for U+FFFC (PR #11267)
    
    There is ongoing discussion about the appropriate level of announcement for this symbol (object replacement character)
    See #11177.

commit 55783eb722e842dfe4af9d34a430090be8e3bbec
Author: Adriani90 <adriani.botez@googlemail.com>
Date:   Tue Jun 23 02:57:07 2020 +0200

    Added quick command reference for control+alt+n (#11293)

commit 0489206540c8ef6dbffb9730dd3612ad3ae04dfa
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Jun 23 10:47:55 2020 +1000

    Update what's new for pr #10889

commit 45f1fd76bfc3277aa9feb5a5aa27f8b7084e2c23
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Tue Jun 23 02:46:56 2020 +0200

    Use FullDescription for UIA (#10889)
    
    * Use FullDescription for UIA
    
    * Keep using UIAHelpText as a fallback

commit 62fa71eee5c57956d4c56fb79e66246b5606226c
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Jun 23 10:41:49 2020 +1000

    Update what's new for pr #10973

commit 1352a331ed9e91d3756aa1502a2a9d21b94598e5
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Tue Jun 23 02:36:16 2020 +0200

    Add a command to check formatting for the text under the caret. (#10973)
    
    * Add a command to check formatting for the text under the caret. Fix for https://github.com/nvaccess/nvda/issues/9505
    
    * Move  commends for translators to make tests pass
    
    * Linter fixes
    
    * fix small typos in comments.
    
    Co-authored-by: Michael Curran <mick@nvaccess.org>

commit e522ef187649745be4e62f59b762e1869bf0bcd4
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Jun 23 09:58:59 2020 +1000

    Update What's new for pr #11167

commit c1540263667bcb5ed474f0b59218db4a9328682c
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Tue Jun 23 01:56:35 2020 +0200

    If reading a word and it contains only a symbol and white space, read symbol irrespective of symbol level (#5133) (#11167)

commit 1bc4664b65854999b17176f28137d9ac1f44f48c
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Mon Jun 22 22:42:51 2020 +0200

    Change wording of nvda at sign in (PR #11281)
    
    Clarify that NVDA runs on sign-in screen with this option, not after.
    
    https://english.stackexchange.com/questions/5302/log-in-to-or-log-into-or-login-to

commit eab2a0d91baadc8c5b98751484418a48ce376ce4
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Mon Jun 22 20:02:56 2020 +0200

    Add note about space returned for objects when getting text field speech (PR #11292)
    
    See issue #11291

commit 6457d3934369a4c83fa1da40f7071de08e64085c
Author: André-Abush Clause <dev@andreabc.net>
Date:   Fri Jun 19 16:26:56 2020 +0200

    Adds Ukrainian computer braille table (PR #11280)
    
    Also rename a braille table in the GUI: 'Ukrainian' -> 'Ukrainian grade 1'

commit 1f631f70d1e48a9d1d28f7cd5ef624ec95278505
Merge: 03ce93656 6c9af0f1a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 19 00:06:34 2020 +1000

    Update translations.
    
    From translation svn revision: 56765

commit 6c9af0f1a387d8f119a6dd53d81842cbf1cf66f3
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 19 00:06:32 2020 +1000

    L10n updates for: zh_TW
    From translation svn revision: 56765
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    1       1       source/locale/zh_TW/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit a8330f8308adeec9a27c3b309cf111a0df7e2a73
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 19 00:06:30 2020 +1000

    L10n updates for: zh_HK
    From translation svn revision: 56765
    
    Authors:
    Eric Yip <ericycy@gmail.com>
    
    Stats:
    1       1       source/locale/zh_HK/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit ba3eda766912d2dccd2686f28ebc9c5cec972b52
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 19 00:06:30 2020 +1000

    L10n updates for: zh_CN
    From translation svn revision: 56765
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    
    Stats:
    1       1       source/locale/zh_CN/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 34a65b91b2595a13a7f966b394f3797f83a88d84
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 19 00:06:28 2020 +1000

    L10n updates for: vi
    From translation svn revision: 56765
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    1       1       source/locale/vi/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 600dfbaa108e4d2c5694ba1b511bc577e129cf62
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 19 00:06:26 2020 +1000

    L10n updates for: uk
    From translation svn revision: 56765
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    1       1       source/locale/uk/LC_MESSAGES/nvda.po
    383     359     user_docs/uk/userGuide.t2t
     2 files changed, 384 insertions(+), 360 deletions(-)

commit 85263b95c4215c0cbded1752d5a4d5cf1a68cd60
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 19 00:06:24 2020 +1000

    L10n updates for: tr
    From translation svn revision: 56765
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    1       1       source/locale/tr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 580d52ae05ff239ab99ccf1d3702fe4e65dd1117
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 19 00:06:22 2020 +1000

    L10n updates for: ta
    From translation svn revision: 56765
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    3       3       source/locale/ta/LC_MESSAGES/nvda.po
    2       2       user_docs/ta/userGuide.t2t
     2 files changed, 5 insertions(+), 5 deletions(-)

commit eb1f42af00e98f1c662069eebb00e1838a444cdf
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 19 00:06:20 2020 +1000

    L10n updates for: sv
    From translation svn revision: 56765
    
    Authors:
    Daniel Johansson <daniel.johansson@coeptus.se>
    Niklas Johansson <sleeping.pillow@gmail.com>
    Karl-Otto Rosenqvist <Karl-otto@mawingu.se>
    
    Stats:
    1       1       source/locale/sv/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit f2251d941e5ecae50ec740f4af1935245b7f143e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 19 00:06:19 2020 +1000

    L10n updates for: sr
    From translation svn revision: 56765
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    1       1       source/locale/sr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit ba0bd6b270ffb6c132c42f5bcad922a06293408d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 19 00:06:17 2020 +1000

    L10n updates for: so
    From translation svn revision: 56765
    
    Authors:
    Othmanothman <othman82@hotmail.com>
    
    Stats:
    1       1       source/locale/so/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 6ea46f6ed3701932ce2b5dd7a3031bbb477ae813
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 19 00:06:17 2020 +1000

    L10n updates for: sl
    From translation svn revision: 56765
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    1       1       source/locale/sl/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit f9023f5a1a40ade348849616128c979e3ce48e9e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 19 00:06:16 2020 +1000

    L10n updates for: sk
    From translation svn revision: 56765
    
    Authors:
    Ondrej Rosik <ondrej.rosik@gmail.com>
    Peter Vagner <peter.v@datagate.sk>
    Jan Kulik <jan.kulik.szsle@outlook.sk>
    
    Stats:
    1       1       source/locale/sk/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 836bb297c5cc883f2092d15b4bf88c56b9e5ffbc
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 19 00:06:14 2020 +1000

    L10n updates for: ru
    From translation svn revision: 56765
    
    Authors:
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    1       1       source/locale/ru/LC_MESSAGES/nvda.po
    34      34      user_docs/ru/userGuide.t2t
     2 files changed, 35 insertions(+), 35 deletions(-)

commit d352714505c95dc1cdaaf887eabca69fdcb08db1
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 19 00:06:11 2020 +1000

    L10n updates for: ro
    From translation svn revision: 56765
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    George Antonio Andrei <george.andrei2002@gmail.com>
    
    Stats:
    1       1       source/locale/ro/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit fe308125949d796431b58f377d49e02a73f66328
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 19 00:06:09 2020 +1000

    L10n updates for: pt_PT
    From translation svn revision: 56765
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    1       1       source/locale/pt_PT/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit d3bb750a44819fb0f9b96c65765f8eb97059cb02
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 19 00:06:07 2020 +1000

    L10n updates for: pt_BR
    From translation svn revision: 56765
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    1       1       source/locale/pt_BR/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit d78d61bf3b204392c318684630600bf48ee10ade
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 19 00:06:05 2020 +1000

    L10n updates for: pl
    From translation svn revision: 56765
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <hubmeyer1989@gmail.com>
    Arkadiusz Swietnicki <nuno69a@gmail.com>
    
    Stats:
    1       1       source/locale/pl/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit d9f252fc684acc1de6aed704bb6a14b60f66a968
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 19 00:06:03 2020 +1000

    L10n updates for: pa
    From translation svn revision: 56765
    
    Authors:
    Maheshinder Singh Khosla <mahesh.khosla@gmail.com>
    Dinesh Mittal <punjabimaster259@gmail.com>
    
    Stats:
    1       1       source/locale/pa/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit bfbeff538eb2df1c7d5b1f41543c515b2997f06b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 19 00:06:02 2020 +1000

    L10n updates for: nl
    From translation svn revision: 56765
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    1       1       source/locale/nl/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit a357f51b48052c1b7a3f2f26f0d8c16f9dc826d3
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 19 00:06:00 2020 +1000

    L10n updates for: ne
    From translation svn revision: 56765
    
    Authors:
    Puskal Gautam <nvda.nepali@gmail.com>
    
    Stats:
    1       1       source/locale/ne/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit c5139195fe24dce84d7c56f4d878d4b5f7cf4022
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 19 00:05:59 2020 +1000

    L10n updates for: nb_NO
    From translation svn revision: 56765
    
    Authors:
    David Hole <balubathebrave@gmail.com>
    Bjornar Seppola <bjornar@seppola.net>
    
    Stats:
    1       1       source/locale/nb_NO/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit c71f370ce4539b1b006739b4bdda2ed811dafa26
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 19 00:05:58 2020 +1000

    L10n updates for: my
    From translation svn revision: 56765
    
    Authors:
    Benedict La hkun <lkbenedict@gmail.com>
    
    Stats:
    1       1       source/locale/my/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 5e34ffe3b1850784656e24530cb5035ed4de2281
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 19 00:05:56 2020 +1000

    L10n updates for: mn
    From translation svn revision: 56765
    
    Authors:
    Mongol NVDA-Translation <mongoliannvdatranslation@gmail.com>
    
    Stats:
    1       1       source/locale/mn/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 1716ff87fca6c280c536edbe7be785178203885b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 19 00:05:54 2020 +1000

    L10n updates for: mk
    From translation svn revision: 56765
    
    Authors:
    zvonimir stanecic <9a5dsz@gozaltech.org>
    Kiko Lazarev <kristijan.lazarev@gmail.com>
    
    Stats:
    1       1       source/locale/mk/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit b0ae7abfb3c2a0fad9e998de3fbc29b0fde62d98
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 19 00:05:53 2020 +1000

    L10n updates for: lt
    From translation svn revision: 56765
    
    Authors:
    Paulius Leveris <paulius.leveris@gmail.com>
    Rimas Kudelis <rq@akl.lt>
    
    Stats:
    1       1       source/locale/lt/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 71f0c11da7ddce0b3d3ac75d652fe0113201eb2c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 19 00:05:51 2020 +1000

    L10n updates for: ko
    From translation svn revision: 56765
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    1       1       source/locale/ko/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 907fbdd6aa6fe0c75e7911c3d7d34a73a2f4af06
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 19 00:05:49 2020 +1000

    L10n updates for: kn
    From translation svn revision: 56765
    
    Authors:
    Siddalingeshwar Ingalagi <ingalagisiddu@gmail.com>
    
    Stats:
    1       1       source/locale/kn/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 0b596473a22706ae873e85fc117033aa747cfcbf
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 19 00:05:49 2020 +1000

    L10n updates for: kmr
    From translation svn revision: 56765
    
    Authors:
    Imam Kahraman <imam.kahraman@googlemail.com>
    
    Stats:
    1       1       source/locale/kmr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit f05ee88c64e74cf452ba03f450e4b01671518c99
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 19 00:05:48 2020 +1000

    L10n updates for: ka
    From translation svn revision: 56765
    
    Authors:
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Goderdzi Gogoladze <goderdzigogoladze@gmail.com>
    
    Stats:
    1       1       source/locale/ka/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 07031a5f6b4cfb8192ed6fe15f4145ad7227dbf9
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 19 00:05:47 2020 +1000

    L10n updates for: ja
    From translation svn revision: 56765
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    1       1       source/locale/ja/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit ae2bc9ab0ee4847cbb629c902b95069cd0aa3a7b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 19 00:05:45 2020 +1000

    L10n updates for: it
    From translation svn revision: 56765
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    1       1       source/locale/it/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit f58d710b6d22203e1fd29601ed5a17d4f8e8e8ff
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 19 00:05:43 2020 +1000

    L10n updates for: is
    From translation svn revision: 56765
    
    Authors:
    Birkir R. Gunnarsson <birkir.gunnarsson@gmail.com>
    Hlynur Hreinsson <hm.hreinsson@gmail.com>
    
    Stats:
    1       1       source/locale/is/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 3a2322670875587dd26ca47635745826e8e6dbcf
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 19 00:05:42 2020 +1000

    L10n updates for: hu
    From translation svn revision: 56765
    
    Authors:
    Aron OcsvAri <oaron@nvda.hu>
    
    Stats:
    1       1       source/locale/hu/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 84b35d2115cb958548606b41b4653c12ac258f6e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 19 00:05:40 2020 +1000

    L10n updates for: hr
    From translation svn revision: 56765
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Milo Ivir <mivir@milotype.de>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    1       1       source/locale/hr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 8f48fc4c45e38d508695073d971e159c9af3677c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 19 00:05:38 2020 +1000

    L10n updates for: hi
    From translation svn revision: 56765
    
    Authors:
    dipendra.lists@gmail.com
    Doc Mehta <joyofinspiring@gmail.com>
    
    Stats:
    1       1       source/locale/hi/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit a7ff8c8f24da0271ad5107833c8953ab0b7447e6
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 19 00:05:37 2020 +1000

    L10n updates for: he
    From translation svn revision: 56765
    
    Authors:
    Shmuel Naaman <shmuel_naaman@yahoo.com>
    Afik Sofir <afik.sofer@gmail.com>
    
    Stats:
    1       1       source/locale/he/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit dea428a4750519a6322c621eac4c082f7b644b21
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 19 00:05:36 2020 +1000

    L10n updates for: gl
    From translation svn revision: 56765
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    Javier Curras <javier.curras@nvda.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/gl/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit ab1ad976aeb3d6b830a5d3f2753727dc75d49c9d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 19 00:05:34 2020 +1000

    L10n updates for: ga
    From translation svn revision: 56765
    
    Authors:
    Cearbhall OMeadhra <cearbhall.omeadhra@blbc.ie>
    Ronan McGuirk <ronan.p.mcguirk@gmail.com>
    Kevin Scannell <kscanne@gmail.com>
    
    Stats:
    1       1       source/locale/ga/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 142ae981490a1574f79ec0e9e1066070fddd4805
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 19 00:05:33 2020 +1000

    L10n updates for: fr
    From translation svn revision: 56765
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess.net>
    
    Stats:
    1       1       source/locale/fr/LC_MESSAGES/nvda.po
    2       2       source/locale/fr/symbols.dic
     2 files changed, 3 insertions(+), 3 deletions(-)

commit 850638161cf60e8c8770cc45421670a10b9fa1ab
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 19 00:05:31 2020 +1000

    L10n updates for: fi
    From translation svn revision: 56765
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    1       1       source/locale/fi/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit d5cff1013bedc900fe79a97def6abf6593726453
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 19 00:05:29 2020 +1000

    L10n updates for: fa
    From translation svn revision: 56765
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    1       1       source/locale/fa/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit a1cbe6602de4516f3632a66a5b8ccccc2e1b7ecb
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 19 00:05:26 2020 +1000

    L10n updates for: es
    From translation svn revision: 56765
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/es/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit fceb718e6510400f67cb4a04d35823c1327dcc9d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 19 00:05:24 2020 +1000

    L10n updates for: es_CO
    From translation svn revision: 56765
    
    Authors:
    Jorge Zarache <reydelasmaquinas@outlook.com>
    Luis Carlos Gonzáles Moráles <luiscarlosgm@hotmail.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/es_CO/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit bc49d299e026ec2230dfee60775f3bc4942c5233
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 19 00:05:22 2020 +1000

    L10n updates for: el
    From translation svn revision: 56765
    
    Authors:
    Irene Nakas <irnakas@gmail.com>
    Nikos Demetriou <nikosdemetriou@googlemail.com>
    access@e-rhetor.com
    
    Stats:
    1       1       source/locale/el/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 6f8356362ada362f10d9b30c832ee64d66874e23
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 19 00:05:21 2020 +1000

    L10n updates for: de
    From translation svn revision: 56765
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    1       1       source/locale/de/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 9d94e3b1bcefbb947206dfc992811da930d1d4d8
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 19 00:05:19 2020 +1000

    L10n updates for: de_CH
    From translation svn revision: 56765
    
    Authors:
    Robert Hänggi <aarjay.robert@gmail.com>
    
    Stats:
    1       1       source/locale/de_CH/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit f88625be58e1fd0a167e70ac42537d40f14a1648
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 19 00:05:17 2020 +1000

    L10n updates for: da
    From translation svn revision: 56765
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    1       1       source/locale/da/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit a309bcf60a0c9ceec9533ce2301de24bd99f602c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 19 00:05:16 2020 +1000

    L10n updates for: cs
    From translation svn revision: 56765
    
    Authors:
    Martina Letochova <letochova@seznam.cz>
    
    Stats:
    1       1       source/locale/cs/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit e17fb441f4142dd42aab7e258a7913b7021b657c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 19 00:05:14 2020 +1000

    L10n updates for: ckb
    From translation svn revision: 56765
    
    Authors:
    Ali Ustek <aliustek@gmail.com>
    Patrick Galasso <Patrice.galasso@gmail.com>
    Jwanro Mustafa <jwanroabdula@hotmail.com>
    Kosrat D Ahmad <kosrat.d.ahmad@gmail.com>
    silva.hm88@gmail.com
    
    Stats:
    1       1       source/locale/ckb/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit c35c403ddf1e6a198a87f99acf032e453db83040
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 19 00:05:14 2020 +1000

    L10n updates for: ca
    From translation svn revision: 56765
    
    Authors:
    Ruben Alcaraz <ruben.hangar1.8@gmail.com>
    Dr. Mireia Ribera <mireia.ribera@gmail.com>
    Santi Moese <santispock@gmail.com>
    Marina Salse Rovira <salse@ub.edu>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/ca/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit cd7679b28ea8df32f5d271ec8be26bf248511b7c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 19 00:05:12 2020 +1000

    L10n updates for: bg
    From translation svn revision: 56765
    
    Authors:
    Zahari Yurukov <zahari.yurukov@gmail.com>
    Kostadin Kolev <k_kolev1985@mail.bg>
    
    Stats:
    1       1       source/locale/bg/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 2712a26df5ab1fad6bcf655792d791122e6bd11a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 19 00:05:09 2020 +1000

    L10n updates for: ar
    From translation svn revision: 56765
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Omar Alojaimi <amrahmad1995@gmail.com>
    
    Stats:
    1       1       source/locale/ar/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 42ccf34593d9770c71128198a92eb8e62022f801
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 19 00:05:05 2020 +1000

    L10n updates for: an
    From translation svn revision: 56765
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/an/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit bfd49198ce205520000997dc211358644ebd3bb4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 19 00:05:03 2020 +1000

    L10n updates for: am
    From translation svn revision: 56765
    
    Authors:
    KETEMA ZEREGAW <kzeregaw@msn.com>
    Dr. Tamru E. Belay <g.braille@sympatico.ca>
    
    Stats:
    1       1       source/locale/am/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 953d918dc73975701697bc229c6c2b032134886c
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Thu Jun 18 14:03:16 2020 +0200

    Update build version 2020.3 (PR #11265)

commit 03ce936560be7e2b954aecd57dcbbef7a0cc7546
Author: Reef Turner <reef@nvaccess.org>
Date:   Tue Jun 16 16:49:30 2020 +0200

    Add 2020.2 release summary

commit 975d39d1708d4a159cdcf8528dacc6d0c3156385
Merge: dec9e9546 38a214345
Author: Reef Turner <reef@nvaccess.org>
Date:   Tue Jun 16 16:25:35 2020 +0200

    Merge remote-tracking branch 'origin/beta'

commit dec9e9546ce447d94bbeb1bb8e134758792601ae
Author: Ethan Holliger <ethan8768@gmail.com>
Date:   Tue Jun 16 08:16:17 2020 -0600

    Rewording in Input Gestures (PR #10877)
    
    Fixes #10814 - "reverts to factory default" becomes "resets to factory default"
    Fixes #10301 - Update doc for speakForeground to align with user guide
    
    Co-authored-by: Reef Turner <reef@nvaccess.org>

commit 7abf7de3cbb628506d4fca5a2e4fa1e2d513c5d4
Author: Adriani90 <adriani.botez@googlemail.com>
Date:   Tue Jun 16 10:34:25 2020 +0200

    UserGuide: ctrl+enter activates the element containing formula in Math content (PR #11226)
    
    Added clarification that ctrl+enter activates the element containing the formula
    
    Co-authored-by: Reef Turner <feerrenrut@users.noreply.github.com>

commit c7a1e08abe2d769ac8756faaa43772fd2c449b29
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue Jun 16 10:25:22 2020 +0200

    Fix several issues in speech manager (PR #11245)
    
    fixes #11132 - Say-all repeats some lines
    fixes #11144 - Attempt to cancel speech for expired focus events: dialog title discarded when finding text in browse mode
    
    Adds a speechManager test harness
    Logging: Support writing unit tests by enabling 'IS_UNIT_TEST_LOG_ENABLED'.
    Logging: Improve repr for _CancellableSpeechCommand, include devInfo for 'isValid'
    Logging: Help debug double speaking
    Tests: for double speaking during say-all.
    Tests: Wrapped index (IndexCommands) comparisons and fixes comparisons
    Tests: From manual testing during initial development of SpeechManager
    Tests: Cancellable Speech
    Fix: double speaking error
    Fix: sudden silence during cancellable speech error which is broken during "Fix double speaking error"
    Fix: cancelling speech on index callback
    Fix: missing speech in run dialog
     - Speech is valid if ancestor of current focus.
     - Only ask speechManager to remove cancelled speech after the isValidDeps are updated,
        specifically lastQueuedFocusObject

commit 6bf3ae5fb2bcd82601b45715140592722c674f4b
Author: Konstantin Aleev <kaleev@users.noreply.github.com>
Date:   Fri Jun 12 16:07:41 2020 +0300

    JAB: do not treat ActiveDescendentChange event from not focused component as focus gained event (PR #11048)
    
    Fixes: #5989
    
    When a PropertyActiveDescendentChange event was received, nvda transformed it into a event_gainFocus event.
    
    The issue is that PropertyActiveDescendentChange can be raised by components (e.g. tree view) that don't have the
    focus. In that case, a PropertyActiveDescendentChange does not imply that the newly selected tree node has
    received the focus.
    
    Now, treat PropertyActiveDescendentChange event as 'focus gained event' only if event source has focus or it is an ancestor is the focused component.

commit 4fc9cfe5f607a1da69e40f9b6ef0c06f71712179
Author: James Teh <jamie@jantrid.net>
Date:   Fri Jun 12 18:20:42 2020 +1000

    Fix root certificate update. (PR #11253)
    
    Fixes updateCheck._updateWindowsRootCertificates() for Python 3.
    
    This was missed in the migration to Python 3.
    There are two problems that needed to be addressed here:
    
    1. We use https://www.nvaccess.org/nvdaUpdateCheck as the URL to get the certificate. However, that returns a 404. In Python 2, urllib didn't raise an exception for errors. In Python 3, it does. So, this was raising an exception and preventing us from getting any further.
        To fix this, pass versionType=stable as the query string, which will stop the server from throwing 404.
    2. When getting the peer certificate, we need the raw SSL socket. In Python 3, the way to get that raw socket has changed slightly, so this code had to be adjusted accordingly.

commit b79276c0cd2bcaa68d4309866b12de62bccf94dd
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Thu Jun 11 08:18:59 2020 -0700

    Add support for Windows 10 Version 2004 (May 2020 Update/build 19041) (PR #10922)
    
    WinVersion: recognize Windows 10 build 19041 as Version 2004.
    COM interfaces/UIA: update to 10.0.19041.
    In version 2004, UI Automation Core adds annotation sensitive type.
    Windows 10 SDK -> 18362 to 19041

commit 7274f5483537234c380a96a7574c6d06c24ac1b6
Author: Reef Turner <reef@nvaccess.org>
Date:   Thu Jun 11 17:07:30 2020 +0200

    Update changes file for PR #11166

commit 0eddf4c61bf76686aadf82b387db0c79bbb2d3b2
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Thu Jun 11 17:14:14 2020 +0200

    Prevent faulty ScriptableObject from breaking all script handling (PR #11166)
    
    Fixes  #5446

commit 670d16b4b49ed3d8c0a883eff12e0462896a5c67
Author: André-Abush Clause <dev@andreabc.net>
Date:   Thu Jun 11 16:59:29 2020 +0200

    Review cursor: remove top/bottom/left/right message (PR #9553)
    
    Fixes #9551
    For the review cursor.
    Don't report "top"/"bottom" message when moving on the first/last line of the current object
    Also remove "left"/"right" from script_review_startOfLine and script_review_endOfLine
    
    Update changes file for PR #9553
    Co-authored-by: Reef Turner <reef@nvaccess.org>

commit 38a21434574150abb39e0db4b71ba023bb3b9edb
Merge: 2c826edae 960ebdca7
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 12 00:06:33 2020 +1000

    Update translations.
    
    From translation svn revision: 56743

commit 960ebdca7f360ea24af23d8e873ec235b7e6cd87
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 12 00:06:31 2020 +1000

    L10n updates for: zh_TW
    From translation svn revision: 56743
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    86      85      source/locale/zh_TW/LC_MESSAGES/nvda.po
    58      58      user_docs/zh_TW/userGuide.t2t
     2 files changed, 144 insertions(+), 143 deletions(-)

commit 390759d3a0cdb84e546f53e046a4b8a330913977
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 12 00:06:29 2020 +1000

    L10n updates for: zh_HK
    From translation svn revision: 56743
    
    Authors:
    Eric Yip <ericycy@gmail.com>
    
    Stats:
    1       1       source/locale/zh_HK/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 27bacdff6edf7e61a5e348993e9b9f7d0a4fdf97
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 12 00:06:29 2020 +1000

    L10n updates for: zh_CN
    From translation svn revision: 56743
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    
    Stats:
    1       1       source/locale/zh_CN/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 7417224ac951163fe8d5f593af483040f38bb0e1
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 12 00:06:26 2020 +1000

    L10n updates for: vi
    From translation svn revision: 56743
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    1       1       source/locale/vi/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 307a0969dd815dd4793ed38dfec134ed633c2832
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 12 00:06:24 2020 +1000

    L10n updates for: uk
    From translation svn revision: 56743
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    1       1       source/locale/uk/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 4ed1ab8764b2cc67074a352088afe109580f327d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 12 00:06:23 2020 +1000

    L10n updates for: tr
    From translation svn revision: 56743
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    1       1       source/locale/tr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit fb31a4defc1f5ac62b15a70211263d280b045d10
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 12 00:06:21 2020 +1000

    L10n updates for: ta
    From translation svn revision: 56743
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    1       1       source/locale/ta/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 5b3397b1d207438cdbc661001762e65d60571c1e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 12 00:06:19 2020 +1000

    L10n updates for: sv
    From translation svn revision: 56743
    
    Authors:
    Daniel Johansson <daniel.johansson@coeptus.se>
    Niklas Johansson <sleeping.pillow@gmail.com>
    Karl-Otto Rosenqvist <Karl-otto@mawingu.se>
    
    Stats:
    1       1       source/locale/sv/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit c854f5026f24079302fe8f01f0525cbf2b8d5631
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 12 00:06:18 2020 +1000

    L10n updates for: sr
    From translation svn revision: 56743
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    1       1       source/locale/sr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 84a0c5724d96f7299e41cf09cdc025f4b6a55ced
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 12 00:06:16 2020 +1000

    L10n updates for: so
    From translation svn revision: 56743
    
    Authors:
    Othmanothman <othman82@hotmail.com>
    
    Stats:
    1       1       source/locale/so/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 55590ff170e7e9c548fe6be9ff84f5b2581c0f99
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 12 00:06:16 2020 +1000

    L10n updates for: sl
    From translation svn revision: 56743
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    1       1       source/locale/sl/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit efc5b1525a728e372385b74a2a571a80d58ab9ca
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 12 00:06:15 2020 +1000

    L10n updates for: sk
    From translation svn revision: 56743
    
    Authors:
    Ondrej Rosik <ondrej.rosik@gmail.com>
    Peter Vagner <peter.v@datagate.sk>
    Jan Kulik <jan.kulik.szsle@outlook.sk>
    
    Stats:
    1       1       source/locale/sk/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 3a228d10350386541f1f8145884ded5e39c7d7a6
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 12 00:06:13 2020 +1000

    L10n updates for: ru
    From translation svn revision: 56743
    
    Authors:
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    1       1       source/locale/ru/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 8df969e3189e5f46357fa0ba18245f5af53d413c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 12 00:06:10 2020 +1000

    L10n updates for: ro
    From translation svn revision: 56743
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    George Antonio Andrei <george.andrei2002@gmail.com>
    
    Stats:
    1       1       source/locale/ro/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 91ac307ec429fe852fcd04df99ef08e6e5e215a8
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 12 00:06:08 2020 +1000

    L10n updates for: pt_PT
    From translation svn revision: 56743
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    1       1       source/locale/pt_PT/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 7364e0d233022a963a042c7f3cdf9ed595c683ae
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 12 00:06:06 2020 +1000

    L10n updates for: pt_BR
    From translation svn revision: 56743
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    1       1       source/locale/pt_BR/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 50cb0b18cfd469917288b5d90740a4a07baff102
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 12 00:06:04 2020 +1000

    L10n updates for: pl
    From translation svn revision: 56743
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <hubmeyer1989@gmail.com>
    Arkadiusz Swietnicki <nuno69a@gmail.com>
    
    Stats:
    1       1       source/locale/pl/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit cb98499243985eb75b3de59e5397efa79384d3ad
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 12 00:06:02 2020 +1000

    L10n updates for: pa
    From translation svn revision: 56743
    
    Authors:
    Maheshinder Singh Khosla <mahesh.khosla@gmail.com>
    Dinesh Mittal <punjabimaster259@gmail.com>
    
    Stats:
    1       1       source/locale/pa/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit dc92874eaa32c87e598dcd3e46416386a2c4ec8d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 12 00:06:02 2020 +1000

    L10n updates for: nl
    From translation svn revision: 56743
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    1       1       source/locale/nl/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit ba5b1dcc319a2c1d417bd51f7bb2db33af622a17
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 12 00:06:00 2020 +1000

    L10n updates for: ne
    From translation svn revision: 56743
    
    Authors:
    Puskal Gautam <nvda.nepali@gmail.com>
    
    Stats:
    1       1       source/locale/ne/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit f6c3b126f9609209d05692b6b10f28ec25e36597
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 12 00:05:59 2020 +1000

    L10n updates for: nb_NO
    From translation svn revision: 56743
    
    Authors:
    David Hole <balubathebrave@gmail.com>
    Bjornar Seppola <bjornar@seppola.net>
    
    Stats:
    1       1       source/locale/nb_NO/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 3450c4d6b367c3342d1e5558f25a7765aaa57ac5
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 12 00:05:58 2020 +1000

    L10n updates for: my
    From translation svn revision: 56743
    
    Authors:
    Benedict La hkun <lkbenedict@gmail.com>
    
    Stats:
    1       1       source/locale/my/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 5dc695947d756f4973e090eff2f2106f0550cd70
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 12 00:05:56 2020 +1000

    L10n updates for: mn
    From translation svn revision: 56743
    
    Authors:
    Mongol NVDA-Translation <mongoliannvdatranslation@gmail.com>
    
    Stats:
    1       1       source/locale/mn/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 6cdbcdf866dfaea0cc61300e8892e13513b8b524
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 12 00:05:54 2020 +1000

    L10n updates for: mk
    From translation svn revision: 56743
    
    Authors:
    zvonimir stanecic <9a5dsz@gozaltech.org>
    Kiko Lazarev <kristijan.lazarev@gmail.com>
    
    Stats:
    1       1       source/locale/mk/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 1cfece33a37abff44b36bbc2a581fbb36d9a94d1
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 12 00:05:52 2020 +1000

    L10n updates for: lt
    From translation svn revision: 56743
    
    Authors:
    Paulius Leveris <paulius.leveris@gmail.com>
    Rimas Kudelis <rq@akl.lt>
    
    Stats:
    1       1       source/locale/lt/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 07b40ead3d32c020ebee0dd85bc3eddbd6932a31
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 12 00:05:51 2020 +1000

    L10n updates for: ko
    From translation svn revision: 56743
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    1       1       source/locale/ko/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 7ea6ae6a5160d5daa39ea44af126f7b922e375a6
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 12 00:05:49 2020 +1000

    L10n updates for: kn
    From translation svn revision: 56743
    
    Authors:
    Siddalingeshwar Ingalagi <ingalagisiddu@gmail.com>
    
    Stats:
    1       1       source/locale/kn/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 337a4dd3ae5f5058f59ab5a1dcad6add6b35ab9c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 12 00:05:49 2020 +1000

    L10n updates for: kmr
    From translation svn revision: 56743
    
    Authors:
    Imam Kahraman <imam.kahraman@googlemail.com>
    
    Stats:
    18      12      source/locale/kmr/LC_MESSAGES/nvda.po
     1 file changed, 18 insertions(+), 12 deletions(-)

commit 244ef0ff4da1f261e1d21618c8f94b42eb6e3cc0
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 12 00:05:48 2020 +1000

    L10n updates for: ka
    From translation svn revision: 56743
    
    Authors:
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Goderdzi Gogoladze <goderdzigogoladze@gmail.com>
    
    Stats:
    1       1       source/locale/ka/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 061ef597d494a419aefee4afc6faf4cbe21344e5
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 12 00:05:47 2020 +1000

    L10n updates for: ja
    From translation svn revision: 56743
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    1       1       source/locale/ja/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit e0ed50240d728782abe12da386e1b20dfcad04cc
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 12 00:05:45 2020 +1000

    L10n updates for: it
    From translation svn revision: 56743
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    1       1       source/locale/it/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit ddfdbad1cd82b3331803748190edf1f255b6e21f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 12 00:05:43 2020 +1000

    L10n updates for: is
    From translation svn revision: 56743
    
    Authors:
    Birkir R. Gunnarsson <birkir.gunnarsson@gmail.com>
    Hlynur Hreinsson <hm.hreinsson@gmail.com>
    
    Stats:
    1       1       source/locale/is/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 03386ea40acfee5b1f327912602235dbbe32d337
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 12 00:05:42 2020 +1000

    L10n updates for: hu
    From translation svn revision: 56743
    
    Authors:
    Aron OcsvAri <oaron@nvda.hu>
    
    Stats:
    1       1       source/locale/hu/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 68c94a73603c14a77c138cecfcbaaba5ed2c5686
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 12 00:05:40 2020 +1000

    L10n updates for: hr
    From translation svn revision: 56743
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Milo Ivir <mivir@milotype.de>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    1       1       source/locale/hr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit c00ca0c18becea730579b819215c5402517603dd
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 12 00:05:38 2020 +1000

    L10n updates for: hi
    From translation svn revision: 56743
    
    Authors:
    dipendra.lists@gmail.com
    Doc Mehta <joyofinspiring@gmail.com>
    
    Stats:
    1       1       source/locale/hi/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 18ff331fb96c29a2e6f3a84c1fbcdad911eba7aa
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 12 00:05:37 2020 +1000

    L10n updates for: he
    From translation svn revision: 56743
    
    Authors:
    Shmuel Naaman <shmuel_naaman@yahoo.com>
    Afik Sofir <afik.sofer@gmail.com>
    
    Stats:
    1       1       source/locale/he/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 132ef8231e607ce74fef99d6cb80c8f9c125c427
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 12 00:05:36 2020 +1000

    L10n updates for: gl
    From translation svn revision: 56743
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    Javier Curras <javier.curras@nvda.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/gl/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 87b6960831b7e8501eb71719100f44b9c4df5f9b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 12 00:05:34 2020 +1000

    L10n updates for: ga
    From translation svn revision: 56743
    
    Authors:
    Cearbhall OMeadhra <cearbhall.omeadhra@blbc.ie>
    Ronan McGuirk <ronan.p.mcguirk@gmail.com>
    Kevin Scannell <kscanne@gmail.com>
    
    Stats:
    1       1       source/locale/ga/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit ffaef6f043eed8b7f3ee8216753437eb5ea67c27
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 12 00:05:33 2020 +1000

    L10n updates for: fr
    From translation svn revision: 56743
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess.net>
    
    Stats:
    1       1       source/locale/fr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit edf064866b534286ff38784a88e967049ca9a1d9
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 12 00:05:31 2020 +1000

    L10n updates for: fi
    From translation svn revision: 56743
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    11      11      source/locale/fi/LC_MESSAGES/nvda.po
    4       4       user_docs/fi/userGuide.t2t
     2 files changed, 15 insertions(+), 15 deletions(-)

commit 1088d95d668ca0b01a42707690a79ededb52594c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 12 00:05:29 2020 +1000

    L10n updates for: fa
    From translation svn revision: 56743
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    1       1       source/locale/fa/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 8f0100e165866274ec15888becf3cace87741aff
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 12 00:05:26 2020 +1000

    L10n updates for: es
    From translation svn revision: 56743
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/es/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 6f997d10524c68713d5c456487c9757c458ceab7
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 12 00:05:24 2020 +1000

    L10n updates for: es_CO
    From translation svn revision: 56743
    
    Authors:
    Jorge Zarache <reydelasmaquinas@outlook.com>
    Luis Carlos Gonzáles Moráles <luiscarlosgm@hotmail.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/es_CO/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 92814bf1c03866b7a744e27f68526f38ff222cf8
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 12 00:05:22 2020 +1000

    L10n updates for: el
    From translation svn revision: 56743
    
    Authors:
    Irene Nakas <irnakas@gmail.com>
    Nikos Demetriou <nikosdemetriou@googlemail.com>
    access@e-rhetor.com
    
    Stats:
    1       1       source/locale/el/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 45937039a15e2ef94b540c17f2fe226fcb0b5980
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 12 00:05:21 2020 +1000

    L10n updates for: de
    From translation svn revision: 56743
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    1       1       source/locale/de/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 88ba28242b274d4cf5ec6ba0a02e137e4d0936b8
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 12 00:05:19 2020 +1000

    L10n updates for: de_CH
    From translation svn revision: 56743
    
    Authors:
    Robert Hänggi <aarjay.robert@gmail.com>
    
    Stats:
    1       1       source/locale/de_CH/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit f9bbd378f19177634a08ce8528acc644e2fb0afd
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 12 00:05:17 2020 +1000

    L10n updates for: da
    From translation svn revision: 56743
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    1       1       source/locale/da/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 3313b7247f686a3cd93b08a6ee1215eccbeeaffc
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 12 00:05:16 2020 +1000

    L10n updates for: cs
    From translation svn revision: 56743
    
    Authors:
    Martina Letochova <letochova@seznam.cz>
    
    Stats:
    1       1       source/locale/cs/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit c3c43dacd5403ae4078100c3bb71389adcd7f0e4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 12 00:05:15 2020 +1000

    L10n updates for: ckb
    From translation svn revision: 56743
    
    Authors:
    Ali Ustek <aliustek@gmail.com>
    Patrick Galasso <Patrice.galasso@gmail.com>
    Jwanro Mustafa <jwanroabdula@hotmail.com>
    Kosrat D Ahmad <kosrat.d.ahmad@gmail.com>
    silva.hm88@gmail.com
    
    Stats:
    1       1       source/locale/ckb/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 39548453fc9d6befb8d6232df60c4b22347fc089
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 12 00:05:14 2020 +1000

    L10n updates for: ca
    From translation svn revision: 56743
    
    Authors:
    Ruben Alcaraz <ruben.hangar1.8@gmail.com>
    Dr. Mireia Ribera <mireia.ribera@gmail.com>
    Santi Moese <santispock@gmail.com>
    Marina Salse Rovira <salse@ub.edu>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/ca/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 62c830e1c8c9a799dec91c63a3f02c2edbb3458a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 12 00:05:12 2020 +1000

    L10n updates for: bg
    From translation svn revision: 56743
    
    Authors:
    Zahari Yurukov <zahari.yurukov@gmail.com>
    Kostadin Kolev <k_kolev1985@mail.bg>
    
    Stats:
    1       1       source/locale/bg/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit f39ad282798c44250f05ab73ef4d5d53a90ffdc4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 12 00:05:09 2020 +1000

    L10n updates for: ar
    From translation svn revision: 56743
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Omar Alojaimi <amrahmad1995@gmail.com>
    
    Stats:
    1       1       source/locale/ar/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 4e6200be9964bbe8fb1a0e07e1ca474c9152456d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 12 00:05:06 2020 +1000

    L10n updates for: an
    From translation svn revision: 56743
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/an/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 1eb094746ed3a02af3de63ae51cfd83957055118
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 12 00:05:04 2020 +1000

    L10n updates for: am
    From translation svn revision: 56743
    
    Authors:
    KETEMA ZEREGAW <kzeregaw@msn.com>
    Dr. Tamru E. Belay <g.braille@sympatico.ca>
    
    Stats:
    1       1       source/locale/am/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 242e8734c6c38e2cc9b84a7bc82fc9851b50fcfc
Author: James Teh <jamie@jantrid.net>
Date:   Thu Jun 11 02:59:47 2020 +1000

    Fix setting focus when forcing focus mode (PR #11206)
    
    Browse mode with 'auto focus focusable elements' disabled: Focus focusable ancestor at caret when forcing focus mode with NVDA+space.
    
    When enabling (forcing) focus mode with NVDA+space, NVDA wasn't setting focus to the element under the cursor with 'auto focus focusable elements' disabled.
    
    Switching to focus mode with NVDA+space sets disableAutoPassThrough to True on the TreeInterceptor. Previously, this was just a variable. Now, it's a property which calls _focusLastFocusableObject() if appropriate.

commit 87ed54a9044d958c50d71d130692029e1312fe89
Author: André-Abush Clause <dev@andreabc.net>
Date:   Wed Jun 10 18:27:34 2020 +0200

    Update liblouis to 3.14.0 (PR #11221)

commit 893535fcac7b898322f3a80ba3722a93f8362089
Author: Adriani90 <adriani.botez@googlemail.com>
Date:   Tue Jun 9 15:35:49 2020 +0200

    Start menu shortcut for what's new (PR #11171)
    
    Fixes #9309

commit b789cb705bdf13b90ed4e4a49f5a7d7c96e43483
Author: Reef Turner <reef@nvaccess.org>
Date:   Tue Jun 9 15:00:21 2020 +0200

    Update changes file for PR #11176

commit 557583b4eb65ae1d4b7d8f556810a7db0f08b0f2
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Tue Jun 9 15:04:44 2020 +0200

    Avoid reporting systray tool-tips if their text equals the focused systray icon name (PR #11176)
    
    Fixes #6656
    
    When navigating the systray using the keyboard and tool-tips reporting is enabled, most systray icon names were double announced as their name is usually equal to the tool-tip text.
    
    Additionally, to avoid focus jumps, NVDA was moving the mouse cursor to the top left corner of the screen as soon as a systray control gained focus via keyboard navigation.
    
    In appModules.explorer:
    Now do not report if:
    - the focus is in the systray
    - and the mouse has not indeed recently been moved
    - and the mouse is located in the systray
    - and the name of the focused systray icon equals the tool-tip text.
    - Report as usual in any other case.
    
    Additionally, now do to reset the mouse cursor position to the top left screen corner upon navigating with the keyboard to the systray if the mouse wasn't their in the first place.

commit 9f96d0344cbf39a1c9507f8a7a5a44581bde1e74
Author: James Teh <jamie@jantrid.net>
Date:   Tue Jun 9 22:38:12 2020 +1000

    Browser performance:  Don't unnecessarily calculate labelledByContent (PR#11205)
    
    gecko_ia2 vbuf backend: Don't unnecessarily calculate labelledByContent (and thus unnecessarily fetch labelledBy).
    
    The labelledByContent ControlField attribute is only used when the name attribute is set and the name is an explicit name. This is true for how we use the attribute from Python, but it also must be true because of what a browser provides.
    
    When aria-labelledby is provided, the browser uses it to calculate the accessible name and explicit name is also set. This means that accessible name and explicit name (which are already being fetched) can be used as a canary for the existence of the labelledBy relation.
    
    Avoiding calls to fetch the labelledBy relation when it is not going to be used improves performance.
    In a document with many objects, this could result in thousands of unnecessary calls.
    Instead, only calculate labelledByContent if we're going to use it.

commit ff830bcbb0a1f1f259225184bfb858cd4b9d765a
Merge: 774ae4279 2c826edae
Author: Reef Turner <reef@nvaccess.org>
Date:   Tue Jun 9 12:51:19 2020 +0200

    Merge remote-tracking branch 'origin/beta'

commit 774ae42793bb05bf380f2769ac2f291d7b394db9
Author: eric <26911141+dingpengyu@users.noreply.github.com>
Date:   Tue Jun 9 18:50:20 2020 +0800

    Update buildVersion to 2020.2 (PR #11242)
    
    Co-authored-by: Reef Turner <reef@nvaccess.org>

commit 137efb506dbd0a4c4d1afcfec3626b99885dfae0
Author: Bill Dengler <codeofdusk@gmail.com>
Date:   Tue Jun 9 06:21:52 2020 -0400

    Docs: Classify cancellable speech as experimental (PR #11189)

commit 2c826edae579b953c29dcbdc70995c4dbf4469ca
Merge: d2e4fa23e 40d441539
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 5 00:06:32 2020 +1000

    Update translations.
    
    From translation svn revision: 56732

commit 40d441539eadeb3e77f3e12edb40d9fe397a1ac6
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 5 00:06:30 2020 +1000

    L10n updates for: zh_TW
    From translation svn revision: 56732
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    1       1       source/locale/zh_TW/LC_MESSAGES/nvda.po
    177     175     source/locale/zh_TW/characterDescriptions.dic
     2 files changed, 178 insertions(+), 176 deletions(-)

commit 80316bde4b67993047c92eed1a662053ba36f2fe
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 5 00:06:28 2020 +1000

    L10n updates for: zh_HK
    From translation svn revision: 56732
    
    Authors:
    Eric Yip <ericycy@gmail.com>
    
    Stats:
    1       1       source/locale/zh_HK/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 0b834b186293e6ab1aeb4c76f4f376e9c5f7e95d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 5 00:06:28 2020 +1000

    L10n updates for: zh_CN
    From translation svn revision: 56732
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    
    Stats:
    1       1       source/locale/zh_CN/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 4203fc992d80d3fb0275944ef838cea9c6ea0b57
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 5 00:06:26 2020 +1000

    L10n updates for: vi
    From translation svn revision: 56732
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    1       1       source/locale/vi/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 847274d7b2d5a1c274825434d9b939deebd5f25b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 5 00:06:24 2020 +1000

    L10n updates for: uk
    From translation svn revision: 56732
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    1       1       source/locale/uk/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit fa4182c5eac8e51831f2b970b62bb4b5400082fa
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 5 00:06:22 2020 +1000

    L10n updates for: tr
    From translation svn revision: 56732
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    1       1       source/locale/tr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 7a9f90c4bb9715eb32f94931669c4a283d978c9a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 5 00:06:20 2020 +1000

    L10n updates for: ta
    From translation svn revision: 56732
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    12      12      source/locale/ta/LC_MESSAGES/nvda.po
    3       3       user_docs/ta/userGuide.t2t
     2 files changed, 15 insertions(+), 15 deletions(-)

commit e8d6d55c64f90edde32f15fc1ce67c7db70d771e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 5 00:06:18 2020 +1000

    L10n updates for: sv
    From translation svn revision: 56732
    
    Authors:
    Daniel Johansson <daniel.johansson@coeptus.se>
    Niklas Johansson <sleeping.pillow@gmail.com>
    Karl-Otto Rosenqvist <Karl-otto@mawingu.se>
    
    Stats:
    1       1       source/locale/sv/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit b8d234ffc6c48590657919e41df9b71189bb9c10
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 5 00:06:17 2020 +1000

    L10n updates for: sr
    From translation svn revision: 56732
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    1       1       source/locale/sr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 88750b9bae72a64a119dcb9660afd6091fafd415
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 5 00:06:15 2020 +1000

    L10n updates for: so
    From translation svn revision: 56732
    
    Authors:
    Othmanothman <othman82@hotmail.com>
    
    Stats:
    1       1       source/locale/so/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit dbd8f47f2fa33021313a1fd5a1a3ea8de528f2d8
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 5 00:06:15 2020 +1000

    L10n updates for: sl
    From translation svn revision: 56732
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    1       1       source/locale/sl/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit cb695227aa93d383c07b2a127bd6a97dfc4b03f9
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 5 00:06:14 2020 +1000

    L10n updates for: sk
    From translation svn revision: 56732
    
    Authors:
    Ondrej Rosik <ondrej.rosik@gmail.com>
    Peter Vagner <peter.v@datagate.sk>
    Jan Kulik <jan.kulik.szsle@outlook.sk>
    
    Stats:
    1       1       source/locale/sk/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit aa64064cb2a8c4eef4852bf3a5e69e9f925cfa44
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 5 00:06:12 2020 +1000

    L10n updates for: ru
    From translation svn revision: 56732
    
    Authors:
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    1       1       source/locale/ru/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 123d42cc2f6fca93d92097b3a80ed2231f6686e0
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 5 00:06:09 2020 +1000

    L10n updates for: ro
    From translation svn revision: 56732
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    George Antonio Andrei <george.andrei2002@gmail.com>
    
    Stats:
    1       1       source/locale/ro/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 7fcfe667cfa3cac1e465cb1a2c40700761333212
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 5 00:06:07 2020 +1000

    L10n updates for: pt_PT
    From translation svn revision: 56732
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    1       1       source/locale/pt_PT/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 67de70364944716d93902cf767d8575d73c3ea31
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 5 00:06:05 2020 +1000

    L10n updates for: pt_BR
    From translation svn revision: 56732
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    1       1       source/locale/pt_BR/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 7f84bed45d6c3a739f910a3473820e6cbff78f05
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 5 00:06:03 2020 +1000

    L10n updates for: pl
    From translation svn revision: 56732
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <hubmeyer1989@gmail.com>
    Arkadiusz Swietnicki <nuno69a@gmail.com>
    
    Stats:
    1       1       source/locale/pl/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit a938668fac38bbe08afd0a0554be9bb70b8e6832
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 5 00:06:01 2020 +1000

    L10n updates for: pa
    From translation svn revision: 56732
    
    Authors:
    Maheshinder Singh Khosla <mahesh.khosla@gmail.com>
    Dinesh Mittal <punjabimaster259@gmail.com>
    
    Stats:
    1       1       source/locale/pa/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 7b9a920f2a0b0ab57cbcdd12cc62e27c12d7dbb3
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 5 00:06:00 2020 +1000

    L10n updates for: nl
    From translation svn revision: 56732
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    1       1       source/locale/nl/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 6f3734ee89cacba6b41fde0874ed355d6dc7ea9c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 5 00:05:59 2020 +1000

    L10n updates for: ne
    From translation svn revision: 56732
    
    Authors:
    Puskal Gautam <nvda.nepali@gmail.com>
    
    Stats:
    1       1       source/locale/ne/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 865ab00acf6cf7b36f684569dbbbad07d9dfff0b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 5 00:05:57 2020 +1000

    L10n updates for: nb_NO
    From translation svn revision: 56732
    
    Authors:
    David Hole <balubathebrave@gmail.com>
    Bjornar Seppola <bjornar@seppola.net>
    
    Stats:
    1       1       source/locale/nb_NO/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit eea27dc413bc96a35f767dc53b51edc59a0aa1b9
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 5 00:05:56 2020 +1000

    L10n updates for: my
    From translation svn revision: 56732
    
    Authors:
    Benedict La hkun <lkbenedict@gmail.com>
    
    Stats:
    1       1       source/locale/my/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 92bce35a8393be00ccda792b68670f0a7eca141e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 5 00:05:55 2020 +1000

    L10n updates for: mn
    From translation svn revision: 56732
    
    Authors:
    Mongol NVDA-Translation <mongoliannvdatranslation@gmail.com>
    
    Stats:
    1       1       source/locale/mn/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 0268956c356d770f8cac12ea020a24a60571e4aa
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 5 00:05:53 2020 +1000

    L10n updates for: mk
    From translation svn revision: 56732
    
    Authors:
    zvonimir stanecic <9a5dsz@gozaltech.org>
    Kiko Lazarev <kristijan.lazarev@gmail.com>
    
    Stats:
    1       1       source/locale/mk/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 745da11c045d8e7f00200d8efcf9d8340c2a3bec
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 5 00:05:51 2020 +1000

    L10n updates for: lt
    From translation svn revision: 56732
    
    Authors:
    Paulius Leveris <paulius.leveris@gmail.com>
    Rimas Kudelis <rq@akl.lt>
    
    Stats:
    1       1       source/locale/lt/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 198fe723c70efe7f6747931470d78fcf61e74eac
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 5 00:05:50 2020 +1000

    L10n updates for: ko
    From translation svn revision: 56732
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    1       1       source/locale/ko/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 92ef22df0294fc01ccf6f53a156b04590dba3962
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 5 00:05:48 2020 +1000

    L10n updates for: kn
    From translation svn revision: 56732
    
    Authors:
    Siddalingeshwar Ingalagi <ingalagisiddu@gmail.com>
    
    Stats:
    1       1       source/locale/kn/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit ac95baf9c6612b8a7e048738e94354b38ffdaae6
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 5 00:05:47 2020 +1000

    L10n updates for: kmr
    From translation svn revision: 56732
    
    Authors:
    Imam Kahraman <imam.kahraman@googlemail.com>
    
    Stats:
    59      64      source/locale/kmr/LC_MESSAGES/nvda.po
     1 file changed, 59 insertions(+), 64 deletions(-)

commit 343f9ee19e0ee7dd29e4e4dceb5999821cc2d02a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 5 00:05:47 2020 +1000

    L10n updates for: ka
    From translation svn revision: 56732
    
    Authors:
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Goderdzi Gogoladze <goderdzigogoladze@gmail.com>
    
    Stats:
    1       1       source/locale/ka/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 303fe9fe650efb2aaf92124d7c489a77352d56fa
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 5 00:05:46 2020 +1000

    L10n updates for: ja
    From translation svn revision: 56732
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    1       1       source/locale/ja/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit e624cb3f6dd56974eb317a767c5729d59afb8553
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 5 00:05:44 2020 +1000

    L10n updates for: it
    From translation svn revision: 56732
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    1       1       source/locale/it/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 2ff423e4de375daaed580ce8d1043288d8018e7c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 5 00:05:42 2020 +1000

    L10n updates for: is
    From translation svn revision: 56732
    
    Authors:
    Birkir R. Gunnarsson <birkir.gunnarsson@gmail.com>
    Hlynur Hreinsson <hm.hreinsson@gmail.com>
    
    Stats:
    1       1       source/locale/is/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 529b8853f276aae50e3f76657bde8eb5c8d20832
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 5 00:05:41 2020 +1000

    L10n updates for: hu
    From translation svn revision: 56732
    
    Authors:
    Aron OcsvAri <oaron@nvda.hu>
    
    Stats:
    1       1       source/locale/hu/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 0ccb49ffeaa08b80dff3bbb95f58ad5f69fb3fd1
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 5 00:05:39 2020 +1000

    L10n updates for: hr
    From translation svn revision: 56732
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Milo Ivir <mivir@milotype.de>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    1       1       source/locale/hr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 5be038db90155c8cc5ba4a7ff56c9796c05a2759
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 5 00:05:37 2020 +1000

    L10n updates for: hi
    From translation svn revision: 56732
    
    Authors:
    dipendra.lists@gmail.com
    Doc Mehta <joyofinspiring@gmail.com>
    
    Stats:
    1       1       source/locale/hi/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit ada8d5073c60f937da3c66fc082e537ebcb17e42
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 5 00:05:36 2020 +1000

    L10n updates for: he
    From translation svn revision: 56732
    
    Authors:
    Shmuel Naaman <shmuel_naaman@yahoo.com>
    Afik Sofir <afik.sofer@gmail.com>
    
    Stats:
    1       1       source/locale/he/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 4cac5d069c082549587999ef7d17b882926412de
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 5 00:05:35 2020 +1000

    L10n updates for: gl
    From translation svn revision: 56732
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    Javier Curras <javier.curras@nvda.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    7       7       source/locale/gl/LC_MESSAGES/nvda.po
    12      12      user_docs/gl/changes.t2t
    5       5       user_docs/gl/userGuide.t2t
     3 files changed, 24 insertions(+), 24 deletions(-)

commit 4d3763e3276b8284a0a7fd3e51caf608419e506e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 5 00:05:33 2020 +1000

    L10n updates for: ga
    From translation svn revision: 56732
    
    Authors:
    Cearbhall OMeadhra <cearbhall.omeadhra@blbc.ie>
    Ronan McGuirk <ronan.p.mcguirk@gmail.com>
    Kevin Scannell <kscanne@gmail.com>
    
    Stats:
    1       1       source/locale/ga/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 01bb3be1ecb7d5890888e3acc7e1ade81e918c96
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 5 00:05:32 2020 +1000

    L10n updates for: fr
    From translation svn revision: 56732
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess.net>
    
    Stats:
    1       1       source/locale/fr/LC_MESSAGES/nvda.po
    2       2       source/locale/fr/symbols.dic
     2 files changed, 3 insertions(+), 3 deletions(-)

commit 14847d59d800efde01c2e33781294c03bb3f9579
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 5 00:05:30 2020 +1000

    L10n updates for: fi
    From translation svn revision: 56732
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    1       1       source/locale/fi/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit d39267ad13d6ca55e248f921e34586d6fa539b54
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 5 00:05:28 2020 +1000

    L10n updates for: fa
    From translation svn revision: 56732
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    1       1       source/locale/fa/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 7747aebd58e9701e36fc9422226a7298baeb209d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 5 00:05:25 2020 +1000

    L10n updates for: es
    From translation svn revision: 56732
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/es/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit a783e7bc750a926b6d84cee3cde84ddd9e625a09
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 5 00:05:24 2020 +1000

    L10n updates for: es_CO
    From translation svn revision: 56732
    
    Authors:
    Jorge Zarache <reydelasmaquinas@outlook.com>
    Luis Carlos Gonzáles Moráles <luiscarlosgm@hotmail.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/es_CO/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 4f04e5b38e5294ef0d52b8ab6f6b3f12ddc193ab
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 5 00:05:22 2020 +1000

    L10n updates for: el
    From translation svn revision: 56732
    
    Authors:
    Irene Nakas <irnakas@gmail.com>
    Nikos Demetriou <nikosdemetriou@googlemail.com>
    access@e-rhetor.com
    
    Stats:
    1       1       source/locale/el/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 3e8fc5b39448f223b12cb04dd5a5fc68730a10ed
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 5 00:05:20 2020 +1000

    L10n updates for: de
    From translation svn revision: 56732
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    1       1       source/locale/de/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 02165d0ad3f9eba56872197ecd3f6d5bba566299
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 5 00:05:18 2020 +1000

    L10n updates for: de_CH
    From translation svn revision: 56732
    
    Authors:
    Robert Hänggi <aarjay.robert@gmail.com>
    
    Stats:
    1       1       source/locale/de_CH/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit b2a53ca8fb3c57f23d81cb87011fcf310d56fa4d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 5 00:05:16 2020 +1000

    L10n updates for: da
    From translation svn revision: 56732
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    1       1       source/locale/da/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 01283a9a7652e501090a1ba60b079ec47fdaaa29
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 5 00:05:15 2020 +1000

    L10n updates for: cs
    From translation svn revision: 56732
    
    Authors:
    Martina Letochova <letochova@seznam.cz>
    
    Stats:
    1       1       source/locale/cs/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 3f06947ad4edbb328d470c96e6ce484cba18af1f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 5 00:05:14 2020 +1000

    L10n updates for: ckb
    From translation svn revision: 56732
    
    Authors:
    Ali Ustek <aliustek@gmail.com>
    Patrick Galasso <Patrice.galasso@gmail.com>
    Jwanro Mustafa <jwanroabdula@hotmail.com>
    Kosrat D Ahmad <kosrat.d.ahmad@gmail.com>
    silva.hm88@gmail.com
    
    Stats:
    1       1       source/locale/ckb/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 359a154119824ea7565e4fd34a0b13e3a2fb6751
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 5 00:05:13 2020 +1000

    L10n updates for: ca
    From translation svn revision: 56732
    
    Authors:
    Ruben Alcaraz <ruben.hangar1.8@gmail.com>
    Dr. Mireia Ribera <mireia.ribera@gmail.com>
    Santi Moese <santispock@gmail.com>
    Marina Salse Rovira <salse@ub.edu>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/ca/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 236ce496091ac40e2d11492bf1f0247fa1ab46a0
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 5 00:05:11 2020 +1000

    L10n updates for: bg
    From translation svn revision: 56732
    
    Authors:
    Zahari Yurukov <zahari.yurukov@gmail.com>
    Kostadin Kolev <k_kolev1985@mail.bg>
    
    Stats:
    1       1       source/locale/bg/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit f304c7eff3a09b33e5742a4c6b5fb7d1cb982aa1
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 5 00:05:08 2020 +1000

    L10n updates for: ar
    From translation svn revision: 56732
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Omar Alojaimi <amrahmad1995@gmail.com>
    
    Stats:
    1       1       source/locale/ar/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 7beea2bdf0f6d970d683a21f9670a86610557df7
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 5 00:05:05 2020 +1000

    L10n updates for: an
    From translation svn revision: 56732
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/an/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 073406d0de05b88606efa6985c0682c78fe9b78e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Jun 5 00:05:03 2020 +1000

    L10n updates for: am
    From translation svn revision: 56732
    
    Authors:
    KETEMA ZEREGAW <kzeregaw@msn.com>
    Dr. Tamru E. Belay <g.braille@sympatico.ca>
    
    Stats:
    1       1       source/locale/am/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit f2cbfec88cc06002ebb92216b98a74f6bc24edf7
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Wed Jun 3 11:58:54 2020 +0200

    checkPot: Add unit tests (PR #11179)
    
    PR #10941 brought to light flaws in checkPot regarding handling of long messages - fixed by PR #11093
    In #11093 (comment) the creation of unit tests was discussed to help limit occurrence of future regressions.
    Discussion: https://github.com/nvaccess/nvda/pull/11093#discussion_r419286589

commit 44d8a3134ddf5e4b1572d900105688b3cb38d967
Author: Bill Dengler <codeofdusk@gmail.com>
Date:   Wed Jun 3 04:45:13 2020 -0400

    Spelling fixes: user guide (PR #11193)
    
    Resolved spelling variation conflicts to the Oxford spelling variants
    https://en.wikipedia.org/wiki/Oxford_spelling
    Changed mentions of 'addon' to 'add-on'

commit 73c38779a52028eb3829c6db75d39744100dc8c0
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Wed Jun 3 10:39:25 2020 +0200

    Add additional files created during build to .gitignore (PR #11208)

commit f1c91f1cbcac476d0aa66fcbb139f62afdd12cf4
Author: Adriani90 <adriani.botez@googlemail.com>
Date:   Tue Jun 2 15:56:54 2020 +0200

    Uppdate readme and ControllerClient docs (PR #11195)
    
    Updated readme with a new section "getting support"
    Converted the readme from ControllerClient to .MD to show up properly on Github

commit c452333ed2d3915dd8d9ef69e911cd4b5dfa6a81
Author: Adriani90 <adriani.botez@googlemail.com>
Date:   Tue Jun 2 10:31:06 2020 +0200

    Removed duplicate ROLE_ALERT constant from ControlTypes (PR #11218)
    
    closes #7247

commit d2e4fa23e0a89c694df3e027c026d0e3da96d7fa
Merge: 7a971b725 ab1ae0798
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 29 00:06:36 2020 +1000

    Update translations.
    
    From translation svn revision: 56709

commit ab1ae0798b47759c3c4058a8e4df14b58ddae51d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 29 00:06:34 2020 +1000

    L10n updates for: zh_TW
    From translation svn revision: 56709
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    1       1       source/locale/zh_TW/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit c7dea3acebf49c6025d71dbffc73df07d0f9f364
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 29 00:06:32 2020 +1000

    L10n updates for: zh_HK
    From translation svn revision: 56709
    
    Authors:
    Eric Yip <ericycy@gmail.com>
    
    Stats:
    1       1       source/locale/zh_HK/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 5f6d6d6f04c439e101c7275749a344f1586cc40e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 29 00:06:32 2020 +1000

    L10n updates for: zh_CN
    From translation svn revision: 56709
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    
    Stats:
    1       1       source/locale/zh_CN/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit ecd1472f1f5518e1b76531256b29fc881dcb9044
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 29 00:06:29 2020 +1000

    L10n updates for: vi
    From translation svn revision: 56709
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    1       1       source/locale/vi/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit dd78ff3d17fe7b7ca1f3c1ad8405f78c43616adf
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 29 00:06:27 2020 +1000

    L10n updates for: uk
    From translation svn revision: 56709
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    1       1       source/locale/uk/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 70e53216153250c0d0978fe99d3c133e1ef2c8e1
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 29 00:06:26 2020 +1000

    L10n updates for: tr
    From translation svn revision: 56709
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    1       1       source/locale/tr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit b149b88a44057135912011739ca41755ef78b64c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 29 00:06:24 2020 +1000

    L10n updates for: ta
    From translation svn revision: 56709
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    12      12      source/locale/ta/LC_MESSAGES/nvda.po
    14      14      user_docs/ta/userGuide.t2t
     2 files changed, 26 insertions(+), 26 deletions(-)

commit c2b4d1d73a71eb38a3ad1d0c84faaf002ebc0919
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 29 00:06:22 2020 +1000

    L10n updates for: sv
    From translation svn revision: 56709
    
    Authors:
    Daniel Johansson <daniel.johansson@coeptus.se>
    Niklas Johansson <sleeping.pillow@gmail.com>
    Karl-Otto Rosenqvist <Karl-otto@mawingu.se>
    
    Stats:
    1       1       source/locale/sv/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit b793d8fec487c5d15e49047f62798445820a49cd
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 29 00:06:21 2020 +1000

    L10n updates for: sr
    From translation svn revision: 56709
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    1       1       source/locale/sr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 7be67848d18b014c040adc714e9f9526ae9489a4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 29 00:06:19 2020 +1000

    L10n updates for: so
    From translation svn revision: 56709
    
    Authors:
    Othmanothman <othman82@hotmail.com>
    
    Stats:
    1       1       source/locale/so/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 57757daaa79862f4593b56770716fa018d2f8eef
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 29 00:06:19 2020 +1000

    L10n updates for: sl
    From translation svn revision: 56709
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    1       1       source/locale/sl/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 68d1ba96fb75e688eac9269fb5da147656544bd2
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 29 00:06:17 2020 +1000

    L10n updates for: sk
    From translation svn revision: 56709
    
    Authors:
    Ondrej Rosik <ondrej.rosik@gmail.com>
    Peter Vagner <peter.v@datagate.sk>
    Jan Kulik <jan.kulik.szsle@outlook.sk>
    
    Stats:
    1       1       source/locale/sk/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 52f0a6c6f83798b01ac02705bd19053bc7a06230
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 29 00:06:15 2020 +1000

    L10n updates for: ru
    From translation svn revision: 56709
    
    Authors:
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    1       1       source/locale/ru/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 90f8aad4abab26eca62fc1e31e4d7a63bb2731c6
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 29 00:06:12 2020 +1000

    L10n updates for: ro
    From translation svn revision: 56709
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    George Antonio Andrei <george.andrei2002@gmail.com>
    
    Stats:
    1       1       source/locale/ro/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 438e59beb798702d7a79fbd2fb479450af5aa13c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 29 00:06:11 2020 +1000

    L10n updates for: pt_PT
    From translation svn revision: 56709
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    15      7       source/locale/pt_PT/LC_MESSAGES/nvda.po
     1 file changed, 15 insertions(+), 7 deletions(-)

commit 752ee2618096d29c4fb503bcba3aab8106b5d588
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 29 00:06:08 2020 +1000

    L10n updates for: pt_BR
    From translation svn revision: 56709
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    1       1       source/locale/pt_BR/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 559aeeba2f6c628f31afd463a740db58674d2257
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 29 00:06:06 2020 +1000

    L10n updates for: pl
    From translation svn revision: 56709
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <hubmeyer1989@gmail.com>
    Arkadiusz Swietnicki <nuno69a@gmail.com>
    
    Stats:
    1       1       source/locale/pl/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 472c1a8fbdc095394bf956bf6e5e39e45514cebd
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 29 00:06:04 2020 +1000

    L10n updates for: pa
    From translation svn revision: 56709
    
    Authors:
    Maheshinder Singh Khosla <mahesh.khosla@gmail.com>
    Dinesh Mittal <punjabimaster259@gmail.com>
    
    Stats:
    1       1       source/locale/pa/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit f707ef3ef9bfd82d675f52c247b2d686e2e6a6dc
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 29 00:06:04 2020 +1000

    L10n updates for: nl
    From translation svn revision: 56709
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    1       1       source/locale/nl/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 29a061283ea91cae7ae43a795dd4ba61123f0df3
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 29 00:06:02 2020 +1000

    L10n updates for: ne
    From translation svn revision: 56709
    
    Authors:
    Puskal Gautam <nvda.nepali@gmail.com>
    
    Stats:
    1       1       source/locale/ne/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 148db8a8f9a7565dd923397903a6d307d1b87b46
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 29 00:06:01 2020 +1000

    L10n updates for: nb_NO
    From translation svn revision: 56709
    
    Authors:
    David Hole <balubathebrave@gmail.com>
    Bjornar Seppola <bjornar@seppola.net>
    
    Stats:
    1       1       source/locale/nb_NO/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 9370d7b74c5d16a0aba5d525450c116ff6d1d43d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 29 00:06:00 2020 +1000

    L10n updates for: my
    From translation svn revision: 56709
    
    Authors:
    Benedict La hkun <lkbenedict@gmail.com>
    
    Stats:
    1       1       source/locale/my/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 216dcf6c3b9349e2a384c49573f088a882a7aaaf
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 29 00:05:58 2020 +1000

    L10n updates for: mn
    From translation svn revision: 56709
    
    Authors:
    Mongol NVDA-Translation <mongoliannvdatranslation@gmail.com>
    
    Stats:
    1       1       source/locale/mn/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit c4faac874938ba052bb2d4966d2b78216bb826e1
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 29 00:05:56 2020 +1000

    L10n updates for: mk
    From translation svn revision: 56709
    
    Authors:
    zvonimir stanecic <9a5dsz@gozaltech.org>
    Kiko Lazarev <kristijan.lazarev@gmail.com>
    
    Stats:
    1       1       source/locale/mk/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 383040c9b03f42a5b8401241f12695d235db0d1a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 29 00:05:55 2020 +1000

    L10n updates for: lt
    From translation svn revision: 56709
    
    Authors:
    Paulius Leveris <paulius.leveris@gmail.com>
    Rimas Kudelis <rq@akl.lt>
    
    Stats:
    1       1       source/locale/lt/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit d06e503ea43f3ce280edba551302dfce24e6e81c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 29 00:05:53 2020 +1000

    L10n updates for: ko
    From translation svn revision: 56709
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    1       1       source/locale/ko/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 37a73f9e46e8b080d96a627f5a3d4774c972c0b4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 29 00:05:51 2020 +1000

    L10n updates for: kn
    From translation svn revision: 56709
    
    Authors:
    Siddalingeshwar Ingalagi <ingalagisiddu@gmail.com>
    
    Stats:
    1       1       source/locale/kn/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 9e443fa3c659e2ccbca44a23d177912c2905089b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 29 00:05:50 2020 +1000

    L10n updates for: kmr
    From translation svn revision: 56709
    
    Authors:
    Imam Kahraman <imam.kahraman@googlemail.com>
    
    Stats:
    1       1       source/locale/kmr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 6b379d21bbf0d6d0cbdacd745a2fd6c9ac0cb804
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 29 00:05:50 2020 +1000

    L10n updates for: ka
    From translation svn revision: 56709
    
    Authors:
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Goderdzi Gogoladze <goderdzigogoladze@gmail.com>
    
    Stats:
    1       1       source/locale/ka/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 9217e77b9d5817b67743d1baed0c71f67697234a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 29 00:05:49 2020 +1000

    L10n updates for: ja
    From translation svn revision: 56709
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    1       1       source/locale/ja/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 3b8baf3059af9b6ee5f20f6dd4e5e7f96e7bfc0a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 29 00:05:47 2020 +1000

    L10n updates for: it
    From translation svn revision: 56709
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    1       1       source/locale/it/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 371691fdcda737f45d3de514d856196d889aa0f4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 29 00:05:45 2020 +1000

    L10n updates for: is
    From translation svn revision: 56709
    
    Authors:
    Birkir R. Gunnarsson <birkir.gunnarsson@gmail.com>
    Hlynur Hreinsson <hm.hreinsson@gmail.com>
    
    Stats:
    1       1       source/locale/is/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 85f9d84b41293ff76f2fd4f168cb554ffab0375c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 29 00:05:43 2020 +1000

    L10n updates for: hu
    From translation svn revision: 56709
    
    Authors:
    Aron OcsvAri <oaron@nvda.hu>
    
    Stats:
    1       1       source/locale/hu/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit ea26e3fde5805e557c2924a599ecc1c84b31de75
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 29 00:05:42 2020 +1000

    L10n updates for: hr
    From translation svn revision: 56709
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Milo Ivir <mivir@milotype.de>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    1       1       source/locale/hr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit be14bfe5883e1c9929218addd722f7c4319f1975
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 29 00:05:40 2020 +1000

    L10n updates for: hi
    From translation svn revision: 56709
    
    Authors:
    dipendra.lists@gmail.com
    Doc Mehta <joyofinspiring@gmail.com>
    
    Stats:
    1       1       source/locale/hi/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit b1afdd3c46f66b476aef14d3a566c040e6cf9653
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 29 00:05:39 2020 +1000

    L10n updates for: he
    From translation svn revision: 56709
    
    Authors:
    Shmuel Naaman <shmuel_naaman@yahoo.com>
    Afik Sofir <afik.sofer@gmail.com>
    
    Stats:
    1       1       source/locale/he/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit a066d16e7097dcf0433f704548f4f7d925aee079
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 29 00:05:38 2020 +1000

    L10n updates for: gl
    From translation svn revision: 56709
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    Javier Curras <javier.curras@nvda.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/gl/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit ad4e9c446453529706f4d794b9fa31ede14bee37
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 29 00:05:36 2020 +1000

    L10n updates for: ga
    From translation svn revision: 56709
    
    Authors:
    Cearbhall OMeadhra <cearbhall.omeadhra@blbc.ie>
    Ronan McGuirk <ronan.p.mcguirk@gmail.com>
    Kevin Scannell <kscanne@gmail.com>
    
    Stats:
    1       1       source/locale/ga/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit c130d315117594b84733fded09a0518afdeeefb4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 29 00:05:35 2020 +1000

    L10n updates for: fr
    From translation svn revision: 56709
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess.net>
    
    Stats:
    1       1       source/locale/fr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit eb69b3ee3af061cd8d39f3a847c70d5a1076f97a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 29 00:05:33 2020 +1000

    L10n updates for: fi
    From translation svn revision: 56709
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    1       1       source/locale/fi/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 8fd86f4d2e635e67897c3b6248eafac1ff73aea7
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 29 00:05:31 2020 +1000

    L10n updates for: fa
    From translation svn revision: 56709
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    1       1       source/locale/fa/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit a816d2dd760584502a4c407ed135594757d346a3
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 29 00:05:28 2020 +1000

    L10n updates for: es
    From translation svn revision: 56709
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/es/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 0456b51a927761fcac3d11076a143e510a4118e8
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 29 00:05:26 2020 +1000

    L10n updates for: es_CO
    From translation svn revision: 56709
    
    Authors:
    Jorge Zarache <reydelasmaquinas@outlook.com>
    Luis Carlos Gonzáles Moráles <luiscarlosgm@hotmail.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/es_CO/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit ae813de5d04f090f29187b1e7365714199e654b8
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 29 00:05:24 2020 +1000

    L10n updates for: el
    From translation svn revision: 56709
    
    Authors:
    Irene Nakas <irnakas@gmail.com>
    Nikos Demetriou <nikosdemetriou@googlemail.com>
    access@e-rhetor.com
    
    Stats:
    1       1       source/locale/el/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 4542df5274bb8d0bd2060636fc2fc0858b603c92
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 29 00:05:23 2020 +1000

    L10n updates for: de
    From translation svn revision: 56709
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    1       1       source/locale/de/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit c74806c6bda7bcefe3f2e0d2ddf1b34136b4e00d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 29 00:05:21 2020 +1000

    L10n updates for: de_CH
    From translation svn revision: 56709
    
    Authors:
    Robert Hänggi <aarjay.robert@gmail.com>
    
    Stats:
    1       1       source/locale/de_CH/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 2655447b967c119f544d004bbc281ffa7d5c1045
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 29 00:05:19 2020 +1000

    L10n updates for: da
    From translation svn revision: 56709
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    1       1       source/locale/da/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 6dc0a61a0124f7838ca505db5cd107fdda7d8514
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 29 00:05:17 2020 +1000

    L10n updates for: cs
    From translation svn revision: 56709
    
    Authors:
    Martina Letochova <letochova@seznam.cz>
    
    Stats:
    1       1       source/locale/cs/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit dbb06307436b0ef59c20fd2062aa8ffc7726dff1
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 29 00:05:16 2020 +1000

    L10n updates for: ckb
    From translation svn revision: 56709
    
    Authors:
    Ali Ustek <aliustek@gmail.com>
    Patrick Galasso <Patrice.galasso@gmail.com>
    Jwanro Mustafa <jwanroabdula@hotmail.com>
    Kosrat D Ahmad <kosrat.d.ahmad@gmail.com>
    silva.hm88@gmail.com
    
    Stats:
    1       1       source/locale/ckb/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit f71340c7197ff8ddf744ebc97561d539457c7a9e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 29 00:05:16 2020 +1000

    L10n updates for: ca
    From translation svn revision: 56709
    
    Authors:
    Ruben Alcaraz <ruben.hangar1.8@gmail.com>
    Dr. Mireia Ribera <mireia.ribera@gmail.com>
    Santi Moese <santispock@gmail.com>
    Marina Salse Rovira <salse@ub.edu>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/ca/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit e820cf19d338c65f91ed3635b4755129365a4d24
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 29 00:05:14 2020 +1000

    L10n updates for: bg
    From translation svn revision: 56709
    
    Authors:
    Zahari Yurukov <zahari.yurukov@gmail.com>
    Kostadin Kolev <k_kolev1985@mail.bg>
    
    Stats:
    1       1       source/locale/bg/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit f20c1cd5fda6e0b7c6ee8751b0752e74b8993571
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 29 00:05:10 2020 +1000

    L10n updates for: ar
    From translation svn revision: 56709
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Omar Alojaimi <amrahmad1995@gmail.com>
    
    Stats:
    1       1       source/locale/ar/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 0c4a8b8ddbba2dc8b1fd2ed0e5059f38c563bd72
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 29 00:05:07 2020 +1000

    L10n updates for: an
    From translation svn revision: 56709
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/an/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit f10754a8520cb7919cdd8f8140472696217c985f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 29 00:05:05 2020 +1000

    L10n updates for: am
    From translation svn revision: 56709
    
    Authors:
    KETEMA ZEREGAW <kzeregaw@msn.com>
    Dr. Tamru E. Belay <g.braille@sympatico.ca>
    
    Stats:
    1       1       source/locale/am/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 7a971b72591b5eb25bba2b0edb5e9793d13c7ae4
Merge: 2dee4e9af 12dcf21f3
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 22 00:06:40 2020 +1000

    Update translations.
    
    From translation svn revision: 56660

commit 12dcf21f30ac46f1b471039bbacbf836d4f0f0eb
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 22 00:06:38 2020 +1000

    L10n updates for: zh_TW
    From translation svn revision: 56660
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    1       1       source/locale/zh_TW/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit f5af259ebe1341d72e16c50353e3894dd2f5543b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 22 00:06:36 2020 +1000

    L10n updates for: zh_HK
    From translation svn revision: 56660
    
    Authors:
    Eric Yip <ericycy@gmail.com>
    
    Stats:
    1       1       source/locale/zh_HK/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 9c729a580d0f3a52115d8e05aec06522c91400a3
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 22 00:06:36 2020 +1000

    L10n updates for: zh_CN
    From translation svn revision: 56660
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    
    Stats:
    1       1       source/locale/zh_CN/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 850b30f342b8b96fa8781e477ebc132a5a8a492b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 22 00:06:33 2020 +1000

    L10n updates for: vi
    From translation svn revision: 56660
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    1       1       source/locale/vi/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 79a149ac9304846d377565385404760bed78be86
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 22 00:06:31 2020 +1000

    L10n updates for: uk
    From translation svn revision: 56660
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    1       1       source/locale/uk/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit a946d537dab224bace6e026c67de1ec91a648954
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 22 00:06:30 2020 +1000

    L10n updates for: tr
    From translation svn revision: 56660
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    1       1       source/locale/tr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit a5735e93c872955e79febbde62515ed522c4840a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 22 00:06:27 2020 +1000

    L10n updates for: ta
    From translation svn revision: 56660
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    14      16      source/locale/ta/LC_MESSAGES/nvda.po
    3       3       user_docs/ta/userGuide.t2t
     2 files changed, 17 insertions(+), 19 deletions(-)

commit e6125b1333ff57d260a1a594001da0a362297f0c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 22 00:06:25 2020 +1000

    L10n updates for: sv
    From translation svn revision: 56660
    
    Authors:
    Daniel Johansson <daniel.johansson@coeptus.se>
    Niklas Johansson <sleeping.pillow@gmail.com>
    Karl-Otto Rosenqvist <Karl-otto@mawingu.se>
    
    Stats:
    1       1       source/locale/sv/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit aa7a0428b9848f66cffbab895a1280f82b8c7095
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 22 00:06:23 2020 +1000

    L10n updates for: sr
    From translation svn revision: 56660
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    1       1       source/locale/sr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 0c351d17895ca9c85a926acf4d058e67e39b30f5
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 22 00:06:22 2020 +1000

    L10n updates for: so
    From translation svn revision: 56660
    
    Authors:
    Othmanothman <othman82@hotmail.com>
    
    Stats:
    1       1       source/locale/so/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 74e2232c0921385366759a9cd952aa8ee59cf1a2
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 22 00:06:21 2020 +1000

    L10n updates for: sl
    From translation svn revision: 56660
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    1       1       source/locale/sl/LC_MESSAGES/nvda.po
    62      1       source/locale/sl/symbols.dic
     2 files changed, 63 insertions(+), 2 deletions(-)

commit 32f3f6c9f4d25d8a7ab28e9b7961d1b1b589e93c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 22 00:06:20 2020 +1000

    L10n updates for: sk
    From translation svn revision: 56660
    
    Authors:
    Ondrej Rosik <ondrej.rosik@gmail.com>
    Peter Vagner <peter.v@datagate.sk>
    Jan Kulik <jan.kulik.szsle@outlook.sk>
    
    Stats:
    1       1       source/locale/sk/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 168cd3f30dc6f13d61784505b401578fd0bd77a1
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 22 00:06:18 2020 +1000

    L10n updates for: ru
    From translation svn revision: 56660
    
    Authors:
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    1       1       source/locale/ru/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit ab9a2d88434862cf757c699b417a37775ca0f422
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 22 00:06:15 2020 +1000

    L10n updates for: ro
    From translation svn revision: 56660
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    George Antonio Andrei <george.andrei2002@gmail.com>
    
    Stats:
    1       1       source/locale/ro/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit d98a390343b0125cd2c7cb2e08d89d7865cc0934
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 22 00:06:13 2020 +1000

    L10n updates for: pt_PT
    From translation svn revision: 56660
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    1       1       source/locale/pt_PT/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit e9cb730f44067fc1c045eb7da1bb1233f5a3a1cd
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 22 00:06:11 2020 +1000

    L10n updates for: pt_BR
    From translation svn revision: 56660
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    1       1       source/locale/pt_BR/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit f962aada9e8f2700c911a87ab088a10a85946693
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 22 00:06:08 2020 +1000

    L10n updates for: pl
    From translation svn revision: 56660
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <hubmeyer1989@gmail.com>
    Arkadiusz Swietnicki <nuno69a@gmail.com>
    
    Stats:
    1       1       source/locale/pl/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 0ed50577a6f5330ea89b7b7f6869306359a557f3
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 22 00:06:06 2020 +1000

    L10n updates for: pa
    From translation svn revision: 56660
    
    Authors:
    Maheshinder Singh Khosla <mahesh.khosla@gmail.com>
    Dinesh Mittal <punjabimaster259@gmail.com>
    
    Stats:
    1       1       source/locale/pa/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 67d1c7a5dd59434e21691f89981fd074f584aa7c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 22 00:06:06 2020 +1000

    L10n updates for: nl
    From translation svn revision: 56660
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    1       1       source/locale/nl/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 637e947c8dec73889a49dc74728748ec4a4af691
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 22 00:06:04 2020 +1000

    L10n updates for: ne
    From translation svn revision: 56660
    
    Authors:
    Puskal Gautam <nvda.nepali@gmail.com>
    
    Stats:
    1       1       source/locale/ne/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 11a6ed072833184d2b757ab1f76aeb740cea9af1
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 22 00:06:02 2020 +1000

    L10n updates for: nb_NO
    From translation svn revision: 56660
    
    Authors:
    David Hole <balubathebrave@gmail.com>
    Bjornar Seppola <bjornar@seppola.net>
    
    Stats:
    1       1       source/locale/nb_NO/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 4129ce192e7d721090f8a4438a30755ce0077173
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 22 00:06:01 2020 +1000

    L10n updates for: my
    From translation svn revision: 56660
    
    Authors:
    Benedict La hkun <lkbenedict@gmail.com>
    
    Stats:
    1       1       source/locale/my/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 7d8b977bc9fb180cf958357042701a02d34de1e4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 22 00:06:00 2020 +1000

    L10n updates for: mn
    From translation svn revision: 56660
    
    Authors:
    Mongol NVDA-Translation <mongoliannvdatranslation@gmail.com>
    
    Stats:
    1       1       source/locale/mn/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit dd7652b9109f4b9238ce0dd00eb191c5e78e1095
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 22 00:05:58 2020 +1000

    L10n updates for: mk
    From translation svn revision: 56660
    
    Authors:
    zvonimir stanecic <9a5dsz@gozaltech.org>
    Kiko Lazarev <kristijan.lazarev@gmail.com>
    
    Stats:
    1       1       source/locale/mk/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 371e54e99a37a903b3928ba703cb743c4aad45dd
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 22 00:05:56 2020 +1000

    L10n updates for: lt
    From translation svn revision: 56660
    
    Authors:
    Paulius Leveris <paulius.leveris@gmail.com>
    Rimas Kudelis <rq@akl.lt>
    
    Stats:
    1       1       source/locale/lt/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 275db5f8c4b69863b0ce9f2b4f65f5b56d7cc204
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 22 00:05:55 2020 +1000

    L10n updates for: ko
    From translation svn revision: 56660
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    1       1       source/locale/ko/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 559c998d3a311f3ac9d8460a696af81ea14089ce
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 22 00:05:53 2020 +1000

    L10n updates for: kn
    From translation svn revision: 56660
    
    Authors:
    Siddalingeshwar Ingalagi <ingalagisiddu@gmail.com>
    
    Stats:
    1       1       source/locale/kn/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit bb6cb47832a8731db728f84b1b9f5908a0d009f8
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 22 00:05:52 2020 +1000

    L10n updates for: kmr
    From translation svn revision: 56660
    
    Authors:
    Imam Kahraman <imam.kahraman@googlemail.com>
    
    Stats:
    1       1       source/locale/kmr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 6da1330ec29843dda4ceb0c16861558e31a03b4f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 22 00:05:51 2020 +1000

    L10n updates for: ka
    From translation svn revision: 56660
    
    Authors:
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Goderdzi Gogoladze <goderdzigogoladze@gmail.com>
    
    Stats:
    1       1       source/locale/ka/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit f9920ddb975f912a842caeb2564678a66ba7c512
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 22 00:05:50 2020 +1000

    L10n updates for: ja
    From translation svn revision: 56660
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    1       1       source/locale/ja/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit df7fb2f8bbaca5a931b422d24cd3b6ec337866fb
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 22 00:05:48 2020 +1000

    L10n updates for: it
    From translation svn revision: 56660
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    1       1       source/locale/it/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 1d58966fc8f632bbc0611aa20a28c14e29df234f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 22 00:05:46 2020 +1000

    L10n updates for: is
    From translation svn revision: 56660
    
    Authors:
    Birkir R. Gunnarsson <birkir.gunnarsson@gmail.com>
    Hlynur Hreinsson <hm.hreinsson@gmail.com>
    
    Stats:
    1       1       source/locale/is/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit ac486d6fdea297c355985bc64cc1626833cd6d2c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 22 00:05:44 2020 +1000

    L10n updates for: hu
    From translation svn revision: 56660
    
    Authors:
    Aron OcsvAri <oaron@nvda.hu>
    
    Stats:
    1       1       source/locale/hu/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit e1122c64033dfc512e45fcd98b22fd277e3b5aee
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 22 00:05:42 2020 +1000

    L10n updates for: hr
    From translation svn revision: 56660
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Milo Ivir <mivir@milotype.de>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    1       1       source/locale/hr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 683acf67bc51208abf6e7ef01c174c142bba3dfb
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 22 00:05:41 2020 +1000

    L10n updates for: hi
    From translation svn revision: 56660
    
    Authors:
    dipendra.lists@gmail.com
    Doc Mehta <joyofinspiring@gmail.com>
    
    Stats:
    1       1       source/locale/hi/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 1344cb9a4fe4dd563b9930ee6eadc368d46b543c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 22 00:05:40 2020 +1000

    L10n updates for: he
    From translation svn revision: 56660
    
    Authors:
    Shmuel Naaman <shmuel_naaman@yahoo.com>
    Afik Sofir <afik.sofer@gmail.com>
    
    Stats:
    1       1       source/locale/he/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit d8e1b07f1a31088fbf504860e4ed8beefbc962aa
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 22 00:05:38 2020 +1000

    L10n updates for: gl
    From translation svn revision: 56660
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    Javier Curras <javier.curras@nvda.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/gl/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit d56f6339452125ae16cf4145dd9f2839f0742546
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 22 00:05:36 2020 +1000

    L10n updates for: ga
    From translation svn revision: 56660
    
    Authors:
    Cearbhall OMeadhra <cearbhall.omeadhra@blbc.ie>
    Ronan McGuirk <ronan.p.mcguirk@gmail.com>
    Kevin Scannell <kscanne@gmail.com>
    
    Stats:
    1       1       source/locale/ga/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit dd9eae2d9caf2f8040f1e26ec962117356eefda9
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 22 00:05:35 2020 +1000

    L10n updates for: fr
    From translation svn revision: 56660
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess.net>
    
    Stats:
    1       1       source/locale/fr/LC_MESSAGES/nvda.po
    47      1       source/locale/fr/symbols.dic
     2 files changed, 48 insertions(+), 2 deletions(-)

commit da0dc470f5afc067b3f5506babf84066bbc5a776
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 22 00:05:33 2020 +1000

    L10n updates for: fi
    From translation svn revision: 56660
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    1       1       source/locale/fi/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 2c95fbaab5e78a0d2d2da800bb09d2bbc8b77b9d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 22 00:05:31 2020 +1000

    L10n updates for: fa
    From translation svn revision: 56660
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    1       1       source/locale/fa/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 5ddd8a0219d769c260edfc84d18ffbbeb5ccfaee
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 22 00:05:28 2020 +1000

    L10n updates for: es
    From translation svn revision: 56660
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/es/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 6a73f9f4bba3e2e1ce87a81166ff7c12a7e33821
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 22 00:05:26 2020 +1000

    L10n updates for: es_CO
    From translation svn revision: 56660
    
    Authors:
    Jorge Zarache <reydelasmaquinas@outlook.com>
    Luis Carlos Gonzáles Moráles <luiscarlosgm@hotmail.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/es_CO/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit d81738838fc0fb42079fc0275ae60f461835bd49
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 22 00:05:24 2020 +1000

    L10n updates for: el
    From translation svn revision: 56660
    
    Authors:
    Irene Nakas <irnakas@gmail.com>
    Nikos Demetriou <nikosdemetriou@googlemail.com>
    access@e-rhetor.com
    
    Stats:
    1       1       source/locale/el/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 55ee64245164e2e773739b04ffb9613742d8079b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 22 00:05:22 2020 +1000

    L10n updates for: de
    From translation svn revision: 56660
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    1       1       source/locale/de/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 152996d74d6cfa2c9e3488d4e1d045f5c6f74654
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 22 00:05:20 2020 +1000

    L10n updates for: de_CH
    From translation svn revision: 56660
    
    Authors:
    Robert Hänggi <aarjay.robert@gmail.com>
    
    Stats:
    1       1       source/locale/de_CH/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 2d12d5df1935a8fcc215c5c2efcb237e9a5023f0
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 22 00:05:18 2020 +1000

    L10n updates for: da
    From translation svn revision: 56660
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    4       4       source/locale/da/LC_MESSAGES/nvda.po
     1 file changed, 4 insertions(+), 4 deletions(-)

commit 729308bf31677c45cca7e3e5410a0242cbc7c3b0
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 22 00:05:17 2020 +1000

    L10n updates for: cs
    From translation svn revision: 56660
    
    Authors:
    Martina Letochova <letochova@seznam.cz>
    
    Stats:
    1       1       source/locale/cs/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 9fe9a2f6067819a3ad29c91c9e3686a279d375fa
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 22 00:05:15 2020 +1000

    L10n updates for: ckb
    From translation svn revision: 56660
    
    Authors:
    Ali Ustek <aliustek@gmail.com>
    Patrick Galasso <Patrice.galasso@gmail.com>
    Jwanro Mustafa <jwanroabdula@hotmail.com>
    Kosrat D Ahmad <kosrat.d.ahmad@gmail.com>
    silva.hm88@gmail.com
    
    Stats:
    1       1       source/locale/ckb/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 6dca7fa0e94462f7853805078a20a5515f043af3
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 22 00:05:15 2020 +1000

    L10n updates for: ca
    From translation svn revision: 56660
    
    Authors:
    Ruben Alcaraz <ruben.hangar1.8@gmail.com>
    Dr. Mireia Ribera <mireia.ribera@gmail.com>
    Santi Moese <santispock@gmail.com>
    Marina Salse Rovira <salse@ub.edu>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/ca/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit ae1f8378cc6391d769aae231e98bcf263e1d700a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 22 00:05:13 2020 +1000

    L10n updates for: bg
    From translation svn revision: 56660
    
    Authors:
    Zahari Yurukov <zahari.yurukov@gmail.com>
    Kostadin Kolev <k_kolev1985@mail.bg>
    
    Stats:
    1       1       source/locale/bg/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 58ccd261573ff259dddbca0b90677b12f0aef7fd
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 22 00:05:09 2020 +1000

    L10n updates for: ar
    From translation svn revision: 56660
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Omar Alojaimi <amrahmad1995@gmail.com>
    
    Stats:
    1       1       source/locale/ar/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 2051e7bfd31d130eae38359ed11afa64ea7aec47
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 22 00:05:06 2020 +1000

    L10n updates for: an
    From translation svn revision: 56660
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/an/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 2534ff04574d13f3852bfeb92af42f99d8c5443b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 22 00:05:04 2020 +1000

    L10n updates for: am
    From translation svn revision: 56660
    
    Authors:
    KETEMA ZEREGAW <kzeregaw@msn.com>
    Dr. Tamru E. Belay <g.braille@sympatico.ca>
    
    Stats:
    1       1       source/locale/am/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 1c4519a669232bad96437af028fa042c20846e7b
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
Date:   Fri May 15 09:59:15 2020 +0200

    Add more symbols (PR #11110)
    
    * Add symbols from Orca
    
    Fixes #11105

commit ba50dd7643f25e43ae01f325594a75019ab01f42
Author: Quentin Christensen <quentin@nvaccess.org>
Date:   Fri May 15 17:49:40 2020 +1000

    UserGuide: Update Hims Braille Driver Link (PR #11163)

commit cfd69493c2a7bba2a832c110da67cec85f1b4a11
Author: Shubham Jain <30282054+ShubhamJain7@users.noreply.github.com>
Date:   Fri May 15 13:16:27 2020 +0530

    Readme: Updated the "Running the Source Code" section to make it clearer. (PR #11160)

commit 2dee4e9afae4bd969b86ef12c90e855c210f004f
Merge: 6a7fcadd7 6cf4d419e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 15 00:06:33 2020 +1000

    Update translations.
    
    From translation svn revision: 56620

commit 6cf4d419e4d245e2188bfff8217b59262b652df5
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 15 00:06:31 2020 +1000

    L10n updates for: zh_TW
    From translation svn revision: 56620
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    1       1       source/locale/zh_TW/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 2326e58acfae4b02b3b90634b5d0406cbab721a5
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 15 00:06:29 2020 +1000

    L10n updates for: zh_HK
    From translation svn revision: 56620
    
    Authors:
    Eric Yip <ericycy@gmail.com>
    
    Stats:
    1       1       source/locale/zh_HK/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit c7c670888b7a0179a326256a5ffd6e673251782f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 15 00:06:28 2020 +1000

    L10n updates for: zh_CN
    From translation svn revision: 56620
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    
    Stats:
    1       1       source/locale/zh_CN/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 9dafcd55f11cd09d35fcb20721459db1f4c133ac
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 15 00:06:26 2020 +1000

    L10n updates for: vi
    From translation svn revision: 56620
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    1       1       source/locale/vi/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit de5e336836334fbe9f07ae4cabe6f07166ffd8c1
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 15 00:06:24 2020 +1000

    L10n updates for: uk
    From translation svn revision: 56620
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    1       1       source/locale/uk/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 26e28cc758c3d3ce72822568ea6ef6aa39778bd4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 15 00:06:23 2020 +1000

    L10n updates for: tr
    From translation svn revision: 56620
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    1       1       source/locale/tr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 4f141a0da2b5b41c2262eb2cfc9bf25b064019d1
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 15 00:06:21 2020 +1000

    L10n updates for: ta
    From translation svn revision: 56620
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    795     528     source/locale/ta/LC_MESSAGES/nvda.po
     1 file changed, 795 insertions(+), 528 deletions(-)

commit 8d999a2efca9fcab54b7b7365c3f4014adca3705
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 15 00:06:19 2020 +1000

    L10n updates for: sv
    From translation svn revision: 56620
    
    Authors:
    Daniel Johansson <daniel.johansson@coeptus.se>
    Niklas Johansson <sleeping.pillow@gmail.com>
    Karl-Otto Rosenqvist <Karl-otto@mawingu.se>
    
    Stats:
    1       1       source/locale/sv/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 7a1b8ef5c5c56528dd59910851cbd8aac2d2d79f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 15 00:06:18 2020 +1000

    L10n updates for: sr
    From translation svn revision: 56620
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    1       1       source/locale/sr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit a8a9f1d066625fcbb51ecc7dbae7f0357f2c0522
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 15 00:06:16 2020 +1000

    L10n updates for: so
    From translation svn revision: 56620
    
    Authors:
    Othmanothman <othman82@hotmail.com>
    
    Stats:
    1       1       source/locale/so/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 33beb3cb64a866accd367e8807c52c2062a4c087
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 15 00:06:16 2020 +1000

    L10n updates for: sl
    From translation svn revision: 56620
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    1       1       source/locale/sl/LC_MESSAGES/nvda.po
    2       2       source/locale/sl/symbols.dic
     2 files changed, 3 insertions(+), 3 deletions(-)

commit 8c8608d3091488e0adaa527730ccdf3b28a2b044
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 15 00:06:14 2020 +1000

    L10n updates for: sk
    From translation svn revision: 56620
    
    Authors:
    Ondrej Rosik <ondrej.rosik@gmail.com>
    Peter Vagner <peter.v@datagate.sk>
    Jan Kulik <jan.kulik.szsle@outlook.sk>
    
    Stats:
    1       1       source/locale/sk/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 0e26b55fd15055b3e8ce4a99be543cbcfc3284b8
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 15 00:06:12 2020 +1000

    L10n updates for: ru
    From translation svn revision: 56620
    
    Authors:
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    1       1       source/locale/ru/LC_MESSAGES/nvda.po
    1       1       source/locale/ru/symbols.dic
     2 files changed, 2 insertions(+), 2 deletions(-)

commit 2cddb8f1346c60727ec21959d82ce33c9baa1769
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 15 00:06:09 2020 +1000

    L10n updates for: ro
    From translation svn revision: 56620
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    George Antonio Andrei <george.andrei2002@gmail.com>
    
    Stats:
    1       1       source/locale/ro/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit b46fb5f31bf7c842e8139916e0bfcdfa41ff315a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 15 00:06:08 2020 +1000

    L10n updates for: pt_PT
    From translation svn revision: 56620
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    3       3       source/locale/pt_PT/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 3 deletions(-)

commit d90db9658e963f454b8f8f00f5eca337875b83f5
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 15 00:06:06 2020 +1000

    L10n updates for: pt_BR
    From translation svn revision: 56620
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    1       1       source/locale/pt_BR/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit b5b23f4712e7d003cc21d2ede5b4f1d5193068ef
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 15 00:06:04 2020 +1000

    L10n updates for: pl
    From translation svn revision: 56620
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <hubmeyer1989@gmail.com>
    Arkadiusz Swietnicki <nuno69a@gmail.com>
    
    Stats:
    1       1       source/locale/pl/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 9082da6103a434e69f9b47a257fe5d9f69138e0f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 15 00:06:02 2020 +1000

    L10n updates for: pa
    From translation svn revision: 56620
    
    Authors:
    Maheshinder Singh Khosla <mahesh.khosla@gmail.com>
    Dinesh Mittal <punjabimaster259@gmail.com>
    
    Stats:
    361     242     source/locale/pa/LC_MESSAGES/nvda.po
     1 file changed, 361 insertions(+), 242 deletions(-)

commit 79d76ebe87b0d8af4c03a1cbc79de929cdf92fd4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 15 00:06:01 2020 +1000

    L10n updates for: nl
    From translation svn revision: 56620
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    1       1       source/locale/nl/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit db1a4458a62915a9cd2d096ca0086d6d93023366
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 15 00:05:59 2020 +1000

    L10n updates for: ne
    From translation svn revision: 56620
    
    Authors:
    Puskal Gautam <nvda.nepali@gmail.com>
    
    Stats:
    517     325     source/locale/ne/LC_MESSAGES/nvda.po
     1 file changed, 517 insertions(+), 325 deletions(-)

commit 37b6eff1385ecd64a5cc09c435d616d8b3b5f76b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 15 00:05:58 2020 +1000

    L10n updates for: nb_NO
    From translation svn revision: 56620
    
    Authors:
    David Hole <balubathebrave@gmail.com>
    Bjornar Seppola <bjornar@seppola.net>
    
    Stats:
    1       1       source/locale/nb_NO/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 0db74a09e9aed38c600e45cd613c3816ae5ef1f0
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 15 00:05:57 2020 +1000

    L10n updates for: my
    From translation svn revision: 56620
    
    Authors:
    Benedict La hkun <lkbenedict@gmail.com>
    
    Stats:
    573     242     source/locale/my/LC_MESSAGES/nvda.po
     1 file changed, 573 insertions(+), 242 deletions(-)

commit 1f207bd50890d106204b8a18a0a29470dbd3755c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 15 00:05:55 2020 +1000

    L10n updates for: mn
    From translation svn revision: 56620
    
    Authors:
    Mongol NVDA-Translation <mongoliannvdatranslation@gmail.com>
    
    Stats:
    1       1       source/locale/mn/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 6fb6dad0bc7d22d2a0aaea05c448febb17041034
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 15 00:05:53 2020 +1000

    L10n updates for: mk
    From translation svn revision: 56620
    
    Authors:
    zvonimir stanecic <9a5dsz@gozaltech.org>
    Kiko Lazarev <kristijan.lazarev@gmail.com>
    
    Stats:
    1       1       source/locale/mk/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 3df668514a4a446adb7b87da3eda8df8fcb919fa
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 15 00:05:52 2020 +1000

    L10n updates for: lt
    From translation svn revision: 56620
    
    Authors:
    Paulius Leveris <paulius.leveris@gmail.com>
    Rimas Kudelis <rq@akl.lt>
    
    Stats:
    1       1       source/locale/lt/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 243628a8807cd553c203f589bd7d238726b53bf0
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 15 00:05:51 2020 +1000

    L10n updates for: ko
    From translation svn revision: 56620
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    1       1       source/locale/ko/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit b656c5361b1189c100cd2b967e6c8396259e01bd
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 15 00:05:49 2020 +1000

    L10n updates for: kn
    From translation svn revision: 56620
    
    Authors:
    Siddalingeshwar Ingalagi <ingalagisiddu@gmail.com>
    
    Stats:
    587     449     source/locale/kn/LC_MESSAGES/nvda.po
     1 file changed, 587 insertions(+), 449 deletions(-)

commit 458a8cb0af1cc92650d810320421669dfff52fa4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 15 00:05:48 2020 +1000

    L10n updates for: kmr
    From translation svn revision: 56620
    
    Authors:
    Imam Kahraman <imam.kahraman@googlemail.com>
    
    Stats:
    1       1       source/locale/kmr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit e80d0efb5e20e9bf20aae7d0e056cc3207ae5daf
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 15 00:05:47 2020 +1000

    L10n updates for: ka
    From translation svn revision: 56620
    
    Authors:
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Goderdzi Gogoladze <goderdzigogoladze@gmail.com>
    
    Stats:
    1       1       source/locale/ka/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit b5c8c54ed3615fb4128990af33c788d2e99a8ec7
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 15 00:05:47 2020 +1000

    L10n updates for: ja
    From translation svn revision: 56620
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    1       1       source/locale/ja/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit c5d796702e87fe3563e29ce68f12c00c08aa12c4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 15 00:05:44 2020 +1000

    L10n updates for: it
    From translation svn revision: 56620
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    1       1       source/locale/it/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 8d65b21c9d3310dd6f0f6eaf12a2fb42038db1da
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 15 00:05:42 2020 +1000

    L10n updates for: is
    From translation svn revision: 56620
    
    Authors:
    Birkir R. Gunnarsson <birkir.gunnarsson@gmail.com>
    Hlynur Hreinsson <hm.hreinsson@gmail.com>
    
    Stats:
    1       1       source/locale/is/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit d593ab98a3df548501532b38f5aa1b66e4688c37
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 15 00:05:41 2020 +1000

    L10n updates for: hu
    From translation svn revision: 56620
    
    Authors:
    Aron OcsvAri <oaron@nvda.hu>
    
    Stats:
    1       1       source/locale/hu/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 6c468339363a5d4b964d7bf44bcff89ce8de7976
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 15 00:05:39 2020 +1000

    L10n updates for: hr
    From translation svn revision: 56620
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Milo Ivir <mivir@milotype.de>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    1       1       source/locale/hr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 69b2abdb2cac3241b69d0095dbcd1d8ec3f0f7c5
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 15 00:05:38 2020 +1000

    L10n updates for: hi
    From translation svn revision: 56620
    
    Authors:
    dipendra.lists@gmail.com
    Doc Mehta <joyofinspiring@gmail.com>
    
    Stats:
    605     406     source/locale/hi/LC_MESSAGES/nvda.po
     1 file changed, 605 insertions(+), 406 deletions(-)

commit 96de61fdfdd5c445e1b5a3cef34d5ea4b423565a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 15 00:05:37 2020 +1000

    L10n updates for: he
    From translation svn revision: 56620
    
    Authors:
    Shmuel Naaman <shmuel_naaman@yahoo.com>
    Afik Sofir <afik.sofer@gmail.com>
    
    Stats:
    1       1       source/locale/he/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 5f4247fd62e7c9ebf3300c5896a5384daa5ca6cf
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 15 00:05:35 2020 +1000

    L10n updates for: gl
    From translation svn revision: 56620
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    Javier Curras <javier.curras@nvda.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/gl/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 945ad8b70da0f14cfb5b06567eaeed0b068984e7
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 15 00:05:33 2020 +1000

    L10n updates for: ga
    From translation svn revision: 56620
    
    Authors:
    Cearbhall OMeadhra <cearbhall.omeadhra@blbc.ie>
    Ronan McGuirk <ronan.p.mcguirk@gmail.com>
    Kevin Scannell <kscanne@gmail.com>
    
    Stats:
    1       1       source/locale/ga/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit e1c364fec05f8f4f0d4df753a8d6b508ac660303
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 15 00:05:33 2020 +1000

    L10n updates for: fr
    From translation svn revision: 56620
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess.net>
    
    Stats:
    1       1       source/locale/fr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 95ecafd735efb44844b28c510152881db87f176a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 15 00:05:30 2020 +1000

    L10n updates for: fi
    From translation svn revision: 56620
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    1       1       source/locale/fi/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 701461ab78ccf18534e206792d7d4122614ba02e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 15 00:05:28 2020 +1000

    L10n updates for: fa
    From translation svn revision: 56620
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    624     526     source/locale/fa/LC_MESSAGES/nvda.po
     1 file changed, 624 insertions(+), 526 deletions(-)

commit 8ef1792c6dea6f71c5db98402158e8e5718e6ed9
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 15 00:05:26 2020 +1000

    L10n updates for: es
    From translation svn revision: 56620
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/es/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 84a141c00c2c3812128e30a6710d2c36f5891fe0
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 15 00:05:24 2020 +1000

    L10n updates for: es_CO
    From translation svn revision: 56620
    
    Authors:
    Jorge Zarache <reydelasmaquinas@outlook.com>
    Luis Carlos Gonzáles Moráles <luiscarlosgm@hotmail.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/es_CO/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 5c543dad07748bb0524cf9b0a6c16eafdf710e32
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 15 00:05:22 2020 +1000

    L10n updates for: el
    From translation svn revision: 56620
    
    Authors:
    Irene Nakas <irnakas@gmail.com>
    Nikos Demetriou <nikosdemetriou@googlemail.com>
    access@e-rhetor.com
    
    Stats:
    1       1       source/locale/el/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit dca5aa40a6183ede46b3b515c69318ec95e550d4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 15 00:05:21 2020 +1000

    L10n updates for: de
    From translation svn revision: 56620
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    16      16      source/locale/de/LC_MESSAGES/nvda.po
    8       8       user_docs/de/userGuide.t2t
     2 files changed, 24 insertions(+), 24 deletions(-)

commit d8457a13bca83e9074185fa1a14c5e8e1d298c0c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 15 00:05:18 2020 +1000

    L10n updates for: de_CH
    From translation svn revision: 56620
    
    Authors:
    Robert Hänggi <aarjay.robert@gmail.com>
    
    Stats:
    1       1       source/locale/de_CH/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 609dfb06a28c6d38b60c233ebbbacc0cf5bc9d00
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 15 00:05:17 2020 +1000

    L10n updates for: da
    From translation svn revision: 56620
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    1       1       source/locale/da/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 2a19d9ae7b55dd574c118e3cfe9f49a594d3e821
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 15 00:05:15 2020 +1000

    L10n updates for: cs
    From translation svn revision: 56620
    
    Authors:
    Martina Letochova <letochova@seznam.cz>
    
    Stats:
    1       1       source/locale/cs/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit e92da68c310ae59fb19217096b4880700a5f6e54
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 15 00:05:14 2020 +1000

    L10n updates for: ckb
    From translation svn revision: 56620
    
    Authors:
    Ali Ustek <aliustek@gmail.com>
    Patrick Galasso <Patrice.galasso@gmail.com>
    Jwanro Mustafa <jwanroabdula@hotmail.com>
    Kosrat D Ahmad <kosrat.d.ahmad@gmail.com>
    silva.hm88@gmail.com
    
    Stats:
    1       1       source/locale/ckb/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 3914276b8b895cb5140fd447a934bd633681af8d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 15 00:05:13 2020 +1000

    L10n updates for: ca
    From translation svn revision: 56620
    
    Authors:
    Ruben Alcaraz <ruben.hangar1.8@gmail.com>
    Dr. Mireia Ribera <mireia.ribera@gmail.com>
    Santi Moese <santispock@gmail.com>
    Marina Salse Rovira <salse@ub.edu>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/ca/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 4ab7f0ccd8b10afcc85849ae7a1d7e582d51a7dc
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 15 00:05:12 2020 +1000

    L10n updates for: bg
    From translation svn revision: 56620
    
    Authors:
    Zahari Yurukov <zahari.yurukov@gmail.com>
    Kostadin Kolev <k_kolev1985@mail.bg>
    
    Stats:
    1       1       source/locale/bg/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 8caba9f64aadca788449d76ed4154263c04ae113
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 15 00:05:08 2020 +1000

    L10n updates for: ar
    From translation svn revision: 56620
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Omar Alojaimi <amrahmad1995@gmail.com>
    
    Stats:
    484     417     source/locale/ar/LC_MESSAGES/nvda.po
     1 file changed, 484 insertions(+), 417 deletions(-)

commit 9f78f8993911a53c2d8a381f4cc37f660d26f30e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 15 00:05:05 2020 +1000

    L10n updates for: an
    From translation svn revision: 56620
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/an/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit e008cad9a8b0f4c23029bf067eb53683a4266e74
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 15 00:05:03 2020 +1000

    L10n updates for: am
    From translation svn revision: 56620
    
    Authors:
    KETEMA ZEREGAW <kzeregaw@msn.com>
    Dr. Tamru E. Belay <g.braille@sympatico.ca>
    
    Stats:
    1       1       source/locale/am/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit dba33431195aff1da62f008d23ad009e7003b748
Author: Bill Dengler <codeofdusk@gmail.com>
Date:   Wed May 13 01:34:29 2020 -0400

    Fix what's new. (#11159)

commit 0f54e8ce4d6e903572733361ba25fa63f0d8f7f5
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed May 13 13:32:00 2020 +1000

    Update changes file for pr #10918

commit 290a77a34396f7d241bc92ce743c55f27160bdbb
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Wed May 13 05:30:13 2020 +0200

    Fix DevExpress rich edit control causing errors (#10918)

commit cd610cc1ce5468f87eb3e8d0f1e62f7e78dc6c22
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed May 13 13:03:47 2020 +1000

    Update changes file for pr #11076

commit 85b3aa73f839ecf123fa85d4be2025a8f413ab66
Author: James Teh <jamie@jantrid.net>
Date:   Wed May 13 13:01:42 2020 +1000

    Cleanup: Stop listening for IAccessible reorder events. (#11076)
    
    The only place we used these was Skype classic, which is dead now and which NVDA already dropped support for.

commit ef2ca3c60eea7bd127b96731b522cf62f4d742e0
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed May 13 13:00:43 2020 +1000

    Update changes file for pr #11130

commit dae619382fda16a3a112b8c1f432b9e8be4d4631
Author: James Teh <jamie@jantrid.net>
Date:   Wed May 13 12:58:27 2020 +1000

    Browse mode  with auto focus focusable elements disabled: Fix activation of non-focusable objects and activation after using the tab key. (#11130)
    
    Previously, with auto focus focusable elements disabled, browse mode tracked the last focusable object and used this when activating at the caret.
    This meant that it wasn't possible to activate objects that weren't focusable.
    Furthermore, this wasn't updated correctly when using the tab key, which meant it wasn't possible to activate at the caret after tabbing.
    
    To fix this:
    
    1. Don't keep track of the last focusable object. Instead, _focusLastFocusableObject always uses the focusable ancestor of the caret.
    2. If _focusLastFocusableObject is requested to activate, it does so using the object at the caret, not the focusable ancestor. This handles the case where the object at the caret isn't focusable.
    3. _focusLastFocusableObject temporarily saves the object which is pending focus. This is because we might be about to activate or pass through a key which will cause this object to change (e.g. checing a check box). However, we won't actually get the focus event until after the change has occurred. The speech property cache on this saved object reflects the properties before the activation.
    4. When the focus event arrives, event_gainFocus uses this saved pending focus object to report the change (if any) that occurred.

commit f018d118a681360fe18326cfbf3b37a52b1b84fe
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Tue May 12 19:05:22 2020 -0700

    Foobar2000: restore track playback status by renaming status bar attribute (#11135)
    
    * appModules/foobar2000: update copyright header
    
    * appModules/foobar2000: rename statusBar to _statusBar to avoid conflict with AppModule._get_statusBar. Re #11082
    
    * appModules/foobar2000: lint

commit 12ff04ec24f3dfcb7b2eb6ca9f4b7fc32839966e
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Wed May 13 04:01:37 2020 +0200

    Fix typo (#11147)

commit a2844838882dc936a654f35ce7c8dbe70e581b65
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Wed May 13 03:59:19 2020 +0200

    Fix handling of an empty name when creating or renaming a configuration profile (#11146) (#11150)

commit c35becef345bb4ac7dc5633b0fe6e3aa173d5f66
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Mon May 11 16:02:44 2020 +0200

    Python 3: Favor `open` instead of `codecs.open`
    
    Re: https://github.com/nvaccess/nvda/pull/9844#discussion_r423025085

commit 2d3d4f7a51a627e172a9347775ed5e09377c974f
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Mon May 11 16:00:57 2020 +0200

    Follow-up of PR #10393: There is now a global log handler

commit a68ab57f6d5b3a4a03247e8ce4cf458ba5c04b61
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Mon May 11 15:22:26 2020 +0200

    Review action https://github.com/nvaccess/nvda/pull/9844#discussion_r423025437

commit 7732395f7350f57a8e20c00933f7c9fdc5c4deef
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Mon May 11 13:54:21 2020 +0200

    Fix translators comment

commit 25b87fd28296d8c4e09aa4edf8622b92114699c1
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Mon May 11 13:24:20 2020 +0200

    Split copyright notice header line instead of disabling E501
    
    Re: https://github.com/nvaccess/nvda/pull/9844#discussion_r422956971

commit 17e298ddeb2d345f2cd39a8e14c239e66e69e889
Merge: 71a532a13 9967903a5
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Mon May 11 13:19:14 2020 +0200

    Merge branch 'master' into i9280

commit 9967903a515e8087de889b8a8c67bdc31fbf3a4f
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Fri May 8 14:14:19 2020 +0200

    Attempt to cancel speech for expired focus events (PR #10885)
    
    This experimental feature (disabled by default) can be controlled with a flag in the advanced
    settings panel.
    
    In eventHandler.py keep track of objects that have had focus (on the object, using
    attribute 'wasGainFocusObj').
    This expands on the 'lastQueuedFocusObject' concept.
    
    A cancellable speech command is added to speech sequences that result
    from the focus change event.
    This command is able to check if the object once had focus
    ('wasGainFocusObj') and if it still has focus.
    Speech for objects that no longer have focus can be discarded,
    or cancelled if already with the synth.
    
    Then checking for cancellations is done both early in the speech pipeline (eventHandler) and late
    (speech.manager.speak)
    
    This requires some careful tracking and processing in speech manager.
    When nothing is with the synth, try pushing more.
    Otherwise, there are items in the queue but nothing being spoken.
    When cancelling synth clear tracking of "with synth"
    
    Use _removeCompletedFromQueue rather than _handleIndex
    _handleIndex may not actually call _removeCompleted. Cancelled speech does
    need it's callbacks called.
    
    For now CancellableSpeechCommand should be considered a private API
    
    Updates Changes file for PR #10885

commit 6a7fcadd7fdf8c5eb8a4ac9f103db8e7c395f6be
Merge: 14df15f11 36175f88b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 8 00:06:39 2020 +1000

    Update translations.
    
    From translation svn revision: 56557

commit 36175f88b67a047b9ea2aa35150552671e52b4ab
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 8 00:06:37 2020 +1000

    L10n updates for: zh_TW
    From translation svn revision: 56557
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    3       94      source/locale/zh_TW/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 94 deletions(-)

commit cd9a798d34e9f5eaf3901b1620449d65a5119a96
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 8 00:06:35 2020 +1000

    L10n updates for: zh_HK
    From translation svn revision: 56557
    
    Authors:
    Eric Yip <ericycy@gmail.com>
    
    Stats:
    3       84      source/locale/zh_HK/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 84 deletions(-)

commit a39bf2616dc44062246fc70c1b59889aa0d469e4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 8 00:06:34 2020 +1000

    L10n updates for: zh_CN
    From translation svn revision: 56557
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    
    Stats:
    3       97      source/locale/zh_CN/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 97 deletions(-)

commit 5053e528e83f36e1388802cd82e112d3a18d2c3f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 8 00:06:32 2020 +1000

    L10n updates for: vi
    From translation svn revision: 56557
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    3       98      source/locale/vi/LC_MESSAGES/nvda.po
    1       0       user_docs/vi/changes.t2t
     2 files changed, 4 insertions(+), 98 deletions(-)

commit 74d55695737e15900678a851e71ba82a4ac0b313
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 8 00:06:30 2020 +1000

    L10n updates for: uk
    From translation svn revision: 56557
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    3       92      source/locale/uk/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 92 deletions(-)

commit c82fddcbd0a42bbf1dc8b793f33ec09d86345fbc
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 8 00:06:28 2020 +1000

    L10n updates for: tr
    From translation svn revision: 56557
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    3       103     source/locale/tr/LC_MESSAGES/nvda.po
    1       0       user_docs/tr/changes.t2t
     2 files changed, 4 insertions(+), 103 deletions(-)

commit d0946ac44ff703fc2621449d099662f806d2915a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 8 00:06:26 2020 +1000

    L10n updates for: ta
    From translation svn revision: 56557
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    530     955     source/locale/ta/LC_MESSAGES/nvda.po
     1 file changed, 530 insertions(+), 955 deletions(-)

commit 9ce55d78734772f041bb7463cee2ac4f0e456ce1
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 8 00:06:24 2020 +1000

    L10n updates for: sv
    From translation svn revision: 56557
    
    Authors:
    Daniel Johansson <daniel.johansson@coeptus.se>
    Niklas Johansson <sleeping.pillow@gmail.com>
    Karl-Otto Rosenqvist <Karl-otto@mawingu.se>
    
    Stats:
    3       93      source/locale/sv/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 93 deletions(-)

commit 4c666d81f54f720ccb5463b6e4bffc88671e66fe
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 8 00:06:22 2020 +1000

    L10n updates for: sr
    From translation svn revision: 56557
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    2       94      source/locale/sr/LC_MESSAGES/nvda.po
    1       0       user_docs/sr/changes.t2t
     2 files changed, 3 insertions(+), 94 deletions(-)

commit 0a2d5470034c50a04165312e798bb38b3004ab3a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 8 00:06:21 2020 +1000

    L10n updates for: so
    From translation svn revision: 56557
    
    Authors:
    Othmanothman <othman82@hotmail.com>
    
    Stats:
    2622    1897    source/locale/so/LC_MESSAGES/nvda.po
     1 file changed, 2622 insertions(+), 1897 deletions(-)

commit 13f460e13315041b73090dd1ced7218ece8309b5
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 8 00:06:20 2020 +1000

    L10n updates for: sl
    From translation svn revision: 56557
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    172     94      source/locale/sl/LC_MESSAGES/nvda.po
     1 file changed, 172 insertions(+), 94 deletions(-)

commit 4d50f28cd7b8826508d814d3f214927d4c1888e1
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 8 00:06:19 2020 +1000

    L10n updates for: sk
    From translation svn revision: 56557
    
    Authors:
    Ondrej Rosik <ondrej.rosik@gmail.com>
    Peter Vagner <peter.v@datagate.sk>
    Jan Kulik <jan.kulik.szsle@outlook.sk>
    
    Stats:
    3       88      source/locale/sk/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 88 deletions(-)

commit d8474896d413a6a9677c3670c78c4c1d9b8599fc
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 8 00:06:17 2020 +1000

    L10n updates for: ru
    From translation svn revision: 56557
    
    Authors:
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    1       1       source/locale/ru/LC_MESSAGES/nvda.po
    1       0       user_docs/ru/changes.t2t
     2 files changed, 2 insertions(+), 1 deletion(-)

commit 73700a61683883757b9288eee58f551ae7437bec
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 8 00:06:14 2020 +1000

    L10n updates for: ro
    From translation svn revision: 56557
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    George Antonio Andrei <george.andrei2002@gmail.com>
    
    Stats:
    3       101     source/locale/ro/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 101 deletions(-)

commit b23d76a0066390d5a19c7e48b3459a3c3181c5fc
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 8 00:06:12 2020 +1000

    L10n updates for: pt_PT
    From translation svn revision: 56557
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    2       99      source/locale/pt_PT/LC_MESSAGES/nvda.po
     1 file changed, 2 insertions(+), 99 deletions(-)

commit 37c79e0d8f558141fa1ac4bcdc03bca1788a8253
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 8 00:06:10 2020 +1000

    L10n updates for: pt_BR
    From translation svn revision: 56557
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    4       101     source/locale/pt_BR/LC_MESSAGES/nvda.po
    1       0       user_docs/pt_BR/changes.t2t
     2 files changed, 5 insertions(+), 101 deletions(-)

commit 623043fa84ef413f74addcded11c65de0bceae5c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 8 00:06:07 2020 +1000

    L10n updates for: pl
    From translation svn revision: 56557
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <hubmeyer1989@gmail.com>
    Arkadiusz Swietnicki <nuno69a@gmail.com>
    
    Stats:
    3       99      source/locale/pl/LC_MESSAGES/nvda.po
    1       0       user_docs/pl/changes.t2t
     2 files changed, 4 insertions(+), 99 deletions(-)

commit e0e4ea05b5c43968745d89e8580f144ad671e407
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 8 00:06:05 2020 +1000

    L10n updates for: pa
    From translation svn revision: 56557
    
    Authors:
    Maheshinder Singh Khosla <mahesh.khosla@gmail.com>
    Dinesh Mittal <punjabimaster259@gmail.com>
    
    Stats:
    3165    2458    source/locale/pa/LC_MESSAGES/nvda.po
     1 file changed, 3165 insertions(+), 2458 deletions(-)

commit f945a9474040fc914faf548fc63a524c1d04ebcb
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 8 00:06:05 2020 +1000

    L10n updates for: nl
    From translation svn revision: 56557
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    2       96      source/locale/nl/LC_MESSAGES/nvda.po
     1 file changed, 2 insertions(+), 96 deletions(-)

commit 789aba0f14f3147c64e05f9fbc9a170b7f3d0186
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 8 00:06:03 2020 +1000

    L10n updates for: ne
    From translation svn revision: 56557
    
    Authors:
    Puskal Gautam <nvda.nepali@gmail.com>
    
    Stats:
    327     588     source/locale/ne/LC_MESSAGES/nvda.po
     1 file changed, 327 insertions(+), 588 deletions(-)

commit 950729b3f58e063efad15701b4fb737378969e3e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 8 00:06:02 2020 +1000

    L10n updates for: nb_NO
    From translation svn revision: 56557
    
    Authors:
    David Hole <balubathebrave@gmail.com>
    Bjornar Seppola <bjornar@seppola.net>
    
    Stats:
    3517    2769    source/locale/nb_NO/LC_MESSAGES/nvda.po
     1 file changed, 3517 insertions(+), 2769 deletions(-)

commit a6dde7ac5e9bd414f27556dffed436bc99ff5350
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 8 00:06:00 2020 +1000

    L10n updates for: my
    From translation svn revision: 56557
    
    Authors:
    Benedict La hkun <lkbenedict@gmail.com>
    
    Stats:
    3434    2713    source/locale/my/LC_MESSAGES/nvda.po
     1 file changed, 3434 insertions(+), 2713 deletions(-)

commit c6680d8396f2e2a5bd26c1f6e9bdbc75eb793310
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 8 00:05:59 2020 +1000

    L10n updates for: mn
    From translation svn revision: 56557
    
    Authors:
    Mongol NVDA-Translation <mongoliannvdatranslation@gmail.com>
    
    Stats:
    3       92      source/locale/mn/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 92 deletions(-)

commit 415f2f66c27db80b4114ac8813568736b5cf2832
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 8 00:05:57 2020 +1000

    L10n updates for: mk
    From translation svn revision: 56557
    
    Authors:
    zvonimir stanecic <9a5dsz@gozaltech.org>
    Kiko Lazarev <kristijan.lazarev@gmail.com>
    
    Stats:
    3       78      source/locale/mk/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 78 deletions(-)

commit 5f74a37ff0330e895cb08db370f0844f3cbb7942
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 8 00:05:55 2020 +1000

    L10n updates for: lt
    From translation svn revision: 56557
    
    Authors:
    Paulius Leveris <paulius.leveris@gmail.com>
    Rimas Kudelis <rq@akl.lt>
    
    Stats:
    3520    2771    source/locale/lt/LC_MESSAGES/nvda.po
     1 file changed, 3520 insertions(+), 2771 deletions(-)

commit a9efefa2da1b28e117a6a990a5952e00b2779fa2
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 8 00:05:54 2020 +1000

    L10n updates for: ko
    From translation svn revision: 56557
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    3       44      source/locale/ko/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 44 deletions(-)

commit 1242861e5066548436c4277ee1258c62b0145082
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 8 00:05:52 2020 +1000

    L10n updates for: kn
    From translation svn revision: 56557
    
    Authors:
    Siddalingeshwar Ingalagi <ingalagisiddu@gmail.com>
    
    Stats:
    3448    2721    source/locale/kn/LC_MESSAGES/nvda.po
     1 file changed, 3448 insertions(+), 2721 deletions(-)

commit ede72c3e5a3f0ec1d9f4273e29a6b63774516784
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 8 00:05:51 2020 +1000

    L10n updates for: kmr
    From translation svn revision: 56557
    
    Authors:
    Imam Kahraman <imam.kahraman@googlemail.com>
    
    Stats:
    2802    2061    source/locale/kmr/LC_MESSAGES/nvda.po
     1 file changed, 2802 insertions(+), 2061 deletions(-)

commit 395133940787bac4dadadbc768c9445a1ed7fc26
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 8 00:05:50 2020 +1000

    L10n updates for: ka
    From translation svn revision: 56557
    
    Authors:
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Goderdzi Gogoladze <goderdzigogoladze@gmail.com>
    
    Stats:
    3542    2795    source/locale/ka/LC_MESSAGES/nvda.po
     1 file changed, 3542 insertions(+), 2795 deletions(-)

commit b26ca590447a2419f5a9c2c87feb87f9d00116e3
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 8 00:05:50 2020 +1000

    L10n updates for: ja
    From translation svn revision: 56557
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    1       1       source/locale/ja/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 114fd89c69d0b9e557faf4bff179321d1009caf9
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 8 00:05:47 2020 +1000

    L10n updates for: it
    From translation svn revision: 56557
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    3       102     source/locale/it/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 102 deletions(-)

commit e9f350ab45eaaf9c8159b20cef8e89915076b0b1
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 8 00:05:45 2020 +1000

    L10n updates for: is
    From translation svn revision: 56557
    
    Authors:
    Birkir R. Gunnarsson <birkir.gunnarsson@gmail.com>
    Hlynur Hreinsson <hm.hreinsson@gmail.com>
    
    Stats:
    3452    2721    source/locale/is/LC_MESSAGES/nvda.po
     1 file changed, 3452 insertions(+), 2721 deletions(-)

commit 2d86320dba917356f30f64a05f0e8b9563ce77ae
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 8 00:05:44 2020 +1000

    L10n updates for: hu
    From translation svn revision: 56557
    
    Authors:
    Aron OcsvAri <oaron@nvda.hu>
    
    Stats:
    1       1       source/locale/hu/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 0634711fefe94990355fbe9c379e245a55a41750
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 8 00:05:42 2020 +1000

    L10n updates for: hr
    From translation svn revision: 56557
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Milo Ivir <mivir@milotype.de>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    1       1       source/locale/hr/LC_MESSAGES/nvda.po
    1       0       user_docs/hr/changes.t2t
     2 files changed, 2 insertions(+), 1 deletion(-)

commit 34b4d561c5854e79ce501ef976ea26684cbe0dc0
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 8 00:05:40 2020 +1000

    L10n updates for: hi
    From translation svn revision: 56557
    
    Authors:
    dipendra.lists@gmail.com
    Doc Mehta <joyofinspiring@gmail.com>
    
    Stats:
    408     681     source/locale/hi/LC_MESSAGES/nvda.po
     1 file changed, 408 insertions(+), 681 deletions(-)

commit ca8d43f8c5f328203b3c46a7c41628b347c393e4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 8 00:05:39 2020 +1000

    L10n updates for: he
    From translation svn revision: 56557
    
    Authors:
    Shmuel Naaman <shmuel_naaman@yahoo.com>
    Afik Sofir <afik.sofer@gmail.com>
    
    Stats:
    3       89      source/locale/he/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 89 deletions(-)

commit 7812a382cadd6a29833b25957133d51d35d64182
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 8 00:05:38 2020 +1000

    L10n updates for: gl
    From translation svn revision: 56557
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    Javier Curras <javier.curras@nvda.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    3       100     source/locale/gl/LC_MESSAGES/nvda.po
    1       0       user_docs/gl/changes.t2t
     2 files changed, 4 insertions(+), 100 deletions(-)

commit 45ba30280b83ada71737df781a008f77575a235e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 8 00:05:36 2020 +1000

    L10n updates for: ga
    From translation svn revision: 56557
    
    Authors:
    Cearbhall OMeadhra <cearbhall.omeadhra@blbc.ie>
    Ronan McGuirk <ronan.p.mcguirk@gmail.com>
    Kevin Scannell <kscanne@gmail.com>
    
    Stats:
    3       81      source/locale/ga/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 81 deletions(-)

commit 459a8b17cd99123b1c6a390dddaa4f6c24deccd9
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 8 00:05:35 2020 +1000

    L10n updates for: fr
    From translation svn revision: 56557
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess.net>
    
    Stats:
    3       12      source/locale/fr/LC_MESSAGES/nvda.po
    3       5       source/locale/fr/symbols.dic
    1       0       user_docs/fr/changes.t2t
     3 files changed, 7 insertions(+), 17 deletions(-)

commit 3a1692a5fa3497b118b12e7e695cf4db63791e12
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 8 00:05:32 2020 +1000

    L10n updates for: fi
    From translation svn revision: 56557
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    3       103     source/locale/fi/LC_MESSAGES/nvda.po
    1       0       user_docs/fi/changes.t2t
     2 files changed, 4 insertions(+), 103 deletions(-)

commit 918a774b201e86c2e232c6cd7fe323c45c27096c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 8 00:05:30 2020 +1000

    L10n updates for: fa
    From translation svn revision: 56557
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    528     712     source/locale/fa/LC_MESSAGES/nvda.po
    1       0       user_docs/fa/changes.t2t
    1       1       user_docs/fa/userGuide.t2t
     3 files changed, 530 insertions(+), 713 deletions(-)

commit 2d0fef492000c7dc4968515a3eba304ddd5bb5ec
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 8 00:05:28 2020 +1000

    L10n updates for: es
    From translation svn revision: 56557
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    3       101     source/locale/es/LC_MESSAGES/nvda.po
    1       0       user_docs/es/changes.t2t
     2 files changed, 4 insertions(+), 101 deletions(-)

commit 62329c1b0dbdd88f42a359e982acfdaca449d6f3
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 8 00:05:25 2020 +1000

    L10n updates for: es_CO
    From translation svn revision: 56557
    
    Authors:
    Jorge Zarache <reydelasmaquinas@outlook.com>
    Luis Carlos Gonzáles Moráles <luiscarlosgm@hotmail.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    3       76      source/locale/es_CO/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 76 deletions(-)

commit 922fd4944bfeaa6f2b51e7d2edd641d7f9228ec4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 8 00:05:23 2020 +1000

    L10n updates for: el
    From translation svn revision: 56557
    
    Authors:
    Irene Nakas <irnakas@gmail.com>
    Nikos Demetriou <nikosdemetriou@googlemail.com>
    access@e-rhetor.com
    
    Stats:
    3       79      source/locale/el/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 79 deletions(-)

commit 1066f798ecfe985a1da15f6b8c43ef6ffcb22200
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 8 00:05:22 2020 +1000

    L10n updates for: de
    From translation svn revision: 56557
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    84      179     source/locale/de/LC_MESSAGES/nvda.po
    1       0       user_docs/de/changes.t2t
     2 files changed, 85 insertions(+), 179 deletions(-)

commit f377c9169ac843041a8db3f52123ceea05c00109
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 8 00:05:19 2020 +1000

    L10n updates for: de_CH
    From translation svn revision: 56557
    
    Authors:
    Robert Hänggi <aarjay.robert@gmail.com>
    
    Stats:
    3563    2810    source/locale/de_CH/LC_MESSAGES/nvda.po
     1 file changed, 3563 insertions(+), 2810 deletions(-)

commit 9014dd64d59dc05e89fb089955001aad0d95d96b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 8 00:05:17 2020 +1000

    L10n updates for: da
    From translation svn revision: 56557
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    2       99      source/locale/da/LC_MESSAGES/nvda.po
     1 file changed, 2 insertions(+), 99 deletions(-)

commit 1809f34f414272d328d8bec8a7cf037e799fdbd1
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 8 00:05:16 2020 +1000

    L10n updates for: cs
    From translation svn revision: 56557
    
    Authors:
    Martina Letochova <letochova@seznam.cz>
    
    Stats:
    3       91      source/locale/cs/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 91 deletions(-)

commit 48aa3f07e081d5cd56c1b5e6bb6e5209bc7227a0
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 8 00:05:15 2020 +1000

    L10n updates for: ckb
    From translation svn revision: 56557
    
    Authors:
    Ali Ustek <aliustek@gmail.com>
    Patrick Galasso <Patrice.galasso@gmail.com>
    Jwanro Mustafa <jwanroabdula@hotmail.com>
    Kosrat D Ahmad <kosrat.d.ahmad@gmail.com>
    silva.hm88@gmail.com
    
    Stats:
    1       1       source/locale/ckb/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 5038b9b203308ed5b32fbc33f79a17149df48066
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 8 00:05:14 2020 +1000

    L10n updates for: ca
    From translation svn revision: 56557
    
    Authors:
    Ruben Alcaraz <ruben.hangar1.8@gmail.com>
    Dr. Mireia Ribera <mireia.ribera@gmail.com>
    Santi Moese <santispock@gmail.com>
    Marina Salse Rovira <salse@ub.edu>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    3509    2753    source/locale/ca/LC_MESSAGES/nvda.po
     1 file changed, 3509 insertions(+), 2753 deletions(-)

commit cd2f810b9765171d87be9b648d3d1e82d82b7999
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 8 00:05:12 2020 +1000

    L10n updates for: bg
    From translation svn revision: 56557
    
    Authors:
    Zahari Yurukov <zahari.yurukov@gmail.com>
    Kostadin Kolev <k_kolev1985@mail.bg>
    
    Stats:
    3       78      source/locale/bg/LC_MESSAGES/nvda.po
    11      11      user_docs/bg/changes.t2t
     2 files changed, 14 insertions(+), 89 deletions(-)

commit 2d0e8be2253cd6fabc11804650e0ded167c2fe5b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 8 00:05:09 2020 +1000

    L10n updates for: ar
    From translation svn revision: 56557
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Omar Alojaimi <amrahmad1995@gmail.com>
    
    Stats:
    419     580     source/locale/ar/LC_MESSAGES/nvda.po
     1 file changed, 419 insertions(+), 580 deletions(-)

commit 3070de7a4391f763b922f226d43d8a3ae5428069
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 8 00:05:05 2020 +1000

    L10n updates for: an
    From translation svn revision: 56557
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    2       96      source/locale/an/LC_MESSAGES/nvda.po
     1 file changed, 2 insertions(+), 96 deletions(-)

commit ff0bc912e5a9ec8abddaca4c285655ec4839761d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 8 00:05:03 2020 +1000

    L10n updates for: am
    From translation svn revision: 56557
    
    Authors:
    KETEMA ZEREGAW <kzeregaw@msn.com>
    Dr. Tamru E. Belay <g.braille@sympatico.ca>
    
    Stats:
    3152    2437    source/locale/am/LC_MESSAGES/nvda.po
     1 file changed, 3152 insertions(+), 2437 deletions(-)

commit 1cf36fbe2e0a7b40cccea707914fe575b92c54b6
Merge: 3c5bc1edc 14df15f11
Author: Reef Turner <reef@nvaccess.org>
Date:   Thu May 7 12:42:13 2020 +0200

    Merge remote-tracking branch 'origin/beta'

commit 3c5bc1edce8e769b950c904c7a4d4280f7a60127
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Thu May 7 08:58:12 2020 +0200

    Allow display to turn off for power saving during say all (PR #11118)
    
    During say-all, the screen is no longer kept on. For non-visual use, this seems unnecessary.
    Some users may wish to have their screen turn off for power saving reasons.

commit 1b4252c13dc6c989822098fb408cf6ddfcf2130e
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Thu May 7 08:52:35 2020 +0200

    Developer Guide: additions to the initial namespace of the Python Console (PR #11090)
    
    A few new entries were missing as of PR #9064 and PR #9790

commit 4e580290e8d9ace0631bd9911066274aa74aada0
Author: Shubham Jain <30282054+ShubhamJain7@users.noreply.github.com>
Date:   Wed May 6 18:35:47 2020 +0530

    Userdocs: clarify whole word radio for speech dictionaries (PR #11119)
    
    Fixes issue #10959

commit cdd37c72e8bf6201418cbbb3f5dc6f1aabfaa11e
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Mon May 4 20:20:44 2020 +0200

    Set Flake8 encoding to UTF-8 (PR #11108)
    
    Follow up #11081
    Set Flake8 encoding to UTF-8

commit aa547844e40c2afd70e45decbbf3a459a9cf24aa
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Mon May 4 17:29:06 2020 +0200

    Fix missing translator comment warning for split translatable strings (PR #11093)
    
    Fixes #11071
    
    - Ensured `checkPot` does not mistake a lengthy `msgid` with the POT file header
    - Added 5 additional known messages without translators comment with reference to their location in the source. Created Issue #11104 to fix these.
    - Added 1 missing translators comment
    - Linted 25 existing translators comment so that they now properly land in the POT file

commit 967679745d8e2145906dbe133da9e8c0b987e9af
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Mon May 4 17:07:07 2020 +0200

    Set `xgettext` encoding to UTF-8  (PR #11081)
    
    Fixes: #11080
    
    Update xgettext integration to allow non-ASCII characters found in author names in copyright headers without using:
    utf coding header: "# -*- coding: utf-8 -*-"

commit faf43d11d9afbdc7aec37a0fec6848aec2196cc1
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Mon May 4 10:44:38 2020 +0200

    Fix broken link to the wiki regarding translating NVDA (PR #11091)

commit 6b970b8e44714b1cbf75ba25b2bd66ed378d3daf
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Mon May 4 09:29:13 2020 +0200

    Fix style of translatable string split across multiple lines. (PR #11092)
    
    Fix-up of PR #10941
    
    Finding the appropriate code style for a lengthy translatable string along with its required translators comment might not be obvious, even for some of our most seasoned contributors.
    This problem has led to discussion about various attempts in PR #10941 and the raise of issue #11071.
    PR #10941 finally resigned by disabling line length checks on a line of the patch.
    
    However, as pointed out in a comment on #11071, a styling that complies both with line length and translators comment could finally be found.

commit f468c7601e0b1083d0d3a4241bce79c45e2a7e09
Author: Bill Dengler <codeofdusk@gmail.com>
Date:   Mon May 4 03:12:41 2020 -0400

     Fix Powerpoint: reportSuperscriptAndSubscript error (PR #11095)
    
    In the Powerpoint appModule, the incorrect config key was used. Looking up reportSuperscriptAndSubscript (instead of the correct reportSuperscriptsAndSubscripts) resulted in an error, making certain functions unusable.
    
    Config option introduced in: "Separate the reporting of superscripts and subscripts from the report font attributes setting #10919"
    Regression introduced with: #10932
    
    Fixes #11094.

commit 944106859ffaf893bf9d9b00e0aaa8eef81267aa
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Mon May 4 09:01:22 2020 +0200

    Flake8: Check more python based files. (PR #11099)
    
    Also check `*.pyw`, `*sconscript` and `sconstruct`
    
    Fixes issue #11097

commit 139aa7347147cf75ae356d93e2ed7730a1e293e9
Merge: a3eedeefe 6a573cd9f
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Mon May 4 01:02:23 2020 +0200

    Merge branch 'master' into i9910-browseableMessage

commit 71a532a1345bab90654867463fc2e776ca382099
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Mon May 4 00:58:30 2020 +0200

    Fix linting issues

commit 1d416933f714848159b8d5b41e732d3ff75efe82
Merge: b5ea809ae 6a573cd9f
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Mon May 4 00:26:40 2020 +0200

    Merge branch 'master' into i9280

commit 6a573cd9f93dd9d79535988298e5777b154d602c
Author: Reef Turner <reef@nvaccess.org>
Date:   Fri May 1 14:29:15 2020 +0200

    Update changes file for PR #11075

commit 77e7cc5c43a99be07fe55c136b0336d84d655f16
Author: James Teh <jamie@jantrid.net>
Date:   Fri May 1 22:26:52 2020 +1000

    Gecko vbuf backend: Treat 'display: inline-flex' as inline, not block (PR #11075)
    
    In browse mode in Mozilla Firefox and Google Chrome, text no longer incorrectly appears on a separate line when web content uses CSS display: inline-flex.

commit a79c9f0e681fcc13d02f0babf13d58bea85efb4b
Author: Reef Turner <reef@nvaccess.org>
Date:   Fri May 1 13:47:58 2020 +0200

    Update changes file for PR #10981

commit 01bcd5f264d5f9f88ed298302d38c39a3d6dfed9
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Fri May 1 13:42:50 2020 +0200

    Fix reporting in MS Office ribbons, status bars and context menus for Office 2013 and prior (PR #10981)
    
    Now in Office 2013 and older:
    
    - Ribbons are announced when focus moves to them for the first time.  (#4207)
    - Context menu items are once again reported properly. (#9252)
    - Ribbon sections are consistently announced when navigating with Control+arrows. (#7067)
    
    IAccessible is used for these controls for Office <=2013.
    To do that it has been necessary to workaround some IAccessible specific issues:
    - Status bar is not exposed as such #4257
    - Ribbon sections do not have proper role.
    
    In both cases AccValue contains non localized description of the control which made it possible to workaround them.

commit f436d4d7f34fdbb73bb8a0741ce26a4d3806d68d
Author: James Teh <jamie@jantrid.net>
Date:   Fri May 1 02:00:43 2020 +1000

    EventHandler: Drop 'hide' events. (PR #11072)
    
    Aside from IAccessible caret support (which is handled within IAccessibleHandler), NVDA doesn't use hide events anywhere.
    Some web apps, such as Twitter, fire quite a few of these.
    Processing them is not only pointless, but it also degrades performance.

commit 627cb32e8537e2988266a95c9fa187f59599c90d
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Thu Apr 30 17:51:09 2020 +0200

    Update misc-deps to fix BrlApi 0.8 update (PR #11074)
    
    - Fixes missing BrlApi DLL
    - Adds a BrlApi unit test

commit 265bc9755d486beffac2eb38d3f610b2177525ce
Author: Adriani90 <adriani.botez@googlemail.com>
Date:   Thu Apr 30 17:23:18 2020 +0200

    Userguide fixes(PR #11067)
    
    - Added description for MS Excel comment editing dialog (issue #7888)
    - caret movement when copying from start marker with nvda+f10 (issue #7394)
    - aligned license description with the license document (issue #6315)

commit 14df15f11166438f2688fc2216bf498090cf0954
Merge: c515e38fd a1471fd3c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 1 00:06:20 2020 +1000

    Update translations.
    
    From translation svn revision: 56461

commit a1471fd3caf61610bb43d767d27a4a9542f9702b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 1 00:06:20 2020 +1000

    L10n updates for: zh_TW
    From translation svn revision: 56461
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    39      38      source/locale/zh_TW/characterDescriptions.dic
     1 file changed, 39 insertions(+), 38 deletions(-)

commit d17109526282c99031f12d6ddc3e54187d214016
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 1 00:06:06 2020 +1000

    L10n updates for: sl
    From translation svn revision: 56461
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    72      5       source/locale/sl/symbols.dic
     1 file changed, 72 insertions(+), 5 deletions(-)

commit 9f59cda7687aa6eec50910130b5426155ae6c956
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri May 1 00:05:18 2020 +1000

    L10n updates for: de
    From translation svn revision: 56461
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    1       1       source/locale/de/LC_MESSAGES/nvda.po
    40      40      user_docs/de/changes.t2t
     2 files changed, 41 insertions(+), 41 deletions(-)

commit 627369e67d2bf067ed6a28e6a8fd51973795733d
Author: Reef Turner <reef@nvaccess.org>
Date:   Thu Apr 30 15:58:30 2020 +0200

    Update changes file for PR #10921

commit e095f81183f3d904b56060c619a0e0966c8b5c9c
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Thu Apr 30 15:56:11 2020 +0200

    Revert "appModule for VS Code (PR #9828)" (PR #10921)
    
    This reverts commit 480950f8bc8c195b77b014d4bc5723ea5a907129.
    
    Removes the no-longer needed code.py appmodule.
    Follow up of #10903 (removed the no-longer needed code - insiders.py appmodule)
    Reverts #9828 (creating the code.py appmodule)
    
    Changes to VS Code fixing #10888 have now made it stable. Therefore, remove the appModule which worked around these issues.
    Note: Users can continue to force disable browse mode by default using a profile automatically triggered when entering vsCode that unchecks "Enable browse mode on page load" on the browse mode settings panel.

commit 83e32ba633510295ebdf326101ac1395a8a1ba1c
Author: Reef Turner <reef@nvaccess.org>
Date:   Thu Apr 30 15:40:14 2020 +0200

    Update changes file for PR #9792

commit bdfa010f2a46fa775693d265ecfc5657aa440743
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Thu Apr 30 15:33:39 2020 +0200

    AppModule: Customize retrieval of status bar object or TextInfo (PR #9792)
    
    Add at AppModule level:
    -  _get_statusBar : For use by api.getStatusBar to retrieve a custom object
    -  _get_statusBarTextInfo : For use by GlobalCommands.script_reportStatusLine when resorting to flat review.
    
    Fixes #2125
    Fixes #4640

commit 5ee03c7ed575d5d0f03ab38c36b36ddf53c22e3f
Author: Bill Dengler <codeofdusk@gmail.com>
Date:   Thu Apr 30 07:02:54 2020 -0400

    Adjust wording of sign-in text (PR #10941)

commit b5ea809ae25429b737bd4d6893f6b0152d7f1d30
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Thu Apr 30 12:25:38 2020 +0200

    Fix linting issues

commit 718ac71e557943211527898e482f2fbbfc7a9a3b
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Thu Apr 30 11:26:37 2020 +0200

    Remove left-over merge conflict marker

commit dc23104c7f3de40c5535cbebec0ef85037c7d3c6
Merge: ca883da8d 0be9ee0e9
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Thu Apr 30 10:56:01 2020 +0200

    Merge branch 'master' into i9280

commit c515e38fdf8f21b947a3ed6e64a5b7ae6dcd5220
Merge: 1abfc380c a7ed839b5
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Apr 29 23:40:01 2020 +1000

    Update translations.
    
    From translation svn revision: 56453

commit a7ed839b51bf886f70406fefc79121b4cbca0157
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Apr 29 23:39:48 2020 +1000

    L10n updates for: ta
    From translation svn revision: 56453
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    2       2       source/locale/ta/LC_MESSAGES/nvda.po
     1 file changed, 2 insertions(+), 2 deletions(-)

commit 68fd7991c2290f42097d5639b56d8251e0483d4a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Apr 29 23:39:42 2020 +1000

    L10n updates for: sl
    From translation svn revision: 56453
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    8       176     source/locale/sl/LC_MESSAGES/nvda.po
    17      12      source/locale/sl/symbols.dic
     2 files changed, 25 insertions(+), 188 deletions(-)

commit 7ca1b0d124bedd8eb874de26c201561a180778a6
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Apr 29 23:39:40 2020 +1000

    L10n updates for: sk
    From translation svn revision: 56453
    
    Authors:
    Ondrej Rosik <ondrej.rosik@gmail.com>
    Peter Vagner <peter.v@datagate.sk>
    Jan Kulik <jan.kulik.szsle@outlook.sk>
    
    Stats:
    2       2       source/locale/sk/symbols.dic
     1 file changed, 2 insertions(+), 2 deletions(-)

commit 49a335ad4833d458f17fd24b0b0cff6c29e69ad6
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Apr 29 23:38:48 2020 +1000

    L10n updates for: fr
    From translation svn revision: 56453
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess.net>
    
    Stats:
    4       0       source/locale/fr/gestures.ini
     1 file changed, 4 insertions(+)

commit 0be9ee0e97bceb5e3d41bcf11103431bcd8f6950
Author: Reef Turner <reef@nvaccess.org>
Date:   Wed Apr 29 15:08:15 2020 +0200

    Update changes file for PR #11065

commit 939217da5b2fda0a8107c4d13121594997828ded
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Wed Apr 29 15:05:39 2020 +0200

    Update BrlApi to 0.8 (BRLTTY 6.1) (PR #11065)

commit 96cf444bee464b7e7702ba68f25c73643d61a60e
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue Apr 28 14:01:59 2020 +0200

    Temporarily disable the Chrome system tests. (PR #11054)
    
    See issue #11053
    `excluded_from_build` tag on tests is used to disable them from automated builds.
    Appveyor and scons now use a common args file when running the system tests.
    Path to system tests has been adjusted to remove the unnecessary 'robot' prefix in test results.
    `Force Tags` is used in robot file settings, otherwise specifying tags on the test overrides the default.
    
    Readme files have been clarified.

commit ba46efdee92b3cb3cccdb0c4de625a6aa0f7d462
Merge: 572cfa9c8 1abfc380c
Author: Reef Turner <reef@nvaccess.org>
Date:   Tue Apr 28 13:35:50 2020 +0200

    Merge remote-tracking branch 'origin/beta'

commit 572cfa9c8dd1a3389f45480a94b0ec83d3226d01
Merge: a335297e3 2bffb250b
Author: Reef Turner <reef@nvaccess.org>
Date:   Tue Apr 28 13:30:43 2020 +0200

    Refactor for cancellable speech (PR #11049)
    
    Merge remote-tracking branch 'origin/pr/11049'
    
    PR #10885 introduces a way to cancel speech due to focus events that are no
    longer valid. However, the refactoring commits made the diff hard to view.
    
    Some static analysis tools did not understand several classes due to their order
    in the file. This change re-orders those classes so they are defined before
    they are used. It also makes that code pass the flake8 checks. The move
    and restyling are done in separate commits to make revisiting the
    changes easier.
    Turning off white space in the diff will also make this easier.
    
    - Speech manager changes:
      - Explicit imports
      - More typing information added to function definitions.
    - synthDriverHandler changes:
      - The order of classes. Now defined before they are used.

commit 1abfc380cd9d692748f8c8d5e036cd250660b8b3
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Tue Apr 28 04:22:24 2020 -0700

    Speech generator refactor: Fix import order (PR #11055)
    
    Rather than importing '_flattenNestedSequences' from speech module, use this attribute from speech module. This resolves a situation where NVDA might do something (such as uninstlaling add-ons) when it isn't fully initialized, as evidenced by attribute error in speech dict handler.
    
    Fixes #11052

commit a335297e39a16c171a65b35f1d99fe8629e8e272
Merge: 16ec967e3 0235dfafa
Author: Reef Turner <reef@nvaccess.org>
Date:   Fri Apr 24 11:27:41 2020 +0200

    Merge remote-tracking branch 'origin/beta'

commit 0235dfafa39045ebf3f953fdbe40e218f22f04a0
Author: Reef Turner <reef@nvaccess.org>
Date:   Fri Apr 24 11:26:30 2020 +0200

    Update changes file for PR #11050

commit 6b04aff824f2222c1cd0c4e679df436f721b1aa0
Author: Adam Gashlin <agashlin@mozilla.com>
Date:   Fri Apr 24 02:24:05 2020 -0700

    Wrap position in case it was a tuple (PR #11050)
    
    This fixes #10736, errors in mousemove events over some MSHTML elements
    (such as buttons).

commit 3dd52e542767d48918b6b553bc0527482dbe76d7
Merge: 78b85fa77 232ff6a90
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 24 10:08:20 2020 +1000

    Update translations.
    
    From translation svn revision: 56433

commit 232ff6a907816673ba5142f0d1fd22561fafbb21
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 24 10:08:18 2020 +1000

    L10n updates for: zh_TW
    From translation svn revision: 56433
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    1       1       source/locale/zh_TW/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit abf5b68c0b94bd6c426c4f4d00a2bb6d6d46ca7e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 24 10:08:16 2020 +1000

    L10n updates for: zh_HK
    From translation svn revision: 56433
    
    Authors:
    Eric Yip <ericycy@gmail.com>
    
    Stats:
    1       1       source/locale/zh_HK/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 86019e76eaa53360a99ce3a282a0084294a6f3a8
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 24 10:08:15 2020 +1000

    L10n updates for: zh_CN
    From translation svn revision: 56433
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    
    Stats:
    1       1       source/locale/zh_CN/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 91c13cf0d5f6de56dc7d3ad7006f620dfedf1966
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 24 10:08:13 2020 +1000

    L10n updates for: vi
    From translation svn revision: 56433
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    1       1       source/locale/vi/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 5e7815de0a528199b2086e727ebc9ae42e93931d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 24 10:08:11 2020 +1000

    L10n updates for: uk
    From translation svn revision: 56433
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    12      15      source/locale/uk/LC_MESSAGES/nvda.po
     1 file changed, 12 insertions(+), 15 deletions(-)

commit 72923d242d4bc8185af0882b367acce626c37926
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 24 10:08:09 2020 +1000

    L10n updates for: tr
    From translation svn revision: 56433
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    1       1       source/locale/tr/LC_MESSAGES/nvda.po
    7       7       user_docs/tr/userGuide.t2t
     2 files changed, 8 insertions(+), 8 deletions(-)

commit 99c1b85bcbc2c4bd7f4fbd0b4459dc9113e71354
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 24 10:08:07 2020 +1000

    L10n updates for: ta
    From translation svn revision: 56433
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    1       1       source/locale/ta/LC_MESSAGES/nvda.po
    1       1       user_docs/ta/userGuide.t2t
     2 files changed, 2 insertions(+), 2 deletions(-)

commit e7615b75009bda01889da23a9b1890e2b257b7af
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 24 10:08:05 2020 +1000

    L10n updates for: sv
    From translation svn revision: 56433
    
    Authors:
    Daniel Johansson <daniel.johansson@coeptus.se>
    Niklas Johansson <sleeping.pillow@gmail.com>
    Karl-Otto Rosenqvist <Karl-otto@mawingu.se>
    
    Stats:
    1       1       source/locale/sv/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 89afc510c120a9533a29dd791a725fdc4502f4f8
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 24 10:08:04 2020 +1000

    L10n updates for: sr
    From translation svn revision: 56433
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    1       1       source/locale/sr/LC_MESSAGES/nvda.po
    1       1       user_docs/sr/userGuide.t2t
     2 files changed, 2 insertions(+), 2 deletions(-)

commit e5a803e1067d57228de62407b6eeec8e4883b4a2
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 24 10:08:02 2020 +1000

    L10n updates for: sl
    From translation svn revision: 56433
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    1       1       source/locale/sl/LC_MESSAGES/nvda.po
    1       1       user_docs/sl/userGuide.t2t
     2 files changed, 2 insertions(+), 2 deletions(-)

commit c8d1fcc10720f51cc7babc10de9e8a4a0f6cdfdf
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 24 10:08:01 2020 +1000

    L10n updates for: sk
    From translation svn revision: 56433
    
    Authors:
    Ondrej Rosik <ondrej.rosik@gmail.com>
    Peter Vagner <peter.v@datagate.sk>
    Jan Kulik <jan.kulik.szsle@outlook.sk>
    
    Stats:
    1       1       source/locale/sk/LC_MESSAGES/nvda.po
    1       1       user_docs/sk/userGuide.t2t
     2 files changed, 2 insertions(+), 2 deletions(-)

commit 0790bfc285a8ad7fdae2a41c5b46538b3432dc69
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 24 10:07:59 2020 +1000

    L10n updates for: ru
    From translation svn revision: 56433
    
    Authors:
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    1       1       source/locale/ru/LC_MESSAGES/nvda.po
    43      43      user_docs/ru/userGuide.t2t
     2 files changed, 44 insertions(+), 44 deletions(-)

commit ae046f2238441f4c905ac8d46896bbcadd630c6e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 24 10:07:56 2020 +1000

    L10n updates for: ro
    From translation svn revision: 56433
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    George Antonio Andrei <george.andrei2002@gmail.com>
    
    Stats:
    1       1       source/locale/ro/LC_MESSAGES/nvda.po
    1       1       user_docs/ro/userGuide.t2t
     2 files changed, 2 insertions(+), 2 deletions(-)

commit 1b3f9de31fbb1df424edb73822a662ff709aa31d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 24 10:07:54 2020 +1000

    L10n updates for: pt_PT
    From translation svn revision: 56433
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    1       1       source/locale/pt_PT/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit be6bf10541282f80da9a02b8245c225ada6338a2
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 24 10:07:52 2020 +1000

    L10n updates for: pt_BR
    From translation svn revision: 56433
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    1       1       source/locale/pt_BR/LC_MESSAGES/nvda.po
    1       1       user_docs/pt_BR/userGuide.t2t
     2 files changed, 2 insertions(+), 2 deletions(-)

commit ad7753608397b580b58391e0d3b64de7a13d35c6
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 24 10:07:50 2020 +1000

    L10n updates for: pl
    From translation svn revision: 56433
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <hubmeyer1989@gmail.com>
    Arkadiusz Swietnicki <nuno69a@gmail.com>
    
    Stats:
    13      13      source/locale/pl/LC_MESSAGES/nvda.po
    4       4       user_docs/pl/changes.t2t
    4       4       user_docs/pl/userGuide.t2t
     3 files changed, 21 insertions(+), 21 deletions(-)

commit e4c5e4fcced7a748143a78bc3d3eb4abd475f5e5
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 24 10:07:48 2020 +1000

    L10n updates for: nl
    From translation svn revision: 56433
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    1       1       source/locale/nl/LC_MESSAGES/nvda.po
    1       1       user_docs/nl/userGuide.t2t
     2 files changed, 2 insertions(+), 2 deletions(-)

commit eb5b37880c742b0bae586e25d85d9ddee903ecc9
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 24 10:07:46 2020 +1000

    L10n updates for: ne
    From translation svn revision: 56433
    
    Authors:
    Puskal Gautam <nvda.nepali@gmail.com>
    
    Stats:
    1       1       source/locale/ne/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit df19379c8aed6cef828add6327471895ea03116f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 24 10:07:43 2020 +1000

    L10n updates for: mn
    From translation svn revision: 56433
    
    Authors:
    Mongol NVDA-Translation <mongoliannvdatranslation@gmail.com>
    
    Stats:
    1       1       source/locale/mn/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit afb61871668f11b848a63df186e478ce5a9de599
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 24 10:07:41 2020 +1000

    L10n updates for: mk
    From translation svn revision: 56433
    
    Authors:
    zvonimir stanecic <9a5dsz@gozaltech.org>
    Kiko Lazarev <kristijan.lazarev@gmail.com>
    
    Stats:
    1       1       source/locale/mk/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 9c935d40171a4c0caac4654609b5977c3abb87d3
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 24 10:07:39 2020 +1000

    L10n updates for: ko
    From translation svn revision: 56433
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    1       1       source/locale/ko/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 01696daed4e4c9358419147ec6228aecb7ecb3c6
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 24 10:07:36 2020 +1000

    L10n updates for: ja
    From translation svn revision: 56433
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    1       1       source/locale/ja/LC_MESSAGES/nvda.po
    3       3       user_docs/ja/userGuide.t2t
     2 files changed, 4 insertions(+), 4 deletions(-)

commit 68f3ebe788e08ce955cd358e548d82c647ba3f51
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 24 10:07:33 2020 +1000

    L10n updates for: it
    From translation svn revision: 56433
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    4       6       source/locale/it/LC_MESSAGES/nvda.po
     1 file changed, 4 insertions(+), 6 deletions(-)

commit aa5f157c5529fdbc0e4ab86119c1043fc7b96ead
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 24 10:07:31 2020 +1000

    L10n updates for: hu
    From translation svn revision: 56433
    
    Authors:
    Aron OcsvAri <oaron@nvda.hu>
    
    Stats:
    1       1       source/locale/hu/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 149fc784207734826caefcc82679c2136f97f127
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 24 10:07:29 2020 +1000

    L10n updates for: hr
    From translation svn revision: 56433
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Milo Ivir <mivir@milotype.de>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    1       1       source/locale/hr/LC_MESSAGES/nvda.po
    1       1       user_docs/hr/userGuide.t2t
     2 files changed, 2 insertions(+), 2 deletions(-)

commit f84c0f1ffc278acca47b8cc70e72d50eb3ae9e30
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 24 10:07:27 2020 +1000

    L10n updates for: hi
    From translation svn revision: 56433
    
    Authors:
    dipendra.lists@gmail.com
    Doc Mehta <joyofinspiring@gmail.com>
    
    Stats:
    1       1       source/locale/hi/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit c421cc683113c1b883cb1cb4d038684f45cbb0d3
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 24 10:07:26 2020 +1000

    L10n updates for: he
    From translation svn revision: 56433
    
    Authors:
    Shmuel Naaman <shmuel_naaman@yahoo.com>
    Afik Sofir <afik.sofer@gmail.com>
    
    Stats:
    1       1       source/locale/he/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 78159b72733d8f9c5a2d6f5d0ebc53d136f1a3ff
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 24 10:07:25 2020 +1000

    L10n updates for: gl
    From translation svn revision: 56433
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    Javier Curras <javier.curras@nvda.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/gl/LC_MESSAGES/nvda.po
    1       1       user_docs/gl/userGuide.t2t
     2 files changed, 2 insertions(+), 2 deletions(-)

commit e51db1f930d249ebe8be8329dc6b0c5638ea497e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 24 10:07:23 2020 +1000

    L10n updates for: ga
    From translation svn revision: 56433
    
    Authors:
    Cearbhall OMeadhra <cearbhall.omeadhra@blbc.ie>
    Ronan McGuirk <ronan.p.mcguirk@gmail.com>
    Kevin Scannell <kscanne@gmail.com>
    
    Stats:
    1       1       source/locale/ga/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit d0155c0df3969fc8970c1352e2ea28c546587c2d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 24 10:07:22 2020 +1000

    L10n updates for: fr
    From translation svn revision: 56433
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess.net>
    
    Stats:
    1       1       source/locale/fr/LC_MESSAGES/nvda.po
    1       1       user_docs/fr/userGuide.t2t
     2 files changed, 2 insertions(+), 2 deletions(-)

commit 9962f1f843bc1d2177ed34d76493cc0a5d0372c2
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 24 10:07:20 2020 +1000

    L10n updates for: fi
    From translation svn revision: 56433
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    1       1       source/locale/fi/LC_MESSAGES/nvda.po
    2       2       user_docs/fi/userGuide.t2t
     2 files changed, 3 insertions(+), 3 deletions(-)

commit bbc849db64b292b2acc0522cc782c51518709c5c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 24 10:07:18 2020 +1000

    L10n updates for: fa
    From translation svn revision: 56433
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    1       1       source/locale/fa/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit f0d668e2ea14cd3885fd5d8e300ed7df29fe5202
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 24 10:07:15 2020 +1000

    L10n updates for: es
    From translation svn revision: 56433
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/es/LC_MESSAGES/nvda.po
    1       1       user_docs/es/userGuide.t2t
     2 files changed, 2 insertions(+), 2 deletions(-)

commit ce93ef8adbc714b63ca21b344fa53b9c15d5ade5
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 24 10:07:13 2020 +1000

    L10n updates for: es_CO
    From translation svn revision: 56433
    
    Authors:
    Jorge Zarache <reydelasmaquinas@outlook.com>
    Luis Carlos Gonzáles Moráles <luiscarlosgm@hotmail.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/es_CO/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit e0c5d7b52f6b1ea93b3ef488687a4e91daac1442
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 24 10:07:11 2020 +1000

    L10n updates for: el
    From translation svn revision: 56433
    
    Authors:
    Irene Nakas <irnakas@gmail.com>
    Nikos Demetriou <nikosdemetriou@googlemail.com>
    access@e-rhetor.com
    
    Stats:
    1       1       source/locale/el/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit f360e4fc37a0500c5dca1b90d21f8c7261e3061d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 24 10:07:10 2020 +1000

    L10n updates for: de
    From translation svn revision: 56433
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    72      76      source/locale/de/LC_MESSAGES/nvda.po
    1       1       user_docs/de/userGuide.t2t
     2 files changed, 73 insertions(+), 77 deletions(-)

commit 8c89d48469c95a5f999cc6c6f9804ae18f155a6c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 24 10:07:06 2020 +1000

    L10n updates for: da
    From translation svn revision: 56433
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    1       1       source/locale/da/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit b187cc453078b98e397d4e32f050481f3f7062dd
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 24 10:07:05 2020 +1000

    L10n updates for: cs
    From translation svn revision: 56433
    
    Authors:
    Martina Letochova <letochova@seznam.cz>
    
    Stats:
    170     2       source/locale/cs/LC_MESSAGES/nvda.po
     1 file changed, 170 insertions(+), 2 deletions(-)

commit be9923e4f6629a987897e26b57b03b22efa5f926
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 24 10:07:04 2020 +1000

    L10n updates for: ckb
    From translation svn revision: 56433
    
    Authors:
    Ali Ustek <aliustek@gmail.com>
    Patrick Galasso <Patrice.galasso@gmail.com>
    Jwanro Mustafa <jwanroabdula@hotmail.com>
    Kosrat D Ahmad <kosrat.d.ahmad@gmail.com>
    silva.hm88@gmail.com
    
    Stats:
    1       1       source/locale/ckb/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 941d5449b59d759505b88e7335b21722355be2d9
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 24 10:07:02 2020 +1000

    L10n updates for: bg
    From translation svn revision: 56433
    
    Authors:
    Zahari Yurukov <zahari.yurukov@gmail.com>
    Kostadin Kolev <k_kolev1985@mail.bg>
    
    Stats:
    1       1       source/locale/bg/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit a1dfa5d5d4e3ead8500bb55ef824fc2a4e6618aa
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 24 10:06:58 2020 +1000

    L10n updates for: ar
    From translation svn revision: 56433
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Omar Alojaimi <amrahmad1995@gmail.com>
    
    Stats:
    1       1       source/locale/ar/LC_MESSAGES/nvda.po
    2       1       user_docs/ar/userGuide.t2t
     2 files changed, 3 insertions(+), 2 deletions(-)

commit e679ff0893f374da2f85b3559eaf60c699b163c5
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 24 10:06:55 2020 +1000

    L10n updates for: an
    From translation svn revision: 56433
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/an/LC_MESSAGES/nvda.po
    1       1       user_docs/an/userGuide.t2t
     2 files changed, 2 insertions(+), 2 deletions(-)

commit 2bffb250bb227564126c248cc6b4624bdfc7a79c
Author: Reef Turner <reef@nvaccess.org>
Date:   Thu Feb 6 15:53:29 2020 +0100

    Refactor: Make imports explicit for speech/manager
    
    Many items were implicitly being imported by import *

commit 948d15c806280a360541069b5c4fcc6847084755
Author: Reef Turner <reef@nvaccess.org>
Date:   Thu Nov 28 19:18:24 2019 +0100

    Refactor: Fix name shadowing of 'outSeq'

commit 87814b1fe3e006e2ec829028c3b00919dd850064
Author: Reef Turner <reef@nvaccess.org>
Date:   Thu Feb 6 14:01:25 2020 +0100

    Refactor: speech.speak priority arg default
    
    Change default for 'priority' argument in method 'speech.speak'.
    Using None makes the typing optional, however it is no longer really
    optional, the True default is Spri.NORMAL. Now this is explicit in
    the definition.

commit 17ee9b47fc4d42340380ea3b04f72aee493dbd10
Author: Reef Turner <reef@nvaccess.org>
Date:   Mon Dec 16 17:06:54 2019 +0100

    Refactor: Style only in speech/manager
    
    Add type hinting.

commit 46024ad68975e4b0d95bac04e1f1264fb85168ea
Author: Reef Turner <reef@nvaccess.org>
Date:   Wed Nov 27 17:33:56 2019 +0100

    Refactor: Style only in driverHandler
    
    Fix linting errors and add some type hinting to previously
    refactored blocks of driverHandler.

commit 183622f5d917dd299c6b47402e54dc66ac9ee3a5
Author: Reef Turner <reef@nvaccess.org>
Date:   Wed Nov 27 17:31:20 2019 +0100

    Refactor: Move only. driverHandler functions
    
    Move driverHandler functions that use the SynthDriver class
    below the SynthDriver class definition.

commit d20247bb9606713f22fc77ee7f166a02954fb849
Author: Reef Turner <reef@nvaccess.org>
Date:   Wed Nov 27 17:23:50 2019 +0100

    Refactor: Move only. LanguageInfo class.
    
    Move LanguageInfo to top of driverHandler.
    It is used by other classes later in this file.

commit c56ab57dadca83a4d77bf247aab8d4dc93ba2b4e
Author: Reef Turner <reef@nvaccess.org>
Date:   Wed Nov 27 17:21:31 2019 +0100

    Refactor: Move only. VoiceInfo class.
    
    Move VoiceInfo to top of driverHandler.
    It is used by other classes later in this file.

commit 16ec967e3dcadb77d79862fd6dcb3c4868247260
Merge: 56a620970 78b85fa77
Author: Reef Turner <reef@nvaccess.org>
Date:   Tue Apr 21 15:53:59 2020 +0200

    Merge remote-tracking branch 'origin/beta'

commit 78b85fa779e6e8788c1aedc0e7bde3cbb51bea9d
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue Apr 21 15:52:53 2020 +0200

    Stronger guarantee regarding Generators in speech (PR #11040)
    
    PRs #10878 and #10879 addressed some issues with Speech.speak
     being passed a Generator.
    
    Fixed a bug in speakTextInfo. speakWithoutPauses does not accept a
     generator as it needs to be able to get the number of items in the
     sequence and slice it.
    
    Rather than create a list from the generator inside Speech.speak,
    ensure that the generator is not used as an argument in the first place.
    
    The typing of several functions has now been clarified,
     in particular _flattenNestedSequences now no longer
     implicitly converts generators to lists.
    
    However, now all usages of _flattenNestedSequences explicitly
     convert to lists.
    
    Logging of generator types has been added in several places
     including speakWithoutPauses which needs to be able to get
     the length of a sequence and slice it. The logging can be enabled
     via the advanced settings panel 'speech' debug logging category.

commit 56a6209704ca80723d11e038647f9761c84617a8
Author: Reef Turner <reef@nvaccess.org>
Date:   Fri Apr 17 16:47:59 2020 +0200

    Update changes file for PR #11017

commit 5e56a643af217343718dea5ffd78c6936419bb40
Author: James Teh <jamie@jantrid.net>
Date:   Sat Apr 18 00:45:57 2020 +1000

    1Password: Fix a rare infinite loop in IAccessibleHandler.findGroupboxObject. (PR #11017)
    
    Previously, when you opened the context menu for 1Password in the system notification area, NVDA froze.
    This occurred because:
    
    1. 1Password sets focus to a window which is a child of HWND 65554, widow class "Message".
      I assume this is some sort of special system message-only window, but I can't find any details.
    2. NVDA walked the focus ancestry, which involves calling IAccessibleHandler.findGroupboxObject on ancestors.
    3. IAccessibleHandler.findGroupboxObject was thus called for this "Message" window.
    4. IAccessibleHandler.findGroupboxObject looped through previous windows, but when you call getPreviousWindow for this window, it returns itself!
    5. And thus an infinite loop ensues.
    
    To work around this, IAccessibleHandler.findGroupboxObject now ensures that the returned previous window is not the same as the window on which it was called.

commit c8493d81f3daf3d9cf62daf99f382edfe8cd8c8d
Author: Reef Turner <reef@nvaccess.org>
Date:   Fri Apr 17 16:42:57 2020 +0200

    Update changes file for PR #11023

commit 159dbf03b27a7635a14eb0191d5335d1f0a42eaa
Author: James Teh <jamie@jantrid.net>
Date:   Sat Apr 18 00:39:52 2020 +1000

    OneCore synth: Fix lag between utterances introduced in NVDA 2019.3. (PR #11023)
    
    When pushing the last chunk of audio for an utterance, use WavePlayer.sync() instead of WavePlayer.idle().
    We do this because idle closes the audio device.
    If there's something in the queue after playing the final chunk, that will result in WaveOutOpen being called in the callback when we push the next chunk of audio.
    We *really* don't want this because calling WaveOutOpen blocks for ~100 ms if called from the callback when the SSML includes marks, resulting in lag between utterances.
    If the queue is empty after sync returns, only then do we call idle and allow the device to close.

commit 14c2e2ecaa2c0e60c8ad9c8be191c5a4eca87f53
Author: Reef Turner <reef@nvaccess.org>
Date:   Fri Apr 17 15:53:03 2020 +0200

    Update changes file for PR #11011 and PR #10934

commit 172e71ba64f2f0d180683124815feec97c7693b4
Author: James Teh <jamie@jantrid.net>
Date:   Fri Apr 17 23:49:03 2020 +1000

    Drop UIA property change events in 1Password to fix poor performance. (PR #11011)
    
    1Password floods property change events whenever you move between items in the list.
    Because NVDA listens to all property changes and instantiates NVDAObjects in most cases, this causes severe sluggishness.
    To work around this, drop problematic property change events from 1Password as early as possible.
    AppModule.shouldProcessUIAPropertyChangedEvent has been introduced to facilitate this.

commit 41557311d49cdb70349a884aa93d8f5856507f07
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Fri Apr 17 05:45:14 2020 -0700

    Python 3.8: Flake8: F632 replace identity comparison with equality comparison (PR #10977)
    
    F632: "use ==/!= to compare str , bytes , and int literals"
    
    Python 3.8 emits syntax warning if identity check (var is value) is done against a literal. Therefore convert instances of 'var is/is not literal' to 'var ==/!= literal'.

commit 2cbbb024086082f1c7ba6ea4f3645d49db4f75db
Merge: 66fcfe696 7dedd1b7c
Author: Reef Turner <reef@nvaccess.org>
Date:   Thu Apr 16 16:22:56 2020 +0200

    Split IAccessibleHandler and test OrderedWinEventLimiter (PR #10934)
    
    Merge remote-tracking branch 'origin/addTestsForEventHandler'

commit 91b2b0b5262d9f1c0ace274215c38ef26e1e9737
Merge: f2104e23d 258afe922
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 17 00:06:28 2020 +1000

    Update translations.
    
    From translation svn revision: 56250

commit 258afe9225e16112ac8d3585a024e673a72490f9
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 17 00:06:27 2020 +1000

    L10n updates for: zh_TW
    From translation svn revision: 56250
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    1       1       source/locale/zh_TW/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 0f2c6c2e4ddde432026393a613e266f51da65b7b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 17 00:06:25 2020 +1000

    L10n updates for: zh_HK
    From translation svn revision: 56250
    
    Authors:
    Eric Yip <ericycy@gmail.com>
    
    Stats:
    1       1       source/locale/zh_HK/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit ea9d7ad2d7eddc053908cca51c003f9ba06aa66b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 17 00:06:24 2020 +1000

    L10n updates for: zh_CN
    From translation svn revision: 56250
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    
    Stats:
    1       1       source/locale/zh_CN/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit a91834f7c1b7b661dd18d075cfb32fadb0342be2
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 17 00:06:22 2020 +1000

    L10n updates for: vi
    From translation svn revision: 56250
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    12      12      source/locale/vi/LC_MESSAGES/nvda.po
    197     197     user_docs/vi/userGuide.t2t
     2 files changed, 209 insertions(+), 209 deletions(-)

commit 17d4957ecbfce9a5470180f076cb4e493de1e7fa
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 17 00:06:20 2020 +1000

    L10n updates for: uk
    From translation svn revision: 56250
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    1       1       source/locale/uk/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 1c3c6428c59a0360561d92d93ba7a052b15c4bee
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 17 00:06:18 2020 +1000

    L10n updates for: tr
    From translation svn revision: 56250
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    1       1       source/locale/tr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit c6cf11828ea7016b11fd930daafecf11b8608f2f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 17 00:06:16 2020 +1000

    L10n updates for: ta
    From translation svn revision: 56250
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    4       4       source/locale/ta/LC_MESSAGES/nvda.po
     1 file changed, 4 insertions(+), 4 deletions(-)

commit 07f1d262af02650fa35a0ea427a66cfa3b769516
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 17 00:06:14 2020 +1000

    L10n updates for: sv
    From translation svn revision: 56250
    
    Authors:
    Daniel Johansson <daniel.johansson@coeptus.se>
    Niklas Johansson <sleeping.pillow@gmail.com>
    Karl-Otto Rosenqvist <Karl-otto@mawingu.se>
    
    Stats:
    1       1       source/locale/sv/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 43aef749bcecee279a34a2cee43b2dfe7ed207e6
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 17 00:06:13 2020 +1000

    L10n updates for: sr
    From translation svn revision: 56250
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    1       1       source/locale/sr/LC_MESSAGES/nvda.po
    4       3       source/locale/sr/symbols.dic
    33      0       user_docs/sr/changes.t2t
    45      21      user_docs/sr/userGuide.t2t
     4 files changed, 83 insertions(+), 25 deletions(-)

commit 4ea200ebb0ba862e419d8ced51121e83d492b0b6
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 17 00:06:12 2020 +1000

    L10n updates for: sl
    From translation svn revision: 56250
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    170     2       source/locale/sl/LC_MESSAGES/nvda.po
     1 file changed, 170 insertions(+), 2 deletions(-)

commit 2cb59d7548c0a9971f392ab43adbbb764d1feedf
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 17 00:06:10 2020 +1000

    L10n updates for: sk
    From translation svn revision: 56250
    
    Authors:
    Ondrej Rosik <ondrej.rosik@gmail.com>
    Peter Vagner <peter.v@datagate.sk>
    Jan Kulik <jan.kulik.szsle@outlook.sk>
    
    Stats:
    1       1       source/locale/sk/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 588117d91b145b14f5b23b74e381b454d150dad7
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 17 00:06:08 2020 +1000

    L10n updates for: ru
    From translation svn revision: 56250
    
    Authors:
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    1       1       source/locale/ru/LC_MESSAGES/nvda.po
    205     205     user_docs/ru/userGuide.t2t
     2 files changed, 206 insertions(+), 206 deletions(-)

commit 071053e441764c0d7a62e6b08daaeb666d46066e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 17 00:06:05 2020 +1000

    L10n updates for: ro
    From translation svn revision: 56250
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    George Antonio Andrei <george.andrei2002@gmail.com>
    
    Stats:
    1       1       source/locale/ro/LC_MESSAGES/nvda.po
    1       1       user_docs/ro/userGuide.t2t
     2 files changed, 2 insertions(+), 2 deletions(-)

commit b480a5cef2db4d51df0645a5da7311fb150c57a4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 17 00:06:04 2020 +1000

    L10n updates for: pt_PT
    From translation svn revision: 56250
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    1       1       source/locale/pt_PT/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit bb32b76b5e431040e7842a22f53b1e827bedb2ae
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 17 00:06:02 2020 +1000

    L10n updates for: pt_BR
    From translation svn revision: 56250
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    1       1       source/locale/pt_BR/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 5f0525993465e408cd00ea420bde51d6d5d6b845
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 17 00:06:00 2020 +1000

    L10n updates for: pl
    From translation svn revision: 56250
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <hubmeyer1989@gmail.com>
    Arkadiusz Swietnicki <nuno69a@gmail.com>
    
    Stats:
    1       1       source/locale/pl/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 7fc00a1d6d1c27835856ca47161018d777382680
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 17 00:05:58 2020 +1000

    L10n updates for: nl
    From translation svn revision: 56250
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    1       1       source/locale/nl/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 02e970af7090f0dd3e5afbea508f042ce29bc2e0
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 17 00:05:56 2020 +1000

    L10n updates for: ne
    From translation svn revision: 56250
    
    Authors:
    Puskal Gautam <nvda.nepali@gmail.com>
    
    Stats:
    1       1       source/locale/ne/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit b485a2c98ddee7dc2f19794b15d0858965f9f210
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 17 00:05:53 2020 +1000

    L10n updates for: mn
    From translation svn revision: 56250
    
    Authors:
    Mongol NVDA-Translation <mongoliannvdatranslation@gmail.com>
    
    Stats:
    1       1       source/locale/mn/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit f9ccf24bbe7cdae0e3ee41b38646fbcb4bd63897
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 17 00:05:51 2020 +1000

    L10n updates for: mk
    From translation svn revision: 56250
    
    Authors:
    zvonimir stanecic <9a5dsz@gozaltech.org>
    Kiko Lazarev <kristijan.lazarev@gmail.com>
    
    Stats:
    1       1       source/locale/mk/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 693a20eaeb8e00463da4bf04ffcc44260dfe631a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 17 00:05:48 2020 +1000

    L10n updates for: ko
    From translation svn revision: 56250
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    1       1       source/locale/ko/LC_MESSAGES/nvda.po
    15      16      user_docs/ko/changes.t2t
     2 files changed, 16 insertions(+), 17 deletions(-)

commit 84d3993ed56fd3eb5771e2cd6dcb580ca0350e0b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 17 00:05:46 2020 +1000

    L10n updates for: ja
    From translation svn revision: 56250
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    1       1       source/locale/ja/LC_MESSAGES/nvda.po
    2       1       user_docs/ja/userGuide.t2t
     2 files changed, 3 insertions(+), 2 deletions(-)

commit 709940e45072a0a78708c4bc2f4445d8691ae631
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 17 00:05:43 2020 +1000

    L10n updates for: it
    From translation svn revision: 56250
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    1       1       source/locale/it/LC_MESSAGES/nvda.po
    49      0       user_docs/it/changes.t2t
    21      25      user_docs/it/userGuide.t2t
     3 files changed, 71 insertions(+), 26 deletions(-)

commit 29645358f4bae298089c6668117c4be23f01c6fa
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 17 00:05:40 2020 +1000

    L10n updates for: hu
    From translation svn revision: 56250
    
    Authors:
    Aron OcsvAri <oaron@nvda.hu>
    
    Stats:
    1       1       source/locale/hu/LC_MESSAGES/nvda.po
    29      0       user_docs/hu/changes.t2t
     2 files changed, 30 insertions(+), 1 deletion(-)

commit 1335af8e403fd22c9b281d7083af70ec669bd9cb
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 17 00:05:38 2020 +1000

    L10n updates for: hr
    From translation svn revision: 56250
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Milo Ivir <mivir@milotype.de>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    1       1       source/locale/hr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit c4ae97a54afd190d7a592dbee76ee061b657a3a6
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 17 00:05:37 2020 +1000

    L10n updates for: hi
    From translation svn revision: 56250
    
    Authors:
    dipendra.lists@gmail.com
    Doc Mehta <joyofinspiring@gmail.com>
    
    Stats:
    1       1       source/locale/hi/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 708551ac2e718da00dee6ba52923842a404b82f2
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 17 00:05:36 2020 +1000

    L10n updates for: he
    From translation svn revision: 56250
    
    Authors:
    Shmuel Naaman <shmuel_naaman@yahoo.com>
    Afik Sofir <afik.sofer@gmail.com>
    
    Stats:
    7       7       source/locale/he/LC_MESSAGES/nvda.po
     1 file changed, 7 insertions(+), 7 deletions(-)

commit 351cbea059aa32efde53513f7512f107c685d47b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 17 00:05:34 2020 +1000

    L10n updates for: gl
    From translation svn revision: 56250
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    Javier Curras <javier.curras@nvda.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/gl/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 1ab1e7d451dd64b1c719df2e73c433b0a24084ec
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 17 00:05:32 2020 +1000

    L10n updates for: ga
    From translation svn revision: 56250
    
    Authors:
    Cearbhall OMeadhra <cearbhall.omeadhra@blbc.ie>
    Ronan McGuirk <ronan.p.mcguirk@gmail.com>
    Kevin Scannell <kscanne@gmail.com>
    
    Stats:
    1       1       source/locale/ga/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 16d4d88d15a33261c4a969c0a1fcf9ce4b4060c1
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 17 00:05:32 2020 +1000

    L10n updates for: fr
    From translation svn revision: 56250
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess.net>
    
    Stats:
    1       1       source/locale/fr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit cb4eeb56fe10b5f888f71738421cbcb9286d8dc6
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 17 00:05:30 2020 +1000

    L10n updates for: fi
    From translation svn revision: 56250
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    1       1       source/locale/fi/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 3f9156355e36dd220b0581843c5ef3db06ea4ce1
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 17 00:05:28 2020 +1000

    L10n updates for: fa
    From translation svn revision: 56250
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    1       1       source/locale/fa/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 4e5afc01cdb4820b90e0e43b42dc0165a34ed20f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 17 00:05:25 2020 +1000

    L10n updates for: es
    From translation svn revision: 56250
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/es/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 3a95eb46011e53d32d99c97d828fe6c215bbc125
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 17 00:05:23 2020 +1000

    L10n updates for: es_CO
    From translation svn revision: 56250
    
    Authors:
    Jorge Zarache <reydelasmaquinas@outlook.com>
    Luis Carlos Gonzáles Moráles <luiscarlosgm@hotmail.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/es_CO/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 9708bc826a671b3b28a53d36e28e62682a6bd741
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 17 00:05:21 2020 +1000

    L10n updates for: el
    From translation svn revision: 56250
    
    Authors:
    Irene Nakas <irnakas@gmail.com>
    Nikos Demetriou <nikosdemetriou@googlemail.com>
    access@e-rhetor.com
    
    Stats:
    1       1       source/locale/el/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 4bf6e0433c3b2f0669e5c6ed8953e28dba0c8b63
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 17 00:05:19 2020 +1000

    L10n updates for: de
    From translation svn revision: 56250
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    2       2       source/locale/de/LC_MESSAGES/nvda.po
    26      26      user_docs/de/changes.t2t
    1       0       user_docs/de/userGuide.t2t
     3 files changed, 29 insertions(+), 28 deletions(-)

commit 1eaac65cb529c01c25a3d0825b7c149ab8bf7ff9
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 17 00:05:16 2020 +1000

    L10n updates for: da
    From translation svn revision: 56250
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    1       1       source/locale/da/LC_MESSAGES/nvda.po
    1       0       user_docs/da/userGuide.t2t
     2 files changed, 2 insertions(+), 1 deletion(-)

commit 9ac377c179b3999f546868b9fb641158c8390a1e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 17 00:05:15 2020 +1000

    L10n updates for: cs
    From translation svn revision: 56250
    
    Authors:
    Martina Letochova <letochova@seznam.cz>
    
    Stats:
    12      183     source/locale/cs/LC_MESSAGES/nvda.po
     1 file changed, 12 insertions(+), 183 deletions(-)

commit 929e9c8f21fd65989bf6bf4f7aea34497e122903
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 17 00:05:13 2020 +1000

    L10n updates for: ckb
    From translation svn revision: 56250
    
    Authors:
    Ali Ustek <aliustek@gmail.com>
    Patrick Galasso <Patrice.galasso@gmail.com>
    Jwanro Mustafa <jwanroabdula@hotmail.com>
    Kosrat D Ahmad <kosrat.d.ahmad@gmail.com>
    silva.hm88@gmail.com
    
    Stats:
    167     168     source/locale/ckb/LC_MESSAGES/nvda.po
     1 file changed, 167 insertions(+), 168 deletions(-)

commit e35046566106208a9e52b7ae6f73516c0b14aef5
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 17 00:05:11 2020 +1000

    L10n updates for: bg
    From translation svn revision: 56250
    
    Authors:
    Zahari Yurukov <zahari.yurukov@gmail.com>
    Kostadin Kolev <k_kolev1985@mail.bg>
    
    Stats:
    1       1       source/locale/bg/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 7437cdd8b8f6667fa2d504c1f8351489dfe78724
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 17 00:05:08 2020 +1000

    L10n updates for: ar
    From translation svn revision: 56250
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Omar Alojaimi <amrahmad1995@gmail.com>
    
    Stats:
    1       1       source/locale/ar/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 307c37881ff71f6a8804907bfb30ee3226ff7e58
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 17 00:05:05 2020 +1000

    L10n updates for: an
    From translation svn revision: 56250
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/an/LC_MESSAGES/nvda.po
    48      24      user_docs/an/userGuide.t2t
     2 files changed, 49 insertions(+), 25 deletions(-)

commit 66fcfe696e69c318469e3d02bbae7bcd419d31fa
Author: Reef Turner <reef@nvaccess.org>
Date:   Thu Apr 16 14:07:01 2020 +0200

    Update changes file for PR #10985

commit 827ec77ace7ef1a580eb79aefc46c2a9cdb65172
Author: CyrilleB79 <cyrille.bougot2@laposte.net>
Date:   Thu Apr 16 14:00:49 2020 +0200

    Add command to toggle the reporting of superscripts and subscripts (PR #10985)
    
    Other formatting options have a toggle command, now so does super / sub script.
    
    Co-authored-by: Reef Turner <feerrenrut@users.noreply.github.com>

commit 075d2182fd4e35f40c9c326af5d8515dc53a2b38
Merge: 72ee0b9aa f2104e23d
Author: Reef Turner <reef@nvaccess.org>
Date:   Thu Apr 16 09:35:32 2020 +0200

    Merge remote-tracking branch 'origin/beta'

commit 72ee0b9aa2e9abb39aebe2af396a9fefa95ae5c2
Author: CyrilleB79 <cyrille.bougot2@laposte.net>
Date:   Tue Apr 14 17:16:01 2020 +0200

    Report superscripts and subscripts in MS Word when using object model. (PR #10979)
    
    #10919 didn't cater to the Word object model, this adds support for older versions of Office, or those not using UIA.

commit e500d31278c4ad03962123e9424ad96d9609957a
Author: Reef Turner <reef@nvaccess.org>
Date:   Tue Apr 14 16:33:29 2020 +0200

    Update changes file for PR #10553

commit 6a2e68a18e323e5352013e2c47ccac6befb1b33a
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue Apr 14 16:31:13 2020 +0200

    Add system tests using Chrome to test HTML samples. (PR #10553)
    
    Summary:
    - Prevent regressions in browser support by automatically testing against known samples.
    - Use Python for main system test logic because the Robot Framework language is hard to read and write (especially with a screen reader) do to reliance on tab separated arguments.
    - Tests still must have a Robot file, however now this just defines the metadata for the test and calls a single keyword which contains the test logic.
    - Test logic lives in python file with the same name as the robot file.
    - Libraries and test spy code has been re-arranged to clarify what is local, what is remote, and what library functions are available.
    - Test spy library calls are automatically wrapped with a method so that `run_keyword` no longer has to be called manually.
    
    Conventions used:
    - Robot Libraries belong in `/libraries` named `SomethingLib`. The name of the module must match the name of the class used as the library, thus the module is given an initial capital letter.
    - Private functions / variables should all start with underscore so as not to be exposed as a keyword by Robot Framework.
    - Public library "keywords" should use underscore to separate words.
    
    Overview of the refactoring done:
    - `NVDA Core/startupShutdownNVDA.robot`
      - Logic moved to python: `robot/startupShutdownNVDA.py `
      - Metadata now in `robot/startupShutdownNVDA.robot`
    - `libraries/nvdaRobotLib.py`
      - Mostly: `libraries/NvdaLib.py`
      - Code for installing the Spy and NVDA config. moved to `libraries/SystemTestSpy/configManager.py`
    - `libraries/systemTestUtils.py` becomes `libraries/SystemTestSpy/blockUntilConditionMet.py`.
      - It is shared between Robot framework libraries and the SystemTestSpy package.
    - `libraries/helperLib.py` code from `libraries/AssertsLib.py`
    - `libraries/sendKey.py` becomes `libraries/KeyInputLib.py` basically a straight rename.
    - `libraries/speechSpy.py ` becomes `libraries/SystemTestSpy/speechSpySynthDriver.py`
    - `libraries/systemTestSpy.py` becomes `libraries/SystemTestSpy/speechSpyGlobalPlugin.py`
    - `NVDA Core/variables.py` no longer necessary, strings can easily be defined in test code now written in Python
    
    The Chrome tests added:
    - Logic in python: `robot/chromeTests.py `
    - Metadata in `robot/chromeTests.robot`

commit 531944a1d7206951b7bb13a120f95febf26c68ad
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Tue Apr 14 06:11:09 2020 -0700

    Settings/object presentation: fix duplicate accelerator (PR #10976)
    
    #7726 caused a duplicate accelerator symbol for the 'guess object position information' checkbox

commit 77963a1add8bdb6c0a1828a38ce457be3fd9df74
Author: Reef Turner <reef@nvaccess.org>
Date:   Tue Apr 14 13:52:13 2020 +0200

    Update changes file for PR #9325

commit da6d4601c10f1fe84f2e77012ff9ab4b015e5fd3
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue Apr 14 13:43:32 2020 +0200

    Add command to report the active configuration profile command (PR #9325)
    
    adds `reportActiveConfigurationProfile` command
    Not bound to a default gesture.

commit b38776a9898bc7455fec22dbcb8c0fdd3fe85717
Author: Patrick ZAJDA <patrick@zajda.fr>
Date:   Tue Apr 14 08:30:32 2020 +0200

    Update CLDR to version 36.1 (#10999)

commit f2104e23ddcf41220bd92e6691804ac667f0de5f
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Mon Apr 13 23:00:19 2020 -0700

    User guide: Unikey -> uniKey (feedback from Vietnamese translaotr). Re #11000 (#11001)

commit 63ba7cc0b781f962e9cf843e1aa4f43e8cc1a108
Author: eric <26911141+dingpengyu@users.noreply.github.com>
Date:   Sat Apr 11 12:23:38 2020 +0800

    Update copyrightYears to = "2020" (#10978)
    
    Update the copyrightYears version number of versionInfo.py

commit c1b9bbdea9ebaef8035198e2d7b4d44b6ae9b0f8
Merge: f5be9b210 d8d8bd412
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 10 00:06:29 2020 +1000

    Update translations.
    
    From translation svn revision: 56127

commit d8d8bd4120ad0bb513ac30f06f220b4b2743bba1
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 10 00:06:27 2020 +1000

    L10n updates for: zh_TW
    From translation svn revision: 56127
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    1       1       source/locale/zh_TW/LC_MESSAGES/nvda.po
    2       1       source/locale/zh_TW/symbols.dic
    48      0       user_docs/zh_TW/changes.t2t
    1       0       user_docs/zh_TW/userGuide.t2t
     4 files changed, 52 insertions(+), 2 deletions(-)

commit b7ac7d40bb8cda8f55a243d8653d4736e3883d12
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 10 00:06:25 2020 +1000

    L10n updates for: zh_HK
    From translation svn revision: 56127
    
    Authors:
    Eric Yip <ericycy@gmail.com>
    
    Stats:
    1       1       source/locale/zh_HK/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit e51560dbbecbcdab831c5b1d9f58e07f55bf3711
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 10 00:06:25 2020 +1000

    L10n updates for: zh_CN
    From translation svn revision: 56127
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    
    Stats:
    1       1       source/locale/zh_CN/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 45cfdea763c1ff29b35ff1434edf5606d9118c9d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 10 00:06:23 2020 +1000

    L10n updates for: vi
    From translation svn revision: 56127
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    1       1       source/locale/vi/LC_MESSAGES/nvda.po
    0       1       user_docs/vi/changes.t2t
    88      87      user_docs/vi/userGuide.t2t
     3 files changed, 89 insertions(+), 89 deletions(-)

commit 8d0df65ca04888a4d9c45823703c0fc64799711a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 10 00:06:21 2020 +1000

    L10n updates for: uk
    From translation svn revision: 56127
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    1       1       source/locale/uk/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 3a1ebec0d036080257e3db9afefe16079e88555c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 10 00:06:19 2020 +1000

    L10n updates for: tr
    From translation svn revision: 56127
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    1       1       source/locale/tr/LC_MESSAGES/nvda.po
    0       1       user_docs/tr/changes.t2t
    4       3       user_docs/tr/userGuide.t2t
     3 files changed, 5 insertions(+), 5 deletions(-)

commit 61a18149820dc9f4ab70ee52a9cd4fb8cde54bf4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 10 00:06:17 2020 +1000

    L10n updates for: ta
    From translation svn revision: 56127
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    222     220     source/locale/ta/LC_MESSAGES/nvda.po
    7       6       user_docs/ta/userGuide.t2t
     2 files changed, 229 insertions(+), 226 deletions(-)

commit b96d23c3f3ea3083b1c9a7c24da95efa32267195
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 10 00:06:15 2020 +1000

    L10n updates for: sv
    From translation svn revision: 56127
    
    Authors:
    Daniel Johansson <daniel.johansson@coeptus.se>
    Niklas Johansson <sleeping.pillow@gmail.com>
    Karl-Otto Rosenqvist <Karl-otto@mawingu.se>
    
    Stats:
    1       1       source/locale/sv/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 3f1011cb6801f845d6f02e2e66a7f2f928ce2a2e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 10 00:06:14 2020 +1000

    L10n updates for: sr
    From translation svn revision: 56127
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    1       1       source/locale/sr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 3ee2d1be2491d2406a9e4ea4e801dc7b6dba221f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 10 00:06:12 2020 +1000

    L10n updates for: sl
    From translation svn revision: 56127
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    4       172     source/locale/sl/LC_MESSAGES/nvda.po
    45      36      user_docs/sl/userGuide.t2t
     2 files changed, 49 insertions(+), 208 deletions(-)

commit 3910fb7a65d7ec62fb9c327a006ecea383907532
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 10 00:06:11 2020 +1000

    L10n updates for: sk
    From translation svn revision: 56127
    
    Authors:
    Ondrej Rosik <ondrej.rosik@gmail.com>
    Peter Vagner <peter.v@datagate.sk>
    Jan Kulik <jan.kulik.szsle@outlook.sk>
    
    Stats:
    1       1       source/locale/sk/LC_MESSAGES/nvda.po
    0       1       user_docs/sk/changes.t2t
    2       1       user_docs/sk/userGuide.t2t
     3 files changed, 3 insertions(+), 3 deletions(-)

commit 08f8edb1dd902198c5d25871f3bbb6a5d9ed4041
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 10 00:06:09 2020 +1000

    L10n updates for: ru
    From translation svn revision: 56127
    
    Authors:
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    4       4       source/locale/ru/LC_MESSAGES/nvda.po
    48      0       user_docs/ru/changes.t2t
    1       0       user_docs/ru/userGuide.t2t
     3 files changed, 53 insertions(+), 4 deletions(-)

commit 886b190747ba0b3847fcfc6473a31a06d8541b4d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 10 00:06:06 2020 +1000

    L10n updates for: ro
    From translation svn revision: 56127
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    George Antonio Andrei <george.andrei2002@gmail.com>
    
    Stats:
    1       1       source/locale/ro/LC_MESSAGES/nvda.po
    1       1       source/locale/ro/symbols.dic
    48      0       user_docs/ro/changes.t2t
     3 files changed, 50 insertions(+), 2 deletions(-)

commit 55294065c455afb2b4f07045dfc0186e8c9caceb
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 10 00:06:04 2020 +1000

    L10n updates for: pt_PT
    From translation svn revision: 56127
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    1       1       source/locale/pt_PT/LC_MESSAGES/nvda.po
    1       2       user_docs/pt_PT/changes.t2t
    1       1       user_docs/pt_PT/userGuide.t2t
     3 files changed, 3 insertions(+), 4 deletions(-)

commit 56613d52567b78c4eba40da7ce9cf406a4630306
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 10 00:06:02 2020 +1000

    L10n updates for: pt_BR
    From translation svn revision: 56127
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    1       1       source/locale/pt_BR/LC_MESSAGES/nvda.po
    4       5       user_docs/pt_BR/changes.t2t
    2       1       user_docs/pt_BR/userGuide.t2t
     3 files changed, 7 insertions(+), 7 deletions(-)

commit 50bae680c3dbf5a68d1b4152f781a4e40424b208
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 10 00:06:00 2020 +1000

    L10n updates for: pl
    From translation svn revision: 56127
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <hubmeyer1989@gmail.com>
    Arkadiusz Swietnicki <nuno69a@gmail.com>
    
    Stats:
    1       1       source/locale/pl/LC_MESSAGES/nvda.po
    8       0       source/locale/pl/characterDescriptions.dic
    4       5       user_docs/pl/changes.t2t
    1       0       user_docs/pl/userGuide.t2t
     4 files changed, 14 insertions(+), 6 deletions(-)

commit 716265f9a22e480755363d853c2ad342b0d9db0b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 10 00:05:58 2020 +1000

    L10n updates for: nl
    From translation svn revision: 56127
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    1       1       source/locale/nl/LC_MESSAGES/nvda.po
    6       5       user_docs/nl/userGuide.t2t
     2 files changed, 7 insertions(+), 6 deletions(-)

commit 821ff3dd3214551cfd5c1f408cbf639e303edef9
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 10 00:05:56 2020 +1000

    L10n updates for: ne
    From translation svn revision: 56127
    
    Authors:
    Puskal Gautam <nvda.nepali@gmail.com>
    
    Stats:
    1       1       source/locale/ne/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 24661f85b72d3fb9c5e4064f7bfdb96023fd3a59
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 10 00:05:53 2020 +1000

    L10n updates for: mn
    From translation svn revision: 56127
    
    Authors:
    Mongol NVDA-Translation <mongoliannvdatranslation@gmail.com>
    
    Stats:
    1       1       source/locale/mn/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 3706f790d170f94b152aac1d197e7ca1e7edf55f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 10 00:05:51 2020 +1000

    L10n updates for: mk
    From translation svn revision: 56127
    
    Authors:
    zvonimir stanecic <9a5dsz@gozaltech.org>
    Kiko Lazarev <kristijan.lazarev@gmail.com>
    
    Stats:
    1       1       source/locale/mk/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 2615a945ad20c227d12834c194b6dc9f88526e77
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 10 00:05:49 2020 +1000

    L10n updates for: ko
    From translation svn revision: 56127
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    1       1       source/locale/ko/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 18444b8d6d48b8cdb5cb560db428c557a067e814
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 10 00:05:46 2020 +1000

    L10n updates for: ja
    From translation svn revision: 56127
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    1       1       source/locale/ja/LC_MESSAGES/nvda.po
    0       1       user_docs/ja/changes.t2t
     2 files changed, 1 insertion(+), 2 deletions(-)

commit 3ccde80bd17e8d59d7f3bead6e7d2f4191d7b220
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 10 00:05:43 2020 +1000

    L10n updates for: it
    From translation svn revision: 56127
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    1       1       source/locale/it/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit be3f46c3a9ad5a5b9c525157386bc8bd897cb3b9
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 10 00:05:41 2020 +1000

    L10n updates for: hu
    From translation svn revision: 56127
    
    Authors:
    Aron OcsvAri <oaron@nvda.hu>
    
    Stats:
    10      13      source/locale/hu/LC_MESSAGES/nvda.po
    55      19      user_docs/hu/userGuide.t2t
     2 files changed, 65 insertions(+), 32 deletions(-)

commit 642e9e0eefde7894744dff887a9da9d2f080cffd
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 10 00:05:39 2020 +1000

    L10n updates for: hr
    From translation svn revision: 56127
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Milo Ivir <mivir@milotype.de>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    5       14      source/locale/hr/LC_MESSAGES/nvda.po
    2       3       user_docs/hr/changes.t2t
    1       0       user_docs/hr/userGuide.t2t
     3 files changed, 8 insertions(+), 17 deletions(-)

commit cbab8d8307365668b2fd7af17b7b500fdd24ce70
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 10 00:05:37 2020 +1000

    L10n updates for: hi
    From translation svn revision: 56127
    
    Authors:
    dipendra.lists@gmail.com
    Doc Mehta <joyofinspiring@gmail.com>
    
    Stats:
    616     415     source/locale/hi/LC_MESSAGES/nvda.po
     1 file changed, 616 insertions(+), 415 deletions(-)

commit ffcf7c4af43e2ea0e28bf0a0236e21e54713d81c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 10 00:05:36 2020 +1000

    L10n updates for: he
    From translation svn revision: 56127
    
    Authors:
    Shmuel Naaman <shmuel_naaman@yahoo.com>
    Afik Sofir <afik.sofer@gmail.com>
    
    Stats:
    1       1       source/locale/he/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 96721e0b6e3683a7fed31c62de9f93da38f13f9e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 10 00:05:35 2020 +1000

    L10n updates for: gl
    From translation svn revision: 56127
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    Javier Curras <javier.curras@nvda.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/gl/LC_MESSAGES/nvda.po
    1       0       user_docs/gl/userGuide.t2t
     2 files changed, 2 insertions(+), 1 deletion(-)

commit 642f76834ec38742a40fa001ed11504d6963579d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 10 00:05:33 2020 +1000

    L10n updates for: ga
    From translation svn revision: 56127
    
    Authors:
    Cearbhall OMeadhra <cearbhall.omeadhra@blbc.ie>
    Ronan McGuirk <ronan.p.mcguirk@gmail.com>
    Kevin Scannell <kscanne@gmail.com>
    
    Stats:
    1       1       source/locale/ga/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit c7e38fa39b11c739e80e53454a093020da2888fd
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 10 00:05:32 2020 +1000

    L10n updates for: fr
    From translation svn revision: 56127
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess.net>
    
    Stats:
    13      16      source/locale/fr/LC_MESSAGES/nvda.po
    1       2       user_docs/fr/changes.t2t
    1       7       user_docs/fr/userGuide.t2t
     3 files changed, 15 insertions(+), 25 deletions(-)

commit 9cac038ce30e2edb8f02a010010bb7a1fb0f93f5
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 10 00:05:30 2020 +1000

    L10n updates for: fi
    From translation svn revision: 56127
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    1       1       source/locale/fi/LC_MESSAGES/nvda.po
    0       1       user_docs/fi/changes.t2t
    1       0       user_docs/fi/userGuide.t2t
     3 files changed, 2 insertions(+), 2 deletions(-)

commit 0825b2b03594ababe5a0a2731f72e51a51e19eca
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 10 00:05:28 2020 +1000

    L10n updates for: fa
    From translation svn revision: 56127
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    1       1       source/locale/fa/LC_MESSAGES/nvda.po
    0       1       user_docs/fa/changes.t2t
    1       0       user_docs/fa/userGuide.t2t
     3 files changed, 2 insertions(+), 2 deletions(-)

commit 4261d91aef2d0f930720d31b04af6f9082d52baf
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 10 00:05:25 2020 +1000

    L10n updates for: es
    From translation svn revision: 56127
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/es/LC_MESSAGES/nvda.po
    1       0       user_docs/es/userGuide.t2t
     2 files changed, 2 insertions(+), 1 deletion(-)

commit 026d6578b49c5ea42036577a05abe10181f1ae71
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 10 00:05:23 2020 +1000

    L10n updates for: es_CO
    From translation svn revision: 56127
    
    Authors:
    Jorge Zarache <reydelasmaquinas@outlook.com>
    Luis Carlos Gonzáles Moráles <luiscarlosgm@hotmail.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/es_CO/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit e6c6120c4dfe49608dda7d3145a4c50862517e99
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 10 00:05:21 2020 +1000

    L10n updates for: el
    From translation svn revision: 56127
    
    Authors:
    Irene Nakas <irnakas@gmail.com>
    Nikos Demetriou <nikosdemetriou@googlemail.com>
    access@e-rhetor.com
    
    Stats:
    1       1       source/locale/el/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit e5b8eacd038acabc558adfb33a85edc7ce5165d3
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 10 00:05:20 2020 +1000

    L10n updates for: de
    From translation svn revision: 56127
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    3       3       source/locale/de/LC_MESSAGES/nvda.po
    8       9       user_docs/de/changes.t2t
     2 files changed, 11 insertions(+), 12 deletions(-)

commit 54915e51b20cfae4229708afc78f7a5db8cef79e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 10 00:05:16 2020 +1000

    L10n updates for: da
    From translation svn revision: 56127
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    1       1       source/locale/da/LC_MESSAGES/nvda.po
    0       1       user_docs/da/changes.t2t
     2 files changed, 1 insertion(+), 2 deletions(-)

commit 9e1c1d9186edb44c325cfe6827a958cd91391a8a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 10 00:05:15 2020 +1000

    L10n updates for: cs
    From translation svn revision: 56127
    
    Authors:
    Martina Letochova <letochova@seznam.cz>
    
    Stats:
    1       1       source/locale/cs/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 545fbe5550b98bc6e3eebebe72adcedb8f704329
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 10 00:05:14 2020 +1000

    L10n updates for: ckb
    From translation svn revision: 56127
    
    Authors:
    Ali Ustek <aliustek@gmail.com>
    Patrick Galasso <Patrice.galasso@gmail.com>
    Jwanro Mustafa <jwanroabdula@hotmail.com>
    Kosrat D Ahmad <kosrat.d.ahmad@gmail.com>
    silva.hm88@gmail.com
    
    Stats:
    1       1       source/locale/ckb/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 319711c04469f9d497be21c596436c52a6dacb56
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 10 00:05:12 2020 +1000

    L10n updates for: bg
    From translation svn revision: 56127
    
    Authors:
    Zahari Yurukov <zahari.yurukov@gmail.com>
    Kostadin Kolev <k_kolev1985@mail.bg>
    
    Stats:
    11      14      source/locale/bg/LC_MESSAGES/nvda.po
    2       1       source/locale/bg/symbols.dic
    48      0       user_docs/bg/changes.t2t
    45      20      user_docs/bg/userGuide.t2t
     4 files changed, 106 insertions(+), 35 deletions(-)

commit 7cf7df89825592e952abc5e7c4905447aa508b4b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 10 00:05:08 2020 +1000

    L10n updates for: ar
    From translation svn revision: 56127
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Omar Alojaimi <amrahmad1995@gmail.com>
    
    Stats:
    10      13      source/locale/ar/LC_MESSAGES/nvda.po
    33      0       user_docs/ar/changes.t2t
    44      22      user_docs/ar/userGuide.t2t
     3 files changed, 87 insertions(+), 35 deletions(-)

commit 8a4f507e26636ca72f7c9b2ad42d971463b0549a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 10 00:05:05 2020 +1000

    L10n updates for: an
    From translation svn revision: 56127
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    11      14      source/locale/an/LC_MESSAGES/nvda.po
    2       1       source/locale/an/symbols.dic
    48      0       user_docs/an/changes.t2t
     3 files changed, 61 insertions(+), 15 deletions(-)

commit 7dedd1b7c5c3dc73e76ad3b429bfb101d885b563
Author: Reef Turner <reef@nvaccess.org>
Date:   Thu Apr 2 14:20:16 2020 +0200

    Fix style errors.
    
    IAccessibleHandler/__init__.py
    IAccessibleHandler/internalWinEventHandler.py

commit 5084e3237c61012211d9b835721fd0302971433c
Author: Reef Turner <reef@nvaccess.org>
Date:   Tue Mar 31 18:30:30 2020 +0200

    Extract function winEventHandler
    
    Fix accPropServices error

commit e8cde2caabd18a71490999b9c2682deedf504229
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Thu Apr 9 11:14:46 2020 +0200

    Remove unused plugins directories when initializing config. (PR #10746)
    
    Closes #10014
    
    If empty the following directories are removed from the config directory:
    - appModules
    - brailleDisplayDrivers
    - globalPlugins
    - synthDrivers

commit 2d73010ecbfe842c197d45ca9322da638172f197
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Wed Apr 8 05:14:09 2020 +0200

    Allow providing absolute path to the certificate file when executing  Scons (#10943)

commit d1c49e807d3dd715366e04b8834295df72507920
Author: Reef Turner <reef@nvaccess.org>
Date:   Tue Apr 7 11:38:52 2020 +0200

    Update changes file for PR #10944

commit 925907f3091486df24d5d46b48efb83e99cfaa46
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Tue Apr 7 02:36:03 2020 -0700

    Update configobj to 5.1.0dev commit f9a265c4 (PR #10944)
    
    Official support for python 3.7
    Resolve warnings with collections.abc imports

commit 9803188f497a4198fc755775e0775aa92d299088
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Apr 7 14:49:00 2020 +1000

    Update what's new for pr #10947

commit 97fbc911801dc410a454fbc2040600c8c14ca066
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Mon Apr 6 21:46:33 2020 -0700

    Winamp: NVDA will once again announce shuffle and repeat status (#10947)
    
    * appModules/winamp: update copyright header
    
    * appModules/winamp: call FindWindowW (widechar version) found in winUser module. Re #10945.
    
    Python 3 defaults to Unicode strings, and without bytes conversion, FindWindowA will fail. Thus call winUser.FindWindow which eventually clals user32.dll::FindWindowW. This resolves shuffle and repeat status announcement.

commit f5be9b21014e90fab4d6b2a003dc88f953409f6f
Author: gregjozk <jozko.gregorc@gmail.com>
Date:   Tue Apr 7 06:39:37 2020 +0200

    Update userGuide.t2t (#10948)
    
    correct a missing closing tag to list reported on translating mailing list on 5/4/20 by adding a row with " -" after texxt in nested element

commit c355dd7a3571c2c2d57f9d859e47eb72a8fd039d
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Mon Apr 6 05:16:54 2020 +0200

    Start ignoring spurious focus events emitted by Win 7 taskbar when start menu is just about to open (#10938)

commit b1b1de24ec6e7499f726695ca6496902137e36f9
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Apr 6 11:04:49 2020 +1000

    Update what's new for pr #10784

commit a0f9bea331e473f11ee7c3b93c0ce6687da20250
Author: Bill Dengler <codeofdusk@gmail.com>
Date:   Sun Apr 5 21:03:26 2020 -0400

    Add support for Windows Terminal (#10784)
    
    * Bring over ConsoleUIATextInfo refactoring from #10716.
    
    * Add WinTerminalUIA
    
    * Style.
    
    * Review actions.
    
    * microsoft/terminal#4495: support fixed GetVisibleRanges.
    
    * KeyboardHandlerBasedTypedCharSupport -> EnhancedTermTypedCharSupport, add _shouldUseToUnicodeEx flag and set False for WinTerminalUIA.
    
    * Update doc comments.
    
    * Update copyrights.
    
    * Review actions.
    
    * Factor out bounding into separate method.
    
    * Re-introduce KeyboardHandlerBasedTypedCharSupport.
    
    * Fix UIA console support for newer Windows Console builds.
    
    * Revert copyright header changes.
    
    * Revert another no longer necessary copyright header change.
    
    * Fix comments.
    
    * Update docstring.
    
    * Review actions.
    
    * Update source/NVDAObjects/behaviors.py
    
    Co-Authored-By: Leonard de Ruijter <leonardder@users.noreply.github.com>
    
    * Add class docstring.
    
    * Optimization: clear character buffers when reporting new lines.
    
    This saves us from scanning the old and new lines twice in _calculateNewText (once for diffing and once for finding nonblank indices), and fixes typed word reporting for 21H1 console.
    
    This new approach does not resolve #10942.
    
    * Update inaccurate information in user guide.
    
    Co-authored-by: Leonard de Ruijter <leonardder@users.noreply.github.com>

commit f692c2fd7370d7ffb0dc7eb7d97b1b672ea47acd
Author: Thomas Stivers <thomas.stivers@gmail.com>
Date:   Fri Apr 3 06:56:30 2020 -0500

    Wording in General Settings and spelling/spacing fixes (PR #7726)
    
    Several options were able to be reworded to be shorter. Some accelerators were missing.
    
    Co-authored-by: Reef Turner <reef@nvaccess.org>

commit b10beea39a972793c092c2b99e03a80b2047063d
Author: Bill Dengler <codeofdusk@gmail.com>
Date:   Fri Apr 3 06:23:11 2020 -0400

    Fix regressions from (PR #10932)
    
    Fixes  #10931
    Follow on from #10919
    
    The "report formatting script" (NVDA+f) was causing an error because the `reportSuperscriptsAndSubscripts` key was missing from the `formatConfig` dictionary used as a config section created in ` _reportFormattingHelper`. Updated the generation of this dictionary so this error is unlikely to be encountered again. Instead, now the risk is that any format option separated in the future my not be reported by the "report formatting script" when it should be.
    
    Some superscript/subscript reporting was not separated. To fix this the superscript/subscript fetching has been separated in more situations (PowerPoint, UIA).

commit 809f67608536801fd4848d6accd975e4165619e3
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Apr 3 10:27:10 2020 +1000

    Remove what's new entry referring to reverted feature. #10858

commit 7d90aaa68b867f076cba680032231ddbdfd589cb
Merge: 472a87edf ca4753d01
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 3 00:06:28 2020 +1000

    Update translations.
    
    From translation svn revision: 55870

commit ca4753d01d82ac632cb9f64335e6d8c9201b3a86
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 3 00:06:27 2020 +1000

    L10n updates for: zh_TW
    From translation svn revision: 55870
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    1       1       source/locale/zh_TW/LC_MESSAGES/nvda.po
    55      55      source/locale/zh_TW/characterDescriptions.dic
    1       0       source/locale/zh_TW/symbols.dic
     3 files changed, 57 insertions(+), 56 deletions(-)

commit fd97e8e3762f911de46e94f7d18856c0c24b38fb
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 3 00:06:25 2020 +1000

    L10n updates for: zh_HK
    From translation svn revision: 55870
    
    Authors:
    Eric Yip <ericycy@gmail.com>
    
    Stats:
    1       1       source/locale/zh_HK/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit c0061c0ccded550e04ead3ebdfb7e04303939de7
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 3 00:06:24 2020 +1000

    L10n updates for: zh_CN
    From translation svn revision: 55870
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    
    Stats:
    1       1       source/locale/zh_CN/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit d959c695d24e384ced2a0ddcecdc7ff69c1ce210
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 3 00:06:22 2020 +1000

    L10n updates for: vi
    From translation svn revision: 55870
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    1       1       source/locale/vi/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 0f338755bce6b93643c5f0c0ad18fa6fe460ab67
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 3 00:06:20 2020 +1000

    L10n updates for: uk
    From translation svn revision: 55870
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    1       1       source/locale/uk/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 7b97045c2e0764aa34b76704372a30f418249158
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 3 00:06:18 2020 +1000

    L10n updates for: tr
    From translation svn revision: 55870
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    1       1       source/locale/tr/LC_MESSAGES/nvda.po
    22      23      user_docs/tr/userGuide.t2t
     2 files changed, 23 insertions(+), 24 deletions(-)

commit 0703160a9cadc25ef150a613b4d9ddf512f700a4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 3 00:06:16 2020 +1000

    L10n updates for: ta
    From translation svn revision: 55870
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    3       3       source/locale/ta/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 3 deletions(-)

commit 23883e8b77a08cecaa4c7e1e7614af235c70b97c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 3 00:06:14 2020 +1000

    L10n updates for: sv
    From translation svn revision: 55870
    
    Authors:
    Daniel Johansson <daniel.johansson@coeptus.se>
    Niklas Johansson <sleeping.pillow@gmail.com>
    Karl-Otto Rosenqvist <Karl-otto@mawingu.se>
    
    Stats:
    1       1       source/locale/sv/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 0923d26e3de47ca3c5aee8a4759013078a2a66af
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 3 00:06:13 2020 +1000

    L10n updates for: sr
    From translation svn revision: 55870
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    9       12      source/locale/sr/LC_MESSAGES/nvda.po
     1 file changed, 9 insertions(+), 12 deletions(-)

commit ece8132c4a71375d32482ea510093e35c8d443fa
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 3 00:06:11 2020 +1000

    L10n updates for: sl
    From translation svn revision: 55870
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    1       1       source/locale/sl/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 2713f3eac6ddd61a1b9f72a0e8cba5f3ac4d48a3
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 3 00:06:10 2020 +1000

    L10n updates for: sk
    From translation svn revision: 55870
    
    Authors:
    Ondrej Rosik <ondrej.rosik@gmail.com>
    Peter Vagner <peter.v@datagate.sk>
    Jan Kulik <jan.kulik.szsle@outlook.sk>
    
    Stats:
    1       1       source/locale/sk/LC_MESSAGES/nvda.po
    2       1       source/locale/sk/symbols.dic
    30      0       user_docs/sk/changes.t2t
    115     92      user_docs/sk/userGuide.t2t
     4 files changed, 148 insertions(+), 94 deletions(-)

commit d97ea51f2d9c78903233d194bebfc89367c5844a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 3 00:06:08 2020 +1000

    L10n updates for: ru
    From translation svn revision: 55870
    
    Authors:
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    1       1       source/locale/ru/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 65e0ef0b68cd20c8cd35a33db60a82cd69392773
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 3 00:06:05 2020 +1000

    L10n updates for: ro
    From translation svn revision: 55870
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    George Antonio Andrei <george.andrei2002@gmail.com>
    
    Stats:
    1       1       source/locale/ro/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 40ddfbda7e450a9100f2c8763dcc7f4f4182fe8b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 3 00:06:04 2020 +1000

    L10n updates for: pt_PT
    From translation svn revision: 55870
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    1       1       source/locale/pt_PT/LC_MESSAGES/nvda.po
    17      3       user_docs/pt_PT/changes.t2t
    34      16      user_docs/pt_PT/userGuide.t2t
     3 files changed, 52 insertions(+), 20 deletions(-)

commit 1130545db631bed02aa2648601dd2c6763844cc8
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 3 00:06:01 2020 +1000

    L10n updates for: pt_BR
    From translation svn revision: 55870
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    1       1       source/locale/pt_BR/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit a8327438d3eb552ec1d4b6cc6cc61b454822c894
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 3 00:05:59 2020 +1000

    L10n updates for: pl
    From translation svn revision: 55870
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <hubmeyer1989@gmail.com>
    Arkadiusz Swietnicki <nuno69a@gmail.com>
    
    Stats:
    7       8       source/locale/pl/LC_MESSAGES/nvda.po
     1 file changed, 7 insertions(+), 8 deletions(-)

commit 74dcedab48a34bb1130806fa650afcd0da16fb41
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 3 00:05:57 2020 +1000

    L10n updates for: nl
    From translation svn revision: 55870
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    1       1       source/locale/nl/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 914efbcea72e3a9d57bbb58d4caf80b3fed1956b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 3 00:05:56 2020 +1000

    L10n updates for: ne
    From translation svn revision: 55870
    
    Authors:
    Puskal Gautam <nvda.nepali@gmail.com>
    
    Stats:
    1       1       source/locale/ne/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 1e6d161f9cb05ea443fcd7728ee9f0e082594a9a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 3 00:05:53 2020 +1000

    L10n updates for: mn
    From translation svn revision: 55870
    
    Authors:
    Mongol NVDA-Translation <mongoliannvdatranslation@gmail.com>
    
    Stats:
    20      23      source/locale/mn/LC_MESSAGES/nvda.po
     1 file changed, 20 insertions(+), 23 deletions(-)

commit 9b6810653696ddb681b8db4d6ed3986ba4dd6a81
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 3 00:05:50 2020 +1000

    L10n updates for: mk
    From translation svn revision: 55870
    
    Authors:
    zvonimir stanecic <9a5dsz@gozaltech.org>
    Kiko Lazarev <kristijan.lazarev@gmail.com>
    
    Stats:
    1       1       source/locale/mk/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 715a3f816ce27292b6a7d5284d17758ca19b64a9
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 3 00:05:48 2020 +1000

    L10n updates for: ko
    From translation svn revision: 55870
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    1       1       source/locale/ko/LC_MESSAGES/nvda.po
    33      0       user_docs/ko/changes.t2t
     2 files changed, 34 insertions(+), 1 deletion(-)

commit b8473cc229b1dc684d5e3e0f23c076968c66bb03
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 3 00:05:45 2020 +1000

    L10n updates for: ja
    From translation svn revision: 55870
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    1       1       source/locale/ja/LC_MESSAGES/nvda.po
    49      0       user_docs/ja/changes.t2t
     2 files changed, 50 insertions(+), 1 deletion(-)

commit 0bb988240803362b83f64683c978cdc900c04ef8
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 3 00:05:43 2020 +1000

    L10n updates for: it
    From translation svn revision: 55870
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    10      15      source/locale/it/LC_MESSAGES/nvda.po
     1 file changed, 10 insertions(+), 15 deletions(-)

commit ced88c719a72a24f117bf906d96bb400b94deedf
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 3 00:05:40 2020 +1000

    L10n updates for: hu
    From translation svn revision: 55870
    
    Authors:
    Aron OcsvAri <oaron@nvda.hu>
    
    Stats:
    1       1       source/locale/hu/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit ecce73a777f9c86b20e25ad8b174f8c09ec8802b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 3 00:05:38 2020 +1000

    L10n updates for: hr
    From translation svn revision: 55870
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Milo Ivir <mivir@milotype.de>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    1       1       source/locale/hr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 1c6d9209c7767425cfa4326316403930c14ab2d8
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 3 00:05:37 2020 +1000

    L10n updates for: hi
    From translation svn revision: 55870
    
    Authors:
    dipendra.lists@gmail.com
    Doc Mehta <joyofinspiring@gmail.com>
    
    Stats:
    416     617     source/locale/hi/LC_MESSAGES/nvda.po
     1 file changed, 416 insertions(+), 617 deletions(-)

commit 4b6d0b8b0aee0421f17a8d9a4e27abdd1ed589cd
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 3 00:05:36 2020 +1000

    L10n updates for: he
    From translation svn revision: 55870
    
    Authors:
    Shmuel Naaman <shmuel_naaman@yahoo.com>
    Afik Sofir <afik.sofer@gmail.com>
    
    Stats:
    1       1       source/locale/he/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 4d841e735bdf5a453db3561b9106092dde980a9b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 3 00:05:34 2020 +1000

    L10n updates for: gl
    From translation svn revision: 55870
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    Javier Curras <javier.curras@nvda.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/gl/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit f2ec169410bbe20d83640adefcf987544245642f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 3 00:05:32 2020 +1000

    L10n updates for: ga
    From translation svn revision: 55870
    
    Authors:
    Cearbhall OMeadhra <cearbhall.omeadhra@blbc.ie>
    Ronan McGuirk <ronan.p.mcguirk@gmail.com>
    Kevin Scannell <kscanne@gmail.com>
    
    Stats:
    20      28      source/locale/ga/LC_MESSAGES/nvda.po
     1 file changed, 20 insertions(+), 28 deletions(-)

commit 25a98de20c5ee21a3baae6558cb48d82ea5384ac
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 3 00:05:32 2020 +1000

    L10n updates for: fr
    From translation svn revision: 55870
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess.net>
    
    Stats:
    6       6       source/locale/fr/LC_MESSAGES/nvda.po
     1 file changed, 6 insertions(+), 6 deletions(-)

commit 4e235f55147a8b59e8e37437e36d1e8ce9979462
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 3 00:05:29 2020 +1000

    L10n updates for: fi
    From translation svn revision: 55870
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    1       1       source/locale/fi/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit bcaa17289f2c6d4eae372d5bbf4b4c17870daeda
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 3 00:05:27 2020 +1000

    L10n updates for: fa
    From translation svn revision: 55870
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    1       1       source/locale/fa/LC_MESSAGES/nvda.po
    2       2       user_docs/fa/userGuide.t2t
     2 files changed, 3 insertions(+), 3 deletions(-)

commit 5d16465c1ab4a284da924b937cf9792b3f5577fa
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 3 00:05:25 2020 +1000

    L10n updates for: es
    From translation svn revision: 55870
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/es/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 624bcd39e3f92365e851340c64cafe1962df722a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 3 00:05:23 2020 +1000

    L10n updates for: es_CO
    From translation svn revision: 55870
    
    Authors:
    Jorge Zarache <reydelasmaquinas@outlook.com>
    Luis Carlos Gonzáles Moráles <luiscarlosgm@hotmail.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/es_CO/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 21883f9ef9bfb49e145c878d1c36e2fba203690b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 3 00:05:21 2020 +1000

    L10n updates for: el
    From translation svn revision: 55870
    
    Authors:
    Irene Nakas <irnakas@gmail.com>
    Nikos Demetriou <nikosdemetriou@googlemail.com>
    access@e-rhetor.com
    
    Stats:
    1       1       source/locale/el/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 919903bb5511c1e11cfd86dcdb15548262b1a49c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 3 00:05:19 2020 +1000

    L10n updates for: de
    From translation svn revision: 55870
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    7       6       source/locale/de/LC_MESSAGES/nvda.po
    30      30      user_docs/de/changes.t2t
    17      17      user_docs/de/userGuide.t2t
     3 files changed, 54 insertions(+), 53 deletions(-)

commit d64f5274a2acc72df81f60f341ab7a9f5db74c52
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 3 00:05:16 2020 +1000

    L10n updates for: da
    From translation svn revision: 55870
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    1       1       source/locale/da/LC_MESSAGES/nvda.po
    1       0       user_docs/da/changes.t2t
    0       7       user_docs/da/userGuide.t2t
     3 files changed, 2 insertions(+), 8 deletions(-)

commit 70131c10ecf687a4ac8a4b9fed4325cff8b1cf19
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 3 00:05:15 2020 +1000

    L10n updates for: cs
    From translation svn revision: 55870
    
    Authors:
    Martina Letochova <letochova@seznam.cz>
    
    Stats:
    1       1       source/locale/cs/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 174ea14afe6ca23066ac6f94f64af4f7c3c607e4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 3 00:05:13 2020 +1000

    L10n updates for: ckb
    From translation svn revision: 55870
    
    Authors:
    Ali Ustek <aliustek@gmail.com>
    Patrick Galasso <Patrice.galasso@gmail.com>
    Jwanro Mustafa <jwanroabdula@hotmail.com>
    Kosrat D Ahmad <kosrat.d.ahmad@gmail.com>
    silva.hm88@gmail.com
    
    Stats:
    1       1       source/locale/ckb/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 7ca43683c93ed8bbeee027fc0eae03c6f5cd937d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 3 00:05:11 2020 +1000

    L10n updates for: bg
    From translation svn revision: 55870
    
    Authors:
    Zahari Yurukov <zahari.yurukov@gmail.com>
    Kostadin Kolev <k_kolev1985@mail.bg>
    
    Stats:
    37      4       source/locale/bg/LC_MESSAGES/nvda.po
     1 file changed, 37 insertions(+), 4 deletions(-)

commit 1c6d3c338e3856de00e7c676b3dc391222bc2409
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 3 00:05:08 2020 +1000

    L10n updates for: ar
    From translation svn revision: 55870
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Omar Alojaimi <amrahmad1995@gmail.com>
    
    Stats:
    1       1       source/locale/ar/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit cdce6be96a7f3e495f7e225c3f9cd772d14bb225
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Apr 3 00:05:05 2020 +1000

    L10n updates for: an
    From translation svn revision: 55870
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/an/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 2fa51725769b3ca950fcc6ce322183da327cc210
Author: Reef Turner <reef@nvaccess.org>
Date:   Mon Mar 30 18:56:47 2020 +0200

    Comments and white space style fix

commit b48225ca00ea3592843da76112a136651583d92c
Author: Reef Turner <reef@nvaccess.org>
Date:   Mon Mar 30 18:54:12 2020 +0200

    Extract class OrderedWinEventLimiter

commit 41252741c56e39bbba67a050e4f7407b99673d62
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Thu Apr 2 04:08:51 2020 -0700

    Flake8: ignore source/comInterfaces directory. (PR #10929)
    
    Ignore files located in source/comInterfaces directory when linting, as files in there come from third-party generated modules. This affects UI Automation COM interface as new interfaces are added.
    
    Fixes #10924

commit 6a99b7710b1fb2b6b48ad0afae83e3f3b15e60f4
Author: Reef Turner <reef@nvaccess.org>
Date:   Tue Mar 31 16:53:22 2020 +0200

    Create a package out of IAccessibleHandler

commit 54f1b727740f8a3aeecd38a8cbad1ba71c15efc7
Author: Reef Turner <reef@nvaccess.org>
Date:   Tue Mar 31 15:37:43 2020 +0200

    Update changes file for PR #10919

commit b5b6c799949a94dea7b34cdb9d5ad4d811d33f5b
Author: Bill Dengler <codeofdusk@gmail.com>
Date:   Tue Mar 31 09:35:48 2020 -0400

    Configure sub/super script formatting independently of font attributes (PR #10919)
    
    Reporting of superscript and subscript was based on the "report font attributes" setting.
    A new setting, "report superscripts and subscripts", allows configuring superscript/subscript formatting is announced.
    
    Initial value for setting will match current "report font attributes" on config upgrade.

commit 472a87edfb0f724b63204220e4679d753f1626f3
Author: Marco Zehe <MarcoZehe@users.noreply.github.com>
Date:   Tue Mar 31 03:59:41 2020 +0200

    Revert "Add appModule for Visual Studio Code Insiders (#10858)" (#10903)
    
    This reverts commit 3ba1f46995efa85849f942af0c9a827bc43e6ced.

commit c6b6904b030c09212d43df211da6d8d372785bdf
Author: Reef Turner <reef@nvaccess.org>
Date:   Mon Mar 30 16:51:55 2020 +0200

    Update changes file for PR #10832

commit 1ccc72c287271f803185fc972eba2caecc97985a
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Mon Mar 30 16:31:47 2020 +0200

    Update liblouis from 3.12.0 to 3.13.0 (PR #10832)
    
    Full change log: https://github.com/liblouis/liblouis/releases/tag/v3.13.0
    Also rename reference to ru.ctb

commit 47bf1dfb1b52cccc57c979383cad73f33b5e5a92
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Mon Mar 30 16:21:47 2020 +0200

    Use commandline config path if provided when opening in explorer (PR #10911)
    
    If NVDA config path is overridden on the command line and the user tries to open configuration directory via globalCommands the wrong profile is opened.
    
    Fix:
    globalVars.appArgs.configPath is used to retrieve actual config path falling back to config.getUserDefaultConfigPath() if the argument is not available.
    It may not be available if NVDA_slave is trying to open the directory.

commit e27e907158357a84312dd5db8173b646f80c5f35
Author: Reef Turner <reef@nvaccess.org>
Date:   Mon Mar 30 12:33:11 2020 +0200

    Update changes file for PR #10857

commit 00173d71d35120099f6f4dc94696ac57e013c4f3
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Mon Mar 30 03:30:42 2020 -0700

    Word 365: ignore UIA 'delete back word' events (PR #10857)
    
    Fixes #10851.
    
    In recent Word 365 releases, UIA notification events are fired by Word document object when editing functions are performed such as 'delete back word' being announced when Control+Backspace is pressed.
    Thus ignore these specific messages (with activity ID: AccSN2)

commit 44642ef37b7ee255aef77dc666bc8b18b8ac2195
Author: Reef Turner <reef@nvaccess.org>
Date:   Mon Mar 30 12:00:16 2020 +0200

    Update changes file for PR #10894

commit 33977084e6bff8f9426261260eb0298bd2ef9927
Author: PaulSVK <43407079+PaulSVK@users.noreply.github.com>
Date:   Mon Mar 30 11:57:05 2020 +0200

    Add appModule for ESET antivirus GUI (PR #10894)
    
    Fixes for:
    When switching pages in ESET Egui, nothing is read.
    Popup notifications are not read.
    On the other hand, some items are read twice when focused.
    
    How:
    - "obj.shouldAllowIAccessibleFocusEvent=True" fixes reading pages and notifications.
    - Checks object name and value for duplicates.
    - Object description is used for internal purposes, so there is no point reading it.

commit 2cdf280ba390496cc604dc9802d1e8f80a5c1829
Author: Reef Turner <reef@nvaccess.org>
Date:   Fri Mar 27 16:14:39 2020 +0100

    Update changes file for #10493

commit 4778d28b870203d6a6f2533286d34b88887f161b
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Fri Mar 27 16:07:40 2020 +0100

    Add script: open NVDA config directory (PR #10493)
    
    Fix for nvaccess/nvda#2214
    
    Refactoring:
    * hasUiAccess and execElevated are now moved to systemUtils
    * Importing hasUiAccess, and execElevated from config is now deprecated

commit b3211cf93f314b9aec969fea2c065f59dd378872
Merge: 2dceb73fe 040711174
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 27 00:06:39 2020 +1000

    Update translations.
    
    From translation svn revision: 55778

commit 040711174f1f82369b78808f6a13911975cee4ef
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 27 00:06:37 2020 +1000

    L10n updates for: zh_TW
    From translation svn revision: 55778
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    11      16      source/locale/zh_TW/LC_MESSAGES/nvda.po
    30      12      user_docs/zh_TW/userGuide.t2t
     2 files changed, 41 insertions(+), 28 deletions(-)

commit 5249dffec80fb0491b867df32aeb3f00137a75c8
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 27 00:06:35 2020 +1000

    L10n updates for: zh_HK
    From translation svn revision: 55778
    
    Authors:
    Eric Yip <ericycy@gmail.com>
    
    Stats:
    14      24      source/locale/zh_HK/LC_MESSAGES/nvda.po
     1 file changed, 14 insertions(+), 24 deletions(-)

commit 441d2b301461c1db0ab6f531dad0fc13f1922916
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 27 00:06:34 2020 +1000

    L10n updates for: zh_CN
    From translation svn revision: 55778
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    
    Stats:
    1       1       source/locale/zh_CN/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 2716a9b1a2d040bf0bf73627d1d2e58a964307e1
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 27 00:06:32 2020 +1000

    L10n updates for: vi
    From translation svn revision: 55778
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    1       1       source/locale/vi/LC_MESSAGES/nvda.po
    2       1       user_docs/vi/changes.t2t
    0       7       user_docs/vi/userGuide.t2t
     3 files changed, 3 insertions(+), 9 deletions(-)

commit 280c7ca304e9ede12aa15d4bd023ab38e44bbb3b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 27 00:06:29 2020 +1000

    L10n updates for: uk
    From translation svn revision: 55778
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    1       1       source/locale/uk/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 9706c6ed81ec27dd29a393f3197aae4395732deb
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 27 00:06:27 2020 +1000

    L10n updates for: tr
    From translation svn revision: 55778
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    1       1       source/locale/tr/LC_MESSAGES/nvda.po
    1       0       user_docs/tr/changes.t2t
    0       7       user_docs/tr/userGuide.t2t
     3 files changed, 2 insertions(+), 8 deletions(-)

commit b1747a0a213423bdef89c8d292d85d3e538d3d54
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 27 00:06:25 2020 +1000

    L10n updates for: ta
    From translation svn revision: 55778
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    4       4       source/locale/ta/LC_MESSAGES/nvda.po
    61      38      user_docs/ta/userGuide.t2t
     2 files changed, 65 insertions(+), 42 deletions(-)

commit c5916218b4cedc2657517a24801e702009f26eec
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 27 00:06:23 2020 +1000

    L10n updates for: sv
    From translation svn revision: 55778
    
    Authors:
    Daniel Johansson <daniel.johansson@coeptus.se>
    Niklas Johansson <sleeping.pillow@gmail.com>
    Karl-Otto Rosenqvist <Karl-otto@mawingu.se>
    
    Stats:
    1       1       source/locale/sv/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 986f938758ba7eef93bc0d38d64b5eb7cc734fcb
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 27 00:06:22 2020 +1000

    L10n updates for: sr
    From translation svn revision: 55778
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    1       1       source/locale/sr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit bf9f9316dfe93cf531ef4aadbe5d0cbb58c44c54
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 27 00:06:20 2020 +1000

    L10n updates for: sl
    From translation svn revision: 55778
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    170     2       source/locale/sl/LC_MESSAGES/nvda.po
     1 file changed, 170 insertions(+), 2 deletions(-)

commit c603757b18228e88102a6ba1b5b72c70d5bde57f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 27 00:06:18 2020 +1000

    L10n updates for: sk
    From translation svn revision: 55778
    
    Authors:
    Ondrej Rosik <ondrej.rosik@gmail.com>
    Peter Vagner <peter.v@datagate.sk>
    Jan Kulik <jan.kulik.szsle@outlook.sk>
    
    Stats:
    1       1       source/locale/sk/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 896d066b33b45118f23273f918c2983159f1da05
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 27 00:06:16 2020 +1000

    L10n updates for: ru
    From translation svn revision: 55778
    
    Authors:
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    1       1       source/locale/ru/LC_MESSAGES/nvda.po
    21      28      user_docs/ru/userGuide.t2t
     2 files changed, 22 insertions(+), 29 deletions(-)

commit 7a40e72667e3b89b7a437d2e233f8443c680cc7c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 27 00:06:13 2020 +1000

    L10n updates for: ro
    From translation svn revision: 55778
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    George Antonio Andrei <george.andrei2002@gmail.com>
    
    Stats:
    1       1       source/locale/ro/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 00c7bc02e15ab837a8ffd76213294b9971ce3548
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 27 00:06:11 2020 +1000

    L10n updates for: pt_PT
    From translation svn revision: 55778
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    1       1       source/locale/pt_PT/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 827d91246dfa4189f96176af685966c879d309be
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 27 00:06:09 2020 +1000

    L10n updates for: pt_BR
    From translation svn revision: 55778
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    1       1       source/locale/pt_BR/LC_MESSAGES/nvda.po
    1       0       user_docs/pt_BR/changes.t2t
    0       7       user_docs/pt_BR/userGuide.t2t
     3 files changed, 2 insertions(+), 8 deletions(-)

commit 551cba8d1841ea3b621596d5269be2970a376ae7
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 27 00:06:06 2020 +1000

    L10n updates for: pl
    From translation svn revision: 55778
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <hubmeyer1989@gmail.com>
    Arkadiusz Swietnicki <nuno69a@gmail.com>
    
    Stats:
    1       1       source/locale/pl/LC_MESSAGES/nvda.po
    1       0       user_docs/pl/changes.t2t
    29      11      user_docs/pl/userGuide.t2t
     3 files changed, 31 insertions(+), 12 deletions(-)

commit 8c8e6374b280e1d6cb2b2d5bdccb5b1504d8c674
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 27 00:06:04 2020 +1000

    L10n updates for: nl
    From translation svn revision: 55778
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    1       1       source/locale/nl/LC_MESSAGES/nvda.po
    0       7       user_docs/nl/userGuide.t2t
     2 files changed, 1 insertion(+), 8 deletions(-)

commit 1f7c7e466fbd4cbffb656e58fcbd02481a8189a2
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 27 00:06:02 2020 +1000

    L10n updates for: ne
    From translation svn revision: 55778
    
    Authors:
    Puskal Gautam <nvda.nepali@gmail.com>
    
    Stats:
    1       1       source/locale/ne/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit e4f64cd2a85b28b6deb31ea3333527d7b48715e7
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 27 00:05:58 2020 +1000

    L10n updates for: mn
    From translation svn revision: 55778
    
    Authors:
    Mongol NVDA-Translation <mongoliannvdatranslation@gmail.com>
    
    Stats:
    1       1       source/locale/mn/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit f504b50f22299aa1357f1277fe91f49a6d018928
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 27 00:05:56 2020 +1000

    L10n updates for: mk
    From translation svn revision: 55778
    
    Authors:
    zvonimir stanecic <9a5dsz@gozaltech.org>
    Kiko Lazarev <kristijan.lazarev@gmail.com>
    
    Stats:
    1       1       source/locale/mk/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 74f311732c26bf3b8339715a014d71998c1c4228
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 27 00:05:53 2020 +1000

    L10n updates for: ko
    From translation svn revision: 55778
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    1       1       source/locale/ko/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 79d6a7dbf181661de8f8ae6007cd393dc594475c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 27 00:05:50 2020 +1000

    L10n updates for: ja
    From translation svn revision: 55778
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    1       1       source/locale/ja/LC_MESSAGES/nvda.po
    2       1       source/locale/ja/symbols.dic
    2       9       user_docs/ja/userGuide.t2t
     3 files changed, 5 insertions(+), 11 deletions(-)

commit f811d96a1f0b8e5fd38c5ed7e5b89210b5b34b1d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 27 00:05:47 2020 +1000

    L10n updates for: it
    From translation svn revision: 55778
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    1       1       source/locale/it/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit be9431a13ec9527f880eac9859c03c586ee61621
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 27 00:05:44 2020 +1000

    L10n updates for: hu
    From translation svn revision: 55778
    
    Authors:
    Aron OcsvAri <oaron@nvda.hu>
    
    Stats:
    1       1       source/locale/hu/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit ef8e386b9599d6b701ee249b1c47972370412e41
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 27 00:05:42 2020 +1000

    L10n updates for: hr
    From translation svn revision: 55778
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Milo Ivir <mivir@milotype.de>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    1       1       source/locale/hr/LC_MESSAGES/nvda.po
    1       0       user_docs/hr/changes.t2t
    0       7       user_docs/hr/userGuide.t2t
     3 files changed, 2 insertions(+), 8 deletions(-)

commit f4cbef573085e7fd6bf2f9f256cc3a562ab52ba2
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 27 00:05:40 2020 +1000

    L10n updates for: hi
    From translation svn revision: 55778
    
    Authors:
    dipendra.lists@gmail.com
    Doc Mehta <joyofinspiring@gmail.com>
    
    Stats:
    1       1       source/locale/hi/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 04228faa753aa299ad1ab06369c9ce48e5c027ff
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 27 00:05:39 2020 +1000

    L10n updates for: he
    From translation svn revision: 55778
    
    Authors:
    Shmuel Naaman <shmuel_naaman@yahoo.com>
    Afik Sofir <afik.sofer@gmail.com>
    
    Stats:
    1       1       source/locale/he/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit fe84d05ed2febda1cb16a953b76b007a09f97e01
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 27 00:05:37 2020 +1000

    L10n updates for: gl
    From translation svn revision: 55778
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    Javier Curras <javier.curras@nvda.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/gl/LC_MESSAGES/nvda.po
    1       0       user_docs/gl/changes.t2t
    0       7       user_docs/gl/userGuide.t2t
     3 files changed, 2 insertions(+), 8 deletions(-)

commit a7cd8abe8378c5f9e1a560de0a418f6ec87433d7
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 27 00:05:35 2020 +1000

    L10n updates for: ga
    From translation svn revision: 55778
    
    Authors:
    Cearbhall OMeadhra <cearbhall.omeadhra@blbc.ie>
    Ronan McGuirk <ronan.p.mcguirk@gmail.com>
    Kevin Scannell <kscanne@gmail.com>
    
    Stats:
    47      65      source/locale/ga/LC_MESSAGES/nvda.po
     1 file changed, 47 insertions(+), 65 deletions(-)

commit 6144ef714895a0721e66d1a43c945cc761dce906
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 27 00:05:34 2020 +1000

    L10n updates for: fr
    From translation svn revision: 55778
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess.net>
    
    Stats:
    1       1       source/locale/fr/LC_MESSAGES/nvda.po
    4       3       user_docs/fr/changes.t2t
     2 files changed, 5 insertions(+), 4 deletions(-)

commit 8c6570b1f2bd082b67c45c47bfc8c02bb75e022a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 27 00:05:32 2020 +1000

    L10n updates for: fi
    From translation svn revision: 55778
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    1       1       source/locale/fi/LC_MESSAGES/nvda.po
    41      40      user_docs/fi/changes.t2t
    0       7       user_docs/fi/userGuide.t2t
     3 files changed, 42 insertions(+), 48 deletions(-)

commit 74cfc8ab94f51b2bbb958f18450dfb31a3abbd5a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 27 00:05:30 2020 +1000

    L10n updates for: fa
    From translation svn revision: 55778
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    1       1       source/locale/fa/LC_MESSAGES/nvda.po
    1       0       user_docs/fa/changes.t2t
    0       7       user_docs/fa/userGuide.t2t
     3 files changed, 2 insertions(+), 8 deletions(-)

commit ed00259f3db070a70bae794e8cef2859dfd7c079
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 27 00:05:27 2020 +1000

    L10n updates for: es
    From translation svn revision: 55778
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/es/LC_MESSAGES/nvda.po
    1       0       user_docs/es/changes.t2t
    0       7       user_docs/es/userGuide.t2t
     3 files changed, 2 insertions(+), 8 deletions(-)

commit 69b0141126826600a7d84de7414605c0689046ab
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 27 00:05:25 2020 +1000

    L10n updates for: es_CO
    From translation svn revision: 55778
    
    Authors:
    Jorge Zarache <reydelasmaquinas@outlook.com>
    Luis Carlos Gonzáles Moráles <luiscarlosgm@hotmail.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/es_CO/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit ae2725ea8e88666d52441aba741f9caadf9c511c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 27 00:05:23 2020 +1000

    L10n updates for: el
    From translation svn revision: 55778
    
    Authors:
    Irene Nakas <irnakas@gmail.com>
    Nikos Demetriou <nikosdemetriou@googlemail.com>
    access@e-rhetor.com
    
    Stats:
    1       1       source/locale/el/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 3c629526c83bd5883a27537ff94b9d829c87c9b6
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 27 00:05:21 2020 +1000

    L10n updates for: de
    From translation svn revision: 55778
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    11      11      source/locale/de/LC_MESSAGES/nvda.po
    3       2       source/locale/de/symbols.dic
    1       1       user_docs/de/changes.t2t
    7       14      user_docs/de/userGuide.t2t
     4 files changed, 22 insertions(+), 28 deletions(-)

commit cce89342046ab35a4f2351ffd2586426841c2680
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 27 00:05:17 2020 +1000

    L10n updates for: da
    From translation svn revision: 55778
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    1       1       source/locale/da/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit b5721d165b23d6090ee4cb3fc6b2d4d85001cfbc
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 27 00:05:16 2020 +1000

    L10n updates for: cs
    From translation svn revision: 55778
    
    Authors:
    Martina Letochova <letochova@seznam.cz>
    
    Stats:
    1       1       source/locale/cs/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit da6c2ed302e9fd304f5eb95e10a98bcccc1eb4e1
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 27 00:05:14 2020 +1000

    L10n updates for: ckb
    From translation svn revision: 55778
    
    Authors:
    Ali Ustek <aliustek@gmail.com>
    Patrick Galasso <Patrice.galasso@gmail.com>
    Jwanro Mustafa <jwanroabdula@hotmail.com>
    Kosrat D Ahmad <kosrat.d.ahmad@gmail.com>
    silva.hm88@gmail.com
    
    Stats:
    1       1       source/locale/ckb/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 2e1ae2882dabeb932ccd07920417b435221764b2
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 27 00:05:12 2020 +1000

    L10n updates for: bg
    From translation svn revision: 55778
    
    Authors:
    Zahari Yurukov <zahari.yurukov@gmail.com>
    Kostadin Kolev <k_kolev1985@mail.bg>
    
    Stats:
    26      59      source/locale/bg/LC_MESSAGES/nvda.po
     1 file changed, 26 insertions(+), 59 deletions(-)

commit 0943c4cf1395f9c03f94256889d8a4b10d637dff
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 27 00:05:09 2020 +1000

    L10n updates for: ar
    From translation svn revision: 55778
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Omar Alojaimi <amrahmad1995@gmail.com>
    
    Stats:
    1       1       source/locale/ar/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 37b192b68a0dcbbce3fc63f293410736ea9fbd97
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 27 00:05:05 2020 +1000

    L10n updates for: an
    From translation svn revision: 55778
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/an/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 5cd0c3fd854a0c7dfe9683074d3a612844c4d2f8
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Wed Mar 25 16:12:06 2020 +0100

    Add sponsor link to the GitHub repo

commit 2dceb73fe3e9f8f4c4a41aaabea8248c7fa1a4f3
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Mar 23 15:09:25 2020 +1000

    Added highlights blurb for 2020.1

commit 862cff41e5d0a61b761afd5936e30a1db0e2e485
Merge: 924c5295d 2a9bb490f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Mar 23 14:59:31 2020 +1000

    Update translations.
    
    From translation svn revision: 55616

commit 2a9bb490f7340f1679684510d3bee5e2ce62e9db
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Mar 23 14:59:29 2020 +1000

    L10n updates for: zh_TW
    From translation svn revision: 55616
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    1       1       source/locale/zh_TW/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 7c2ecad45240c59daf8d67bd85114ec267750ab2
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Mar 23 14:59:27 2020 +1000

    L10n updates for: zh_HK
    From translation svn revision: 55616
    
    Authors:
    Eric Yip <ericycy@gmail.com>
    
    Stats:
    1       1       source/locale/zh_HK/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 15fdf0133f1c9252ab43d2426f313b59f9c600f4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Mar 23 14:59:27 2020 +1000

    L10n updates for: zh_CN
    From translation svn revision: 55616
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    
    Stats:
    1       1       source/locale/zh_CN/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 73ab80b460d7894f9947f400ffb1765ac3dc839c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Mar 23 14:59:24 2020 +1000

    L10n updates for: vi
    From translation svn revision: 55616
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    1       1       source/locale/vi/LC_MESSAGES/nvda.po
    3       0       user_docs/vi/changes.t2t
     2 files changed, 4 insertions(+), 1 deletion(-)

commit 2b98c3baae9b745a7c4cacd001e3356c8896c9ee
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Mar 23 14:59:22 2020 +1000

    L10n updates for: uk
    From translation svn revision: 55616
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    1       1       source/locale/uk/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 7461a8cb607fb7ffc128a69e138c2334bc4d40f9
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Mar 23 14:59:21 2020 +1000

    L10n updates for: tr
    From translation svn revision: 55616
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    1       1       source/locale/tr/LC_MESSAGES/nvda.po
    3       0       user_docs/tr/changes.t2t
     2 files changed, 4 insertions(+), 1 deletion(-)

commit bd72ed6d1c7880a18cbb3f34517b613c0bbe0952
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Mar 23 14:59:19 2020 +1000

    L10n updates for: ta
    From translation svn revision: 55616
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    3       3       source/locale/ta/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 3 deletions(-)

commit 92a94234d24e8ed088efb42ef90886a968e6dc91
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Mar 23 14:59:17 2020 +1000

    L10n updates for: sv
    From translation svn revision: 55616
    
    Authors:
    Daniel Johansson <daniel.johansson@coeptus.se>
    Niklas Johansson <sleeping.pillow@gmail.com>
    Karl-Otto Rosenqvist <Karl-otto@mawingu.se>
    
    Stats:
    1       1       source/locale/sv/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit f9e884d0a5ddbad849d45ac9f00cf5b3a8ffdc01
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Mar 23 14:59:16 2020 +1000

    L10n updates for: sr
    From translation svn revision: 55616
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    1       1       source/locale/sr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 045ab4e2661571679b941c04e6518499bb7a4ff1
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Mar 23 14:59:14 2020 +1000

    L10n updates for: sl
    From translation svn revision: 55616
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    12      183     source/locale/sl/LC_MESSAGES/nvda.po
    149     113     user_docs/sl/userGuide.t2t
     2 files changed, 161 insertions(+), 296 deletions(-)

commit 936e8d95c7b27ec824f329dc549504b1506e9399
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Mar 23 14:59:13 2020 +1000

    L10n updates for: sk
    From translation svn revision: 55616
    
    Authors:
    Ondrej Rosik <ondrej.rosik@gmail.com>
    Peter Vagner <peter.v@datagate.sk>
    Jan Kulik <jan.kulik.szsle@outlook.sk>
    
    Stats:
    1       1       source/locale/sk/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit e3250ba8229e29c26b3190d0f0adf1474706a79e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Mar 23 14:59:11 2020 +1000

    L10n updates for: ru
    From translation svn revision: 55616
    
    Authors:
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    1       1       source/locale/ru/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit f16f7b6d5e2d4ed67d98812158b9e4a1b4d5c022
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Mar 23 14:59:08 2020 +1000

    L10n updates for: ro
    From translation svn revision: 55616
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    George Antonio Andrei <george.andrei2002@gmail.com>
    
    Stats:
    1       1       source/locale/ro/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit af6da062daa417cf2fd7fa9f5117f89784c7e4db
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Mar 23 14:59:06 2020 +1000

    L10n updates for: pt_PT
    From translation svn revision: 55616
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    1       1       source/locale/pt_PT/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit c9d54d561cc32b2a569de1123ebcad06e637a41b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Mar 23 14:59:04 2020 +1000

    L10n updates for: pt_BR
    From translation svn revision: 55616
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    1       1       source/locale/pt_BR/LC_MESSAGES/nvda.po
    3       0       user_docs/pt_BR/changes.t2t
     2 files changed, 4 insertions(+), 1 deletion(-)

commit 03a1d00ccc5f7f5ce6f8e17be3baa463535c4662
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Mar 23 14:59:02 2020 +1000

    L10n updates for: pl
    From translation svn revision: 55616
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <hubmeyer1989@gmail.com>
    Arkadiusz Swietnicki <nuno69a@gmail.com>
    
    Stats:
    1       1       source/locale/pl/LC_MESSAGES/nvda.po
    11      6       user_docs/pl/changes.t2t
    9       9       user_docs/pl/userGuide.t2t
     3 files changed, 21 insertions(+), 16 deletions(-)

commit 9c4994665656d04c091d96af631cc43645a637e8
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Mar 23 14:59:00 2020 +1000

    L10n updates for: nl
    From translation svn revision: 55616
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    1       1       source/locale/nl/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 2fb3843a238e509274bc36d8bf3742a3a285f67b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Mar 23 14:58:58 2020 +1000

    L10n updates for: ne
    From translation svn revision: 55616
    
    Authors:
    Puskal Gautam <nvda.nepali@gmail.com>
    
    Stats:
    1       1       source/locale/ne/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit a9ba04e3456168ab16749ae183cb802e3d2a0c3b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Mar 23 14:58:55 2020 +1000

    L10n updates for: mn
    From translation svn revision: 55616
    
    Authors:
    Mongol NVDA-Translation <mongoliannvdatranslation@gmail.com>
    
    Stats:
    1       1       source/locale/mn/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit dce0e1d4416e24b4af089077a3b51ce5493f3ebd
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Mar 23 14:58:53 2020 +1000

    L10n updates for: mk
    From translation svn revision: 55616
    
    Authors:
    zvonimir stanecic <9a5dsz@gozaltech.org>
    Kiko Lazarev <kristijan.lazarev@gmail.com>
    
    Stats:
    1       1       source/locale/mk/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit a9c412baab4f27668d7896726a6c34c090c31bcb
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Mar 23 14:58:51 2020 +1000

    L10n updates for: ko
    From translation svn revision: 55616
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    8       9       source/locale/ko/LC_MESSAGES/nvda.po
     1 file changed, 8 insertions(+), 9 deletions(-)

commit 3753e2f82e448ec8fb8e21cdf4e6dfb3f6670f62
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Mar 23 14:58:48 2020 +1000

    L10n updates for: ja
    From translation svn revision: 55616
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    1       1       source/locale/ja/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 8b16e8cf40ea07c4fd30150709321d27a8567c97
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Mar 23 14:58:46 2020 +1000

    L10n updates for: it
    From translation svn revision: 55616
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    1       1       source/locale/it/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit ba38ecfb7913a4773f5246ce62090554b3794262
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Mar 23 14:58:43 2020 +1000

    L10n updates for: hu
    From translation svn revision: 55616
    
    Authors:
    Aron OcsvAri <oaron@nvda.hu>
    
    Stats:
    1       1       source/locale/hu/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 0cf88277c3d93a5e46a649a18ec206d3b377db62
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Mar 23 14:58:41 2020 +1000

    L10n updates for: hr
    From translation svn revision: 55616
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Milo Ivir <mivir@milotype.de>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    1       1       source/locale/hr/LC_MESSAGES/nvda.po
    2       0       user_docs/hr/changes.t2t
     2 files changed, 3 insertions(+), 1 deletion(-)

commit 116ac1a6e35dd762fc5206b4f69336f7418c0d2c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Mar 23 14:58:40 2020 +1000

    L10n updates for: hi
    From translation svn revision: 55616
    
    Authors:
    dipendra.lists@gmail.com
    Doc Mehta <joyofinspiring@gmail.com>
    
    Stats:
    1       1       source/locale/hi/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 1fb28931c59757211c2ddf499cfc27440ca54300
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Mar 23 14:58:39 2020 +1000

    L10n updates for: he
    From translation svn revision: 55616
    
    Authors:
    Shmuel Naaman <shmuel_naaman@yahoo.com>
    Afik Sofir <afik.sofer@gmail.com>
    
    Stats:
    1       1       source/locale/he/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 2746075685df93e61c70fb43a61939d3ef72d43f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Mar 23 14:58:37 2020 +1000

    L10n updates for: gl
    From translation svn revision: 55616
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    Javier Curras <javier.curras@nvda.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/gl/LC_MESSAGES/nvda.po
    3       0       user_docs/gl/changes.t2t
     2 files changed, 4 insertions(+), 1 deletion(-)

commit 60438966bf4b81084a430b6cb8ddf6adf767c944
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Mar 23 14:58:35 2020 +1000

    L10n updates for: ga
    From translation svn revision: 55616
    
    Authors:
    Cearbhall OMeadhra <cearbhall.omeadhra@blbc.ie>
    Ronan McGuirk <ronan.p.mcguirk@gmail.com>
    Kevin Scannell <kscanne@gmail.com>
    
    Stats:
    1       1       source/locale/ga/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 722707ad7eec47af8607764c2df9c540dd43e056
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Mar 23 14:58:35 2020 +1000

    L10n updates for: fr
    From translation svn revision: 55616
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess.net>
    
    Stats:
    1       1       source/locale/fr/LC_MESSAGES/nvda.po
    3       0       user_docs/fr/changes.t2t
     2 files changed, 4 insertions(+), 1 deletion(-)

commit 5bad462b034f43135532b5b5e804582d80e66dbd
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Mar 23 14:58:33 2020 +1000

    L10n updates for: fi
    From translation svn revision: 55616
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    1       1       source/locale/fi/LC_MESSAGES/nvda.po
    2       0       user_docs/fi/changes.t2t
     2 files changed, 3 insertions(+), 1 deletion(-)

commit 9101cfe0f0778d064cf83263c5fea8af8b4398a5
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Mar 23 14:58:30 2020 +1000

    L10n updates for: fa
    From translation svn revision: 55616
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    1       1       source/locale/fa/LC_MESSAGES/nvda.po
    2       0       user_docs/fa/changes.t2t
     2 files changed, 3 insertions(+), 1 deletion(-)

commit f2d7405f65d0a4d26260c7ccf0756c999953fb48
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Mar 23 14:58:28 2020 +1000

    L10n updates for: es
    From translation svn revision: 55616
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/es/LC_MESSAGES/nvda.po
    3       0       user_docs/es/changes.t2t
     2 files changed, 4 insertions(+), 1 deletion(-)

commit ff90c05ce020ce85e8b2de5f6e778e080f3795f1
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Mar 23 14:58:26 2020 +1000

    L10n updates for: es_CO
    From translation svn revision: 55616
    
    Authors:
    Jorge Zarache <reydelasmaquinas@outlook.com>
    Luis Carlos Gonzáles Moráles <luiscarlosgm@hotmail.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/es_CO/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit a4695cecc4af00c68b08c9899dd15cb3178d889e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Mar 23 14:58:24 2020 +1000

    L10n updates for: el
    From translation svn revision: 55616
    
    Authors:
    Irene Nakas <irnakas@gmail.com>
    Nikos Demetriou <nikosdemetriou@googlemail.com>
    access@e-rhetor.com
    
    Stats:
    1       1       source/locale/el/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 5cee75e7ddcad61f18624bcd90741df189dd6bbd
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Mar 23 14:58:23 2020 +1000

    L10n updates for: de
    From translation svn revision: 55616
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    1       1       source/locale/de/LC_MESSAGES/nvda.po
    3       0       user_docs/de/changes.t2t
     2 files changed, 4 insertions(+), 1 deletion(-)

commit bf7364b540d15a35a8fc83d04ca448c1e93c7b8a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Mar 23 14:58:19 2020 +1000

    L10n updates for: da
    From translation svn revision: 55616
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    1       1       source/locale/da/LC_MESSAGES/nvda.po
    2       1       source/locale/da/symbols.dic
    2       0       user_docs/da/changes.t2t
     3 files changed, 5 insertions(+), 2 deletions(-)

commit 919cd5bccac3d0a057c4fa274844a29544e3aef6
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Mar 23 14:58:18 2020 +1000

    L10n updates for: cs
    From translation svn revision: 55616
    
    Authors:
    Martina Letochova <letochova@seznam.cz>
    
    Stats:
    1       1       source/locale/cs/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit d22456f7805e3fd987ed5defa54fdaac00bca7da
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Mar 23 14:58:16 2020 +1000

    L10n updates for: ckb
    From translation svn revision: 55616
    
    Authors:
    Ali Ustek <aliustek@gmail.com>
    Patrick Galasso <Patrice.galasso@gmail.com>
    Jwanro Mustafa <jwanroabdula@hotmail.com>
    Kosrat D Ahmad <kosrat.d.ahmad@gmail.com>
    silva.hm88@gmail.com
    
    Stats:
    1       1       source/locale/ckb/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 7b5915ef328ee36b44f84fa49afff5405d2e9f40
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Mar 23 14:58:15 2020 +1000

    L10n updates for: bg
    From translation svn revision: 55616
    
    Authors:
    Zahari Yurukov <zahari.yurukov@gmail.com>
    Kostadin Kolev <k_kolev1985@mail.bg>
    
    Stats:
    1       1       source/locale/bg/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit e9a23340320fca05ae8e1ffb083db1b978ed5775
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Mar 23 14:58:11 2020 +1000

    L10n updates for: ar
    From translation svn revision: 55616
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Omar Alojaimi <amrahmad1995@gmail.com>
    
    Stats:
    1       1       source/locale/ar/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 573e18d74ebff99f5c7ceb60b079daa8df399f8c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Mar 23 14:58:08 2020 +1000

    L10n updates for: an
    From translation svn revision: 55616
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/an/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 924c5295dd0a6ec9695cfc5fe2213a327430bf13
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Mon Mar 23 14:50:43 2020 +1000

    Out of date information for Skype was still included in the user guide. (#10893)

commit ced1faffc346bfed99c82f44065876cc8adf9d8b
Author: Reef Turner <reef@nvaccess.org>
Date:   Fri Mar 20 13:05:17 2020 +0100

    Update changes file for PR #10778

commit 8ae6dcaa368aa8b7b92fb6ff2dcccd3b9b652adb
Author: m-noman <60925266+m-noman@users.noreply.github.com>
Date:   Fri Mar 20 05:01:31 2020 -0700

    Support Nattiq nBraille display (PR #10778)
    
    Built in support for Nattiq nBraille displays.
    
    Co-authored-by: Leonard de Ruijter <leonardder@users.noreply.github.com>

commit bb0520cf79fb1021fd3a67feeb2938ae413d63d0
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Fri Mar 20 10:54:07 2020 +0100

    Enable building with different version of Scons than repo submodule (PR #10883)
    
    Modify SConscript to make it possible to build with different version of SCons than the one bundled in the repository
    Closes https://github.com/nvaccess/nvda/issues/10876
    
    Use Scons installed with Python (rather than the repo submodule) by moving to the top dir of the repo and executing `c:\Python37\Scripts\scons.bat`

commit 56ae209a99f2e89d685bb91abf64518d557f45e7
Author: Reef Turner <reef@nvaccess.org>
Date:   Fri Mar 20 10:41:25 2020 +0100

    Update changes file for PR #10802
    
    Include sections for 2020.2

commit 3c6934dade5c945a113773942656e555c117b478
Author: Dawid Pieper <dawidpieper@o2.pl>
Date:   Fri Mar 20 09:53:17 2020 +0100

    Fix of error preventing start when log unavailable (PR #10802)
    
    Sometimes NVDA is unable to create a log file.
    This may be due to running out of disk space in the `%temp%` folder or missing access privileges.
    
    NVDA now starts in such situations.
    
    When log cannot be created, this fix ignores the exception and continues, log messages are sent to NullHandler.
    Opening the Log Viewer shows an error dialog in this situation.

commit 65d93395e7420892a252ec0229f6466aacb210f8
Merge: edbc1cbd9 7abf7b270
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 20 00:06:28 2020 +1000

    Update translations.
    
    From translation svn revision: 55501

commit 7abf7b2703f24cdf24ce032ee9ec4d15676cb0b7
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 20 00:06:27 2020 +1000

    L10n updates for: zh_TW
    From translation svn revision: 55501
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    1       1       source/locale/zh_TW/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit d16ceab341ad3c1d769606c0769e859677b7833b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 20 00:06:25 2020 +1000

    L10n updates for: zh_HK
    From translation svn revision: 55501
    
    Authors:
    Eric Yip <ericycy@gmail.com>
    
    Stats:
    1       1       source/locale/zh_HK/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 241a06a818e201059ff5af088ba860ca6d76485f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 20 00:06:24 2020 +1000

    L10n updates for: zh_CN
    From translation svn revision: 55501
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    
    Stats:
    1       1       source/locale/zh_CN/LC_MESSAGES/nvda.po
    45      0       user_docs/zh_CN/changes.t2t
     2 files changed, 46 insertions(+), 1 deletion(-)

commit d74454c8bfea43aedcf82de4003753d8db9a8bda
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 20 00:06:22 2020 +1000

    L10n updates for: vi
    From translation svn revision: 55501
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    1       1       source/locale/vi/LC_MESSAGES/nvda.po
    14      2       user_docs/vi/changes.t2t
    30      5       user_docs/vi/userGuide.t2t
     3 files changed, 45 insertions(+), 8 deletions(-)

commit b2d0bf2aca6aadc85102482b91a3bb2eb221c94a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 20 00:06:20 2020 +1000

    L10n updates for: uk
    From translation svn revision: 55501
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    1       1       source/locale/uk/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit ef3c861723c6d19a82efcd1f7934d906ed32d3f4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 20 00:06:18 2020 +1000

    L10n updates for: tr
    From translation svn revision: 55501
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    1       1       source/locale/tr/LC_MESSAGES/nvda.po
    15      12      user_docs/tr/changes.t2t
    30      5       user_docs/tr/userGuide.t2t
     3 files changed, 46 insertions(+), 18 deletions(-)

commit 9b4b71331f0e5d5b3a4cd83193b0ea73482dc081
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 20 00:06:16 2020 +1000

    L10n updates for: ta
    From translation svn revision: 55501
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    10      13      source/locale/ta/LC_MESSAGES/nvda.po
    2       1       source/locale/ta/symbols.dic
     2 files changed, 12 insertions(+), 14 deletions(-)

commit 3ed9562d21c970fb34b564ed56c26407118d4cfc
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 20 00:06:14 2020 +1000

    L10n updates for: sv
    From translation svn revision: 55501
    
    Authors:
    Daniel Johansson <daniel.johansson@coeptus.se>
    Niklas Johansson <sleeping.pillow@gmail.com>
    Karl-Otto Rosenqvist <Karl-otto@mawingu.se>
    
    Stats:
    11      14      source/locale/sv/LC_MESSAGES/nvda.po
     1 file changed, 11 insertions(+), 14 deletions(-)

commit 4acd62fe0153b514c2903b3d8d4177a0a0929a51
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 20 00:06:13 2020 +1000

    L10n updates for: sr
    From translation svn revision: 55501
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    1       1       source/locale/sr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 8b770f2a9f5006d667c4c981660b6524e20ade66
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 20 00:06:12 2020 +1000

    L10n updates for: sl
    From translation svn revision: 55501
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    1       1       source/locale/sl/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 02df185b4c3f15277988bbf9b2affb0d3eb73da7
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 20 00:06:10 2020 +1000

    L10n updates for: sk
    From translation svn revision: 55501
    
    Authors:
    Ondrej Rosik <ondrej.rosik@gmail.com>
    Peter Vagner <peter.v@datagate.sk>
    Jan Kulik <jan.kulik.szsle@outlook.sk>
    
    Stats:
    1       1       source/locale/sk/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 974eb3ad0a0c9e86bdf0dd25ffdc6873ab1c5bdc
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 20 00:06:08 2020 +1000

    L10n updates for: ru
    From translation svn revision: 55501
    
    Authors:
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    1       1       source/locale/ru/LC_MESSAGES/nvda.po
    149     124     user_docs/ru/userGuide.t2t
     2 files changed, 150 insertions(+), 125 deletions(-)

commit 0c6c355be23cbbb68d357db24f4d35c435562719
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 20 00:06:05 2020 +1000

    L10n updates for: ro
    From translation svn revision: 55501
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    George Antonio Andrei <george.andrei2002@gmail.com>
    
    Stats:
    1       1       source/locale/ro/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 89d44807aae5af6a4af940f2dd16caea74ac723d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 20 00:06:04 2020 +1000

    L10n updates for: pt_PT
    From translation svn revision: 55501
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    11      14      source/locale/pt_PT/LC_MESSAGES/nvda.po
    38      0       user_docs/pt_PT/changes.t2t
    15      10      user_docs/pt_PT/userGuide.t2t
     3 files changed, 64 insertions(+), 24 deletions(-)

commit 7385a126d549644c359699b76c344fa972b8303d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 20 00:06:01 2020 +1000

    L10n updates for: pt_BR
    From translation svn revision: 55501
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    2       2       source/locale/pt_BR/LC_MESSAGES/nvda.po
    15      12      user_docs/pt_BR/changes.t2t
    29      4       user_docs/pt_BR/userGuide.t2t
     3 files changed, 46 insertions(+), 18 deletions(-)

commit cc8025a56513fb0fb66d582226d919dd6eaad3ac
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 20 00:05:59 2020 +1000

    L10n updates for: pl
    From translation svn revision: 55501
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <hubmeyer1989@gmail.com>
    Arkadiusz Swietnicki <nuno69a@gmail.com>
    
    Stats:
    1       1       source/locale/pl/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit feeaa0a1f2efcffa338eab84bdec8e5c23bb2f5a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 20 00:05:57 2020 +1000

    L10n updates for: nl
    From translation svn revision: 55501
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    9       14      source/locale/nl/LC_MESSAGES/nvda.po
    43      15      user_docs/nl/userGuide.t2t
     2 files changed, 52 insertions(+), 29 deletions(-)

commit ac865441e74307a5a02799c41e5d511b2fcd898b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 20 00:05:55 2020 +1000

    L10n updates for: ne
    From translation svn revision: 55501
    
    Authors:
    Puskal Gautam <nvda.nepali@gmail.com>
    
    Stats:
    529     332     source/locale/ne/LC_MESSAGES/nvda.po
     1 file changed, 529 insertions(+), 332 deletions(-)

commit 8ff0ec48f1598e00153717b66374c8621d06cef1
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 20 00:05:52 2020 +1000

    L10n updates for: mn
    From translation svn revision: 55501
    
    Authors:
    Mongol NVDA-Translation <mongoliannvdatranslation@gmail.com>
    
    Stats:
    1       1       source/locale/mn/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit b6b7d85207e3ab45e5b0bfc41c167d310a2b34fa
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 20 00:05:50 2020 +1000

    L10n updates for: mk
    From translation svn revision: 55501
    
    Authors:
    zvonimir stanecic <9a5dsz@gozaltech.org>
    Kiko Lazarev <kristijan.lazarev@gmail.com>
    
    Stats:
    1       1       source/locale/mk/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 59e3f8c2a6c8e1f82f8dab5096da78b826897c20
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 20 00:05:48 2020 +1000

    L10n updates for: ko
    From translation svn revision: 55501
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    1       1       source/locale/ko/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit fd438c1db33a87fdcad71b34837277af6bada7e8
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 20 00:05:45 2020 +1000

    L10n updates for: ja
    From translation svn revision: 55501
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    11      14      source/locale/ja/LC_MESSAGES/nvda.po
    42      12      user_docs/ja/userGuide.t2t
     2 files changed, 53 insertions(+), 26 deletions(-)

commit c9275bf2e6dd3021166de3e86bc87b5ee0ae0be2
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 20 00:05:43 2020 +1000

    L10n updates for: it
    From translation svn revision: 55501
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    1       1       source/locale/it/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit fc781f8127ef1092df406ad6c07570950cc1f427
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 20 00:05:40 2020 +1000

    L10n updates for: hu
    From translation svn revision: 55501
    
    Authors:
    Aron OcsvAri <oaron@nvda.hu>
    
    Stats:
    1       1       source/locale/hu/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 5dd80f092aceb9e74fc6cf78fe1702ba6b97c715
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 20 00:05:38 2020 +1000

    L10n updates for: hr
    From translation svn revision: 55501
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Milo Ivir <mivir@milotype.de>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    7       7       source/locale/hr/LC_MESSAGES/nvda.po
    9       6       user_docs/hr/changes.t2t
    29      4       user_docs/hr/userGuide.t2t
     3 files changed, 45 insertions(+), 17 deletions(-)

commit 88124c018bdebf2a91fcd1f4a73529e09884634b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 20 00:05:36 2020 +1000

    L10n updates for: hi
    From translation svn revision: 55501
    
    Authors:
    dipendra.lists@gmail.com
    Doc Mehta <joyofinspiring@gmail.com>
    
    Stats:
    659     284     source/locale/hi/LC_MESSAGES/nvda.po
     1 file changed, 659 insertions(+), 284 deletions(-)

commit 77c2ad0de26fbf0c93997e9938723368d94ea245
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 20 00:05:35 2020 +1000

    L10n updates for: he
    From translation svn revision: 55501
    
    Authors:
    Shmuel Naaman <shmuel_naaman@yahoo.com>
    Afik Sofir <afik.sofer@gmail.com>
    
    Stats:
    1       1       source/locale/he/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit c528acadc568027ed554b090bcef8718b0438dbb
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 20 00:05:34 2020 +1000

    L10n updates for: gl
    From translation svn revision: 55501
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    Javier Curras <javier.curras@nvda.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/gl/LC_MESSAGES/nvda.po
    16      14      user_docs/gl/changes.t2t
    30      4       user_docs/gl/userGuide.t2t
     3 files changed, 47 insertions(+), 19 deletions(-)

commit 78566c0605a66569f4f7f654bafcd20b1798a8b7
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 20 00:05:32 2020 +1000

    L10n updates for: ga
    From translation svn revision: 55501
    
    Authors:
    Cearbhall OMeadhra <cearbhall.omeadhra@blbc.ie>
    Ronan McGuirk <ronan.p.mcguirk@gmail.com>
    Kevin Scannell <kscanne@gmail.com>
    
    Stats:
    1       1       source/locale/ga/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit cd17f2372ef675dacc1ab46ecd0b05d582e5d804
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 20 00:05:31 2020 +1000

    L10n updates for: fr
    From translation svn revision: 55501
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess.net>
    
    Stats:
    12      15      source/locale/fr/LC_MESSAGES/nvda.po
    24      21      user_docs/fr/changes.t2t
    29      4       user_docs/fr/userGuide.t2t
     3 files changed, 65 insertions(+), 40 deletions(-)

commit a77933b623ce50296a397bce87ca2e46dc1d5ccd
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 20 00:05:29 2020 +1000

    L10n updates for: fi
    From translation svn revision: 55501
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    1       1       source/locale/fi/LC_MESSAGES/nvda.po
    4       0       user_docs/fi/changes.t2t
    31      6       user_docs/fi/userGuide.t2t
     3 files changed, 36 insertions(+), 7 deletions(-)

commit 12142dc6fbfc729c668c2528f15dae2da2041e83
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 20 00:05:27 2020 +1000

    L10n updates for: fa
    From translation svn revision: 55501
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    1       1       source/locale/fa/LC_MESSAGES/nvda.po
    5       2       user_docs/fa/changes.t2t
    29      4       user_docs/fa/userGuide.t2t
     3 files changed, 35 insertions(+), 7 deletions(-)

commit 32505b54c9eda660efc1a9a2eca22d30d304f114
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 20 00:05:25 2020 +1000

    L10n updates for: es
    From translation svn revision: 55501
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/es/LC_MESSAGES/nvda.po
    16      14      user_docs/es/changes.t2t
    31      4       user_docs/es/userGuide.t2t
     3 files changed, 48 insertions(+), 19 deletions(-)

commit 1147514066ca21508ae70800cf082fa1cb5e0e62
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 20 00:05:22 2020 +1000

    L10n updates for: es_CO
    From translation svn revision: 55501
    
    Authors:
    Jorge Zarache <reydelasmaquinas@outlook.com>
    Luis Carlos Gonzáles Moráles <luiscarlosgm@hotmail.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/es_CO/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 533b52c46ef0b27ac48d93f1259c4e2070712efc
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 20 00:05:20 2020 +1000

    L10n updates for: el
    From translation svn revision: 55501
    
    Authors:
    Irene Nakas <irnakas@gmail.com>
    Nikos Demetriou <nikosdemetriou@googlemail.com>
    access@e-rhetor.com
    
    Stats:
    1       1       source/locale/el/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 2ee2ef8f3b4be576423e022c7766918c49f1371e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 20 00:05:19 2020 +1000

    L10n updates for: de
    From translation svn revision: 55501
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    1       1       source/locale/de/LC_MESSAGES/nvda.po
    13      10      user_docs/de/changes.t2t
    30      5       user_docs/de/userGuide.t2t
     3 files changed, 44 insertions(+), 16 deletions(-)

commit 02c1e85e0597325268ac15e21ce3a38f0fc664a6
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 20 00:05:15 2020 +1000

    L10n updates for: da
    From translation svn revision: 55501
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    11      14      source/locale/da/LC_MESSAGES/nvda.po
    17      69      user_docs/da/changes.t2t
    48      18      user_docs/da/userGuide.t2t
     3 files changed, 76 insertions(+), 101 deletions(-)

commit 8f3359864f26778e52826b70b76d3a2337f46c75
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 20 00:05:14 2020 +1000

    L10n updates for: cs
    From translation svn revision: 55501
    
    Authors:
    Martina Letochova <letochova@seznam.cz>
    
    Stats:
    1       1       source/locale/cs/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit acf44cc1ec3a86faca3679786d6167efe75bd772
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 20 00:05:13 2020 +1000

    L10n updates for: ckb
    From translation svn revision: 55501
    
    Authors:
    Ali Ustek <aliustek@gmail.com>
    Patrick Galasso <Patrice.galasso@gmail.com>
    Jwanro Mustafa <jwanroabdula@hotmail.com>
    Kosrat D Ahmad <kosrat.d.ahmad@gmail.com>
    silva.hm88@gmail.com
    
    Stats:
    34      36      source/locale/ckb/LC_MESSAGES/nvda.po
     1 file changed, 34 insertions(+), 36 deletions(-)

commit 32bcbe3a0bb95ec3f1efa482b0bab42992d3995c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 20 00:05:11 2020 +1000

    L10n updates for: bg
    From translation svn revision: 55501
    
    Authors:
    Zahari Yurukov <zahari.yurukov@gmail.com>
    Kostadin Kolev <k_kolev1985@mail.bg>
    
    Stats:
    1       1       source/locale/bg/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 9e91093718ddf535e6269d57ed7bd3bf6d7fe6aa
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 20 00:05:07 2020 +1000

    L10n updates for: ar
    From translation svn revision: 55501
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Omar Alojaimi <amrahmad1995@gmail.com>
    
    Stats:
    1       1       source/locale/ar/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit e167e666f110cc02827b12e662adabe4af4ad039
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 20 00:05:04 2020 +1000

    L10n updates for: an
    From translation svn revision: 55501
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/an/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit a32d7e2e2d66853829d8700bbd2798d105ba02d4
Merge: 21b2ed743 edbc1cbd9
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Mar 18 19:01:23 2020 +1000

    Merge branch 'beta'

commit edbc1cbd9abb0c2c32cabe972f9097fcd4353873
Merge: 96cabdf1d 21b2ed743
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Mar 18 19:00:43 2020 +1000

    Merge branch 'master' into beta

commit 21b2ed743af5a3e19d01b147f095d835f558322d
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Mar 18 09:46:51 2020 +1000

    Update what's new for pr #10868

commit 9b7666d9f287c10242a44d0bac257fce545ac6da
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Mar 17 18:07:35 2020 +1000

    Update what's new for pr  #10878

commit 7d2090e896856ce7254468537f2ec4bb4b1f978e
Author: CyrilleB79 <cyrille.bougot2@laposte.net>
Date:   Wed Mar 18 00:43:54 2020 +0100

    Allow again _FakeTableCell to have no location defined. (#10868)

commit c8baa820606baf6ef551d3591eb4aabc4429f509
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Tue Mar 17 18:05:57 2020 +1000

    sayAll skim reading no longer keeps announcing exiting initial control fields (#10878)
    
    * Fix #10706: SayAll with skim reading keeps repeting the initial control fields when arrowing out and away from them.
    
    * no longer have speech.getTextInfoSpeech handle speakWithoutPauses for sayAll, rather this is done in speakTextInfo. This means that gettextInfoSpeech is now more predictable in its output.
    * sayAllHandler's nextLine method  ensures the _lineReached callback can see the TextInfoState after state for the line being spoken has been applied. Previously it was one line behind.
    * sayAllHandler's nextLine method manually inserts the _reached callback at the very beginning of the speech sequence, as previously using _prefix on speakTextInfo would place it after initial controlFields were spoken.
    
    * Fix linting issues.
    
    * Add deprecation comment.

commit 6c92e9e4e9fcab68ea0e42ecd8481c8066d990c6
Author: Reef Turner <reef@nvaccess.org>
Date:   Tue Mar 17 07:54:45 2020 +0100

    Update changes file for PR #10875

commit 2ecd013baa5662962068e4a9f5b299d6caabf48c
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue Mar 17 07:50:38 2020 +0100

    Catch exceptions when creating shortcuts (PR #10875)
    
    Partial fix for #5166 #6326
    
    Some unicode characters can not be used by the wsh API to create a shortcut. Sometimes translations contain these characters causing an error during installation.
    Mitigate this issue by wrapping each call to create shortcut in a try block, on error try to create the shortcut without translation.

commit 28c6a720cc1c976368ca55b4a94a2efb9ed96409
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Tue Mar 17 14:27:47 2020 +1000

    Don't fail to speak single letters if speechViewer or speech logging is enabled (#10879)
    
    * speech.speak: If the given speech sequence is a Generator, flatten it into a list first, as we may be iterating over it multiple times (E.g. logging bad sequence types, appending to speech viewer, sending to the synth).
    
    * Fix linting issues

commit 96cabdf1d756c5dca787491e0a891f183e5e828a
Merge: 607af26c0 e1b9d94b2
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 13 00:06:27 2020 +1000

    Update translations.
    
    From translation svn revision: 55289

commit e1b9d94b2029fac8652292774a52e0ea02ebd36d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 13 00:06:26 2020 +1000

    L10n updates for: zh_TW
    From translation svn revision: 55289
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    37      4       source/locale/zh_TW/LC_MESSAGES/nvda.po
    24      19      user_docs/zh_TW/userGuide.t2t
     2 files changed, 61 insertions(+), 23 deletions(-)

commit d0b32968da8a23173583033c53fd2ed89d8ca1ca
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 13 00:06:24 2020 +1000

    L10n updates for: zh_HK
    From translation svn revision: 55289
    
    Authors:
    Eric Yip <ericycy@gmail.com>
    
    Stats:
    37      4       source/locale/zh_HK/LC_MESSAGES/nvda.po
     1 file changed, 37 insertions(+), 4 deletions(-)

commit d2dc3519de85e6ce7d180a05f798a537886e5151
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 13 00:06:23 2020 +1000

    L10n updates for: zh_CN
    From translation svn revision: 55289
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    
    Stats:
    37      9       source/locale/zh_CN/LC_MESSAGES/nvda.po
     1 file changed, 37 insertions(+), 9 deletions(-)

commit 8a0ad49e25bf2acb89c1302e1eb91029b04567c8
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 13 00:06:21 2020 +1000

    L10n updates for: vi
    From translation svn revision: 55289
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    37      7       source/locale/vi/LC_MESSAGES/nvda.po
    2       1       source/locale/vi/symbols.dic
    18      0       user_docs/vi/changes.t2t
    15      10      user_docs/vi/userGuide.t2t
     4 files changed, 72 insertions(+), 18 deletions(-)

commit 56f095c17ead625156424cba4e3c33caf4312402
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 13 00:06:19 2020 +1000

    L10n updates for: uk
    From translation svn revision: 55289
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    37      4       source/locale/uk/LC_MESSAGES/nvda.po
     1 file changed, 37 insertions(+), 4 deletions(-)

commit 647274eb787e3e0f88d4064895ce3cb2d569d58f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 13 00:06:18 2020 +1000

    L10n updates for: tr
    From translation svn revision: 55289
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    37      7       source/locale/tr/LC_MESSAGES/nvda.po
    2       1       source/locale/tr/symbols.dic
    42      0       user_docs/tr/changes.t2t
    15      10      user_docs/tr/userGuide.t2t
     4 files changed, 96 insertions(+), 18 deletions(-)

commit 9a5dd0d7013ee9061d75a2bcb46363cad79d8f8a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 13 00:06:16 2020 +1000

    L10n updates for: ta
    From translation svn revision: 55289
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    37      4       source/locale/ta/LC_MESSAGES/nvda.po
     1 file changed, 37 insertions(+), 4 deletions(-)

commit 79a90df5cdeeef10eb2e4cee6eb41ca0ac9b04d5
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 13 00:06:14 2020 +1000

    L10n updates for: sv
    From translation svn revision: 55289
    
    Authors:
    Daniel Johansson <daniel.johansson@coeptus.se>
    Niklas Johansson <sleeping.pillow@gmail.com>
    Karl-Otto Rosenqvist <Karl-otto@mawingu.se>
    
    Stats:
    37      4       source/locale/sv/LC_MESSAGES/nvda.po
     1 file changed, 37 insertions(+), 4 deletions(-)

commit df487e1cb16749934db969a2083fe797d6cb5611
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 13 00:06:13 2020 +1000

    L10n updates for: sr
    From translation svn revision: 55289
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    37      4       source/locale/sr/LC_MESSAGES/nvda.po
     1 file changed, 37 insertions(+), 4 deletions(-)

commit 1f54fd2cc186c6c2ad74b0429b6b24bcedbf7233
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 13 00:06:11 2020 +1000

    L10n updates for: sl
    From translation svn revision: 55289
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    37      4       source/locale/sl/LC_MESSAGES/nvda.po
     1 file changed, 37 insertions(+), 4 deletions(-)

commit 13b12e968eb4095419427109bb8ecffe1122690a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 13 00:06:10 2020 +1000

    L10n updates for: sk
    From translation svn revision: 55289
    
    Authors:
    Ondrej Rosik <ondrej.rosik@gmail.com>
    Peter Vagner <peter.v@datagate.sk>
    Jan Kulik <jan.kulik.szsle@outlook.sk>
    
    Stats:
    37      8       source/locale/sk/LC_MESSAGES/nvda.po
     1 file changed, 37 insertions(+), 8 deletions(-)

commit a9621a6f6ccb073d131b3f5e0f23c092a81b487e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 13 00:06:08 2020 +1000

    L10n updates for: ru
    From translation svn revision: 55289
    
    Authors:
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    40      10      source/locale/ru/LC_MESSAGES/nvda.po
    21      16      user_docs/ru/userGuide.t2t
     2 files changed, 61 insertions(+), 26 deletions(-)

commit 8a3ffa04e99f9ee55725cb488cddf32a53a1bc02
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 13 00:06:05 2020 +1000

    L10n updates for: ro
    From translation svn revision: 55289
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    George Antonio Andrei <george.andrei2002@gmail.com>
    
    Stats:
    42      12      source/locale/ro/LC_MESSAGES/nvda.po
    7       0       user_docs/ro/userGuide.t2t
     2 files changed, 49 insertions(+), 12 deletions(-)

commit ad90118ce37e4fae89beb38fed79db24b5e862d1
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 13 00:06:03 2020 +1000

    L10n updates for: pt_PT
    From translation svn revision: 55289
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    37      4       source/locale/pt_PT/LC_MESSAGES/nvda.po
     1 file changed, 37 insertions(+), 4 deletions(-)

commit b05b30a8dba0456abf8771b8929e43635247b359
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 13 00:06:01 2020 +1000

    L10n updates for: pt_BR
    From translation svn revision: 55289
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    41      11      source/locale/pt_BR/LC_MESSAGES/nvda.po
    3       2       source/locale/pt_BR/symbols.dic
    42      0       user_docs/pt_BR/changes.t2t
    15      10      user_docs/pt_BR/userGuide.t2t
     4 files changed, 101 insertions(+), 23 deletions(-)

commit df9bfb0a61e227198f14133fd7d6944de4eacccb
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 13 00:05:59 2020 +1000

    L10n updates for: pl
    From translation svn revision: 55289
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <hubmeyer1989@gmail.com>
    Arkadiusz Swietnicki <nuno69a@gmail.com>
    
    Stats:
    37      7       source/locale/pl/LC_MESSAGES/nvda.po
    2       1       source/locale/pl/symbols.dic
    28      0       user_docs/pl/changes.t2t
    15      10      user_docs/pl/userGuide.t2t
     4 files changed, 82 insertions(+), 18 deletions(-)

commit 072abe4df2ebc190595ebad47fb802fe5108f6c6
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 13 00:05:57 2020 +1000

    L10n updates for: nl
    From translation svn revision: 55289
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    39      4       source/locale/nl/LC_MESSAGES/nvda.po
     1 file changed, 39 insertions(+), 4 deletions(-)

commit 7a1616f9c1fa7c2385a7431d455721819fbf61ee
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 13 00:05:55 2020 +1000

    L10n updates for: ne
    From translation svn revision: 55289
    
    Authors:
    Puskal Gautam <nvda.nepali@gmail.com>
    
    Stats:
    367     540     source/locale/ne/LC_MESSAGES/nvda.po
     1 file changed, 367 insertions(+), 540 deletions(-)

commit ecd9e6478847775dd536b7851f2d0348122369aa
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 13 00:05:52 2020 +1000

    L10n updates for: mn
    From translation svn revision: 55289
    
    Authors:
    Mongol NVDA-Translation <mongoliannvdatranslation@gmail.com>
    
    Stats:
    37      4       source/locale/mn/LC_MESSAGES/nvda.po
     1 file changed, 37 insertions(+), 4 deletions(-)

commit 0a6feae9d8f7aba73fc592deb1d0428499e0898a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 13 00:05:50 2020 +1000

    L10n updates for: mk
    From translation svn revision: 55289
    
    Authors:
    zvonimir stanecic <9a5dsz@gozaltech.org>
    Kiko Lazarev <kristijan.lazarev@gmail.com>
    
    Stats:
    39      4       source/locale/mk/LC_MESSAGES/nvda.po
     1 file changed, 39 insertions(+), 4 deletions(-)

commit 9fdd6f4857f04fcd9d0ea65ee77dca6a94fd469a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 13 00:05:48 2020 +1000

    L10n updates for: ko
    From translation svn revision: 55289
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    40      9       source/locale/ko/LC_MESSAGES/nvda.po
     1 file changed, 40 insertions(+), 9 deletions(-)

commit beeae4f9dfc14c80fd42bf28f4af31629fcffcec
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 13 00:05:45 2020 +1000

    L10n updates for: ja
    From translation svn revision: 55289
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    37      4       source/locale/ja/LC_MESSAGES/nvda.po
     1 file changed, 37 insertions(+), 4 deletions(-)

commit 48e1755d69b96c74c2c0e48a92fc881c3c6affda
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 13 00:05:43 2020 +1000

    L10n updates for: it
    From translation svn revision: 55289
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    39      4       source/locale/it/LC_MESSAGES/nvda.po
     1 file changed, 39 insertions(+), 4 deletions(-)

commit 1683c6b6b2a761f48396237a20e506e2a48501e1
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 13 00:05:40 2020 +1000

    L10n updates for: hu
    From translation svn revision: 55289
    
    Authors:
    Aron OcsvAri <oaron@nvda.hu>
    
    Stats:
    37      4       source/locale/hu/LC_MESSAGES/nvda.po
     1 file changed, 37 insertions(+), 4 deletions(-)

commit 905680e646081491fcb11e81d79d1f7d0049361f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 13 00:05:38 2020 +1000

    L10n updates for: hr
    From translation svn revision: 55289
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Milo Ivir <mivir@milotype.de>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    37      7       source/locale/hr/LC_MESSAGES/nvda.po
    2       1       source/locale/hr/symbols.dic
    29      1       user_docs/hr/changes.t2t
    15      10      user_docs/hr/userGuide.t2t
     4 files changed, 83 insertions(+), 19 deletions(-)

commit f70431d9348d884daf5d2d5635fc494058ba4d0a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 13 00:05:36 2020 +1000

    L10n updates for: hi
    From translation svn revision: 55289
    
    Authors:
    dipendra.lists@gmail.com
    Doc Mehta <joyofinspiring@gmail.com>
    
    Stats:
    374     738     source/locale/hi/LC_MESSAGES/nvda.po
     1 file changed, 374 insertions(+), 738 deletions(-)

commit 7e360d9fce3b5845e73da58fdab657ffa0d32be8
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 13 00:05:35 2020 +1000

    L10n updates for: he
    From translation svn revision: 55289
    
    Authors:
    Shmuel Naaman <shmuel_naaman@yahoo.com>
    Afik Sofir <afik.sofer@gmail.com>
    
    Stats:
    37      4       source/locale/he/LC_MESSAGES/nvda.po
     1 file changed, 37 insertions(+), 4 deletions(-)

commit 46966f5ffcab452a92134a3d594044c5f941a23c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 13 00:05:34 2020 +1000

    L10n updates for: gl
    From translation svn revision: 55289
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    Javier Curras <javier.curras@nvda.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    108     78      source/locale/gl/LC_MESSAGES/nvda.po
    8       7       source/locale/gl/symbols.dic
    87      45      user_docs/gl/changes.t2t
    189     184     user_docs/gl/userGuide.t2t
     4 files changed, 392 insertions(+), 314 deletions(-)

commit e73bc3cddd0ca2755eefacd896ccca39d0c589d6
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 13 00:05:32 2020 +1000

    L10n updates for: ga
    From translation svn revision: 55289
    
    Authors:
    Cearbhall OMeadhra <cearbhall.omeadhra@blbc.ie>
    Ronan McGuirk <ronan.p.mcguirk@gmail.com>
    Kevin Scannell <kscanne@gmail.com>
    
    Stats:
    37      4       source/locale/ga/LC_MESSAGES/nvda.po
     1 file changed, 37 insertions(+), 4 deletions(-)

commit 8070790e6e2b0cc8540f80fc264b0a9ec2436635
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 13 00:05:31 2020 +1000

    L10n updates for: fr
    From translation svn revision: 55289
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess.net>
    
    Stats:
    37      4       source/locale/fr/LC_MESSAGES/nvda.po
    42      0       user_docs/fr/changes.t2t
    15      10      user_docs/fr/userGuide.t2t
     3 files changed, 94 insertions(+), 14 deletions(-)

commit 67971282cfe9b622600fae6c3ac8cb327edda238
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 13 00:05:29 2020 +1000

    L10n updates for: fi
    From translation svn revision: 55289
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    38      8       source/locale/fi/LC_MESSAGES/nvda.po
    2       2       source/locale/fi/symbols.dic
    27      0       user_docs/fi/changes.t2t
    15      10      user_docs/fi/userGuide.t2t
     4 files changed, 82 insertions(+), 20 deletions(-)

commit 810b0028d27aa4a7a84072a7f0ac7da7bd362959
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 13 00:05:27 2020 +1000

    L10n updates for: fa
    From translation svn revision: 55289
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    38      8       source/locale/fa/LC_MESSAGES/nvda.po
    25      1       user_docs/fa/changes.t2t
    23      19      user_docs/fa/userGuide.t2t
     3 files changed, 86 insertions(+), 28 deletions(-)

commit 1b93de2514881bd4459fee0ffc5c78f87b1226e7
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 13 00:05:24 2020 +1000

    L10n updates for: es
    From translation svn revision: 55289
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    38      8       source/locale/es/LC_MESSAGES/nvda.po
    2       1       source/locale/es/symbols.dic
    42      0       user_docs/es/changes.t2t
    14      9       user_docs/es/userGuide.t2t
     4 files changed, 96 insertions(+), 18 deletions(-)

commit 0c61028e4311ecefd061a577ced09c809e064a57
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 13 00:05:22 2020 +1000

    L10n updates for: es_CO
    From translation svn revision: 55289
    
    Authors:
    Jorge Zarache <reydelasmaquinas@outlook.com>
    Luis Carlos Gonzáles Moráles <luiscarlosgm@hotmail.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    37      4       source/locale/es_CO/LC_MESSAGES/nvda.po
     1 file changed, 37 insertions(+), 4 deletions(-)

commit f84caa3256730177f1487c6764bd9090020959fc
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 13 00:05:21 2020 +1000

    L10n updates for: el
    From translation svn revision: 55289
    
    Authors:
    Irene Nakas <irnakas@gmail.com>
    Nikos Demetriou <nikosdemetriou@googlemail.com>
    access@e-rhetor.com
    
    Stats:
    37      4       source/locale/el/LC_MESSAGES/nvda.po
     1 file changed, 37 insertions(+), 4 deletions(-)

commit f073d4d5451aa0d4e166347f47dd3fd6862213e7
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 13 00:05:19 2020 +1000

    L10n updates for: de
    From translation svn revision: 55289
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    42      11      source/locale/de/LC_MESSAGES/nvda.po
    46      4       user_docs/de/changes.t2t
    50      45      user_docs/de/userGuide.t2t
     3 files changed, 138 insertions(+), 60 deletions(-)

commit 01a1fd4f111514cc201c7ff5e0b8afbbee6cdc7e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 13 00:05:16 2020 +1000

    L10n updates for: da
    From translation svn revision: 55289
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    37      4       source/locale/da/LC_MESSAGES/nvda.po
     1 file changed, 37 insertions(+), 4 deletions(-)

commit 8abcb1347c9ffa01bdffa8753131a3a699cad31b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 13 00:05:14 2020 +1000

    L10n updates for: cs
    From translation svn revision: 55289
    
    Authors:
    Martina Letochova <letochova@seznam.cz>
    
    Stats:
    37      4       source/locale/cs/LC_MESSAGES/nvda.po
     1 file changed, 37 insertions(+), 4 deletions(-)

commit 48b61d69ab6c75bb1fb501cf51e2f17c8326df2e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 13 00:05:13 2020 +1000

    L10n updates for: ckb
    From translation svn revision: 55289
    
    Authors:
    Ali Ustek <aliustek@gmail.com>
    Patrick Galasso <Patrice.galasso@gmail.com>
    Jwanro Mustafa <jwanroabdula@hotmail.com>
    Kosrat D Ahmad <kosrat.d.ahmad@gmail.com>
    silva.hm88@gmail.com
    
    Stats:
    35      4       source/locale/ckb/LC_MESSAGES/nvda.po
     1 file changed, 35 insertions(+), 4 deletions(-)

commit ece053f3250bf4f5d22cedb27bfece5050700a3a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 13 00:05:11 2020 +1000

    L10n updates for: bg
    From translation svn revision: 55289
    
    Authors:
    Zahari Yurukov <zahari.yurukov@gmail.com>
    Kostadin Kolev <k_kolev1985@mail.bg>
    
    Stats:
    37      4       source/locale/bg/LC_MESSAGES/nvda.po
     1 file changed, 37 insertions(+), 4 deletions(-)

commit 4d7d786599b1e801dde6c85f02252947196816af
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 13 00:05:08 2020 +1000

    L10n updates for: ar
    From translation svn revision: 55289
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Omar Alojaimi <amrahmad1995@gmail.com>
    
    Stats:
    37      4       source/locale/ar/LC_MESSAGES/nvda.po
     1 file changed, 37 insertions(+), 4 deletions(-)

commit 9dcf1e7390f85e88ea48eb95f281431db74dd7f6
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 13 00:05:04 2020 +1000

    L10n updates for: an
    From translation svn revision: 55289
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    37      4       source/locale/an/LC_MESSAGES/nvda.po
     1 file changed, 37 insertions(+), 4 deletions(-)

commit 607af26c0bafc0a0f969a6c459b02430069b61b3
Merge: 6d1991823 29572fb44
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Mar 12 07:01:44 2020 +1000

    Merge branch 'master' into beta

commit 29572fb4418d682284a7abaeeed5d42fb36f2cda
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Mar 11 11:45:23 2020 +1000

    Update what's new for pr #10860

commit 28de493b7ac17c8d210022ba9b64eb1a868fd952
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Mar 11 11:43:10 2020 +1000

    Ensure that espeak does not exit NVDA's process on initialization error (#10860)
    
    * Fix for #10607: Ensure that espeak does not exit NVDA's process on errors such as the espeak path being invalid.
    
    * Fix linting issues.
    
    * Include the espeak data path in the exception message if eSpeak cannot be initialized.
    
    * Fix linting issues.

commit b389bcecbdc54e455fd54d230106fc3ce1e73228
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Mar 11 10:34:37 2020 +1000

    Update what's new for pr #10862

commit 96ed9187c2568055bed990cca46b6f9b707f87f1
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Mar 11 10:32:18 2020 +1000

    ensure NVDA speaks text being unselected in browse mode (#10862)
    
    * Fix for #10731: cursorManager: ensure that NVDA speaks text being unselected in browseMode again.
    Fixes regression caused by #10389.
    
    * Fix linting issues.

commit f962301d0e9b6bae179d3b45de434fe0e1b7f210
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Wed Mar 4 09:41:54 2020 -0800

    Changes file: re-order sections (PR #10856)
    
    For 2020.1 release, moved 'changes for developers' section to follow
    'bug fixes' as in prior releases, along with grammar and punctuation fixes.

commit 9987853e5bed40e7bd20c7a78ed83ab27426af03
Merge: 73038eb8f 6d1991823
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Mar 10 15:09:05 2020 +1000

    Merge branch 'beta'

commit 73038eb8f02ddd00d47a744653e775166c9cee1b
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Mar 10 05:36:57 2020 +1000

    Update what's new for pr #10858

commit 3ba1f46995efa85849f942af0c9a827bc43e6ced
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Mon Mar 9 20:35:34 2020 +0100

    Add appModule for Visual Studio Code Insiders (#10858)
    
    * Add appModule for Visual Studio Code Insiders
    
    * Fix linting

commit 6d40a54e6629a5f8c5f4328bc4b105321db28bb9
Author: Adriani90 <adriani.botez@googlemail.com>
Date:   Fri Mar 6 16:04:39 2020 +0100

    User Guide: Add missing info to extra tools section (PR #10848)
    
    Describes "Run COM registration fixing tool".
    Improves description of "Create portable copy" to include the options in the dialog.
    Re-orders Python console entry to match tools sub-menu order.

commit 6d19918239327b21d3df7a889a1e524bdd53b40e
Merge: 14747a3b5 ea280da7f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 6 00:06:30 2020 +1000

    Update translations.
    
    From translation svn revision: 55031

commit ea280da7f5357b10ec6873f75df42319d88d4db3
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 6 00:06:29 2020 +1000

    L10n updates for: zh_TW
    From translation svn revision: 55031
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    1       1       source/locale/zh_TW/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 46a97b13f8baf0d9aa14c42ed355e22462296643
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 6 00:06:26 2020 +1000

    L10n updates for: zh_HK
    From translation svn revision: 55031
    
    Authors:
    Eric Yip <ericycy@gmail.com>
    
    Stats:
    1       1       source/locale/zh_HK/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 4dedf2d30972511770f267b36a5ce4a3ed51f1ee
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 6 00:06:26 2020 +1000

    L10n updates for: zh_CN
    From translation svn revision: 55031
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    
    Stats:
    1       1       source/locale/zh_CN/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 8bab920f6deffbf1df92f966cf9e991905b12f8d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 6 00:06:24 2020 +1000

    L10n updates for: vi
    From translation svn revision: 55031
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    1       1       source/locale/vi/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 739c257ebd12e5ebc81ff9b52ecac8ed4cc05024
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 6 00:06:22 2020 +1000

    L10n updates for: uk
    From translation svn revision: 55031
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    1       1       source/locale/uk/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 7abda90779d5e109bf31896f57d4e2b0c57bc9da
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 6 00:06:20 2020 +1000

    L10n updates for: tr
    From translation svn revision: 55031
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    5       5       source/locale/tr/LC_MESSAGES/nvda.po
     1 file changed, 5 insertions(+), 5 deletions(-)

commit 1a3f1a792fe3d5eb54e8166361478ee26c3e02e3
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 6 00:06:18 2020 +1000

    L10n updates for: ta
    From translation svn revision: 55031
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    1       1       source/locale/ta/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 2d026fb869758d05476a79203192ee7b5fb61099
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 6 00:06:16 2020 +1000

    L10n updates for: sv
    From translation svn revision: 55031
    
    Authors:
    Daniel Johansson <daniel.johansson@coeptus.se>
    Niklas Johansson <sleeping.pillow@gmail.com>
    Karl-Otto Rosenqvist <Karl-otto@mawingu.se>
    
    Stats:
    1       1       source/locale/sv/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 420dcc4087ef75b0a77b2dd5bbdcbac08128abd7
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 6 00:06:15 2020 +1000

    L10n updates for: sr
    From translation svn revision: 55031
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    1       1       source/locale/sr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit a8ad595eed79ffcde48f82eca5c8bce9c18daf7b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 6 00:06:13 2020 +1000

    L10n updates for: sl
    From translation svn revision: 55031
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    1       1       source/locale/sl/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 8c82394bf2202d1d131f29eea841bfbf288dae2a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 6 00:06:12 2020 +1000

    L10n updates for: sk
    From translation svn revision: 55031
    
    Authors:
    Ondrej Rosik <ondrej.rosik@gmail.com>
    Peter Vagner <peter.v@datagate.sk>
    Jan Kulik <jan.kulik.szsle@outlook.sk>
    
    Stats:
    1       1       source/locale/sk/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 762f346da6e82fa937e0c4e8034dbaf54ae2c326
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 6 00:06:10 2020 +1000

    L10n updates for: ru
    From translation svn revision: 55031
    
    Authors:
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    1       1       source/locale/ru/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit e54f75ef89c62e2034a61ca8885b0cc28ecc1620
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 6 00:06:07 2020 +1000

    L10n updates for: ro
    From translation svn revision: 55031
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    George Antonio Andrei <george.andrei2002@gmail.com>
    
    Stats:
    1       1       source/locale/ro/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 822ac9b89ea8f6b2688e21b69349327eed480d86
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 6 00:06:05 2020 +1000

    L10n updates for: pt_PT
    From translation svn revision: 55031
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    1       1       source/locale/pt_PT/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 75d05b2c32681b7abbe012f70da705a324c65ff6
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 6 00:06:03 2020 +1000

    L10n updates for: pt_BR
    From translation svn revision: 55031
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    4       4       source/locale/pt_BR/LC_MESSAGES/nvda.po
    2       2       user_docs/pt_BR/changes.t2t
     2 files changed, 6 insertions(+), 6 deletions(-)

commit 57c518e4110d89d679254b817cecd23023145a4d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 6 00:06:01 2020 +1000

    L10n updates for: pl
    From translation svn revision: 55031
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <hubmeyer1989@gmail.com>
    Arkadiusz Swietnicki <nuno69a@gmail.com>
    
    Stats:
    1       1       source/locale/pl/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 084c964ee5c7171999e538ee40b18db6d521c70e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 6 00:05:59 2020 +1000

    L10n updates for: nl
    From translation svn revision: 55031
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    1       1       source/locale/nl/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit f297c6ed208e7fdf1d1d9ee43280d0854afe2a3a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 6 00:05:57 2020 +1000

    L10n updates for: ne
    From translation svn revision: 55031
    
    Authors:
    Puskal Gautam <nvda.nepali@gmail.com>
    
    Stats:
    1       1       source/locale/ne/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 793b8b664c6ca11ea363606f8fa62f88d36ccd08
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 6 00:05:54 2020 +1000

    L10n updates for: mn
    From translation svn revision: 55031
    
    Authors:
    Mongol NVDA-Translation <mongoliannvdatranslation@gmail.com>
    
    Stats:
    1       1       source/locale/mn/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 1951934d346dee34f4494b4c8b50e62ded15b700
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 6 00:05:51 2020 +1000

    L10n updates for: mk
    From translation svn revision: 55031
    
    Authors:
    zvonimir stanecic <9a5dsz@gozaltech.org>
    Kiko Lazarev <kristijan.lazarev@gmail.com>
    
    Stats:
    1       1       source/locale/mk/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 35bc488465b6758533dbff94df931ecf984923ba
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 6 00:05:49 2020 +1000

    L10n updates for: ko
    From translation svn revision: 55031
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    1       1       source/locale/ko/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 23f03dbf3a2702cfa84167a1a54849de5f40e019
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 6 00:05:46 2020 +1000

    L10n updates for: ja
    From translation svn revision: 55031
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    1       1       source/locale/ja/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 11e4ebeff26b0151b4a2197b07ce3e5a92d4924b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 6 00:05:43 2020 +1000

    L10n updates for: it
    From translation svn revision: 55031
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    1       1       source/locale/it/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit f455f05534dab32965d6a2d2d3b53394b68da8e5
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 6 00:05:41 2020 +1000

    L10n updates for: hu
    From translation svn revision: 55031
    
    Authors:
    Aron OcsvAri <oaron@nvda.hu>
    
    Stats:
    1       1       source/locale/hu/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit eda0068abd971c508ae7f7dc0d1ac8704477c801
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 6 00:05:39 2020 +1000

    L10n updates for: hr
    From translation svn revision: 55031
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Milo Ivir <mivir@milotype.de>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    1       1       source/locale/hr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 4a8670f606102d3dcf705ac80548311785cb9df2
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 6 00:05:37 2020 +1000

    L10n updates for: hi
    From translation svn revision: 55031
    
    Authors:
    dipendra.lists@gmail.com
    Doc Mehta <joyofinspiring@gmail.com>
    
    Stats:
    1       1       source/locale/hi/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 2d9d1c8b58b67914f7bb4a7507bc000700a1d980
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 6 00:05:36 2020 +1000

    L10n updates for: he
    From translation svn revision: 55031
    
    Authors:
    Shmuel Naaman <shmuel_naaman@yahoo.com>
    Afik Sofir <afik.sofer@gmail.com>
    
    Stats:
    1       1       source/locale/he/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit e985e999fa196e29bf826341caf9b674d77006bd
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 6 00:05:35 2020 +1000

    L10n updates for: gl
    From translation svn revision: 55031
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    Javier Curras <javier.curras@nvda.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/gl/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit ec66ece233bc79b7b5efc092fbb6ba67b1af7984
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 6 00:05:33 2020 +1000

    L10n updates for: ga
    From translation svn revision: 55031
    
    Authors:
    Cearbhall OMeadhra <cearbhall.omeadhra@blbc.ie>
    Ronan McGuirk <ronan.p.mcguirk@gmail.com>
    Kevin Scannell <kscanne@gmail.com>
    
    Stats:
    12      18      source/locale/ga/LC_MESSAGES/nvda.po
     1 file changed, 12 insertions(+), 18 deletions(-)

commit 912f96bf1203077d6a4d417709d1d4cdaaf0852a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 6 00:05:32 2020 +1000

    L10n updates for: fr
    From translation svn revision: 55031
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess.net>
    
    Stats:
    1       1       source/locale/fr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 3c4af3cf4ef4c40579329ad1e0d4fd6f2558024e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 6 00:05:30 2020 +1000

    L10n updates for: fi
    From translation svn revision: 55031
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    1       1       source/locale/fi/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 6850643e378130fc130626bd2ba1ccdc2deed7d0
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 6 00:05:28 2020 +1000

    L10n updates for: fa
    From translation svn revision: 55031
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    1       1       source/locale/fa/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit d5d75eb10d11bccf3e0fbbaf720a34b099475868
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 6 00:05:25 2020 +1000

    L10n updates for: es
    From translation svn revision: 55031
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/es/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 8cc97620627f8da954bbceaead07b01ddd64e233
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 6 00:05:23 2020 +1000

    L10n updates for: es_CO
    From translation svn revision: 55031
    
    Authors:
    Jorge Zarache <reydelasmaquinas@outlook.com>
    Luis Carlos Gonzáles Moráles <luiscarlosgm@hotmail.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/es_CO/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 0fc88b81437b261dc9a099609f1acbdc0cc9a9de
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 6 00:05:21 2020 +1000

    L10n updates for: el
    From translation svn revision: 55031
    
    Authors:
    Irene Nakas <irnakas@gmail.com>
    Nikos Demetriou <nikosdemetriou@googlemail.com>
    access@e-rhetor.com
    
    Stats:
    1       1       source/locale/el/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit bf17e051920085592871ebd44095b5ccb6c60e9a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 6 00:05:20 2020 +1000

    L10n updates for: de
    From translation svn revision: 55031
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    1       1       source/locale/de/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 1608e253e8a6fa80e7faa268bbcb4e219a9de3eb
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 6 00:05:16 2020 +1000

    L10n updates for: da
    From translation svn revision: 55031
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    1       1       source/locale/da/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit d54dc2f420ed1b07aa9e7ecb054ec11f7c87ef16
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 6 00:05:15 2020 +1000

    L10n updates for: cs
    From translation svn revision: 55031
    
    Authors:
    Martina Letochova <letochova@seznam.cz>
    
    Stats:
    1       1       source/locale/cs/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit d78b1e8c889c504213055dc652ff0f01f6d845ae
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 6 00:05:13 2020 +1000

    L10n updates for: ckb
    From translation svn revision: 55031
    
    Authors:
    Ali Ustek <aliustek@gmail.com>
    Patrick Galasso <Patrice.galasso@gmail.com>
    Jwanro Mustafa <jwanroabdula@hotmail.com>
    Kosrat D Ahmad <kosrat.d.ahmad@gmail.com>
    silva.hm88@gmail.com
    
    Stats:
    1       1       source/locale/ckb/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 069edd46d43e3bb65d0cd37435a5600988dd7933
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 6 00:05:11 2020 +1000

    L10n updates for: bg
    From translation svn revision: 55031
    
    Authors:
    Zahari Yurukov <zahari.yurukov@gmail.com>
    Kostadin Kolev <k_kolev1985@mail.bg>
    
    Stats:
    1       1       source/locale/bg/LC_MESSAGES/nvda.po
    1       1       user_docs/bg/userGuide.t2t
     2 files changed, 2 insertions(+), 2 deletions(-)

commit 9467fba235427acc12a1fd7d3dc6a1bc3be979bf
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 6 00:05:08 2020 +1000

    L10n updates for: ar
    From translation svn revision: 55031
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Omar Alojaimi <amrahmad1995@gmail.com>
    
    Stats:
    1       1       source/locale/ar/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 959421de057c9a0c685d7c6da95cd1a598a6e533
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Mar 6 00:05:05 2020 +1000

    L10n updates for: an
    From translation svn revision: 55031
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/an/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 36350e7b1d917a284d936a1ed481e2bdccaca972
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Thu Mar 5 12:04:45 2020 +0100

    Github template: ask to disable addons and run dll registration tool (PR #10720)
    
    Users are often asked if they tried disabling their addons and if they tried to run the COM registration fixing tool. Many issues went away or were mitigated by these aspects.

commit 14747a3b5fa0036af22dae0839819050ec2514bb
Merge: 3579cad6f 76fd24cd9
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Mar 3 17:00:09 2020 +1000

    Merge branch 'master' into beta

commit 76fd24cd9c0f8dae4e6b1d7b72e447d0edff43f8
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Mar 3 07:55:06 2020 +1000

    Update What's new for pr #10830.

commit 0d632bc3e7d698917fe785274ba3bbc486d80e59
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Tue Mar 3 07:53:49 2020 +1000

    Support for APH Mantis Q40, APH Chameleon, HumanWare BrailleOne, BrailleNote Touch v2, and NLS eReader (#10830)
    
    * Support for APH Mantis Q40, APH Chameleon, HumanWare BrailleOne, BrailleNote Touch v2, and NLS eReader braille displays.
    
    * Fix linting issues.
    
    * Remove incorrect nobreaking space chars.

commit 192fa8bf312066e5097ebf39322e7342e13b1a52
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Mar 2 10:40:35 2020 +1000

    Update What's new for pr #10803.

commit 42be101aa128cf6dfdd57cdf401785fa6121114f
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Mon Mar 2 10:38:45 2020 +1000

    Correctly decode mathml bytes buffer to unicode string from mathType (#10803)
    
    * Correctly decode mathml bytes buffer to unicode string from mathType.
    
    * Fix linting issues.
    
    * Update copyright years.
    
    * Update copyright years.
    
    * Fix up copyright / license comments.

commit 3579cad6fd822b95f3a81e63913c45a32a7ff69a
Merge: f1861e103 4c706b2be
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 28 00:06:27 2020 +1000

    Update translations.
    
    From translation svn revision: 54956

commit 4c706b2beb23fa1216d5647834b07dbbfd7918d7
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 28 00:06:26 2020 +1000

    L10n updates for: zh_TW
    From translation svn revision: 54956
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    1       1       source/locale/zh_TW/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 003810fc32f07b7d3b540b646c6178806232e04d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 28 00:06:24 2020 +1000

    L10n updates for: zh_HK
    From translation svn revision: 54956
    
    Authors:
    Eric Yip <ericycy@gmail.com>
    
    Stats:
    1       1       source/locale/zh_HK/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 7cb1c9181c7d23bad8a1d287d1ab8a4a889a0299
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 28 00:06:23 2020 +1000

    L10n updates for: zh_CN
    From translation svn revision: 54956
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    
    Stats:
    1       1       source/locale/zh_CN/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit d5b5b3380d14b2cd5c47ea51c181447b47b028c3
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 28 00:06:21 2020 +1000

    L10n updates for: vi
    From translation svn revision: 54956
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    1       1       source/locale/vi/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 03530fea8fd981c37bd48cdca1553dcfbe24c8ac
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 28 00:06:19 2020 +1000

    L10n updates for: uk
    From translation svn revision: 54956
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    1       1       source/locale/uk/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 38e00a22dfd8ffe896a076790bab61b0feb44ecd
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 28 00:06:18 2020 +1000

    L10n updates for: tr
    From translation svn revision: 54956
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    1       1       source/locale/tr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit abfcf8efaca78e818e0de51a053c2617c3780845
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 28 00:06:16 2020 +1000

    L10n updates for: ta
    From translation svn revision: 54956
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    1       1       source/locale/ta/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit c1c0559967e36974e2f0e1cd056394b5502dc164
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 28 00:06:14 2020 +1000

    L10n updates for: sv
    From translation svn revision: 54956
    
    Authors:
    Daniel Johansson <daniel.johansson@coeptus.se>
    Niklas Johansson <sleeping.pillow@gmail.com>
    Karl-Otto Rosenqvist <Karl-otto@mawingu.se>
    
    Stats:
    1       1       source/locale/sv/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 25d5ad3e9409418506bb3c387fa241b7e298d61a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 28 00:06:13 2020 +1000

    L10n updates for: sr
    From translation svn revision: 54956
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    1       1       source/locale/sr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 9eb09ab727836ec9eea5a79a4402bb0812560a04
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 28 00:06:11 2020 +1000

    L10n updates for: sl
    From translation svn revision: 54956
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    1       1       source/locale/sl/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 99cec6296d709cfef2af763165d63db71b7376c7
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 28 00:06:10 2020 +1000

    L10n updates for: sk
    From translation svn revision: 54956
    
    Authors:
    Ondrej Rosik <ondrej.rosik@gmail.com>
    Peter Vagner <peter.v@datagate.sk>
    Jan Kulik <jan.kulik.szsle@outlook.sk>
    
    Stats:
    1       1       source/locale/sk/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 3a726edf644d7b003ebcc6b2b55831df2cf335fb
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 28 00:06:08 2020 +1000

    L10n updates for: ru
    From translation svn revision: 54956
    
    Authors:
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    1       1       source/locale/ru/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit a86c95c9d11aa594aee8b1d7f42c461a4f770cf6
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 28 00:06:05 2020 +1000

    L10n updates for: ro
    From translation svn revision: 54956
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    George Antonio Andrei <george.andrei2002@gmail.com>
    
    Stats:
    1       1       source/locale/ro/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit d81a3d814a3f995322bf7386578a10f765cc8c03
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 28 00:06:03 2020 +1000

    L10n updates for: pt_PT
    From translation svn revision: 54956
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    1       1       source/locale/pt_PT/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit de1aacf73aac0d77928f5c914be4f82df18be129
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 28 00:06:01 2020 +1000

    L10n updates for: pt_BR
    From translation svn revision: 54956
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    16      16      source/locale/pt_BR/LC_MESSAGES/nvda.po
    14      14      source/locale/pt_BR/symbols.dic
     2 files changed, 30 insertions(+), 30 deletions(-)

commit 4e944090e9d357338761b3ed5bc564fc3993f789
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 28 00:05:59 2020 +1000

    L10n updates for: pl
    From translation svn revision: 54956
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <hubmeyer1989@gmail.com>
    Arkadiusz Swietnicki <nuno69a@gmail.com>
    
    Stats:
    1       1       source/locale/pl/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit f1541af661ad09904098e9fb08f1413bdca4dfb4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 28 00:05:57 2020 +1000

    L10n updates for: nl
    From translation svn revision: 54956
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    1       1       source/locale/nl/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 70f3ab9859ba89d6eb639118a003db2076b09a50
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 28 00:05:55 2020 +1000

    L10n updates for: ne
    From translation svn revision: 54956
    
    Authors:
    Puskal Gautam <nvda.nepali@gmail.com>
    
    Stats:
    1       1       source/locale/ne/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit bafd3849664d1dfb6ec14c9a3c4c012d7c0135a2
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 28 00:05:52 2020 +1000

    L10n updates for: mn
    From translation svn revision: 54956
    
    Authors:
    Mongol NVDA-Translation <mongoliannvdatranslation@gmail.com>
    
    Stats:
    1       1       source/locale/mn/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 2f487c0708b0b4ea7009de5548804b5100dbd58f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 28 00:05:50 2020 +1000

    L10n updates for: mk
    From translation svn revision: 54956
    
    Authors:
    zvonimir stanecic <9a5dsz@gozaltech.org>
    Kiko Lazarev <kristijan.lazarev@gmail.com>
    
    Stats:
    1       1       source/locale/mk/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit ee15e31df541c6541d42a6311f4523f6d0ca30b7
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 28 00:05:48 2020 +1000

    L10n updates for: ko
    From translation svn revision: 54956
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    12      8       source/locale/ko/LC_MESSAGES/nvda.po
    57      65      user_docs/ko/changes.t2t
     2 files changed, 69 insertions(+), 73 deletions(-)

commit 015eef7002bcbc959b2ee783037722451f9a6f0f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 28 00:05:45 2020 +1000

    L10n updates for: ja
    From translation svn revision: 54956
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    1       1       source/locale/ja/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 52d727b9b838324722a0167eb08b50dbe66cc1e7
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 28 00:05:43 2020 +1000

    L10n updates for: it
    From translation svn revision: 54956
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    1       1       source/locale/it/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 58427f63dd552dbfae286c30f510f70dcaf0c369
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 28 00:05:40 2020 +1000

    L10n updates for: hu
    From translation svn revision: 54956
    
    Authors:
    Aron OcsvAri <oaron@nvda.hu>
    
    Stats:
    1       1       source/locale/hu/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit b861b699c7f29d77fe091f3f3032cf57bd4ebaaf
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 28 00:05:38 2020 +1000

    L10n updates for: hr
    From translation svn revision: 54956
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Milo Ivir <mivir@milotype.de>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    1       1       source/locale/hr/LC_MESSAGES/nvda.po
    8       0       source/locale/hr/characterDescriptions.dic
     2 files changed, 9 insertions(+), 1 deletion(-)

commit 0f1544bfd1a1eab8c49f0fb891557c8413bfd69b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 28 00:05:37 2020 +1000

    L10n updates for: hi
    From translation svn revision: 54956
    
    Authors:
    dipendra.lists@gmail.com
    Doc Mehta <joyofinspiring@gmail.com>
    
    Stats:
    1       1       source/locale/hi/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 60f51f2a279d353727d837444571f85f13e9d056
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 28 00:05:36 2020 +1000

    L10n updates for: he
    From translation svn revision: 54956
    
    Authors:
    Shmuel Naaman <shmuel_naaman@yahoo.com>
    Afik Sofir <afik.sofer@gmail.com>
    
    Stats:
    1       1       source/locale/he/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit f0721431307a73815b1f616268045549f5a52c49
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 28 00:05:35 2020 +1000

    L10n updates for: gl
    From translation svn revision: 54956
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    Javier Curras <javier.curras@nvda.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/gl/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 269f90ea58f435a0aa2e85995eb762a9a2df4a0a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 28 00:05:33 2020 +1000

    L10n updates for: ga
    From translation svn revision: 54956
    
    Authors:
    Cearbhall OMeadhra <cearbhall.omeadhra@blbc.ie>
    Ronan McGuirk <ronan.p.mcguirk@gmail.com>
    Kevin Scannell <kscanne@gmail.com>
    
    Stats:
    793     519     source/locale/ga/LC_MESSAGES/nvda.po
     1 file changed, 793 insertions(+), 519 deletions(-)

commit 4a9bfdf2e70dac000faf108b8a8192a3434555f9
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 28 00:05:32 2020 +1000

    L10n updates for: fr
    From translation svn revision: 54956
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess.net>
    
    Stats:
    1       1       source/locale/fr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 28de535c6f319b97c22d43091d3abc15c567ec4e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 28 00:05:30 2020 +1000

    L10n updates for: fi
    From translation svn revision: 54956
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    1       1       source/locale/fi/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit ef7ff6308a4573b9fea7227818e0325a06e7bce8
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 28 00:05:28 2020 +1000

    L10n updates for: fa
    From translation svn revision: 54956
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    1       1       source/locale/fa/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit ac8f2b6f1d310d6de280df6ca3f15d54a26cf09c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 28 00:05:25 2020 +1000

    L10n updates for: es
    From translation svn revision: 54956
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/es/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 7623b8cf0a888f570d04179961395bc21b82fa6e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 28 00:05:23 2020 +1000

    L10n updates for: es_CO
    From translation svn revision: 54956
    
    Authors:
    Jorge Zarache <reydelasmaquinas@outlook.com>
    Luis Carlos Gonzáles Moráles <luiscarlosgm@hotmail.es>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/es_CO/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 6c262dc39f1b9534eca0d10fa18b450ee9f141bc
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 28 00:05:22 2020 +1000

    L10n updates for: el
    From translation svn revision: 54956
    
    Authors:
    Irene Nakas <irnakas@gmail.com>
    Nikos Demetriou <nikosdemetriou@googlemail.com>
    access@e-rhetor.com
    
    Stats:
    1       1       source/locale/el/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 92e385e8ac0e631e3b99f91f7f769cfac0906a59
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 28 00:05:20 2020 +1000

    L10n updates for: de
    From translation svn revision: 54956
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    2       2       source/locale/de/LC_MESSAGES/nvda.po
     1 file changed, 2 insertions(+), 2 deletions(-)

commit 756b77548f7b460b10af3da6b318346dfa9df83b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 28 00:05:17 2020 +1000

    L10n updates for: da
    From translation svn revision: 54956
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    1       1       source/locale/da/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit dcda9e3b926fb25af92443b56d8da9cfdb7d776d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 28 00:05:15 2020 +1000

    L10n updates for: cs
    From translation svn revision: 54956
    
    Authors:
    Martina Letochova <letochova@seznam.cz>
    
    Stats:
    1       1       source/locale/cs/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 1716eb6a16e0083fc7210cfa4cce54916222dcc3
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 28 00:05:14 2020 +1000

    L10n updates for: ckb
    From translation svn revision: 54956
    
    Authors:
    Ali Ustek <aliustek@gmail.com>
    Patrick Galasso <Patrice.galasso@gmail.com>
    Jwanro Mustafa <jwanroabdula@hotmail.com>
    Kosrat D Ahmad <kosrat.d.ahmad@gmail.com>
    silva.hm88@gmail.com
    
    Stats:
    1       1       source/locale/ckb/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit bfe508defc355f4008a7c48e61784cf41a34ed6b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 28 00:05:12 2020 +1000

    L10n updates for: bg
    From translation svn revision: 54956
    
    Authors:
    Zahari Yurukov <zahari.yurukov@gmail.com>
    Kostadin Kolev <k_kolev1985@mail.bg>
    
    Stats:
    1       1       source/locale/bg/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit e1f5f15750187dc73a483357b27c3750b71a6f43
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 28 00:05:09 2020 +1000

    L10n updates for: ar
    From translation svn revision: 54956
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Omar Alojaimi <amrahmad1995@gmail.com>
    
    Stats:
    1       1       source/locale/ar/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit e1efcb666c5863e0406b35db376c92940fb2d627
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 28 00:05:06 2020 +1000

    L10n updates for: an
    From translation svn revision: 54956
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/an/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit f1861e1030e09befc5e60ad5cb37ecfb064095cc
Merge: 54186c513 3b97dae35
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 21 00:06:33 2020 +1000

    Update translations.
    
    From translation svn revision: 54857

commit 3b97dae353c18dec4bee4fb7020b08ea5d19d4d9
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 21 00:06:31 2020 +1000

    L10n updates for: zh_TW
    From translation svn revision: 54857
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    1       1       source/locale/zh_TW/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 3b6759b6a8962c00e3407db60f16f5c49ff3a838
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 21 00:06:29 2020 +1000

    L10n updates for: zh_HK
    From translation svn revision: 54857
    
    Authors:
    Eric Yip <ericycy@gmail.com>
    
    Stats:
    1       1       source/locale/zh_HK/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 39c5ab9a5e61cb969457112f35e58b12ba59e5d5
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 21 00:06:28 2020 +1000

    L10n updates for: zh_CN
    From translation svn revision: 54857
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    
    Stats:
    1       1       source/locale/zh_CN/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 60f5d031a354d1b62b0eea56973e1cbedb3d948d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 21 00:06:26 2020 +1000

    L10n updates for: vi
    From translation svn revision: 54857
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    1       1       source/locale/vi/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 86e129b7b2a902adf4f2ec4542cd4f65d3180c5d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 21 00:06:24 2020 +1000

    L10n updates for: uk
    From translation svn revision: 54857
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    1       1       source/locale/uk/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 1aed7901c3227a5292c542ea3ea4c64d4c3b260e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 21 00:06:23 2020 +1000

    L10n updates for: tr
    From translation svn revision: 54857
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    1       1       source/locale/tr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 962c2a8f0bcead67439e0ea058ca6e51c39ae297
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 21 00:06:20 2020 +1000

    L10n updates for: ta
    From translation svn revision: 54857
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    5       5       source/locale/ta/LC_MESSAGES/nvda.po
     1 file changed, 5 insertions(+), 5 deletions(-)

commit e80b70b4996863e6faf157f089892440faca6433
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 21 00:06:18 2020 +1000

    L10n updates for: sv
    From translation svn revision: 54857
    
    Authors:
    Daniel Johansson <daniel.johansson@coeptus.se>
    Niklas Johansson <sleeping.pillow@gmail.com>
    Karl-Otto Rosenqvist <Karl-otto@mawingu.se>
    
    Stats:
    3       3       source/locale/sv/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 3 deletions(-)

commit 22ad490b859e2686411c6e29e9b8cc4cd1bcade6
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 21 00:06:17 2020 +1000

    L10n updates for: sr
    From translation svn revision: 54857
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    1       1       source/locale/sr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 176aea104cfe3f539e70b5d279806e9d73ac1ba3
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 21 00:06:15 2020 +1000

    L10n updates for: sl
    From translation svn revision: 54857
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    170     2       source/locale/sl/LC_MESSAGES/nvda.po
     1 file changed, 170 insertions(+), 2 deletions(-)

commit 5c92dc776c2145424d52033563ab129d29cabd2d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 21 00:06:14 2020 +1000

    L10n updates for: sk
    From translation svn revision: 54857
    
    Authors:
    Ondrej Rosik <ondrej.rosik@gmail.com>
    Peter Vagner <peter.v@datagate.sk>
    Jan Kulik <jan.kulik.szsle@outlook.sk>
    
    Stats:
    1       1       source/locale/sk/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit b75cc6237e5a3f896895db02bd51241eb2cff7f6
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 21 00:06:12 2020 +1000

    L10n updates for: ru
    From translation svn revision: 54857
    
    Authors:
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    1       1       source/locale/ru/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit d66f6f3eacef8b3f44fa1d81a36c2b805956fd53
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 21 00:06:09 2020 +1000

    L10n updates for: ro
    From translation svn revision: 54857
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    George Antonio Andrei <george.andrei2002@gmail.com>
    
    Stats:
    1       1       source/locale/ro/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit d1296e5bf2a078c90f3ec2e7e3b123f173a48549
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 21 00:06:07 2020 +1000

    L10n updates for: pt_PT
    From translation svn revision: 54857
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    1       1       source/locale/pt_PT/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 5a78a29da84ef7a1fbe19f05a662ac455593eb60
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 21 00:06:05 2020 +1000

    L10n updates for: pt_BR
    From translation svn revision: 54857
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    1       1       source/locale/pt_BR/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 25a5b6f53c26a08a16d6876fef58281fef757596
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 21 00:06:03 2020 +1000

    L10n updates for: pl
    From translation svn revision: 54857
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <hubmeyer1989@gmail.com>
    Arkadiusz Swietnicki <nuno69a@gmail.com>
    
    Stats:
    1       1       source/locale/pl/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit d6c168fdb4a2adf9bfd5e01a6ff103d8bebdc997
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 21 00:06:01 2020 +1000

    L10n updates for: nl
    From translation svn revision: 54857
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    1       1       source/locale/nl/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit abc295ab8fcf354e823a87c3de36df13506833bb
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 21 00:05:59 2020 +1000

    L10n updates for: ne
    From translation svn revision: 54857
    
    Authors:
    Puskal Gautam <nvda.nepali@gmail.com>
    
    Stats:
    1       1       source/locale/ne/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit f74ddc5bdfd2b85ddcc84645b40452e0fe32a18d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 21 00:05:56 2020 +1000

    L10n updates for: mn
    From translation svn revision: 54857
    
    Authors:
    Mongol NVDA-Translation <mongoliannvdatranslation@gmail.com>
    
    Stats:
    1       1       source/locale/mn/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit b055095059fcb2202ce34882218aa8c058625015
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 21 00:05:54 2020 +1000

    L10n updates for: mk
    From translation svn revision: 54857
    
    Authors:
    zvonimir stanecic <9a5dsz@gozaltech.org>
    Kiko Lazarev <kristijan.lazarev@gmail.com>
    
    Stats:
    1       1       source/locale/mk/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit a5ab148b1dfa08d781176481a1e8d2fc68e9f95f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 21 00:05:51 2020 +1000

    L10n updates for: ko
    From translation svn revision: 54857
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    713     246     source/locale/ko/LC_MESSAGES/nvda.po
    110     101     user_docs/ko/changes.t2t
     2 files changed, 823 insertions(+), 347 deletions(-)

commit 5f4732a0875a2e290e8a343d85d46cc8b16f55cc
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 21 00:05:48 2020 +1000

    L10n updates for: ja
    From translation svn revision: 54857
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    1       1       source/locale/ja/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 3e963b5a178286fbd0487ddec7b82f71d7a7ad8f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 21 00:05:46 2020 +1000

    L10n updates for: it
    From translation svn revision: 54857
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    1       1       source/locale/it/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit fa4d1063b6a9d8f53011d577f921a5350b323d2e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 21 00:05:43 2020 +1000

    L10n updates for: hu
    From translation svn revision: 54857
    
    Authors:
    Aron OcsvAri <oaron@nvda.hu>
    
    Stats:
    8       168     source/locale/hu/LC_MESSAGES/nvda.po
    83      0       user_docs/hu/changes.t2t
     2 files changed, 91 insertions(+), 168 deletions(-)

commit fe43a1dc7f950260e04874119314e3c488ea8fd2
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 21 00:05:41 2020 +1000

    L10n updates for: hr
    From translation svn revision: 54857
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Milo Ivir <mivir@milotype.de>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    1       1       source/locale/hr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 872a5f11b023b08a7c24c45ba174a482c825f267
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 21 00:05:39 2020 +1000

    L10n updates for: hi
    From translation svn revision: 54857
    
    Authors:
    dipendra.lists@gmail.com
    Doc Mehta <joyofinspiring@gmail.com>
    
    Stats:
    1       1       source/locale/hi/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 949cfa4d6429c61d18f37ca617eb1e6647df6ce6
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 21 00:05:38 2020 +1000

    L10n updates for: he
    From translation svn revision: 54857
    
    Authors:
    Shmuel Naaman <shmuel_naaman@yahoo.com>
    Afik Sofir <afik.sofer@gmail.com>
    
    Stats:
    1       1       source/locale/he/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit f96aff1fd892e49a65d7eb9ecb15521c6a294fb7
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 21 00:05:37 2020 +1000

    L10n updates for: gl
    From translation svn revision: 54857
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    Javier Curras <javier.curras@nvda.es>
    
    Stats:
    1       1       source/locale/gl/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 42e2b42d4c33ead1d25b165408aad3141d24d419
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 21 00:05:35 2020 +1000

    L10n updates for: ga
    From translation svn revision: 54857
    
    Authors:
    Cearbhall OMeadhra <cearbhall.omeadhra@blbc.ie>
    Ronan McGuirk <ronan.p.mcguirk@gmail.com>
    Kevin Scannell <kscanne@gmail.com>
    
    Stats:
    582     820     source/locale/ga/LC_MESSAGES/nvda.po
     1 file changed, 582 insertions(+), 820 deletions(-)

commit a71a61793c0511e974cbbb6d74bcac751e91be9c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 21 00:05:34 2020 +1000

    L10n updates for: fr
    From translation svn revision: 54857
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess.net>
    
    Stats:
    1       1       source/locale/fr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit d259e3204a3d35f78d858cb6b837ed446624f36f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 21 00:05:32 2020 +1000

    L10n updates for: fi
    From translation svn revision: 54857
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    1       1       source/locale/fi/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit f92456213b4272e42c94e776e36b5f1348e25ab3
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 21 00:05:30 2020 +1000

    L10n updates for: fa
    From translation svn revision: 54857
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    1       1       source/locale/fa/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit e234edd751b97bb8fd1d2af7c29bd1174395050c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 21 00:05:27 2020 +1000

    L10n updates for: es
    From translation svn revision: 54857
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/es/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 9ca9e059c359e7e7924319f152a0bb0096b50832
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 21 00:05:25 2020 +1000

    L10n updates for: es_CO
    From translation svn revision: 54857
    
    Authors:
    Jorge Zarache <reydelasmaquinas@outlook.com>
    Luis Carlos Gonzáles Moráles <luiscarlosgm@hotmail.es>
    
    Stats:
    1       1       source/locale/es_CO/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit d47a1f19db5d5f8d40b377810a4452b368d4369e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 21 00:05:23 2020 +1000

    L10n updates for: el
    From translation svn revision: 54857
    
    Authors:
    Irene Nakas <irnakas@gmail.com>
    Nikos Demetriou <nikosdemetriou@googlemail.com>
    access@e-rhetor.com
    
    Stats:
    1       1       source/locale/el/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 95db17b14430c2eea75efd237b60461c80999e24
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 21 00:05:22 2020 +1000

    L10n updates for: de
    From translation svn revision: 54857
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    1       1       source/locale/de/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit c865e3dfa7f84abfbf7c30534b993c4b5d65068e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 21 00:05:18 2020 +1000

    L10n updates for: da
    From translation svn revision: 54857
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    1       1       source/locale/da/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit c79e521f3c6bad414fe14dbed701f8d64f8f7d6f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 21 00:05:17 2020 +1000

    L10n updates for: cs
    From translation svn revision: 54857
    
    Authors:
    Martina Letochova <letochova@seznam.cz>
    
    Stats:
    1       1       source/locale/cs/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 56fd97be8292d910acf19a470a231f229f9644da
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 21 00:05:15 2020 +1000

    L10n updates for: ckb
    From translation svn revision: 54857
    
    Authors:
    Ali Ustek <aliustek@gmail.com>
    Patrick Galasso <Patrice.galasso@gmail.com>
    Jwanro Mustafa <jwanroabdula@hotmail.com>
    Kosrat D Ahmad <kosrat.d.ahmad@gmail.com>
    silva.hm88@gmail.com
    
    Stats:
    1       1       source/locale/ckb/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 5b43bc708ab04b2db798f0afa890458beef5db37
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 21 00:05:13 2020 +1000

    L10n updates for: bg
    From translation svn revision: 54857
    
    Authors:
    Zahari Yurukov <zahari.yurukov@gmail.com>
    Kostadin Kolev <k_kolev1985@mail.bg>
    
    Stats:
    1       1       source/locale/bg/LC_MESSAGES/nvda.po
    33      33      user_docs/bg/changes.t2t
     2 files changed, 34 insertions(+), 34 deletions(-)

commit 7864db988dd2a4f94f89da770ad19c51e54853f1
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 21 00:05:10 2020 +1000

    L10n updates for: ar
    From translation svn revision: 54857
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Omar Alojaimi <amrahmad1995@gmail.com>
    
    Stats:
    1       1       source/locale/ar/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit b6b409941f220057e346d62cbba6258559f915ef
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 21 00:05:07 2020 +1000

    L10n updates for: an
    From translation svn revision: 54857
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    
    Stats:
    1       1       source/locale/an/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 2c4caa62068feb03624670e35abd482ce91c48be
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Feb 20 08:28:04 2020 +1000

    Update what's new for pr #10792.

commit 9a3f0571de7d5a89904a8a4717148612b3f73211
Author: Dawid Pieper <dawidpieper@o2.pl>
Date:   Wed Feb 19 23:25:28 2020 +0100

    FIX FOR SAPI4 SYNTHESIZERS (#10792)
    
    * FIX FOR SAPI4 SYNTHESIZERS
    
    Added 1ms break after SAPI4 speech sequence as some synthesizers like Syntalk are completing the sequence just after last text, ignoring additional indexing
    
    * E265 block comment should start with '# '
    
    * WT291 (flake8-tabs) trailing whitespace

commit 1e139d4dad6e44cced4250365a6e75a1ac332c4b
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Wed Feb 19 01:19:12 2020 +0100

    Revert "Fix window point conversion functions not exposing failure (#9269)" (#10793)
    
    This reverts commit 669ae5ac95dc8e7047131260d92f0792f4e35197.

commit 81d81dce8c245a75862d394b015b1c59408caebc
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Feb 17 10:59:41 2020 +1000

    Fix syntax error.

commit 2583bc64247d643a4fd26098b165a9edf32290dc
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Feb 17 10:17:01 2020 +1000

    Update miscDeps to include new dump_syms which works with VS 2019.

commit 141361b759685bf0017827a30ea7d9261a817672
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Feb 17 09:43:39 2020 +1000

    Update what's new for pr #10065.

commit b37db4d35bbd422422d84171a2f2af1fd12ff712
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Sun Feb 16 15:42:49 2020 -0800

    Touch gestures: add right mouse click (tap and hold) command (#10065)
    
    * Global commands: added a gesture to perform right click on touch screens. re #3886.
    
    * Oops - fix indentation.
    
    * Global Commands: touch right click - ignore invisible or offscreen objects, as well as if any of the object coordinates is negative. re #3886.
    In some cases, objects may appear invisible until focus moves to it. This is noticeable on www.webaim.org's skip to content anchor.
    Also don't bother clicking when the minimum of the coordinates is negative.
    Also modified script doc for touch_rightClick (all suggested by jamie@nvaccess.org).
    
    * Remove blank line.
    
    * User guide: document tap and hold for right mouse click on touch devices, reword introductory text for mouse commands table. Re #3886
    
    * Touch right mouse click/Python 3: coordinates should be integers, not float. re #3886.
    
    * Touch mouse command: lint fixes. Re #3886.
    
    Lint fixes include spaces around operators, dictionary key/value assignment, and three noqa comments.

commit 3cad2673d37451bda81651dfd9c8f11cbb49dadf
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Feb 17 09:35:24 2020 +1000

    Update what's new for pr #10275.

commit 2f68395b386caec7d020c4cc833b52d0ec1c953d
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Mon Feb 17 00:34:18 2020 +0100

    Update liblouis to 3.12, compile with Clang on Visual Studio 2019 (#10275)
    
    * Update liblouis to 3.12
    
    * Add north american braille code, rename Greek
    
    * Use clang for compiilation
    
    * Add Dutch 8 dot

commit 435e38c6c6da2cb3e786064e11bc201606122970
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Feb 17 09:27:09 2020 +1000

    Update what's new for pr #10782.

commit aade3d6f61c3f042545906102d03bb3bb0a4d099
Author: James Teh <jamie@jantrid.net>
Date:   Mon Feb 17 09:14:22 2020 +1000

    Fix reporting of ARIA role="switch" in Firefox and Chrome. (#10782)
    
    The spec maps role="switch" to IA2_ROLE_TOGGLE_BUTTON.
    However, it also says that aria-checked should be used for switch, not aria-pressed, and aria-checked is mapped to the checked state.
    Firefox does exactly as specified, resulting in NVDA reporting weirdness like "toggle button  not pressed  checked".
    Chrome exposes both checked and pressed, resulting in NVDA reporting weirdness like "toggle button  checked  pressed".
    Since the spec says that a switch is "a type of checkbox", resolve this mess by mapping switch to check box and killing the pressed state.

commit 54186c513a0af4955a9622d0cc2fc867a575256c
Merge: 22e9db87b 1d6c1c57c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 14 00:06:32 2020 +1000

    Update translations.
    
    From translation svn revision: 54749

commit 1d6c1c57cca1572692918d13efd74bc890efc619
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 14 00:06:30 2020 +1000

    L10n updates for: zh_TW
    From translation svn revision: 54749
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    1       1       source/locale/zh_TW/LC_MESSAGES/nvda.po
    47      47      source/locale/zh_TW/characterDescriptions.dic
     2 files changed, 48 insertions(+), 48 deletions(-)

commit d6a9757b84b1f5547c89c5ca196f1b741b4ae0c8
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 14 00:06:28 2020 +1000

    L10n updates for: zh_HK
    From translation svn revision: 54749
    
    Authors:
    Eric Yip <ericycy@gmail.com>
    
    Stats:
    1       1       source/locale/zh_HK/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 6d5bceec755c190ae79dcd2cc708d7e67281b723
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 14 00:06:28 2020 +1000

    L10n updates for: zh_CN
    From translation svn revision: 54749
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    
    Stats:
    1       1       source/locale/zh_CN/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 35d4ca634631e059306f47abd8b5f53034615a2a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 14 00:06:25 2020 +1000

    L10n updates for: vi
    From translation svn revision: 54749
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    1       1       source/locale/vi/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 7b722b1ec455bd5dda71ccad5d12b02bb055b98c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 14 00:06:24 2020 +1000

    L10n updates for: uk
    From translation svn revision: 54749
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    1       1       source/locale/uk/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 5f0ba2e27b38e24c38c6caaf196bca2879907e25
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 14 00:06:22 2020 +1000

    L10n updates for: tr
    From translation svn revision: 54749
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    1       1       source/locale/tr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 708163f2f6975b5e62fc96a82c9f144aa724c713
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 14 00:06:20 2020 +1000

    L10n updates for: ta
    From translation svn revision: 54749
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    3       3       source/locale/ta/LC_MESSAGES/nvda.po
    1       1       user_docs/ta/userGuide.t2t
     2 files changed, 4 insertions(+), 4 deletions(-)

commit 7bd129aaf31f9bf3279b76d5f5f9d56fbaa21c16
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 14 00:06:18 2020 +1000

    L10n updates for: sv
    From translation svn revision: 54749
    
    Authors:
    Daniel Johansson <daniel.johansson@coeptus.se>
    Niklas Johansson <sleeping.pillow@gmail.com>
    Karl-Otto Rosenqvist <Karl-otto@mawingu.se>
    
    Stats:
    1       1       source/locale/sv/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 5583f4fd0d04418e19777c2b79770af3b852a9c3
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 14 00:06:17 2020 +1000

    L10n updates for: sr
    From translation svn revision: 54749
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    1       1       source/locale/sr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit acdd487d83667fe891302d8dda686bb34c9e5da5
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 14 00:06:15 2020 +1000

    L10n updates for: sl
    From translation svn revision: 54749
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    8       184     source/locale/sl/LC_MESSAGES/nvda.po
    3       3       user_docs/sl/userGuide.t2t
     2 files changed, 11 insertions(+), 187 deletions(-)

commit ac383505133f63b2accdd36aaa573e1487a86a27
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 14 00:06:14 2020 +1000

    L10n updates for: sk
    From translation svn revision: 54749
    
    Authors:
    Ondrej Rosik <ondrej.rosik@gmail.com>
    Peter Vagner <peter.v@datagate.sk>
    Jan Kulik <jan.kulik.szsle@outlook.sk>
    
    Stats:
    1       1       source/locale/sk/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit d802883fb6b22620d138e7fa3d8b0847ef12a67a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 14 00:06:12 2020 +1000

    L10n updates for: ru
    From translation svn revision: 54749
    
    Authors:
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    1       1       source/locale/ru/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 9c6de5f8ea507c98af42963bc85ee7ccd75290f4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 14 00:06:09 2020 +1000

    L10n updates for: ro
    From translation svn revision: 54749
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    George Antonio Andrei <george.andrei2002@gmail.com>
    
    Stats:
    1       1       source/locale/ro/LC_MESSAGES/nvda.po
    0       1       source/locale/ro/symbols.dic
     2 files changed, 1 insertion(+), 2 deletions(-)

commit dbcd77ab968213debee5334a98d6bb08eca91dd7
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 14 00:06:08 2020 +1000

    L10n updates for: pt_PT
    From translation svn revision: 54749
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    1       1       source/locale/pt_PT/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 1c5297a6056655b42cf2fced36d2cf350a86051e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 14 00:06:05 2020 +1000

    L10n updates for: pt_BR
    From translation svn revision: 54749
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    1       1       source/locale/pt_BR/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 1c07844ff031e5c95cef9ef476661ffe476a92bf
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 14 00:06:03 2020 +1000

    L10n updates for: pl
    From translation svn revision: 54749
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <hubmeyer1989@gmail.com>
    Arkadiusz Swietnicki <nuno69a@gmail.com>
    
    Stats:
    1       1       source/locale/pl/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit b2f63737e8618ffebb107d323e9fca53e147f1bb
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 14 00:06:01 2020 +1000

    L10n updates for: nl
    From translation svn revision: 54749
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    1       1       source/locale/nl/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 01ec0a8d39f9963d9bd7e045d48120c6e4ffc65c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 14 00:05:59 2020 +1000

    L10n updates for: ne
    From translation svn revision: 54749
    
    Authors:
    Puskal Gautam <nvda.nepali@gmail.com>
    
    Stats:
    1       1       source/locale/ne/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 792d75419a523ef17311ea8d4df7d51e664bc46c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 14 00:05:56 2020 +1000

    L10n updates for: mn
    From translation svn revision: 54749
    
    Authors:
    Mongol NVDA-Translation <mongoliannvdatranslation@gmail.com>
    
    Stats:
    1       1       source/locale/mn/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 1deed7dd65d4f924351c639eb871a0e50de0415b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 14 00:05:54 2020 +1000

    L10n updates for: mk
    From translation svn revision: 54749
    
    Authors:
    zvonimir stanecic <9a5dsz@gozaltech.org>
    Kiko Lazarev <kristijan.lazarev@gmail.com>
    
    Stats:
    1       1       source/locale/mk/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 327ac6c313ecb532def52bf0f02ec0118041fef4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 14 00:05:52 2020 +1000

    L10n updates for: ko
    From translation svn revision: 54749
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    3181    3319    source/locale/ko/LC_MESSAGES/nvda.po
    175     7       user_docs/ko/changes.t2t
     2 files changed, 3356 insertions(+), 3326 deletions(-)

commit 4a78f1a349fa364c28e9a15ca0ab36927616a111
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 14 00:05:49 2020 +1000

    L10n updates for: ja
    From translation svn revision: 54749
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    1       1       source/locale/ja/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit d042a690074c5aac315b990e33e1b4a57a03b8eb
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 14 00:05:46 2020 +1000

    L10n updates for: it
    From translation svn revision: 54749
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    1       1       source/locale/it/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit ba7ab26a649bf6bf1f0e32eb576ff2e66f428381
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 14 00:05:43 2020 +1000

    L10n updates for: hu
    From translation svn revision: 54749
    
    Authors:
    Aron OcsvAri <oaron@nvda.hu>
    
    Stats:
    1       1       source/locale/hu/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit dfdbfe93cd73f03815a42f534bc2feecc99be571
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 14 00:05:42 2020 +1000

    L10n updates for: hr
    From translation svn revision: 54749
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Milo Ivir <mivir@milotype.de>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    20      19      source/locale/hr/LC_MESSAGES/nvda.po
     1 file changed, 20 insertions(+), 19 deletions(-)

commit 40e4e81f0ceff48afe9373d0d1e7c53ce64f3f23
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 14 00:05:40 2020 +1000

    L10n updates for: hi
    From translation svn revision: 54749
    
    Authors:
    dipendra.lists@gmail.com
    Doc Mehta <joyofinspiring@gmail.com>
    
    Stats:
    1       1       source/locale/hi/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 6b61bc20d180ce5e55d80cdcb378bb5e23de8d18
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 14 00:05:39 2020 +1000

    L10n updates for: he
    From translation svn revision: 54749
    
    Authors:
    Shmuel Naaman <shmuel_naaman@yahoo.com>
    Afik Sofir <afik.sofer@gmail.com>
    
    Stats:
    1       1       source/locale/he/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 938e99ab37b3e86d4b033bc0aaeb54481fed8335
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 14 00:05:38 2020 +1000

    L10n updates for: gl
    From translation svn revision: 54749
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    
    Stats:
    1       1       source/locale/gl/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 921afd9650df68b900cca869a01a11eb96d78404
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 14 00:05:36 2020 +1000

    L10n updates for: ga
    From translation svn revision: 54749
    
    Authors:
    Cearbhall OMeadhra <cearbhall.omeadhra@blbc.ie>
    Ronan McGuirk <ronan.p.mcguirk@gmail.com>
    Kevin Scannell <kscanne@gmail.com>
    
    Stats:
    79      102     source/locale/ga/LC_MESSAGES/nvda.po
     1 file changed, 79 insertions(+), 102 deletions(-)

commit ee5cbecc5e005a79c3e30b0c37b10ef85d0f928c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 14 00:05:35 2020 +1000

    L10n updates for: fr
    From translation svn revision: 54749
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess.net>
    
    Stats:
    1       1       source/locale/fr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit d16810200f0f6de04581a5b7cc3e07f1deffdff2
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 14 00:05:33 2020 +1000

    L10n updates for: fi
    From translation svn revision: 54749
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    1       1       source/locale/fi/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 7374146dc60a14418ac5a73396a3e8067885e177
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 14 00:05:31 2020 +1000

    L10n updates for: fa
    From translation svn revision: 54749
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    1       1       source/locale/fa/LC_MESSAGES/nvda.po
    166     45      user_docs/fa/userGuide.t2t
     2 files changed, 167 insertions(+), 46 deletions(-)

commit e834699016d3924eca87c8a1c6221d9c67ef6642
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 14 00:05:28 2020 +1000

    L10n updates for: es
    From translation svn revision: 54749
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       source/locale/es/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit e43c69f668b4784bc0b82ab389fe5d57359b7d05
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 14 00:05:26 2020 +1000

    L10n updates for: es_CO
    From translation svn revision: 54749
    
    Authors:
    Jorge Zarache <reydelasmaquinas@outlook.com>
    Luis Carlos Gonzáles Moráles <luiscarlosgm@hotmail.es>
    
    Stats:
    1       1       source/locale/es_CO/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 8ee14356ae41c552fa5ec9a5490c3047bd7d6462
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 14 00:05:24 2020 +1000

    L10n updates for: el
    From translation svn revision: 54749
    
    Authors:
    Irene Nakas <irnakas@gmail.com>
    Nikos Demetriou <nikosdemetriou@googlemail.com>
    access@e-rhetor.com
    
    Stats:
    1       1       source/locale/el/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 37c74c55733f3fcd7313190d82b07f3c49523a7f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 14 00:05:22 2020 +1000

    L10n updates for: de
    From translation svn revision: 54749
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    1       1       source/locale/de/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit f48e207876c968c7aae997cc8d43840d1828fdbd
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 14 00:05:19 2020 +1000

    L10n updates for: da
    From translation svn revision: 54749
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    1       1       source/locale/da/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 64b2b4687bad9838a7a073a1625bf70ec615deb8
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 14 00:05:17 2020 +1000

    L10n updates for: cs
    From translation svn revision: 54749
    
    Authors:
    Martina Letochova <letochova@seznam.cz>
    
    Stats:
    1       1       source/locale/cs/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit de6d313dbea6b0ab60392c9bad8dfa5385cc4b8e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 14 00:05:16 2020 +1000

    L10n updates for: ckb
    From translation svn revision: 54749
    
    Authors:
    Ali Ustek <aliustek@gmail.com>
    Patrick Galasso <Patrice.galasso@gmail.com>
    Jwanro Mustafa <jwanroabdula@hotmail.com>
    Kosrat D Ahmad <kosrat.d.ahmad@gmail.com>
    silva.hm88@gmail.com
    
    Stats:
    1       1       source/locale/ckb/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 99c7db14a2b9cc9b28a7b7743cc7e640090b66c3
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 14 00:05:14 2020 +1000

    L10n updates for: bg
    From translation svn revision: 54749
    
    Authors:
    Zahari Yurukov <zahari.yurukov@gmail.com>
    Kostadin Kolev <k_kolev1985@mail.bg>
    
    Stats:
    1       1       source/locale/bg/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 54f576a4d9ada1b46dee2acd881af8a614a2ea9a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 14 00:05:09 2020 +1000

    L10n updates for: ar
    From translation svn revision: 54749
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Omar Alojaimi <amrahmad1995@gmail.com>
    
    Stats:
    1       1       source/locale/ar/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 794d44c37b1ce9184fcb4669ab0f5b20435430a8
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 14 00:05:05 2020 +1000

    L10n updates for: an
    From translation svn revision: 54749
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    
    Stats:
    1       1       source/locale/an/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit fb2d1cd4eb764eb56070d69e9d22e001b7e93fa6
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Feb 13 18:52:07 2020 +1000

    Completely disable dump_syms for now. Not having any luck.

commit 31f7d65e2b0936bd443b2c9da9d34baf2d7643e5
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Feb 13 18:33:11 2020 +1000

    register msdia140.dll for dump_syms.

commit c24eb88307916c02484289739805cb0b780e3715
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Feb 13 17:56:46 2020 +1000

    dump_syms is 32 bit so point it to the x86 path for msdia140.dll

commit cdb2a2341b119c7686d2d4b65a7c50ecc5989d17
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Feb 13 17:29:12 2020 +1000

    Ensure dump_syms can find msdia140.dll.

commit e95583e85617ff3af85f5f1871cda62d1ac6228e
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Feb 13 16:52:02 2020 +1000

    Temporarily disable dumping symbols and sending them to Mozilla as  this is failing in the VS 2019 image on appveyor.

commit d62aee366890a66cccd7a9b0345b6a80e75fb2a2
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Feb 13 15:50:38 2020 +1000

    Update what's new for pr #10169.

commit 67ca5c4f9b9c70d166ba3e74cb8c62c828fa4346
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Thu Feb 13 06:44:52 2020 +0100

    Build NVDA with Visual Studio 2019 (#10169)
    
    * Update to VS2019
    
    * Update readme
    
    * Fix flake8 include
    
    * Fix openssl 1.1 on appveyor
    
    * Fix readme
    
    * Bump scons to 3.1.2
    
    * Fix bad merge for download link

commit 9881f37a3191f19beedefa2d306c8465ae606873
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Feb 13 08:03:11 2020 +1000

    Update what's new for pr #10781.

commit 39274e5b1a58708eadbafe8b85096c9ede0e1838
Author: James Teh <jamie@jantrid.net>
Date:   Thu Feb 13 08:01:33 2020 +1000

    Fix reporting of "not checked" for check boxes with no other states in browse mode. (#10781)
    
    When determining whether the caller wants states, we must differentiate between None and the empty set.
    If the caller didn't want states, states will be None.
    However, empty states means the caller still wants states, but the object had no states; e.g. an unchecked check box with no other states.
    Previously, we treated an empty set as if the caller didn't want states.

commit 701f490688c7d79695f767aa827ebec72d596b34
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Feb 12 17:05:41 2020 +1000

    Update what's new for pr #10707.

commit 93bd4eaebadcb3345d1da2e809f14f8f7e37ff08
Author: James Teh <jamie@jantrid.net>
Date:   Wed Feb 12 16:57:30 2020 +1000

    Support for out-of-process iframes in Firefox (#10707)
    
    * gecko_ia2 vbuf getNVDAObjectFromIdentifier: Use getNVDAObjectFromEvent instead of accChild on the document.
    
    This was changed to use accChild on the document in the theoretical hope that it might be slightly faster, since it doesn't need to go via the parent process.
    However, this was never proved to be a performance benefit in real terms.
    In Firefox, when an iframe document is rendered in a separate process to its embedder, the embedder has no knowledge of children in the embedded document and cannot communicate with the embedded document at all.
    This means that accChild for accessibles in the embedded document fails.
    The root accessible is in the parent process and can fetch children in all content documents, so using AccessibleObjectFromEvent works as expected.
    
    * gecko_ia2 vbuf __contains__: If accChild fails, try the embedder iframe(s).
    
    In Firefox, when an iframe/frame document is rendered in a separate process to its embedder, accChild for accessibles in the embedded document fails.
    If this is the case, we can get the embedder frame and try accChild with the iframe's id.
    There can be nested out-of-process frames, so we keep trying this until there are no more frames in the hierarchy (or until we hit the buffer's root id).
    We cache frames because walking frames is expensive, and when trying to work out what TreeInterceptor an object belongs to, we'll need to query the frames for each TreeInterceptor.

commit 35ae4d4a17a7fcd42a941e31b8684b9b40e1cf39
Author: CyrilleB79 <cyrille.bougot2@laposte.net>
Date:   Wed Feb 12 07:30:41 2020 +0100

    Add missing message box titles (NVDA 2019.3) (#10769)
    
    * Add missing captions to message boxes.
    
    * Convert wx.MessageBox to gui.messageBox
    
    * Address linting issue
    
    * Removed a file in __pycache__

commit 11fdd65572e91ed50a2b7ea8ad236cd3cc00eac1
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Feb 12 16:12:17 2020 +1000

    Update what's new for pr #10776.

commit bd3fea39f88b12ba47c398455eea25e630b29da6
Author: James Teh <jamie@jantrid.net>
Date:   Wed Feb 12 16:10:51 2020 +1000

    gecko vbuf backend: When an accessible is moved, do not reuse that node or its descendants (#10776)
    
    * vbufBase: Allow alwaysRerenderDescendants to be set on a node after it is rendered to indicate that we must not reuse descendants in future.
    
    Previously, alwaysRerenderDescendants could be set on a node during rendering and that would prevent any reuse while rendering the subtree.
    However, if alwaysRerenderDescendants was set on a node after rendering, it had no effect on future reuse.
    Now, it does.
    
    * gecko vbuf backend: When an accessible is moved, do not reuse that node or its descendants.
    
    When an accessible is moved, events are fired as if the accessible were removed and then inserted.
    The insertion events are fired as if it were a new subtree; i.e. only one insertion for the root of the subtree.
    This means that if new descendants are inserted at the same time as the root is moved, we don't get specific events for those insertions.
    Because of that, we mustn't reuse the subtree.
    Otherwise, we wouldn't walk inside it and thus wouldn't know about the new descendants.
    
    To achieve this, we set alwaysRerenderDescendants on any node which gets a hide event.
    If the node is being removed instead of moved (no subsequent insertion event), this is cheap and simply has no effect.

commit 6a6a950b2cb9efa90530431a6a1a3b424991be24
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Feb 12 16:08:58 2020 +1000

    Update build version number to 2020.1.0

commit 169c3296d72e85fa7222d11066eb5bd309a1c33e
Merge: 071838e0b 22e9db87b
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Feb 7 06:45:08 2020 +1000

    Merge branch 'beta'

commit 22e9db87b59cbcc1c63f3966372292d808fabc33
Merge: b62e62e8e 4f8084ddf
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 7 00:06:21 2020 +1000

    Update translations.
    
    From translation svn revision: 54598

commit 4f8084ddfe1bac6241b96ac7d38d7c1331ceadbd
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 7 00:06:20 2020 +1000

    L10n updates for: zh_TW
    From translation svn revision: 54598
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    3       3       user_docs/zh_TW/changes.t2t
     1 file changed, 3 insertions(+), 3 deletions(-)

commit 9998c395e99d11816b6efce91e3ac82a751fbe71
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 7 00:05:31 2020 +1000

    L10n updates for: ga
    From translation svn revision: 54598
    
    Authors:
    Cearbhall OMeadhra <cearbhall.omeadhra@blbc.ie>
    Ronan McGuirk <ronan.p.mcguirk@gmail.com>
    Kevin Scannell <kscanne@gmail.com>
    
    Stats:
    32      43      source/locale/ga/LC_MESSAGES/nvda.po
     1 file changed, 32 insertions(+), 43 deletions(-)

commit 6767c300363e8263d4e7a639522dc8e403b80379
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Fri Feb 7 00:05:19 2020 +1000

    L10n updates for: de
    From translation svn revision: 54598
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    5       5       source/locale/de/LC_MESSAGES/nvda.po
     1 file changed, 5 insertions(+), 5 deletions(-)

commit 071838e0bef7713138d66a457ca6c476b062fb4b
Author: Reef Turner <reef@nvaccess.org>
Date:   Thu Feb 6 10:39:59 2020 +0100

    Update changes file for PR #10750

commit f3620a72c0f7eef0ccbe1ec41d6c95b56cbf9f1f
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Thu Feb 6 10:35:31 2020 +0100

    Discard duplicated value for a Windows Explorer list items when accessed via IAccessible (PR #10750)
    
    Summary of the issue:
    
    Windows Explorer list items repeat 'name' as the 'value' property. By default we are accessing it via UIA, and in this case the 'value' property was discarded. There are situations, such as NVDA's own open windows where UIA cannot be used (it causes freezes) and in these cases repetitions were annoying.
    
    The fix:
    
    Similar to what has been done for UIA value of these items is discarded when accessed via IAccessible
    
    Fixes #10620
    Fixes #2395

commit b62e62e8e6a2198ffd0973ef908546ac617af890
Merge: 61ae6c9f5 f75aeb115
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Feb 5 10:43:06 2020 +1000

    Update translations.
    
    From translation svn revision: 54581

commit f75aeb115b590883a870da49b9178bd35d5d71af
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Feb 5 10:42:45 2020 +1000

    L10n updates for: pt_PT
    From translation svn revision: 54581
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    28      35      source/locale/pt_PT/LC_MESSAGES/nvda.po
    8       3       user_docs/pt_PT/changes.t2t
    23      30      user_docs/pt_PT/userGuide.t2t
     3 files changed, 59 insertions(+), 68 deletions(-)

commit 61ae6c9f5d64ce1b5557c810652500e3e778ea41
Merge: 5e674a4da 62d98e820
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Feb 5 10:29:48 2020 +1000

    Update translations.
    
    From translation svn revision: 54579

commit 62d98e82039d315634d75c244ef4336668264d81
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Feb 5 10:29:47 2020 +1000

    L10n updates for: zh_HK
    From translation svn revision: 54579
    
    Authors:
    Eric Yip <ericycy@gmail.com>
    
    Stats:
    31      31      source/locale/zh_HK/LC_MESSAGES/nvda.po
     1 file changed, 31 insertions(+), 31 deletions(-)

commit b399bb4aaa3f46299ae45bc54dcaceeca6491b51
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Feb 5 10:29:22 2020 +1000

    L10n updates for: ne
    From translation svn revision: 54579
    
    Authors:
    Puskal Gautam <nvda.nepali@gmail.com>
    
    Stats:
    629     245     source/locale/ne/LC_MESSAGES/nvda.po
     1 file changed, 629 insertions(+), 245 deletions(-)

commit 75135b3d6ed8908438dab8c470b438309250d34b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Feb 5 10:29:17 2020 +1000

    L10n updates for: mk
    From translation svn revision: 54579
    
    Authors:
    zvonimir stanecic <9a5dsz@gozaltech.org>
    Kiko Lazarev <kristijan.lazarev@gmail.com>
    
    Stats:
    3576    2775    source/locale/mk/LC_MESSAGES/nvda.po
     1 file changed, 3576 insertions(+), 2775 deletions(-)

commit 9e27f5cc692b196430d36e35773da9d5b8054c45
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Feb 5 10:29:07 2020 +1000

    L10n updates for: hu
    From translation svn revision: 54579
    
    Authors:
    Aron OcsvAri <oaron@nvda.hu>
    
    Stats:
    34      31      source/locale/hu/LC_MESSAGES/nvda.po
     1 file changed, 34 insertions(+), 31 deletions(-)

commit c7e1b52036c3fc4affdedd3894793b4afea5c0fc
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Feb 5 10:29:04 2020 +1000

    L10n updates for: hi
    From translation svn revision: 54579
    
    Authors:
    dipendra.lists@gmail.com
    Doc Mehta <joyofinspiring@gmail.com>
    
    Stats:
    3636    2918    source/locale/hi/LC_MESSAGES/nvda.po
     1 file changed, 3636 insertions(+), 2918 deletions(-)

commit f309cb34ab52f8835fffc20905ba7101231793a6
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Feb 5 10:28:51 2020 +1000

    L10n updates for: es_CO
    From translation svn revision: 54579
    
    Authors:
    Jorge Zarache <reydelasmaquinas@outlook.com>
    Luis Carlos Gonzáles Moráles <luiscarlosgm@hotmail.es>
    
    Stats:
    3946    2967    source/locale/es_CO/LC_MESSAGES/nvda.po
     1 file changed, 3946 insertions(+), 2967 deletions(-)

commit 5e674a4da4fc84ad8eb34afca8b87e890a58713d
Merge: 9b1120f65 0c31d58be
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Feb 5 07:19:05 2020 +1000

    Update translations.
    
    From translation svn revision: 54578

commit 0c31d58be9be170c77d4fa45e6c31d138de41c0f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Feb 5 07:19:04 2020 +1000

    L10n updates for: zh_TW
    From translation svn revision: 54578
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    34      39      source/locale/zh_TW/LC_MESSAGES/nvda.po
     1 file changed, 34 insertions(+), 39 deletions(-)

commit f750176fc32022162dd66a5d4dbf186aecf30ada
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Feb 5 07:19:00 2020 +1000

    L10n updates for: vi
    From translation svn revision: 54578
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    76      82      source/locale/vi/LC_MESSAGES/nvda.po
     1 file changed, 76 insertions(+), 82 deletions(-)

commit c1acd577f0b99c9133b48af028ff38b97055296b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Feb 5 07:18:58 2020 +1000

    L10n updates for: uk
    From translation svn revision: 54578
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    35      39      source/locale/uk/LC_MESSAGES/nvda.po
     1 file changed, 35 insertions(+), 39 deletions(-)

commit 4d2fe8a6595920b09566beaa0cf4d4df999bb08f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Feb 5 07:18:57 2020 +1000

    L10n updates for: tr
    From translation svn revision: 54578
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    40      42      source/locale/tr/LC_MESSAGES/nvda.po
     1 file changed, 40 insertions(+), 42 deletions(-)

commit 5e7231107e93f3b6c01fbf19400a144c0e02174a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Feb 5 07:18:55 2020 +1000

    L10n updates for: ta
    From translation svn revision: 54578
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    103     102     source/locale/ta/LC_MESSAGES/nvda.po
     1 file changed, 103 insertions(+), 102 deletions(-)

commit 3fff797bb100d084b4244f850e16a35f35f575ee
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Feb 5 07:18:53 2020 +1000

    L10n updates for: sv
    From translation svn revision: 54578
    
    Authors:
    Daniel Johansson <daniel.johansson@coeptus.se>
    Niklas Johansson <sleeping.pillow@gmail.com>
    Karl-Otto Rosenqvist <Karl-otto@mawingu.se>
    
    Stats:
    36      42      source/locale/sv/LC_MESSAGES/nvda.po
     1 file changed, 36 insertions(+), 42 deletions(-)

commit 998a35b389a88d11865d969b1c94eb4cb2dc8f78
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Feb 5 07:18:51 2020 +1000

    L10n updates for: sr
    From translation svn revision: 54578
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    33      41      source/locale/sr/LC_MESSAGES/nvda.po
     1 file changed, 33 insertions(+), 41 deletions(-)

commit 45ec2ff28786a74b39efb78afd844475747e90db
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Feb 5 07:18:50 2020 +1000

    L10n updates for: sl
    From translation svn revision: 54578
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    205     34      source/locale/sl/LC_MESSAGES/nvda.po
     1 file changed, 205 insertions(+), 34 deletions(-)

commit 73305c97018249cd02ec0dcadf16eb2c8771a977
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Feb 5 07:18:47 2020 +1000

    L10n updates for: ru
    From translation svn revision: 54578
    
    Authors:
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    23      38      source/locale/ru/LC_MESSAGES/nvda.po
     1 file changed, 23 insertions(+), 38 deletions(-)

commit 06f73258e9a6428a336891c1402b4b92955d9b41
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Feb 5 07:18:44 2020 +1000

    L10n updates for: ro
    From translation svn revision: 54578
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    George Antonio Andrei <george.andrei2002@gmail.com>
    
    Stats:
    34      37      source/locale/ro/LC_MESSAGES/nvda.po
     1 file changed, 34 insertions(+), 37 deletions(-)

commit 175341b430e41c15828d106d21cec9ca6ac7fd9b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Feb 5 07:18:42 2020 +1000

    L10n updates for: pt_BR
    From translation svn revision: 54578
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    57      61      source/locale/pt_BR/LC_MESSAGES/nvda.po
     1 file changed, 57 insertions(+), 61 deletions(-)

commit c6a796daaced16ec4216b4b186eb274ba4b2f0f3
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Feb 5 07:18:40 2020 +1000

    L10n updates for: pl
    From translation svn revision: 54578
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <hubmeyer1989@gmail.com>
    Arkadiusz Swietnicki <nuno69a@gmail.com>
    
    Stats:
    33      37      source/locale/pl/LC_MESSAGES/nvda.po
     1 file changed, 33 insertions(+), 37 deletions(-)

commit a1464bf583196e9d6f948e1651b45c18cff2bba4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Feb 5 07:18:34 2020 +1000

    L10n updates for: mn
    From translation svn revision: 54578
    
    Authors:
    Mongol NVDA-Translation <mongoliannvdatranslation@gmail.com>
    
    Stats:
    79      98      source/locale/mn/LC_MESSAGES/nvda.po
     1 file changed, 79 insertions(+), 98 deletions(-)

commit ef7f610a63d394bda7ef93778d89420b410cbe0f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Feb 5 07:18:28 2020 +1000

    L10n updates for: ja
    From translation svn revision: 54578
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    40      53      source/locale/ja/LC_MESSAGES/nvda.po
     1 file changed, 40 insertions(+), 53 deletions(-)

commit 20bebdfa356f078f1da6ab6cfa1c247c6a42bcec
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Feb 5 07:18:25 2020 +1000

    L10n updates for: it
    From translation svn revision: 54578
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    40      43      source/locale/it/LC_MESSAGES/nvda.po
     1 file changed, 40 insertions(+), 43 deletions(-)

commit b6893557cf5d770f1e7998c95babbbd76a41874b
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Feb 5 07:18:21 2020 +1000

    L10n updates for: hr
    From translation svn revision: 54578
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Milo Ivir <mivir@milotype.de>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    33      39      source/locale/hr/LC_MESSAGES/nvda.po
     1 file changed, 33 insertions(+), 39 deletions(-)

commit a9afee443fe59725b27bd952322ee465461808bb
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Feb 5 07:18:18 2020 +1000

    L10n updates for: gl
    From translation svn revision: 54578
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    
    Stats:
    31      36      source/locale/gl/LC_MESSAGES/nvda.po
     1 file changed, 31 insertions(+), 36 deletions(-)

commit 1d6fe3d1489dd355d7ee0c9c417a91fe9fd77713
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Feb 5 07:18:16 2020 +1000

    L10n updates for: ga
    From translation svn revision: 54578
    
    Authors:
    Cearbhall OMeadhra <cearbhall.omeadhra@blbc.ie>
    Ronan McGuirk <ronan.p.mcguirk@gmail.com>
    Kevin Scannell <kscanne@gmail.com>
    
    Stats:
    45      54      source/locale/ga/LC_MESSAGES/nvda.po
     1 file changed, 45 insertions(+), 54 deletions(-)

commit c08e8b2842dc0c2d6cbf6a2ae4e61161dc141b9f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Feb 5 07:18:15 2020 +1000

    L10n updates for: fr
    From translation svn revision: 54578
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess.net>
    
    Stats:
    32      49      source/locale/fr/LC_MESSAGES/nvda.po
     1 file changed, 32 insertions(+), 49 deletions(-)

commit ebec26a1315bd61b4c6e0bf0689fbe26020f2bea
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Feb 5 07:18:13 2020 +1000

    L10n updates for: fi
    From translation svn revision: 54578
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    32      38      source/locale/fi/LC_MESSAGES/nvda.po
     1 file changed, 32 insertions(+), 38 deletions(-)

commit 6ecc248e4a9fe1748e1e9c4b0c36360cb6d65581
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Feb 5 07:18:09 2020 +1000

    L10n updates for: es
    From translation svn revision: 54578
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    32      37      source/locale/es/LC_MESSAGES/nvda.po
     1 file changed, 32 insertions(+), 37 deletions(-)

commit d614883039b9e1d3f1e82ef0e6da009823068102
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Feb 5 07:18:05 2020 +1000

    L10n updates for: el
    From translation svn revision: 54578
    
    Authors:
    Irene Nakas <irnakas@gmail.com>
    Nikos Demetriou <nikosdemetriou@googlemail.com>
    access@e-rhetor.com
    
    Stats:
    3368    2994    source/locale/el/LC_MESSAGES/nvda.po
     1 file changed, 3368 insertions(+), 2994 deletions(-)

commit b98ee9c612fea08a939426359bb1b008fca9fbb6
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Feb 5 07:18:03 2020 +1000

    L10n updates for: de
    From translation svn revision: 54578
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    898     659     source/locale/de/LC_MESSAGES/nvda.po
     1 file changed, 898 insertions(+), 659 deletions(-)

commit 6867f114934f22fad031eb31533178a9e82703c6
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Feb 5 07:17:59 2020 +1000

    L10n updates for: cs
    From translation svn revision: 54578
    
    Authors:
    Martina Letochova <letochova@seznam.cz>
    
    Stats:
    215     38      source/locale/cs/LC_MESSAGES/nvda.po
     1 file changed, 215 insertions(+), 38 deletions(-)

commit c15f700fec51218d3017bf77d1265fe44bba9e13
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Feb 5 07:17:55 2020 +1000

    L10n updates for: bg
    From translation svn revision: 54578
    
    Authors:
    Zahari Yurukov <zahari.yurukov@gmail.com>
    Kostadin Kolev <k_kolev1985@mail.bg>
    
    Stats:
    3411    3064    source/locale/bg/LC_MESSAGES/nvda.po
     1 file changed, 3411 insertions(+), 3064 deletions(-)

commit 165cea03100457a7e4ae2f9d74597f75c21965d7
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Feb 5 07:17:52 2020 +1000

    L10n updates for: ar
    From translation svn revision: 54578
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Omar Alojaimi <amrahmad1995@gmail.com>
    
    Stats:
    58      62      source/locale/ar/LC_MESSAGES/nvda.po
     1 file changed, 58 insertions(+), 62 deletions(-)

commit a5f0b5b548dfcfeb0333bd60e6c077ba199f837a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Wed Feb 5 07:17:49 2020 +1000

    L10n updates for: an
    From translation svn revision: 54578
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    
    Stats:
    34      38      source/locale/an/LC_MESSAGES/nvda.po
     1 file changed, 34 insertions(+), 38 deletions(-)

commit 9b1120f652b45fba6d432416ad7dc035a46fac2f
Merge: 646094917 7bb85ad64
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Feb 4 00:01:06 2020 +1000

    Update translations.
    
    From translation svn revision: 54568

commit 7bb85ad64ce09b9e8a49c6c23362291cd02de06f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Feb 4 00:01:05 2020 +1000

    L10n updates for: zh_TW
    From translation svn revision: 54568
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    70      68      source/locale/zh_TW/characterDescriptions.dic
    16      23      user_docs/zh_TW/userGuide.t2t
     2 files changed, 86 insertions(+), 91 deletions(-)

commit 06b71b4f2eff6922b82adeff43e8de68f5a1eb20
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Feb 4 00:01:04 2020 +1000

    L10n updates for: zh_CN
    From translation svn revision: 54568
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    
    Stats:
    49      54      source/locale/zh_CN/LC_MESSAGES/nvda.po
    11      13      user_docs/zh_CN/changes.t2t
    165     63      user_docs/zh_CN/userGuide.t2t
     3 files changed, 225 insertions(+), 130 deletions(-)

commit 1c94589d0e79aa87a8c5a4e0481c5839c15bd4c7
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Feb 4 00:01:02 2020 +1000

    L10n updates for: vi
    From translation svn revision: 54568
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    4       4       user_docs/vi/changes.t2t
    25      32      user_docs/vi/userGuide.t2t
     2 files changed, 29 insertions(+), 36 deletions(-)

commit a7043153e3938aab0fe5d13a71ece429860f5432
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Feb 4 00:01:00 2020 +1000

    L10n updates for: uk
    From translation svn revision: 54568
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    15      22      user_docs/uk/userGuide.t2t
     1 file changed, 15 insertions(+), 22 deletions(-)

commit a7faed7bfde5801c88245358ff7f363c1ae40e64
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Feb 4 00:00:59 2020 +1000

    L10n updates for: tr
    From translation svn revision: 54568
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    3       3       user_docs/tr/changes.t2t
    21      27      user_docs/tr/userGuide.t2t
     2 files changed, 24 insertions(+), 30 deletions(-)

commit f1cd0e5f1fb83c9b5b9d8322880ad5bc57f6a1dc
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Feb 4 00:00:57 2020 +1000

    L10n updates for: ta
    From translation svn revision: 54568
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    15      22      user_docs/ta/userGuide.t2t
     1 file changed, 15 insertions(+), 22 deletions(-)

commit 0e415f29d7c8f0df6315e9bdfc7f0b15d4fb837c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Feb 4 00:00:55 2020 +1000

    L10n updates for: sr
    From translation svn revision: 54568
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    3       3       user_docs/sr/changes.t2t
    169     49      user_docs/sr/userGuide.t2t
     2 files changed, 172 insertions(+), 52 deletions(-)

commit b09b11cf1e54dfb156e5012954bf70df58690027
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Feb 4 00:00:53 2020 +1000

    L10n updates for: sl
    From translation svn revision: 54568
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    92      31      user_docs/sl/userGuide.t2t
     1 file changed, 92 insertions(+), 31 deletions(-)

commit 1c9738a575f9c118358bbb97a0681afc8bdcd9a3
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Feb 4 00:00:52 2020 +1000

    L10n updates for: sk
    From translation svn revision: 54568
    
    Authors:
    Ondrej Rosik <ondrej.rosik@gmail.com>
    Peter Vagner <peter.v@datagate.sk>
    Jan Kulik <jan.kulik.szsle@outlook.sk>
    
    Stats:
    30      36      source/locale/sk/LC_MESSAGES/nvda.po
    4       3       user_docs/sk/changes.t2t
    16      23      user_docs/sk/userGuide.t2t
     3 files changed, 50 insertions(+), 62 deletions(-)

commit cef8ba564c176840a2b3ce0f2c5b17de98f1339a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Feb 4 00:00:50 2020 +1000

    L10n updates for: ru
    From translation svn revision: 54568
    
    Authors:
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    103     20      user_docs/ru/changes.t2t
    191     71      user_docs/ru/userGuide.t2t
     2 files changed, 294 insertions(+), 91 deletions(-)

commit eadae15a64604d1c6154dbc173f461bf9ad4530f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Feb 4 00:00:48 2020 +1000

    L10n updates for: ro
    From translation svn revision: 54568
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    George Antonio Andrei <george.andrei2002@gmail.com>
    
    Stats:
    3       4       user_docs/ro/changes.t2t
    9       2       user_docs/ro/userGuide.t2t
     2 files changed, 12 insertions(+), 6 deletions(-)

commit 6bba31ae640b46f505b57e0754c08be0fdc46ea6
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Feb 4 00:00:46 2020 +1000

    L10n updates for: pt_BR
    From translation svn revision: 54568
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    3       3       user_docs/pt_BR/changes.t2t
    14      21      user_docs/pt_BR/userGuide.t2t
     2 files changed, 17 insertions(+), 24 deletions(-)

commit ca173d1230759354a34e127970842e0bbe1b3d69
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Feb 4 00:00:44 2020 +1000

    L10n updates for: pl
    From translation svn revision: 54568
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <hubmeyer1989@gmail.com>
    Arkadiusz Swietnicki <nuno69a@gmail.com>
    
    Stats:
    3       0       source/locale/pl/symbols.dic
    37      37      user_docs/pl/changes.t2t
    169     49      user_docs/pl/userGuide.t2t
     3 files changed, 209 insertions(+), 86 deletions(-)

commit a6331e95d171e48c5470f05c9193871f3fd7a39d
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Feb 4 00:00:42 2020 +1000

    L10n updates for: nl
    From translation svn revision: 54568
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    281     152     source/locale/nl/LC_MESSAGES/nvda.po
    3       0       user_docs/nl/changes.t2t
    17      24      user_docs/nl/userGuide.t2t
     3 files changed, 301 insertions(+), 176 deletions(-)

commit 680386a2583473ec38ea2c4f17c1b17d9177eee4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Feb 4 00:00:32 2020 +1000

    L10n updates for: ja
    From translation svn revision: 54568
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    148     0       user_docs/ja/changes.t2t
    54      61      user_docs/ja/userGuide.t2t
     2 files changed, 202 insertions(+), 61 deletions(-)

commit 5ab57a3dbf5e5545ce5fe7e2e854dbc1de9e3ffa
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Feb 4 00:00:29 2020 +1000

    L10n updates for: it
    From translation svn revision: 54568
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    146     0       user_docs/it/changes.t2t
    158     39      user_docs/it/userGuide.t2t
     2 files changed, 304 insertions(+), 39 deletions(-)

commit 68118d9e1a71cf6a859ae53ecf931eca0aa9d9c8
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Feb 4 00:00:25 2020 +1000

    L10n updates for: hr
    From translation svn revision: 54568
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Milo Ivir <mivir@milotype.de>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    8       4       user_docs/hr/changes.t2t
    15      22      user_docs/hr/userGuide.t2t
     2 files changed, 23 insertions(+), 26 deletions(-)

commit 49d0f4b18e47fe31b2fd84a7441159973fc6b525
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Feb 4 00:00:23 2020 +1000

    L10n updates for: he
    From translation svn revision: 54568
    
    Authors:
    Shmuel Naaman <shmuel_naaman@yahoo.com>
    Afik Sofir <afik.sofer@gmail.com>
    
    Stats:
    299     132     source/locale/he/LC_MESSAGES/nvda.po
     1 file changed, 299 insertions(+), 132 deletions(-)

commit 802d9e76f5b13fcf6dfdb0140fb9171b6114f78a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Feb 4 00:00:22 2020 +1000

    L10n updates for: gl
    From translation svn revision: 54568
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    
    Stats:
    3       3       user_docs/gl/changes.t2t
    14      20      user_docs/gl/userGuide.t2t
     2 files changed, 17 insertions(+), 23 deletions(-)

commit 3ad6a12fe333819cffe190c696e20ceeb4dfadbd
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Feb 4 00:00:20 2020 +1000

    L10n updates for: ga
    From translation svn revision: 54568
    
    Authors:
    Cearbhall OMeadhra <cearbhall.omeadhra@blbc.ie>
    Ronan McGuirk <ronan.p.mcguirk@gmail.com>
    Kevin Scannell <kscanne@gmail.com>
    
    Stats:
    3559    2758    source/locale/ga/LC_MESSAGES/nvda.po
     1 file changed, 3559 insertions(+), 2758 deletions(-)

commit ef63f5cbcdc77422f37e2ef587d0e570175eb9d4
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Feb 4 00:00:20 2020 +1000

    L10n updates for: fr
    From translation svn revision: 54568
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess.net>
    
    Stats:
    3       3       user_docs/fr/changes.t2t
    19      25      user_docs/fr/userGuide.t2t
     2 files changed, 22 insertions(+), 28 deletions(-)

commit 8f6c7973aa8e14e766cf886ba4e7acd768faa0fc
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Feb 4 00:00:18 2020 +1000

    L10n updates for: fi
    From translation svn revision: 54568
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    5       5       user_docs/fi/changes.t2t
    18      25      user_docs/fi/userGuide.t2t
     2 files changed, 23 insertions(+), 30 deletions(-)

commit a8d24a35c7f98f643aa81e155ef9a8bb034c3758
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Feb 4 00:00:16 2020 +1000

    L10n updates for: fa
    From translation svn revision: 54568
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    3257    2918    source/locale/fa/LC_MESSAGES/nvda.po
    4       4       user_docs/fa/changes.t2t
     2 files changed, 3261 insertions(+), 2922 deletions(-)

commit 1d82020f799729c3c0e07a35ced897c3480852e1
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Feb 4 00:00:13 2020 +1000

    L10n updates for: es
    From translation svn revision: 54568
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    3       3       user_docs/es/changes.t2t
    15      21      user_docs/es/userGuide.t2t
     2 files changed, 18 insertions(+), 24 deletions(-)

commit 001a0f5e4cff43400ee22793a9d6d66caaefda3f
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Feb 4 00:00:09 2020 +1000

    L10n updates for: de
    From translation svn revision: 54568
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    2       1       source/locale/de/gestures.ini
    3       3       user_docs/de/changes.t2t
    33      40      user_docs/de/userGuide.t2t
     3 files changed, 38 insertions(+), 44 deletions(-)

commit eaff85ad313106ed1daebd9d8cbf801914a8a694
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Feb 4 00:00:06 2020 +1000

    L10n updates for: da
    From translation svn revision: 54568
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    37      40      source/locale/da/LC_MESSAGES/nvda.po
    4       3       user_docs/da/changes.t2t
    17      24      user_docs/da/userGuide.t2t
     3 files changed, 58 insertions(+), 67 deletions(-)

commit e709225d3436c25f297fffa0b76b2832711e68e7
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Feb 4 00:00:04 2020 +1000

    L10n updates for: ckb
    From translation svn revision: 54568
    
    Authors:
    Ali Ustek <aliustek@gmail.com>
    Patrick Galasso <Patrice.galasso@gmail.com>
    Jwanro Mustafa <jwanroabdula@hotmail.com>
    Kosrat D Ahmad <kosrat.d.ahmad@gmail.com>
    silva.hm88@gmail.com
    
    Stats:
    3250    2584    source/locale/ckb/LC_MESSAGES/nvda.po
    67      32      source/locale/ckb/characterDescriptions.dic
    186     186     source/locale/ckb/symbols.dic
     3 files changed, 3503 insertions(+), 2802 deletions(-)

commit 09d0fe3504de3bc0fa08643d81885619f5fc4dd3
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Feb 4 00:00:01 2020 +1000

    L10n updates for: bg
    From translation svn revision: 54568
    
    Authors:
    Zahari Yurukov <zahari.yurukov@gmail.com>
    Kostadin Kolev <k_kolev1985@mail.bg>
    
    Stats:
    5       3       source/locale/bg/symbols.dic
    146     0       user_docs/bg/changes.t2t
    388     269     user_docs/bg/userGuide.t2t
     3 files changed, 539 insertions(+), 272 deletions(-)

commit 89462c770d7cf014716492ad0e7699a284ebaaa3
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Feb 3 23:59:58 2020 +1000

    L10n updates for: ar
    From translation svn revision: 54568
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Omar Alojaimi <amrahmad1995@gmail.com>
    
    Stats:
    18      8       user_docs/ar/changes.t2t
    226     202     user_docs/ar/userGuide.t2t
     2 files changed, 244 insertions(+), 210 deletions(-)

commit 591c1ee445ff9ad3dc1f2e71b04f1e3cb47236bf
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Mon Feb 3 23:59:56 2020 +1000

    L10n updates for: an
    From translation svn revision: 54568
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    
    Stats:
    3       3       user_docs/an/changes.t2t
    25      32      user_docs/an/userGuide.t2t
     2 files changed, 28 insertions(+), 35 deletions(-)

commit 7773e8ffcdc96ce793c4889861f8b6ef805e2cd9
Merge: 7f65d9579 646094917
Author: Reef Turner <reef@nvaccess.org>
Date:   Fri Jan 31 16:44:47 2020 +0100

    Merge beta into master
    
    Merge remote-tracking branch 'origin/beta'

commit 6460949179188c59024bbe92fa2a1dadaf15c6ed
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Sat Feb 1 00:41:29 2020 +1000

    speechManager: Ensure handling of skipped indexes (PR #10730)
    
    Fixes #10292
    
    ## Summary of the issue:
    Synths such as OneCore and sapi5 seem to fail to fire callbacks for bookmarks in speech that directly preceed another bookmark, with no text content in between.
    This can happen if doing a sayAll which contains blank lines in the middle.
    SpeechManager currently expects that each and every index will be received. But in this case, the index for the blank line is not received, and therefore speech stops.
    This was not an issue with 2019.2 and below, presumably because we didn't care so much about indexes for each and every utterance.
    
    ## Description of this change
    A list of indexes currently sent to the synth is now tracked.
    I.e. the index value of all IndexCommand objects that are in the sequence that is sent to synth.speak are added to the indexesSpeaking instance variable on SpeechManager.
    When a an index is reached, do callbacks for skipped indexes as well.

commit c5ef3da1df3bc88d9854a922457fb367bc52f423
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Fri Jan 31 12:59:09 2020 +0100

    Fix elements list dialog on low resolution screens (PR #10738)
    
    Fixes #10655
    
    With a low screen resolution (800x600), the elements list cuts of some items.
    
    This change reduces the size, and also uses DPI level to scale the tree view control in the elements list dialog.
    While doing this I noticed how easy it is to make a mistake with the DpiScalingHelperMixin. I have introduced a new version that does not need to call __init__explicitly in the right order.
    
    In the future, it would be nice to make this dialog resizable, and make this control fill the available space. For now though, this quick approach solves the problem.

commit 7f65d9579d337839c66f5dc3c23e7a39533080cb
Merge: cc8e13176 e1bc2dcc0
Author: Reef Turner <reef@nvaccess.org>
Date:   Thu Jan 30 16:29:34 2020 +0100

    Merge Beta into master
    
    Merge remote-tracking branch 'origin/beta'

commit cc8e131768a33092849f63d0955ae19a6e2256f3
Author: Reef Turner <reef@nvaccess.org>
Date:   Thu Jan 30 16:29:07 2020 +0100

    Update changes file for PR #10643

commit b94442acb8fff7e67638cf3bb50f4566150225cb
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Thu Jan 30 16:26:18 2020 +0100

    Avoid screen lock during say all (PR #10643)
    
    When a system is set up to lock or go to sleep within one minute, say all could be interrupted when reading long paragraphs in virtual buffers. Possibly in other cases as well. Similar to #10111. We instruct the system not to sleep. This happens on every line we reach.

commit e1bc2dcc0e72a99804ede7492ea81c1badd46680
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Thu Jan 30 16:19:17 2020 +0100

    Restore missing import for Word causing setting row and column headers to fail (PR #10735)

commit f67456705be86df72a2f1e598d7a457c4015625c
Author: Reef Turner <reef@nvaccess.org>
Date:   Thu Jan 30 11:43:44 2020 +0100

    Update changes file for PR #10703

commit d1fe2eb309869c2e9490b950be07a3859fc7c537
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Thu Jan 30 11:32:20 2020 +0100

    Use enum for speech reason (PR #10703)
    
    This changes the type of all REASON_* constants.
    One outcome of this is that they no longer have equality with
    their old string values e.g. REASON_FOCUS == "focus" is False
    
    This would also be the case if the enum used string values instead
    of int values.
    
    All occurrences of the previous string values were inspected, and with a
    reasonable degree of certainty, there seemed not to be used as REASON_*
    values.
    
    To preserve backwards compatibility these enum values are "exploded" to
    the module scope. The module level constants should be considered
    deprecated and will be removed in the future.

commit cd9c532621f420bd1bd4db229d1fb5688ebf8bb0
Author: Larry Wang <41977369+larry801@users.noreply.github.com>
Date:   Wed Jan 29 20:44:10 2020 +0800

    Fix link to Unicode Common Locale Data Repository in userguide (PR #10726)

commit bcb80b93f74fee67084d75ab0c01a15bd2b14b37
Merge: d7bc6b10d 486ed0d79
Author: Reef Turner <reef@nvaccess.org>
Date:   Wed Jan 29 13:39:43 2020 +0100

    Merge in beta branch
    
    Merge remote-tracking branch 'origin/beta'

commit 486ed0d7928e0d9e00adbb64d99f6f27466c6731
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Wed Jan 29 13:38:45 2020 +0100

    Stop using MS Edge specific code for Internet Explorer edit fields. (PR #10652)
    
    Fixes #10613
    
    When support for Microsoft Edge was introduced in 2015 we started using Edge specific code for some controls in Internet Explorer. It started to be problematic when support for landmarks was introduced, as Edge specific code for landmarks was failing in IE.

commit d7bc6b10d4214a8b770532baf2efa7fbe84372a7
Author: Reef Turner <reef@nvaccess.org>
Date:   Wed Jan 29 10:20:06 2020 +0100

    Update changes file for PR #10593

commit fee81d09497a423cb70e2864fdab061f57903e6d
Merge: 47367fb34 9a884eb06
Author: Reef Turner <reef@nvaccess.org>
Date:   Wed Jan 29 10:03:33 2020 +0100

    Merge Refactor more speech functions PR #10593
    
    Split several functions into two. One speakX acts as before, but relies
    on a new getXspeech which returns a speech sequence.
    
    This PR maintains backwards compatibility.
    
    This branch is being merged to preseve history of the refactor.
    Merge remote-tracking branch 'origin/refactorMoreSpeechFunctions'

commit 9a884eb06134b8c0c550d64b9016d6ee1ea3dde9
Author: Reef Turner <reef@nvaccess.org>
Date:   Sat Dec 7 10:30:35 2019 +0100

    Split speakObject to return a speech sequence
    
    Must flatten the results from getTextInfoSpeech generator.
    Rename _speakPlaceholderIfEmpty -> _getPlaceholderSpeechIfTextEmpty

commit cd203bd46af41ca90c8020b8da4b064463d130d1
Author: Reef Turner <reef@nvaccess.org>
Date:   Sat Dec 7 10:19:52 2019 +0100

    Format extracted 'allowed properties' calc
    
    The new method '_objectSpeech_calculateAllowedProps()',
    was extracted from 'speakObject()' and needs formatting
    to pass linting checks.

commit c47c3466ae6dd6223b1b0a93a5896880a2b30726
Author: Reef Turner <reef@nvaccess.org>
Date:   Sat Dec 7 10:17:37 2019 +0100

    Extract 'allowed properties' calc from speakObject
    
    Simplify the speakObject function by extracting this calculation into a
    helper.

commit ed9b9ff145d132ce34ca9b953bd06fb51a434bec
Author: Reef Turner <reef@nvaccess.org>
Date:   Sat Dec 7 09:56:48 2019 +0100

    Split speakSelectionMessage and speakPreselectedText to return speech sequences

commit 2fe9e9a69158e10a1828b1a98f209f66437c6f02
Author: Reef Turner <reef@nvaccess.org>
Date:   Fri Dec 6 18:51:24 2019 +0100

    Split speakMessage to return speechSequence

commit d6b36d76154073d88428cd2aa6b0237819166530
Author: Reef Turner <reef@nvaccess.org>
Date:   Fri Dec 6 17:11:06 2019 +0100

    Split speakObjectProperties to return a speech sequence

commit 1270083bbd95a96b1a843d9bd4522f12f3c96c31
Author: Reef Turner <reef@nvaccess.org>
Date:   Fri Dec 6 16:16:19 2019 +0100

    Split speakTextInfo: getTextInfoSpeech is a generator with return value.
    
    - Speech can happen as it is generated, with the same number of calls
      to speak as previous implementation.
    - Returns the same boolean values as previous implementation.
    - To capture these return values, use GeneratorWithReturn class.

commit 0f6a7b0644e263fa564b0c7d0f24489542c7c690
Author: Reef Turner <reef@nvaccess.org>
Date:   Fri Dec 27 17:04:38 2019 +0100

    Refactor getSpeechWithoutPauses to use generators
    
    Make speakWithoutPauses an instance method
    - To make it more testable.
    - Keep backwards compat; speakWithoutPauses name is added at module level.
    
    Make getSpeechWithoutPauses a generator with return value.
    - Speech can happen as it is generated, with the same number of calls
      to speak as previous implementation.
    - Returns the same boolean values as previous implementation.
    - To capture these return values, use GeneratorWithReturn class.
    
    Add unit test for speechWithoutPauses
     - To ensure behavior has not changed between implementations

commit e1974d8f1b0fc4cd80718a320ad3e9547168ce23
Author: Reef Turner <reef@nvaccess.org>
Date:   Tue Dec 17 13:38:14 2019 +0100

    Use flush instead of directly manipulating member var

commit ca361cbbf5f7ca4cb7129e3018e30b6dd4f0270e
Author: Reef Turner <reef@nvaccess.org>
Date:   Fri Dec 27 16:53:39 2019 +0100

    Remove recursive calls
    
    Use instance methods directly.

commit 761179d532a93db0ef65249e8d7aa65beef060a4
Author: Reef Turner <reef@nvaccess.org>
Date:   Fri Dec 27 15:46:31 2019 +0100

    Extract stages of speakWithoutPauses

commit 2b49f6888d397335dc58c498aeced2551defdfb5
Author: Reef Turner <reef@nvaccess.org>
Date:   Thu Dec 5 16:44:16 2019 +0100

    Encapsulate speakWithoutPauses in a class
    
    For easier testing / refactoring.

commit c9812f1b53404187e653efb96db96197fc0877a9
Author: Reef Turner <reef@nvaccess.org>
Date:   Mon Dec 16 19:16:15 2019 +0100

    Rename getSpeechForSpelling -> getSpellingSpeech
    
    For now deprecate (but maintain) the old name.

commit e15b9078c0f5fc17bb23f5184a5bbb34bee22c00
Author: Reef Turner <reef@nvaccess.org>
Date:   Fri Dec 6 16:18:37 2019 +0100

    Add return type annotation: getSpeechForSpelling

commit c7b9ac88d48fa87a2541a0207773abfbb0338aca
Author: Reef Turner <reef@nvaccess.org>
Date:   Thu Dec 5 16:47:40 2019 +0100

    Rename _speakTextInfo_addMath -> _extendSpeechSequence_addMathForTextInfo
    
    Clarify that the sequence is modified in place, nothing is spoken.

commit 94ba6568fd8dd96da8a81f034d3bb4ae6781d748
Author: Reef Turner <reef@nvaccess.org>
Date:   Mon Dec 16 17:09:03 2019 +0100

    Add debug logging and formatting to sayAllHandler

commit e7a18f52c9ca5674fa8726be60082493fc900c9d
Author: Reef Turner <reef@nvaccess.org>
Date:   Wed Dec 18 12:25:59 2019 +0100

    Add names for callback commands to give context in logging.

commit 01a56c0c478d2fb69bbf4a10707f2c0521a71e27
Author: Reef Turner <reef@nvaccess.org>
Date:   Thu Dec 5 16:41:27 2019 +0100

    Fix getTextWithFields docstring

commit 47367fb34f9736d2a22949d56f46aa9075ee3d7d
Author: Reef Turner <reef@nvaccess.org>
Date:   Wed Jan 29 09:37:43 2020 +0100

    Update changes file for PR #10713

commit 3baedc11b4fed4b159ad6bc680f6b5677499584e
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Wed Jan 29 09:34:05 2020 +0100

    Restore fetch of selected item in listboxes (PR #10713)
    
    The issue in Chrome was resolved in version 77. It is now safe to re-enable fetching of selected items for listboxes.
    
    Original issue #9364
    And original fix
     - For RC: #9458
     - For Master: #9430
    
    Chrome bug tracker: https://crbug.com/947898

commit 8b190deba04f7cfebce009738902097f385a8a10
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue Jan 28 16:41:38 2020 +0100

    Fix vision dialog (PR #10722)
    
    * #10705  Exposed an error in a less frequently hit code path. `VisionProviderStateControl` were being incorrectly used as context managers.
       - Stopped using `VisionProviderStateControl` as a context manger.
    * `VisionProviderStateControl` may keep alive a dialog due to a circular reference with the `self._parent` attribute.
       - Made `self._parent` a weak reference
    * When the names of vision providers are translated, the ordering in the dialog changes. (See thread: https://groups.io/g/nvda-translations/message/1825)
       - Used `providerId` rather than `disaplayName` to order the providers. Additionally ensured that "built-in" providers will come before providers from addons.
    * When an exception is thrown from `visionEnhancementProviders.NVDAHighlighter.HighlightWindow.__init__` no error dialog is shown if it was enabled via the GUI, and the addon was not properly disabled.
    * When a vision provider initialization fails during startup of NVDA, the addon is not disabled. It will error again on every startup. Because these errors may causes instability, the provider should be disabled. Vision providers should instead use the `canStart` method to explicitly check for runtime requirements.
       - Allow errors in `visionEnhancementProviders.NVDAHighlighter.HighlightWindow.__init__` to propagate, and error dialog be shown.

commit 767640b2d57c165f652fe35d6c0ac34d6ed74a82
Author: nvdaes <nrm1977@gmail.com>
Date:   Tue Jan 28 12:55:34 2020 +0100

    Screen curtain enabled permanently from gesture (PR #10718)
    
    Fixes a bug that stopped screen curtain from being enabled permanently when the command is repeated (pressed twice)
    and the warning dialog is disabled.
    
    Fixes #10717

commit 8d715f9b8e7c5b44074a63ecbeff5c773e4edd7d
Author: Reef Turner <reef@nvaccess.org>
Date:   Tue Jan 28 11:51:34 2020 +0100

    Update changes file for PR #10636

commit dee3b4df8ac475f293b703c218f85e9505df3036
Author: JamesCatt <20130162+JamesCatt@users.noreply.github.com>
Date:   Tue Jan 28 05:48:44 2020 -0500

    Add unicode minus symbol (PR #10636)
    
    Adds support for the Unicode minus symbol (U+2212), including when used for a negative number.
    
    Fixes #10633

commit fd0ea74932c1957cc5a739e5e645d377105a59f7
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Tue Jan 28 07:27:20 2020 +0100

    Fix error when navigation landmark is encountered in EdgeHTML content (#10710)
    
    Fixes #10698

commit b21a299b954405c156503783894645104eeff8bc
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue Jan 21 18:51:15 2020 +0100

    Update readme with note about Python 3.7.6

commit 9a6b70e0c1c3f3e294e06e7e68a4f6c76e207bf3
Author: Reef Turner <reef@nvaccess.org>
Date:   Mon Jan 20 10:02:11 2020 +0100

    Update changes file for PR #9968

commit 369e0eb1c9e3d32a0bb80da69405c10227af969f
Merge: e1e4a5515 cd5b11332
Author: Reef Turner <reef@nvaccess.org>
Date:   Mon Jan 20 09:58:46 2020 +0100

    Merge remote-tracking branch 'origin/beta'

commit e1e4a5515912721e839c862241a8356598050ba5
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Mon Jan 20 09:52:51 2020 +0100

    Use sphinx to create NVDA developer documentation (PR #9968)
    
    Fixes #9840
    
    Summary:
    
    When we switched to Python 3, we had to abandon Epydoc for developer documentation.
    From the alternatives, sphinx seemed to be the most useful to us:
    - It is the only supported api doc generator on Read the Docs
    - It is used by numerous other projects, including python, wxPython, pyserial and configobj
    - It is heavily extensible.
    - In the end, it might allow us to integrate the user docs in the build process, thereby adding the ability to abandon txt2tags. Even if we don't, sphinx has markdown support with a simple extension.
    
    Implementation:
    
    Reimplements the functionality of `scons devDocs`, they are now build using sphinx.
    Move `devDocs` build script from `sconstruct` to the devDocs folder
    
    
    Issues:
    - The layout of the dev docs is likely to be broken, as we are still using epidoc style doc strings that have to be converted to the Python (restructured text) style doc strings
    - Read the Docs builds docs on Linux. If we want to support this, it will require some source code changes. We can work around a lot of cases using mock imports. We may be able to build the docs ourselves on CI and push them afterwards.
    - No built in support for type hints, though there is an extension for that.
    
    Incompatible doc string syntax:
    Currently, we use epytext/epydoc style annotations for our doc strings. such as:
            @param test: a parameter
            @type test: int
    Sphinx uses directives like `:param` and `:type`. It also allows nesting them, e.g. `:param test int: a parameter`
    Another important prerequisite is that sphinx doc strings require an empty line between the doc string body and the parameter info.
    
            """This is a doc string.
            :param test: this fails and isn't parsed correctly (i.e. printer literally)
    
            :param test: this succeeds and is marked up correctly.
            """
    
    sphinx-epytext has been considered but that doesn't handle the empty line case.

commit cd5b11332cc1c4d0b5497cefc66fd30bc91fd987
Author: CyrilleB79 <cyrille.bougot2@laposte.net>
Date:   Mon Jan 20 09:26:28 2020 +0100

    Uninitialize Magnifier API if Screen curtain initialization fails. (PR #10689)
    
    When screen curtain activation failed it could not be activated in future attempts.
    An example of screen curtain activation failing is described in #10545.
    Activation may fail because Windows Magnifier is already active with color inversion.
    But activation also fails when you try again to activate screen curtain,
    even if you have disabled color inversion or exited Windows Magnifier.
    
    This change:
    If screen curtain activation has previously failed (E.G. due to Windows Magnifier's
    color inversion) it should not fail after color inversion is disabled or Magnifier is off.
    
    The Magnifier API must be uninitialized before it can be reinitialized, as requested
    on 'Magnification API Overview | Microsoft Docs' webpage [1]:
    
    > Initializing the Magnifier Run-time LibraryInitializing the Magnifier Run-time Library
    > Before you can call any other magnifier API functions, you must create and initialize
    > the magnifier run-time objects by calling the MagInitialize function.
    > Similarly, after you finish using the magnifier API,
    > call the MagUninitialize function to destroy the magnifier run-time objects and free
    > the associated system resources.
    
    [1](https://docs.microsoft.com/en-us/previous-versions/windows/desktop/magapi/magapi-intro#initializing-the-magnifier-run-time-library)

commit ca8f4bf43e2a7ce0a4cdee7e735141c92a56d5ba
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Jan 20 09:09:29 2020 +1000

    Add blurb to What's new.

commit 09c03399118f40264e3383dd419a9b55c2cd9879
Author: Adriani90 <adriani.botez@googlemail.com>
Date:   Sun Jan 19 23:57:49 2020 +0100

    Updated description for -s commandline parameter and solved some minor spelling errors (#10678)
    
    * Updated description for -s commandline parameter and solved some minor spelling errors
    
    * Addressed review actions

commit f25f33d37ed090371a608353a06d41363f3248b7
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Fri Jan 17 16:30:05 2020 +0100

    Use C++17, removing dependency on boost optional (PR #9661)
    
    Using C++17 instead of (default in VS2017) C++14
    Requirement to use boost optional is removed
    Use MultiByteToWideChar in COMProxyRegistration.cpp

commit fe4925e0896df2a64698f9c55101eed9b8e9297c
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Thu Jan 16 20:31:08 2020 +0100

    Remove variable from translated string (PR #10688)
    
    After some discussion in the translation mailing list, it became clear that
    inserting the name for screen curtain into some string requiring translation makes
    the translations difficult to write in some languages.

commit 82eeff0e20970e6cb8465cd424060decf57c16ee
Author: Bill Dengler <codeofdusk@gmail.com>
Date:   Tue Jan 14 17:21:16 2020 -0500

    UI Automation in Windows Console: revert for 2019.3 (#10684)
    
    * Fully revert #9771.
    
    * Remove import
    
    * Fix accelerator, typedCharacter in UIA console
    
    * Style.
    
    * More style, except spacing of binary operators (to preserve consistency, as fixing this seems out of scope for this PR).
    
    * Also fix palcement of binary operators.
    
    * Actually, keep winConsoleUIA module from #9771.
    
    * Remove extra and.
    
    * Add an and.
    
    * Keep auto as the config default.
    
    * Style.

commit 318e55c9a41660e92e5d9246ad1792fc1fbdfef5
Merge: b00c3f152 e062a6170
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 14 12:05:07 2020 +1000

    Update translations.
    
    From translation svn revision: 53759

commit e062a6170514d2fae77a8f95e7eeac7300808447
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 14 12:05:07 2020 +1000

    L10n updates for: zh_TW
    From translation svn revision: 53759
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    146     0       user_docs/zh_TW/changes.t2t
     1 file changed, 146 insertions(+)

commit 0bed3101a260dba692906642f641226299ae2899
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 14 12:05:05 2020 +1000

    L10n updates for: zh_CN
    From translation svn revision: 53759
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    
    Stats:
    1       1       source/locale/zh_CN/symbols.dic
     1 file changed, 1 insertion(+), 1 deletion(-)

commit c4eb6d08f6e373d33bac48d11de59a01b10a2378
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 14 12:05:02 2020 +1000

    L10n updates for: uk
    From translation svn revision: 53759
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    210     83      user_docs/uk/userGuide.t2t
     1 file changed, 210 insertions(+), 83 deletions(-)

commit dd8cb79b4aaef163eb74b5724e420eddf441c063
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 14 12:05:00 2020 +1000

    L10n updates for: tr
    From translation svn revision: 53759
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    4       4       user_docs/tr/userGuide.t2t
     1 file changed, 4 insertions(+), 4 deletions(-)

commit ea996aff36fda694cae6773b44bca38c374c6ab9
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 14 12:04:59 2020 +1000

    L10n updates for: ta
    From translation svn revision: 53759
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    34      34      user_docs/ta/userGuide.t2t
     1 file changed, 34 insertions(+), 34 deletions(-)

commit 073b86e2f099831962dce7371245b99412265339
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 14 12:04:54 2020 +1000

    L10n updates for: sk
    From translation svn revision: 53759
    
    Authors:
    Ondrej Rosik <ondrej.rosik@gmail.com>
    Peter Vagner <peter.v@datagate.sk>
    Jan Kulik <jan.kulik.szsle@outlook.sk>
    
    Stats:
    3284    2928    source/locale/sk/LC_MESSAGES/nvda.po
    3       1       source/locale/sk/symbols.dic
    86      0       user_docs/sk/changes.t2t
    191     64      user_docs/sk/userGuide.t2t
     4 files changed, 3564 insertions(+), 2993 deletions(-)

commit 14fdb7b665ae34d48859ccbe9f1a0e7391619366
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 14 12:04:52 2020 +1000

    L10n updates for: ru
    From translation svn revision: 53759
    
    Authors:
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    14      49      source/locale/ru/LC_MESSAGES/nvda.po
    44      4       user_docs/ru/changes.t2t
     2 files changed, 58 insertions(+), 53 deletions(-)

commit 38615e8b5d9f8421fabc34e046a63b3982f4efc0
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 14 12:04:49 2020 +1000

    L10n updates for: ro
    From translation svn revision: 53759
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <contact@florian-ionascu.ro>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    
    Stats:
    21      5       user_docs/ro/userGuide.t2t
     1 file changed, 21 insertions(+), 5 deletions(-)

commit 686ed5dc2b0391c306e4afbfb504330adc17a43a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 14 12:04:46 2020 +1000

    L10n updates for: pt_BR
    From translation svn revision: 53759
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    91      61      user_docs/pt_BR/userGuide.t2t
     1 file changed, 91 insertions(+), 61 deletions(-)

commit 6791f2cf0469e2b79aefe61d848924d703b5a1bc
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 14 12:04:44 2020 +1000

    L10n updates for: pl
    From translation svn revision: 53759
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <hubmeyer1989@gmail.com>
    Arkadiusz Swietnicki <nuno69a@gmail.com>
    
    Stats:
    82      0       user_docs/pl/changes.t2t
     1 file changed, 82 insertions(+)

commit d3ababd3c429119fff8e9b33c2ea91ef3a656abd
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 14 12:04:41 2020 +1000

    L10n updates for: ne
    From translation svn revision: 53759
    
    Authors:
    Puskal Gautam <nvda.nepali@gmail.com>
    
    Stats:
    5       5       user_docs/ne/userGuide.t2t
     1 file changed, 5 insertions(+), 5 deletions(-)

commit 82171d4c59f51bd5b6ff3f55959495ff1724ff8c
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 14 12:04:38 2020 +1000

    L10n updates for: mn
    From translation svn revision: 53759
    
    Authors:
    Mongol NVDA-Translation <mongoliannvdatranslation@gmail.com>
    
    Stats:
    3751    3005    source/locale/mn/LC_MESSAGES/nvda.po
     1 file changed, 3751 insertions(+), 3005 deletions(-)

commit 7ffd10966d4707437eb5b44609215f472f02143a
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 14 12:04:36 2020 +1000

    L10n updates for: mk
    From translation svn revision: 53759
    
    Authors:
    zvonimir stanecic <9a5dsz@gozaltech.org>
    Kiko Lazarev <kristijan.lazarev@gmail.com>
    
    Stats:
    150     141     source/locale/mk/symbols.dic
     1 file changed, 150 insertions(+), 141 deletions(-)

commit 1c8e01e90c73d41eab242cc2ab9f4fc02dd7a2c2
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 14 12:04:12 2020 +1000

    L10n updates for: de
    From translation svn revision: 53759
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    909     1175    source/locale/de/LC_MESSAGES/nvda.po
    245     245     user_docs/de/changes.t2t
    425     424     user_docs/de/userGuide.t2t
     3 files changed, 1579 insertions(+), 1844 deletions(-)

commit c25ba875ac57421e8a9a94aca16c44f31b608b72
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 14 12:04:08 2020 +1000

    L10n updates for: da
    From translation svn revision: 53759
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    2       0       source/locale/da/symbols.dic
    12      2       user_docs/da/changes.t2t
     2 files changed, 14 insertions(+), 2 deletions(-)

commit a597d01ee9cc9085fcddddceeac3549e8bb0a96e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 14 12:04:02 2020 +1000

    L10n updates for: ar
    From translation svn revision: 53759
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Omar Alojaimi <amrahmad1995@gmail.com>
    
    Stats:
    26      12      source/locale/ar/LC_MESSAGES/nvda.po
     1 file changed, 26 insertions(+), 12 deletions(-)

commit 9987cb56f45e3ab4043754a8db51083894406b6e
Author: NVDA translation automation <nvda-translations@groups.io>
Date:   Tue Jan 14 12:03:59 2020 +1000

    L10n updates for: an
    From translation svn revision: 53759
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    
    Stats:
    278     187     user_docs/an/userGuide.t2t
     1 file changed, 278 insertions(+), 187 deletions(-)

commit b00c3f1528c8e23939656b4316dae593f1f90a05
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Tue Jan 14 11:53:14 2020 +1000

    Use legacy winConsole support by default for 2019.3 as there are still  users in the community for whom the new support is very problematic. (#10682)

commit 669ae5ac95dc8e7047131260d92f0792f4e35197
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Tue Jan 14 00:04:59 2020 +0100

    Fix window point conversion functions not exposing failure (#9269)
    
    * Remove legacy Windows xp support from windowUtils
    
    * displayModel, deal with new behavior for logicalToPhysical and physicalToLogical
    
    * winUser, update screenToClient and clientToScreen
    
    * Update locationHelper
    
    * Update edit
    
    * Fix bad copy paste in debug warning
    
    * Fix the use of ScreenToClient in MSHTML
    
    * ScreenToClient error catching for Window and Edit
    
    * Review actions
    
    * Fix unclear or broken comments
    
    * Use locationHelper in mshtml
    
    * displayModel, compensate for left coordinates greater than right
    
    * Linting issues
    
    * Uniformize string formatting
    
    * Revert "displayModel, compensate for left coordinates greater than right"
    
    This reverts commit 0324936b23b05e55390d02c96fe303b82e7fa6df.

commit b9c45347a2285d93702268fb69e2308af92fc315
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Mon Jan 13 10:32:43 2020 +0100

    _rawWindowProc should be a static method. (PR #10670)
    
    While _rawWindowProc does not need any internal access to CustomWindow,
    it is strongly coupled to it. Make _rawWindowProc a static method,
    to convey this coupling.
    
    Add type hints for _wClass and abstract property className

commit 3e2482ac17b17d3fd9411c18a7904a75881116f8
Merge: d7229effb b8347bd03
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Jan 13 16:58:03 2020 +1000

    Merge branch 'beta'

commit b8347bd03588f1380cb668b5e0f10ce0bbe65db6
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Mon Jan 13 16:57:09 2020 +1000

    UIAHandler: Do not use UIA for Chrome_RenderWidgetHostHWND windows (#10675)
    
    * UIAHandler: Do not use UIA for Chrome_RenderWidgetHostHWND windows as their UIA implementation is not complete, and our IA2 support for Chrome is much better.
    
    * Address linting issues.

commit f194afaec02a3465ceb769ee88543ea337c6eb9e
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Mon Jan 13 00:27:57 2020 +0100

    Optionally play sounds when toggling screen curtain (#10611)
    
    * Add scree curtain sounds, ensure that it only enables once
    
    * Add Andre Louis as a contributor
    
    * Use mono sounds instead
    
    * Update user guide, review actions

commit a4b72aa677ff3851e06852e1f5df35f5834a94d5
Merge: 677da73fb 4291e0c89
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 27 00:06:14 2019 +1000

    Update translations.
    
    From translation svn revision: 53515

commit 4291e0c89c25526c3db41273afe81a10ddfb16b3
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 27 00:06:08 2019 +1000

    L10n updates for: uk
    From translation svn revision: 53515
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    3759    3399    source/locale/uk/LC_MESSAGES/nvda.po
    12      1       source/locale/uk/symbols.dic
     2 files changed, 3771 insertions(+), 3400 deletions(-)

commit e755f3bc363e849bf366f9c30dadf8c230f3c475
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 27 00:06:06 2019 +1000

    L10n updates for: tr
    From translation svn revision: 53515
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    3       3       source/locale/tr/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 3 deletions(-)

commit 0b692169013004a8f7c92e99b56923af2ec04fed
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 27 00:06:04 2019 +1000

    L10n updates for: ta
    From translation svn revision: 53515
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    77      72      source/locale/ta/LC_MESSAGES/nvda.po
    65      65      user_docs/ta/userGuide.t2t
     2 files changed, 142 insertions(+), 137 deletions(-)

commit a61a5f8f45d6a7b71d526d8c0f4018463bc398d7
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 27 00:05:56 2019 +1000

    L10n updates for: ro
    From translation svn revision: 53515
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <contact@florian-ionascu.ro>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    
    Stats:
    7       0       user_docs/ro/changes.t2t
     1 file changed, 7 insertions(+)

commit 15831b872fcba0509c5bd39e81a7576265697cce
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 27 00:05:48 2019 +1000

    L10n updates for: ne
    From translation svn revision: 53515
    
    Authors:
    Puskal Gautam <nvda.nepali@gmail.com>
    
    Stats:
    3450    3012    source/locale/ne/LC_MESSAGES/nvda.po
    1       1       source/locale/ne/characterDescriptions.dic
     2 files changed, 3451 insertions(+), 3013 deletions(-)

commit a2760f6c7bc1f199fdc73c12055d00233ff9bd97
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 27 00:05:45 2019 +1000

    L10n updates for: mn
    From translation svn revision: 53515
    
    Authors:
    Mongol NVDA-Translation <mongoliannvdatranslation@gmail.com>
    
    Stats:
    925     1313    source/locale/mn/LC_MESSAGES/nvda.po
     1 file changed, 925 insertions(+), 1313 deletions(-)

commit f714efb8d041f271bc23be0077f0655d1ccf60d7
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 27 00:05:28 2019 +1000

    L10n updates for: fr
    From translation svn revision: 53515
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess.net>
    
    Stats:
    9       9       user_docs/fr/userGuide.t2t
     1 file changed, 9 insertions(+), 9 deletions(-)

commit 473e5bcae6f2fa24c9cbcd6c1bf00748eeb6a23b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 27 00:05:18 2019 +1000

    L10n updates for: de
    From translation svn revision: 53515
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    15      15      source/locale/de/LC_MESSAGES/nvda.po
    17      17      user_docs/de/userGuide.t2t
     2 files changed, 32 insertions(+), 32 deletions(-)

commit a835c340c3ff8abe3b5ec7ca62ca393df52a8f24
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 27 00:05:05 2019 +1000

    L10n updates for: an
    From translation svn revision: 53515
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    
    Stats:
    59      60      source/locale/an/LC_MESSAGES/nvda.po
    2       0       source/locale/an/symbols.dic
    155     0       user_docs/an/changes.t2t
    66      25      user_docs/an/userGuide.t2t
     4 files changed, 282 insertions(+), 85 deletions(-)

commit 677da73fb26fd6d6f78fad5957d9b8de403bb812
Merge: 6e2f5aaee e1181e3ef
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 20 00:06:18 2019 +1000

    Update translations.
    
    From translation svn revision: 53389

commit e1181e3ef89d82dcf346d5f504022c42ebc8a75a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 20 00:06:17 2019 +1000

    L10n updates for: zh_TW
    From translation svn revision: 53389
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    9       9       source/locale/zh_TW/LC_MESSAGES/nvda.po
     1 file changed, 9 insertions(+), 9 deletions(-)

commit 5b9069f54b418a12602b4cf1dddf4066744be13d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 20 00:06:15 2019 +1000

    L10n updates for: zh_HK
    From translation svn revision: 53389
    
    Authors:
    Eric Yip <ericycy@gmail.com>
    
    Stats:
    3       2       source/locale/zh_HK/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 2 deletions(-)

commit fdc200e14cf893495d44b6dab621f4df9a5fe053
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 20 00:06:10 2019 +1000

    L10n updates for: tr
    From translation svn revision: 53389
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    7       7       source/locale/tr/LC_MESSAGES/nvda.po
     1 file changed, 7 insertions(+), 7 deletions(-)

commit 62724360646803a42da71ff75584ff283c0809d9
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 20 00:06:08 2019 +1000

    L10n updates for: ta
    From translation svn revision: 53389
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    214     86      user_docs/ta/userGuide.t2t
     1 file changed, 214 insertions(+), 86 deletions(-)

commit 0d5f23ccbb7b2896d896b12dc191c89926d80f9f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 20 00:06:06 2019 +1000

    L10n updates for: sr
    From translation svn revision: 53389
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    3317    2954    source/locale/sr/LC_MESSAGES/nvda.po
    2       0       source/locale/sr/symbols.dic
    83      0       user_docs/sr/changes.t2t
     3 files changed, 3402 insertions(+), 2954 deletions(-)

commit d96fd5b331e415561b868e17475b4c6b90f0bd3e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 20 00:06:01 2019 +1000

    L10n updates for: ru
    From translation svn revision: 53389
    
    Authors:
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    23      0       user_docs/ru/changes.t2t
     1 file changed, 23 insertions(+)

commit 0c0fa239ee2f46bda822a6fe5508a1bd5e20a553
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 20 00:05:56 2019 +1000

    L10n updates for: pt_BR
    From translation svn revision: 53389
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    8       1       user_docs/pt_BR/changes.t2t
     1 file changed, 8 insertions(+), 1 deletion(-)

commit 179f88fa17276ecd332932ccd3e7d3fd908ad1e4
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 20 00:05:54 2019 +1000

    L10n updates for: pl
    From translation svn revision: 53389
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <hubmeyer1989@gmail.com>
    Arkadiusz Swietnicki <nuno69a@gmail.com>
    
    Stats:
    25      25      source/locale/pl/LC_MESSAGES/nvda.po
    9       1       user_docs/pl/changes.t2t
     2 files changed, 34 insertions(+), 26 deletions(-)

commit a2cd0c0452bdd3b3a33947093af15495adbf938e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 20 00:05:52 2019 +1000

    L10n updates for: nl
    From translation svn revision: 53389
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    32      6       user_docs/nl/userGuide.t2t
     1 file changed, 32 insertions(+), 6 deletions(-)

commit d46f5df049403f73fa01425d2b2cfdaf46721e34
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 20 00:05:28 2019 +1000

    L10n updates for: fi
    From translation svn revision: 53389
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    16      16      source/locale/fi/LC_MESSAGES/nvda.po
    5       5       user_docs/fi/userGuide.t2t
     2 files changed, 21 insertions(+), 21 deletions(-)

commit f36e559537f54c67c5e591f82cf371fbccc5439e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 20 00:05:18 2019 +1000

    L10n updates for: de
    From translation svn revision: 53389
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    28      32      source/locale/de/LC_MESSAGES/nvda.po
    33      33      user_docs/de/changes.t2t
    90      91      user_docs/de/userGuide.t2t
     3 files changed, 151 insertions(+), 156 deletions(-)

commit 0a08fa76da26d57199cba62343092c3054f1bf27
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 20 00:05:15 2019 +1000

    L10n updates for: da
    From translation svn revision: 53389
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    29      5       user_docs/da/userGuide.t2t
     1 file changed, 29 insertions(+), 5 deletions(-)

commit 6fe17b38c10707cb6fe6be37733b9528d0e6e72d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 20 00:05:05 2019 +1000

    L10n updates for: an
    From translation svn revision: 53389
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    
    Stats:
    3317    2957    source/locale/an/LC_MESSAGES/nvda.po
     1 file changed, 3317 insertions(+), 2957 deletions(-)

commit 6e2f5aaee1817b69781bc421bbf217ff96246e24
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Sun Dec 15 22:42:29 2019 +0100

    Fix table movement commands in list skipping empty cells (#10623)

commit 5d2706616f400cbd5653d9c73ade00873d8fe099
Author: David CM <dhf360@gmail.com>
Date:   Sun Dec 15 15:38:41 2019 -0600

    fixes #10598 NVDA cannot upgrade old settings if winConsoleSpeakPasswords is present. (#10609)

commit d7229effb1430a2cfce8ff8735bda322acfa2850
Merge: 855bf2074 db0b20008
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Dec 16 07:28:02 2019 +1000

    Merge branch 'beta'

commit db0b20008f0164feee35d100c3cf0ffd8aae48a2
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Fri Dec 13 13:48:29 2019 +0100

     Fix dependencies for server-side deploy script (PR #10604)
    
    The server side deploy code ('nvdaAppveyorHook') relies on artifacts, they must be uploaded before the deploy code is run.
    
    The deploy_script phase is run before on_finish phase, so the artifacts were missing.
    Instead, use the artifacts section, and also upload from on_failure.
    
    For ordering of appveyor yml phases, see: https://www.appveyor.com/docs/build-configuration/#build-pipeline
    
    Extended messages
    
    A message containing the built exe link:
    We know that the executable is present, since the name comes from the
    'output' directory of the build. Though this depends on the artifact
    uploading being successful.
    
    Other build failure messages:
    - Unable to install NVDA
    - Unit test failure
    - System test failure

commit 1ff188399022d5ef7c77e896c5a00038fa38e309
Merge: 113b7903f 7a02b0431
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 13 00:06:15 2019 +1000

    Update translations.
    
    From translation svn revision: 53208

commit 7a02b0431e24b11cd75b85cd7efb86bf2bc194fd
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 13 00:06:15 2019 +1000

    L10n updates for: zh_TW
    From translation svn revision: 53208
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    20      6       source/locale/zh_TW/LC_MESSAGES/nvda.po
    30      6       user_docs/zh_TW/userGuide.t2t
     2 files changed, 50 insertions(+), 12 deletions(-)

commit 20e41903b0074c058c7e24ee18b3cd8290fbec06
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 13 00:06:13 2019 +1000

    L10n updates for: zh_HK
    From translation svn revision: 53208
    
    Authors:
    Eric Yip <ericycy@gmail.com>
    
    Stats:
    3217    2873    source/locale/zh_HK/LC_MESSAGES/nvda.po
     1 file changed, 3217 insertions(+), 2873 deletions(-)

commit 63dcba91cd3bc940911cbeb848471a30baf6a80b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 13 00:06:12 2019 +1000

    L10n updates for: zh_CN
    From translation svn revision: 53208
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    
    Stats:
    5       4       source/locale/zh_CN/LC_MESSAGES/nvda.po
    46      45      user_docs/zh_CN/changes.t2t
    1       1       user_docs/zh_CN/userGuide.t2t
     3 files changed, 52 insertions(+), 50 deletions(-)

commit af81884dd890682bc957939e5dd3e2d3b4021189
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 13 00:06:10 2019 +1000

    L10n updates for: vi
    From translation svn revision: 53208
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    1       0       user_docs/vi/changes.t2t
    4       3       user_docs/vi/userGuide.t2t
     2 files changed, 5 insertions(+), 3 deletions(-)

commit dcc14200a2d4eae2a2fa1ddc84e4da724883d4f1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 13 00:06:07 2019 +1000

    L10n updates for: tr
    From translation svn revision: 53208
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    1       0       user_docs/tr/changes.t2t
    5       4       user_docs/tr/userGuide.t2t
     2 files changed, 6 insertions(+), 4 deletions(-)

commit b65797e1187736435f4a9cf764fc9294f087990b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 13 00:06:02 2019 +1000

    L10n updates for: sl
    From translation svn revision: 53208
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    61      58      source/locale/sl/LC_MESSAGES/nvda.po
    45      7       user_docs/sl/userGuide.t2t
     2 files changed, 106 insertions(+), 65 deletions(-)

commit 8a638c5643f1f585b203234df72710259d58d995
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 13 00:05:55 2019 +1000

    L10n updates for: pt_PT
    From translation svn revision: 53208
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    4       3       source/locale/pt_PT/LC_MESSAGES/nvda.po
    7       7       user_docs/pt_PT/changes.t2t
    9       8       user_docs/pt_PT/userGuide.t2t
     3 files changed, 20 insertions(+), 18 deletions(-)

commit 9a22241329887a140dd049cd1db868cd897f2502
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 13 00:05:53 2019 +1000

    L10n updates for: pt_BR
    From translation svn revision: 53208
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    26      12      source/locale/pt_BR/LC_MESSAGES/nvda.po
     1 file changed, 26 insertions(+), 12 deletions(-)

commit cb320978ef5c048c92cba5fef3348c1e3d32d574
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 13 00:05:50 2019 +1000

    L10n updates for: nl
    From translation svn revision: 53208
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    52      45      user_docs/nl/userGuide.t2t
     1 file changed, 52 insertions(+), 45 deletions(-)

commit d0efd466e47adb96438decb73aef8669b9ad3be0
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 13 00:05:35 2019 +1000

    L10n updates for: hu
    From translation svn revision: 53208
    
    Authors:
    Aron OcsvAri <oaron@nvda.hu>
    
    Stats:
    101     58      source/locale/hu/LC_MESSAGES/nvda.po
     1 file changed, 101 insertions(+), 58 deletions(-)

commit 4f1dcebfcf5ca0443150b71a4bf7ba032939813b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 13 00:05:33 2019 +1000

    L10n updates for: hr
    From translation svn revision: 53208
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Milo Ivir <mivir@milotype.de>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    6       5       source/locale/hr/LC_MESSAGES/nvda.po
    2       1       user_docs/hr/changes.t2t
    287     286     user_docs/hr/userGuide.t2t
     3 files changed, 295 insertions(+), 292 deletions(-)

commit a7363d6283b1dd7c77d7507c3dcb8739b7e9d77f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 13 00:05:30 2019 +1000

    L10n updates for: gl
    From translation svn revision: 53208
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    
    Stats:
    19      5       source/locale/gl/LC_MESSAGES/nvda.po
    7       0       user_docs/gl/changes.t2t
    26      4       user_docs/gl/userGuide.t2t
     3 files changed, 52 insertions(+), 9 deletions(-)

commit 8787fd70393777f7ad55f3e252e94d433893f51a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 13 00:05:28 2019 +1000

    L10n updates for: fr
    From translation svn revision: 53208
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess.net>
    
    Stats:
    8       7       source/locale/fr/LC_MESSAGES/nvda.po
    6       5       user_docs/fr/changes.t2t
     2 files changed, 14 insertions(+), 12 deletions(-)

commit 07dd3acb85ad83a54f968283cf7945705e1b3b5d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 13 00:05:26 2019 +1000

    L10n updates for: fi
    From translation svn revision: 53208
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    7       8       source/locale/fi/LC_MESSAGES/nvda.po
    2       1       user_docs/fi/changes.t2t
    3       2       user_docs/fi/userGuide.t2t
     3 files changed, 12 insertions(+), 11 deletions(-)

commit b664af2decca5e5274bdfc8fb99c0f939f3fac79
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 13 00:05:24 2019 +1000

    L10n updates for: fa
    From translation svn revision: 53208
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    8       1       user_docs/fa/changes.t2t
     1 file changed, 8 insertions(+), 1 deletion(-)

commit 4a3fc68a94a2ee88192b0e08bbca3a8fbd8fac25
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 13 00:05:22 2019 +1000

    L10n updates for: es
    From translation svn revision: 53208
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    19      5       source/locale/es/LC_MESSAGES/nvda.po
    7       0       user_docs/es/changes.t2t
    26      4       user_docs/es/userGuide.t2t
     3 files changed, 52 insertions(+), 9 deletions(-)

commit 7d49fbaef001659c70e59b7a88bb3f281aea0694
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 13 00:05:17 2019 +1000

    L10n updates for: de
    From translation svn revision: 53208
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    231     222     source/locale/de/LC_MESSAGES/nvda.po
    35      34      user_docs/de/changes.t2t
    85      83      user_docs/de/userGuide.t2t
     3 files changed, 351 insertions(+), 339 deletions(-)

commit 45e8b3bfee29f8dfccd6634b1a5e55abcb7533ed
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 13 00:05:14 2019 +1000

    L10n updates for: da
    From translation svn revision: 53208
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    19      5       source/locale/da/LC_MESSAGES/nvda.po
     1 file changed, 19 insertions(+), 5 deletions(-)

commit 855bf20740672db7ef3959f73d5a9e885dab8b4f
Merge: 6c4dd2c96 113b7903f
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Dec 9 14:38:00 2019 +1000

    Merge branch 'beta'

commit 113b7903f0456bd54ed20e40824f646a9db0a941
Merge: ff0d12738 546c40bb7
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Dec 9 11:27:54 2019 +1000

    Update translations.
    
    From translation svn revision: 53064

commit 546c40bb7931ca6c1555e3826119eed7695e1d98
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Dec 9 11:27:51 2019 +1000

    L10n updates for: zh_CN
    From translation svn revision: 53064
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    
    Stats:
    18      5       source/locale/zh_CN/LC_MESSAGES/nvda.po
    4       0       user_docs/zh_CN/changes.t2t
     2 files changed, 22 insertions(+), 5 deletions(-)

commit 9c093530eb41d08029024f864b197fec31dc9f27
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Dec 9 11:27:49 2019 +1000

    L10n updates for: vi
    From translation svn revision: 53064
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    17      4       source/locale/vi/LC_MESSAGES/nvda.po
    6       0       user_docs/vi/changes.t2t
    27      4       user_docs/vi/userGuide.t2t
     3 files changed, 50 insertions(+), 8 deletions(-)

commit c2b132239d845d0f0013d1cbf1ec18b8c540e192
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Dec 9 11:27:45 2019 +1000

    L10n updates for: tr
    From translation svn revision: 53064
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    18      5       source/locale/tr/LC_MESSAGES/nvda.po
    6       0       user_docs/tr/changes.t2t
    29      6       user_docs/tr/userGuide.t2t
     3 files changed, 53 insertions(+), 11 deletions(-)

commit 143f68bd60a66eb3527866a075eb7d7c14e35e21
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Dec 9 11:27:43 2019 +1000

    L10n updates for: ta
    From translation svn revision: 53064
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    188     6       source/locale/ta/LC_MESSAGES/nvda.po
     1 file changed, 188 insertions(+), 6 deletions(-)

commit 992458b79557c2f8c8ce91d901155b60acda0113
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Dec 9 11:27:41 2019 +1000

    L10n updates for: sv
    From translation svn revision: 53064
    
    Authors:
    Daniel Johansson <daniel.johansson@coeptus.se>
    Niklas Johansson <sleeping.pillow@gmail.com>
    Karl-Otto Rosenqvist <Karl-otto@mawingu.se>
    
    Stats:
    29      10      source/locale/sv/LC_MESSAGES/nvda.po
    1       1       source/locale/sv/symbols.dic
     2 files changed, 30 insertions(+), 11 deletions(-)

commit baf02b7851e7a2cccd46f4e8087006780b16e227
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Dec 9 11:27:36 2019 +1000

    L10n updates for: ru
    From translation svn revision: 53064
    
    Authors:
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    19      6       source/locale/ru/LC_MESSAGES/nvda.po
     1 file changed, 19 insertions(+), 6 deletions(-)

commit 2e1190c8355560c862222ece62870e4993e2d9ba
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Dec 9 11:27:33 2019 +1000

    L10n updates for: ro
    From translation svn revision: 53064
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <contact@florian-ionascu.ro>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    
    Stats:
    18      5       source/locale/ro/LC_MESSAGES/nvda.po
     1 file changed, 18 insertions(+), 5 deletions(-)

commit f3133b3b9ceb573b1c14bc2ae5a74cf427498bbf
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Dec 9 11:27:32 2019 +1000

    L10n updates for: pt_PT
    From translation svn revision: 53064
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    16      3       source/locale/pt_PT/LC_MESSAGES/nvda.po
    6       1       user_docs/pt_PT/changes.t2t
    28      5       user_docs/pt_PT/userGuide.t2t
     3 files changed, 50 insertions(+), 9 deletions(-)

commit 4b51202211798d6d01c06fae4a1035aadfcc62a6
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Dec 9 11:27:28 2019 +1000

    L10n updates for: pl
    From translation svn revision: 53064
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <hubmeyer1989@gmail.com>
    
    Stats:
    35      13      source/locale/pl/LC_MESSAGES/nvda.po
     1 file changed, 35 insertions(+), 13 deletions(-)

commit 7dd8d3ae47c937aa3bf583ef62b25d8e3e9f16e4
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Dec 9 11:27:15 2019 +1000

    L10n updates for: ja
    From translation svn revision: 53064
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    21      8       source/locale/ja/LC_MESSAGES/nvda.po
    81      57      user_docs/ja/userGuide.t2t
     2 files changed, 102 insertions(+), 65 deletions(-)

commit 36d5cdb7c9ddb17ca402bdaf2bac8153ec97e05b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Dec 9 11:27:13 2019 +1000

    L10n updates for: it
    From translation svn revision: 53064
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    27      11      source/locale/it/LC_MESSAGES/nvda.po
     1 file changed, 27 insertions(+), 11 deletions(-)

commit 2aa6bbf4575b63203bdda43a2c66bb4af3b825ce
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Dec 9 11:27:09 2019 +1000

    L10n updates for: hr
    From translation svn revision: 53064
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Milo Ivir <mivir@milotype.de>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    56      54      source/locale/hr/LC_MESSAGES/nvda.po
    9       3       user_docs/hr/changes.t2t
    143     120     user_docs/hr/userGuide.t2t
     3 files changed, 208 insertions(+), 177 deletions(-)

commit e89154de5df214ec665704be825753c7d135c97e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Dec 9 11:27:03 2019 +1000

    L10n updates for: fr
    From translation svn revision: 53064
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess.net>
    
    Stats:
    20      7       source/locale/fr/LC_MESSAGES/nvda.po
    6       0       user_docs/fr/changes.t2t
    26      3       user_docs/fr/userGuide.t2t
     3 files changed, 52 insertions(+), 10 deletions(-)

commit 8796a0a3d8e2bb72db2e6225d37544be68e4aee7
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Dec 9 11:27:01 2019 +1000

    L10n updates for: fi
    From translation svn revision: 53064
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    32      19      source/locale/fi/LC_MESSAGES/nvda.po
    7       1       user_docs/fi/changes.t2t
    31      8       user_docs/fi/userGuide.t2t
     3 files changed, 70 insertions(+), 28 deletions(-)

commit d284d87fdd4db85fa0d047e5114ef985e87ad7ac
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Dec 9 11:26:52 2019 +1000

    L10n updates for: de
    From translation svn revision: 53064
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    140     125     source/locale/de/LC_MESSAGES/nvda.po
    6       0       user_docs/de/changes.t2t
    133     110     user_docs/de/userGuide.t2t
     3 files changed, 279 insertions(+), 235 deletions(-)

commit ff0d127382d7c53cfd824f3f44e50bc8cc10c778
Merge: 55acd1fbf 6c4dd2c96
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Dec 9 11:24:50 2019 +1000

    Merge branch 'master' into beta

commit 6c4dd2c96ee893d15c44b8c12c1e981cea4c2a73
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Dec 9 10:03:00 2019 +1000

    Update changes file for pr #10584

commit f3ac180633debee9442155b4c19f96306149944e
Author: James Teh <jamie@jantrid.net>
Date:   Mon Dec 9 10:01:04 2019 +1000

    Remove Mozilla specific setFocus implementation which waits for a focus event before returning. (#10584)
    
    This was added in #8678 to mitigate focus "rubber-banding" and spurious switching to focus mode when moving fast in browse mode.
    However, this degrades performance.
    Removing this code, this no longer seems to be a problem.
    It's likely that changes in Firefox, NVDA or both mitigated this.
    The changes to Firefox to avoid extraneous tree re-creation are a likely candidate.

commit cb0beda69a9a25f89d92ba05956363933fea5b5a
Author: Łukasz Golonka <lukasz.golonka@mailbox.org>
Date:   Mon Dec 9 00:57:20 2019 +0100

    Fix some formatting issues in English user guide and some mispellings in the vision section. Fix for https://github.com/nvaccess/nvda/issues/10587 (#10590)

commit 4cc025b5208d2106601847bcf6a38484836033fc
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Sat Dec 7 11:02:22 2019 +0100

    Fix tab traversal in speech viewer (PR #10585)
    
    Use wx.Panel to get tab ordering behavior.
    Use activate event so checkbox gets focus, without speechviewer stealing focus when it is opened.

commit 55acd1fbfd63d707e1a1d3fcd3edb9a70adf34d9
Merge: 78edc09e1 eb381578b
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Dec 6 07:25:54 2019 +1000

    Merge branch 'master' into beta

commit eb381578b760bd03b2117bb2dc0eb81f0b3f0e31
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Dec 6 07:02:27 2019 +1000

    Update changes file for pr #10573

commit 540f3eeeeaa615b625fe12642c7ea4bd2d1550cc
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Thu Dec 5 22:01:09 2019 +0100

    Initialize tones with a dedicated initialize method (#10573)
    
    * Initialize tones with a dedicated initialize method
    
    * Reinitialize tones when changing sound device
    
    * Reinit tones when resetting config

commit 78edc09e1c985a81dad1b2c758feba1192fb334a
Merge: 7a0077907 2fcf42830
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 6 00:06:20 2019 +1000

    Update translations.
    
    From translation svn revision: 52886

commit 2fcf428305f39473e8cbeaaa1b94277d4957ec40
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 6 00:06:19 2019 +1000

    L10n updates for: zh_TW
    From translation svn revision: 52886
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    14      11      source/locale/zh_TW/LC_MESSAGES/nvda.po
    381     278     user_docs/zh_TW/userGuide.t2t
     2 files changed, 395 insertions(+), 289 deletions(-)

commit 5ac19304967a48b309fd3316363f755c05c40b91
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 6 00:06:16 2019 +1000

    L10n updates for: zh_CN
    From translation svn revision: 52886
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    
    Stats:
    13      10      source/locale/zh_CN/LC_MESSAGES/nvda.po
    16      2       user_docs/zh_CN/changes.t2t
     2 files changed, 29 insertions(+), 12 deletions(-)

commit a100a62ba7087a6f27340146f2a4454392625059
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 6 00:06:14 2019 +1000

    L10n updates for: vi
    From translation svn revision: 52886
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    18      15      source/locale/vi/LC_MESSAGES/nvda.po
    1       1       user_docs/vi/changes.t2t
    61      55      user_docs/vi/userGuide.t2t
     3 files changed, 80 insertions(+), 71 deletions(-)

commit c4a7622d9ad21d08370d84190b713274a1c035fe
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 6 00:06:11 2019 +1000

    L10n updates for: tr
    From translation svn revision: 52886
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    19      15      source/locale/tr/LC_MESSAGES/nvda.po
    1       1       user_docs/tr/changes.t2t
    47      32      user_docs/tr/userGuide.t2t
     3 files changed, 67 insertions(+), 48 deletions(-)

commit 2deaf1ff14c0b5d4eb6782628ec89a5b679dc4ac
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 6 00:06:09 2019 +1000

    L10n updates for: ta
    From translation svn revision: 52886
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    3340    3064    source/locale/ta/LC_MESSAGES/nvda.po
     1 file changed, 3340 insertions(+), 3064 deletions(-)

commit 7609fb0511d053c2b86f7248678e9db2cdd4ff41
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 6 00:06:03 2019 +1000

    L10n updates for: ru
    From translation svn revision: 52886
    
    Authors:
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    48      34      source/locale/ru/LC_MESSAGES/nvda.po
     1 file changed, 48 insertions(+), 34 deletions(-)

commit 94b5f57f4546156263389e7ef26f9af5209f30e9
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 6 00:06:00 2019 +1000

    L10n updates for: ro
    From translation svn revision: 52886
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <contact@florian-ionascu.ro>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    
    Stats:
    11      9       source/locale/ro/LC_MESSAGES/nvda.po
    1       0       user_docs/ro/changes.t2t
     2 files changed, 12 insertions(+), 9 deletions(-)

commit a44f3a345e5638cf51fbc06bb77b8d4d5a74ec30
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 6 00:05:58 2019 +1000

    L10n updates for: pt_PT
    From translation svn revision: 52886
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    13      8       source/locale/pt_PT/LC_MESSAGES/nvda.po
    2       2       user_docs/pt_PT/changes.t2t
    20      14      user_docs/pt_PT/userGuide.t2t
     3 files changed, 35 insertions(+), 24 deletions(-)

commit 550696d7259009da276c9c035e53c9ab6665b189
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 6 00:05:56 2019 +1000

    L10n updates for: pt_BR
    From translation svn revision: 52886
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    64      66      source/locale/pt_BR/LC_MESSAGES/nvda.po
     1 file changed, 64 insertions(+), 66 deletions(-)

commit bd254a4e8a699af3dca1a431c882c8422a93a9f5
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 6 00:05:53 2019 +1000

    L10n updates for: nl
    From translation svn revision: 52886
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    128     30      user_docs/nl/userGuide.t2t
     1 file changed, 128 insertions(+), 30 deletions(-)

commit 2fe3d971a94aac761bda5bcc374f5238bb35c835
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 6 00:05:42 2019 +1000

    L10n updates for: ja
    From translation svn revision: 52886
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    11      8       source/locale/ja/LC_MESSAGES/nvda.po
    15      9       user_docs/ja/userGuide.t2t
     2 files changed, 26 insertions(+), 17 deletions(-)

commit d6614c0fa52de6a327f170bbd5a53c6ab09f871e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 6 00:05:40 2019 +1000

    L10n updates for: it
    From translation svn revision: 52886
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    1       0       source/locale/it/symbols.dic
     1 file changed, 1 insertion(+)

commit 0d3f0355e29c9f1ec5983907637c6bbf1e7dfc2c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 6 00:05:37 2019 +1000

    L10n updates for: hu
    From translation svn revision: 52886
    
    Authors:
    Aron OcsvAri <oaron@nvda.hu>
    
    Stats:
    3386    2975    source/locale/hu/LC_MESSAGES/nvda.po
     1 file changed, 3386 insertions(+), 2975 deletions(-)

commit 4abbc06b48d5681be74b14072246a1c6f4aa2953
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 6 00:05:35 2019 +1000

    L10n updates for: hr
    From translation svn revision: 52886
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Milo Ivir <mivir@milotype.de>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    293     293     source/locale/hr/LC_MESSAGES/nvda.po
    1587    1581    user_docs/hr/userGuide.t2t
     2 files changed, 1880 insertions(+), 1874 deletions(-)

commit 91d3d3e56ff37c39061da092824495c862311b00
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 6 00:05:32 2019 +1000

    L10n updates for: gl
    From translation svn revision: 52886
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    
    Stats:
    25      23      source/locale/gl/LC_MESSAGES/nvda.po
    1       1       user_docs/gl/changes.t2t
    20      13      user_docs/gl/userGuide.t2t
     3 files changed, 46 insertions(+), 37 deletions(-)

commit b458fdfe4caa7ff2b0fb68446d6939b65679cfaa
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 6 00:05:30 2019 +1000

    L10n updates for: fr
    From translation svn revision: 52886
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess.net>
    
    Stats:
    11      9       source/locale/fr/LC_MESSAGES/nvda.po
    12      12      user_docs/fr/changes.t2t
    63      57      user_docs/fr/userGuide.t2t
     3 files changed, 86 insertions(+), 78 deletions(-)

commit 1158f3a0629fce805effd275d5235a0c891291f0
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 6 00:05:28 2019 +1000

    L10n updates for: fi
    From translation svn revision: 52886
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    16      13      source/locale/fi/LC_MESSAGES/nvda.po
    2       2       user_docs/fi/changes.t2t
    74      68      user_docs/fi/userGuide.t2t
     3 files changed, 92 insertions(+), 83 deletions(-)

commit ecf03a4dcce874a2030995064fddcf02f971a48e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 6 00:05:26 2019 +1000

    L10n updates for: fa
    From translation svn revision: 52886
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    72      0       user_docs/fa/changes.t2t
     1 file changed, 72 insertions(+)

commit 5739fec23b40f645c596e39e7a04805f926fa2c9
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 6 00:05:24 2019 +1000

    L10n updates for: es
    From translation svn revision: 52886
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    23      20      source/locale/es/LC_MESSAGES/nvda.po
    1       1       user_docs/es/changes.t2t
    16      9       user_docs/es/userGuide.t2t
     3 files changed, 40 insertions(+), 30 deletions(-)

commit cb2177ae9d809176b42d7189b96d53d50ca8bcc8
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 6 00:05:19 2019 +1000

    L10n updates for: de
    From translation svn revision: 52886
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    64      61      source/locale/de/LC_MESSAGES/nvda.po
    9       9       user_docs/de/changes.t2t
    127     121     user_docs/de/userGuide.t2t
     3 files changed, 200 insertions(+), 191 deletions(-)

commit be28d2d0fe9dad258076bcb747eea0ad3ef0aa68
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 6 00:05:15 2019 +1000

    L10n updates for: da
    From translation svn revision: 52886
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    205     64      source/locale/da/LC_MESSAGES/nvda.po
    14      4       user_docs/da/changes.t2t
    115     48      user_docs/da/userGuide.t2t
     3 files changed, 334 insertions(+), 116 deletions(-)

commit 554cc2b5234880d15df819c871aaf7b0bc5829d3
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 6 00:05:14 2019 +1000

    L10n updates for: cs
    From translation svn revision: 52886
    
    Authors:
    Martina Letochova <letochova@seznam.cz>
    
    Stats:
    10      8       source/locale/cs/LC_MESSAGES/nvda.po
     1 file changed, 10 insertions(+), 8 deletions(-)

commit 73b08b76465fbe82d29f3434a09747bc7e7ce894
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 6 00:05:08 2019 +1000

    L10n updates for: ar
    From translation svn revision: 52886
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>, Omar Alojaimi <amrahmad1995@gmail.com>
    
    Stats:
    43      46      source/locale/ar/LC_MESSAGES/nvda.po
    32      14      user_docs/ar/changes.t2t
    101     44      user_docs/ar/userGuide.t2t
     3 files changed, 176 insertions(+), 104 deletions(-)

commit a2c6f0f83356d46340e3255a2a1a0f6c1adb0d4f
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Thu Dec 5 14:09:25 2019 +0100

    Optimize `winVersion.isWin10` (PR #10338)
    
    Fixes  #10335
    
    Co-Authored-By: Leonard de Ruijter <leonardder@users.noreply.github.com>

commit 3cc5d97ed6f4759bcd8e7be05d54795d45cd3304
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Thu Dec 5 13:11:21 2019 +0100

    Update changes file for PR #10581

commit 90d89ec7d386423a1c0c72ebd15f958e326f3d72
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Thu Dec 5 13:06:46 2019 +0100

    Update espeak (PR #10581)
    
    * Update Espeak to ca65812ac60
    
    This is '1.51 in-dev' version.
    It includes merged pull request espeak-ng/espeak-ng#682 which fixes / adds some rules for Shan

commit 8432424e2404e1e2ca5ff2ee4176350bdd4ad38c
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Thu Dec 5 13:05:54 2019 +0100

    Fix braille viewer (PR #10579)
    
    * Ensure fonts are included in installer
    * Unload fonts when process exits
      Use gdi32.AddFontResourceExW with FR_PRIVATE, to ensure that fonts are removed when the process exits. Otherwise fonts files get locked, and can not be moved, modified, or deleted.
    * Fix error when closing braille viewer from tools menu
    * Braille viewer can now be closed with alt+F4
    
    Fixes #10578

commit 3ccd7b853e753242fab990dab20b98e7fcc74fe5
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Dec 5 06:53:12 2019 +1000

    Fix broken url in userGuide.

commit ae5027d126db157f6d96440f1d316428e0799907
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Wed Dec 4 15:02:22 2019 +0100

    Remove check for UIAHandler.isUIAAvailable (PR #10571)
    
    Remove UIAHandler.isUIAAvailable, as UIA is always available.
    
    Co-Authored-By: Reef Turner <feerrenrut@users.noreply.github.com>

commit db63fe656ce55dbb536cf31d789e7c2e99678bbd
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Wed Dec 4 11:26:38 2019 +0100

    Fix mistakes in doc strings (PR #10574)

commit 039fff1dd7cb5d6375b27526e2abeb2502e1037c
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Wed Dec 4 11:13:38 2019 +0100

    Add readme for NVDA Helper (PR #10577)
    
    - Also fix a typo in #10552

commit 8977740629b31e7e51c92113d3387c2ae31a94ba
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Wed Dec 4 11:09:32 2019 +0100

    Update changes file for PR #10173

commit 1863d239180f290faf7a80709353575887bb8b72
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Wed Dec 4 11:07:50 2019 +0100

    Integrate basic braille viewer (#10173)
    
    * Basic BrailleViewerTool:
    
    - Uses wx.Frame instead of wx.dialog. Creating multiple dialogs at the same time seems to cause a crash in wx
    when the dialogs are destroyed. wx.Frame gives a taskbar icon, and an item in alt+tab menu.
    
    - The number of cells defaults to 40, however the display is expected to adapt to the size of any physical display connected.
    - Some effort has gone into trying to align cells with the raw text characters. This was mostly to source a fixed width font (good) braille symbol support.
      There is still work to do to match the alignment when there are multiple braille cells for one raw text character.

commit 99869bbbeda715ffff50fd233b32ace3172cef26
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Wed Dec 4 10:22:29 2019 +0100

    Update Espeak to Release 1.50 (PR #10572)

commit 65b02341bdb5eb702ceb5c796c2fea19b82d719d
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Dec 4 19:05:53 2019 +1000

    winConsoleUIATextInfo: use rangeFromPoint instead of broken getVisibleRanges (#10559)
    
    * WinConsoleUIATextInfo:  As IUIAutomationTextPattern::getVisibleRanges is very broken, use IUIAutomationTextPattern::rangeFromPoint for the top left and bottom right of the console window.
    
    * Fix linting issues.
    
    * WinConsoleUIA: override _getTextLines with a faster implementation that just uses Python string splitlines.
    
    * Fix linting issues.
    
    * Don't use isTextRangeOffscreen, and further improve POSITION_LAST to fix review bounds.
    
    * Fix linting issues.
    
    * WinConsoleUIATextInfo: ensure ranges are collapsed after moves.
    
    * Remove TextInfo._expandCollapseBeforeReview as WinConsoleUIA no longer needs it.
    
    * WinConsoleUIATextInfo: when calculating word / line offsets, grab text directly with IUIAutomationTextRange::getText as  WinConsoleUIATextInfo.text has been changed to return a space for empty ranges.
    
    * Address review actions.
    
    * Update source/NVDAObjects/UIA/winConsoleUIA.py
    
    Co-Authored-By: Leonard de Ruijter <leonardder@users.noreply.github.com>

commit 2f7a8fb7b3a4664cdf685a69142865401e0ae89d
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Dec 4 07:29:32 2019 +1000

    Update changes file for pr #10570

commit e6bf229a2b2780a1078f4ec4b5980b5e0ecec1e9
Author: Bill Dengler <codeofdusk@gmail.com>
Date:   Tue Dec 3 16:27:59 2019 -0500

    Send typedCharacter events for Braille when using ToUnicodeEx (#10570)
    
    * Patch around #10569 for KeyboardHandlerBasedTypedCharSupport.
    
    * Generalize solution.
    
    * Style.
    
    * Style

commit f01453f314c12796059eb9b3e6d0dc5988a05ef1
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue Dec 3 15:24:06 2019 +0100

    Update changes file for PR #10552

commit 12aef7b448d8e68665dfba08bac6ed6ce9783acc
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue Dec 3 15:21:12 2019 +0100

    Fix double speaking label in angular checkbox (PR #10552)
    
    Check if the labelledBy relation target is rendered in the virtual buffer as a descendant of the origin node, if so, give it the `labelledByContents` property.
    Don't speak 'name' on objects that have `labelledByContents` property, its contents will speak the name.

commit cdfda5734cc236aeedbdc64bc080e1cac7b354e8
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue Dec 3 12:31:40 2019 +0100

    Update changes file for PR #10339

commit 42ea5c57ece1b55190f6f94d7ad7024fb54dc618
Author: Łukasz Golonka <wulfryk1@gmail.com>
Date:   Tue Dec 3 12:29:55 2019 +0100

    Add appModule for Spring Tool Suite 4 (PR #10339)
    
    This simply imports module for Eclipse.
    Fixes: #10001

commit 3f9f9d43dd6fc9feb830fdc9dde294a8423149d7
Author: Bill Dengler <codeofdusk@gmail.com>
Date:   Mon Dec 2 21:11:45 2019 -0500

    UI Automation in Windows Console: report space for blank console characters (#10562)
    
    * Report space for blank console characters.
    
    * Update source/NVDAObjects/UIA/winConsoleUIA.py
    
    Co-Authored-By: Leonard de Ruijter <leonardder@users.noreply.github.com>

commit 6ea5c88fa00748b78731e0b12932e12be803682e
Author: jakubl7545 <48619364+jakubl7545@users.noreply.github.com>
Date:   Tue Dec 3 02:49:41 2019 +0100

    Avoid StopIteration error when navigating through non link text (#10563)
    
    * Catch RuntimeError to avoid StopIteration.
    
    * Revert changes.
    
    * Applying suggestions.

commit e2384ef7f812f9ee02e1ee645635825e2a9cc591
Author: Adriani90 <adriani.botez@googlemail.com>
Date:   Tue Dec 3 02:43:37 2019 +0100

    Two explanations in user guide: gathering user stats and help balloons unified with notifications to be consistent with settings dialog (#10558)
    
    * Added 4.1.2 explaining user data gathering dialog at NVDA start. Additionally, changed the outdated help balloon reference to ObjectPresentationNotifications and added corespongding abbreviation in braille.py
    
    * Update user_docs/en/userGuide.t2t
    
    Accepted suggestion
    
    Co-Authored-By: Michael Curran <michaelDCurran@users.noreply.github.com>
    
    * Update user_docs/en/userGuide.t2t
    
    Accepted suggestion
    
    Co-Authored-By: Michael Curran <michaelDCurran@users.noreply.github.com>
    
    * Reverted the change in braille.py and replaced ntfc back with hlp in the user guide

commit 6fc6637d440a5e151e4c7704e60f34dd80116364
Author: Derek Riemer <derek.riemer@colorado.edu>
Date:   Sun Dec 1 22:59:05 2019 -0700

    remove unneeded space (#10564)

commit 0c0d88aa3fbe0fe1ac15b0320cd69212b7c4bad1
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Fri Nov 29 07:23:25 2019 +0100

    Ensure that UIA focus event handler doesn't fail if comparison with current focus object fails (#10549)
    
    * More debug
    
    * Linting

commit 98efd7eb7b7c4404d8488c166f63f4b0a3535bf0
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Fri Nov 29 07:19:51 2019 +0100

    Fix typo in UIABrowseMode (#10544)

commit 7a0077907fbd349800326747efc407ef200cd853
Merge: 04fdd5292 2ee9b3050
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Nov 29 15:47:19 2019 +1000

    Merge branch 'master' into beta

commit 04fdd5292566b4b682a2a6c3a20cfc9c6d221371
Merge: 045691851 b5106994c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 29 00:06:21 2019 +1000

    Update translations.
    
    From translation svn revision: 52612

commit b5106994c3dd83c8ee58e9c9136335bdc6ebcafd
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 29 00:06:20 2019 +1000

    L10n updates for: zh_TW
    From translation svn revision: 52612
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    3206    2878    source/locale/zh_TW/LC_MESSAGES/nvda.po
    226     23      source/locale/zh_TW/characterDescriptions.dic
    219     3       source/locale/zh_TW/symbols.dic
     3 files changed, 3651 insertions(+), 2904 deletions(-)

commit 26e9b2838f0bf99ba8ba29202bc60d66d31b7198
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 29 00:06:18 2019 +1000

    L10n updates for: zh_CN
    From translation svn revision: 52612
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    
    Stats:
    202     67      source/locale/zh_CN/LC_MESSAGES/nvda.po
    20      2       user_docs/zh_CN/userGuide.t2t
     2 files changed, 222 insertions(+), 69 deletions(-)

commit 05fe8e2ad52979d659a3c6427f8309de697e5a7c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 29 00:06:16 2019 +1000

    L10n updates for: vi
    From translation svn revision: 52612
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    197     58      source/locale/vi/LC_MESSAGES/nvda.po
    19      6       user_docs/vi/changes.t2t
    144     83      user_docs/vi/userGuide.t2t
     3 files changed, 360 insertions(+), 147 deletions(-)

commit a750eec1472faf41354db2728483e950fdfff5d1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 29 00:06:13 2019 +1000

    L10n updates for: tr
    From translation svn revision: 52612
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    208     66      source/locale/tr/LC_MESSAGES/nvda.po
    2       0       source/locale/tr/symbols.dic
    26      12      user_docs/tr/changes.t2t
    73      14      user_docs/tr/userGuide.t2t
     4 files changed, 309 insertions(+), 92 deletions(-)

commit 71d78496861ee2c39faef3065ace283595de7cc6
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 29 00:06:09 2019 +1000

    L10n updates for: sv
    From translation svn revision: 52612
    
    Authors:
    Daniel Johansson <daniel.johansson@coeptus.se>
    Niklas Johansson <sleeping.pillow@gmail.com>
    Karl-Otto Rosenqvist <Karl-otto@mawingu.se>
    
    Stats:
    201     61      source/locale/sv/LC_MESSAGES/nvda.po
     1 file changed, 201 insertions(+), 61 deletions(-)

commit 7d79bd697bd9e35ab5b0c1a84e0d5635ac8d94d8
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 29 00:06:07 2019 +1000

    L10n updates for: sl
    From translation svn revision: 52612
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    3279    2931    source/locale/sl/LC_MESSAGES/nvda.po
     1 file changed, 3279 insertions(+), 2931 deletions(-)

commit 0468ffe2c180dd99653c9bb93b4669c92ecb6f1a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 29 00:06:04 2019 +1000

    L10n updates for: ru
    From translation svn revision: 52612
    
    Authors:
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    207     69      source/locale/ru/LC_MESSAGES/nvda.po
     1 file changed, 207 insertions(+), 69 deletions(-)

commit cd8c4195b8101a93fe8487d7e2c1a948bc6c0691
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 29 00:06:01 2019 +1000

    L10n updates for: ro
    From translation svn revision: 52612
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <contact@florian-ionascu.ro>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    
    Stats:
    205     59      source/locale/ro/LC_MESSAGES/nvda.po
    14      1       user_docs/ro/changes.t2t
    108     12      user_docs/ro/userGuide.t2t
     3 files changed, 327 insertions(+), 72 deletions(-)

commit 6ed23cafe35422c6dcbeffea5b7c1f70730e4639
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 29 00:06:00 2019 +1000

    L10n updates for: pt_PT
    From translation svn revision: 52612
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    3316    2966    source/locale/pt_PT/LC_MESSAGES/nvda.po
    139     0       user_docs/pt_PT/changes.t2t
    125     28      user_docs/pt_PT/userGuide.t2t
     3 files changed, 3580 insertions(+), 2994 deletions(-)

commit dd6bbad6e7eb22c26bb472a2e3e16e874984b6a4
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 29 00:05:57 2019 +1000

    L10n updates for: pt_BR
    From translation svn revision: 52612
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    247     98      source/locale/pt_BR/LC_MESSAGES/nvda.po
    33      19      user_docs/pt_BR/changes.t2t
    84      23      user_docs/pt_BR/userGuide.t2t
     3 files changed, 364 insertions(+), 140 deletions(-)

commit 3559fe8d287355663e64d6ff1529cdd1f72b2679
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 29 00:05:55 2019 +1000

    L10n updates for: pl
    From translation svn revision: 52612
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <hubmeyer1989@gmail.com>
    
    Stats:
    203     63      source/locale/pl/LC_MESSAGES/nvda.po
     1 file changed, 203 insertions(+), 63 deletions(-)

commit 920eac8a48d8de3674ea31a2ad1ca106e9e50d3a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 29 00:05:43 2019 +1000

    L10n updates for: ja
    From translation svn revision: 52612
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    187     97      source/locale/ja/LC_MESSAGES/nvda.po
    85      24      user_docs/ja/userGuide.t2t
     2 files changed, 272 insertions(+), 121 deletions(-)

commit dc64da8f97449374fd82ad7ba5295c94c3aef091
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 29 00:05:40 2019 +1000

    L10n updates for: it
    From translation svn revision: 52612
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    213     73      source/locale/it/LC_MESSAGES/nvda.po
     1 file changed, 213 insertions(+), 73 deletions(-)

commit 84cc14f9ebcbadc09c7d40ca695f019c9cbce6ac
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 29 00:05:36 2019 +1000

    L10n updates for: hr
    From translation svn revision: 52612
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Milo Ivir <mivir@milotype.de>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    867     588     source/locale/hr/LC_MESSAGES/nvda.po
    22      9       user_docs/hr/changes.t2t
    560     499     user_docs/hr/userGuide.t2t
     3 files changed, 1449 insertions(+), 1096 deletions(-)

commit 003659a4d50947ce93065dfbcf3eaf27f93e834a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 29 00:05:33 2019 +1000

    L10n updates for: gl
    From translation svn revision: 52612
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    
    Stats:
    201     60      source/locale/gl/LC_MESSAGES/nvda.po
    16      3       user_docs/gl/changes.t2t
    73      12      user_docs/gl/userGuide.t2t
     3 files changed, 290 insertions(+), 75 deletions(-)

commit 3eb1c80be3c66331e499476fc4461ed3d47d45b8
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 29 00:05:30 2019 +1000

    L10n updates for: fr
    From translation svn revision: 52612
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess.net>
    
    Stats:
    205     61      source/locale/fr/LC_MESSAGES/nvda.po
    29      15      user_docs/fr/changes.t2t
    85      24      user_docs/fr/userGuide.t2t
     3 files changed, 319 insertions(+), 100 deletions(-)

commit 20883e461b9b4bac18c7241ceb23338ac3654000
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 29 00:05:28 2019 +1000

    L10n updates for: fi
    From translation svn revision: 52612
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    202     63      source/locale/fi/LC_MESSAGES/nvda.po
    19      6       user_docs/fi/changes.t2t
    78      17      user_docs/fi/userGuide.t2t
     3 files changed, 299 insertions(+), 86 deletions(-)

commit 7e63e408dd57b206e7c09f7104ffc8af42e89f89
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 29 00:05:24 2019 +1000

    L10n updates for: es
    From translation svn revision: 52612
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    202     61      source/locale/es/LC_MESSAGES/nvda.po
    16      3       user_docs/es/changes.t2t
    74      13      user_docs/es/userGuide.t2t
     3 files changed, 292 insertions(+), 77 deletions(-)

commit 7e26ec171916cff131e08790eb078d8885ef83b6
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 29 00:05:18 2019 +1000

    L10n updates for: de
    From translation svn revision: 52612
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    215     68      source/locale/de/LC_MESSAGES/nvda.po
    44      30      user_docs/de/changes.t2t
    88      27      user_docs/de/userGuide.t2t
     3 files changed, 347 insertions(+), 125 deletions(-)

commit e9a72fb90780292c4cf4175966661545522395de
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 29 00:05:14 2019 +1000

    L10n updates for: cs
    From translation svn revision: 52612
    
    Authors:
    Martina Letochova <letochova@seznam.cz>
    
    Stats:
    192     59      source/locale/cs/LC_MESSAGES/nvda.po
     1 file changed, 192 insertions(+), 59 deletions(-)

commit d5c9a4cdaa45cb6e2d10998af89f326186f9b446
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 29 00:05:08 2019 +1000

    L10n updates for: ar
    From translation svn revision: 52612
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>, Omar Alojaimi <amrahmad1995@gmail.com>
    
    Stats:
    204     63      source/locale/ar/LC_MESSAGES/nvda.po
     1 file changed, 204 insertions(+), 63 deletions(-)

commit 2ee9b3050e61042e6852dfcc33dc5e0cc26dc604
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Thu Nov 28 16:24:41 2019 +1000

    Speak typed characters in Windows consoles in the correct language (second try) (#10554)
    
    * Track the true thread ID of winEvents for ConsoleWindowClass windows, saving them for exposia as windowThreadID in WinConsole NVDAObjects. Necessary for speak typed characters. Addresses #10113.
    
    * Fix linting issues.
    
    * Address review actions.

commit 0b518ae62cd25491dcc19660a259c99f91ee2895
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Nov 28 16:15:22 2019 +1000

    Update changes file for pr #10550

commit 1045d2de2d0e669decee0237a77ebba40a8eb57f
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Thu Nov 28 16:13:22 2019 +1000

    Use uniscribe to calculate character offsets where allowed (#10550)
    
    * OffsetsTextInfo._getCharacterOffsets: use uniscribe where possible to calculate the bounds for a character. This allows us to treat something like e-acute as one character.
    
    * Add copyright header to textUtils.cpp
    
    * Fix linting issues.
    
    * Restore some accidentally removed code from OffsetsTextInfo._getCharacterOffsets, allowing unit tests to pass again.
    
    * nvdaHelperLocal's textUtils.cpp: abstract out code to avoid duplicate code in both calculateWordOffsets and calculateCharacterOffsets.
    
    * Address review actions.

commit 4cc1643e5d2ed114906802162a6803736476f3a3
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Wed Nov 27 22:23:47 2019 +0100

    speech.getIndentationSpeech: use BeepCommand (#10473)

commit 7f2f03cbd8cc81dfe6bdb9cfacf8f472771d4019
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Wed Nov 27 17:53:29 2019 +0100

    Fix pot file upload
    
    Follow on from #10465
    The pot file was being uploaded from the system test section of the appveyor.yml file.
    As long as the file isn't deleted (see #10465), the file will be uploaded by the `on_finish` section.
    This section uploads everything in the output folder.
    
    Trying to explicitly upload the pot file causes the build to fail if that file does not exist.

commit 05226fe6fb774f11081cfb8c34a456784c335542
Author: Adriani90 <adriani.botez@googlemail.com>
Date:   Wed Nov 27 09:24:17 2019 +0100

    Fix links and some spelling in userguide (PR #10130)
    
    fixes #9508
    fixes #8314
    
    * Replaced http with https in links
    * Solved some spelling issues
    * Removed "supported only by eSpeak" for inflection and change in pitch since this is also supported by other synthesizers.
    
    Co-Authored-By: Reef Turner <feerrenrut@users.noreply.github.com>

commit 13fe06f7aee4a68b2f7a839b846e0b658c1ee26b
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Tue Nov 26 16:52:05 2019 +0100

    Fix checksum index in Hims braille display driver (PR #10530)
    
    Hims driver didn't work for the Hims QBraille. When converting this driver to Python 3, a mistake was made in the _sendPacket method.
    
    The index for the checksum was off by one. This is hard to spot, the final element in the packet list takes up two bytes. We previously used the list rather than a bytearray when overwriting the checksum index. Now we avoid converting the list twice. Because we are now overwriting the checksum in the bytearray object, and the index is one further from the end.
    
    Co-Authored-By: Reef Turner <feerrenrut@users.noreply.github.com>

commit a8aad36920ddc351aa1ca9efb35437b3598bf4eb
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Tue Nov 26 12:39:25 2019 +0100

    Fix: translatable strings use string format instead of f strings (#10534)
    
    F strings pre format the string before fetching translations. The result is no match for the lookup. Format the strings post translation lookup instead.

commit 7498c0f5d5d3bb703ba8a96a3b5a8d022fe0814c
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Tue Nov 26 11:40:17 2019 +0100

    Fix mouse echo in UIA windows consoles and highlighter and stop highlighter showing in alt+tab (PR #10539)
    
    When the NVDA Highlighter was active, mouse echo was sometimes broken in UIA applications, particularly the windows console when UIA was on.
    This wasn't a bug in the highlighter, rather the following happened:
    - NVDA got a window handle at the screen coordinates
    - NVDA checked for possible API classes. As the window handle of the console window is a native UIAElement, UIA was yielded as a possible API class.
    - UIA was used to get anUIAElement from the given point. However, it retrieved the UIAElement of the NVDA Highlighter window, which is an overlay. That window is non native.
    
    Additionally, merging #10520 caused the highlighter to end up in the alt+tab order
    
    Now:
    - When finding out the object under the mouse, don't use UIA for non native UIA Elements.
    - Always recalculate the window handle when getting an UIA object from screen coordinates
    - Apply the WS_EX_TRANSPARENT style as requested in #10539 (comment)
    - Apply WS_EX_NOACTIVATE to prevent the highlighter from showing up in the alt+tab order

commit c7509267d0d41c8a0b7bf70b3ed1e4900199bd39
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Mon Nov 25 14:21:48 2019 +0100

    Fix enable/disable of highlighter locking up the system (PR #10520)
    
    When disabling the highlighter, NVDA would sometimes locked up. This was because the thread is joined before it was told to terminate.
    Calling HighlightWindow.updateLocationForDisplays blocked the main thread when calling SetWindowPos. The cause of this was that the highlighter window had the NVDA main frame as its parent.
    
    - The highlighter no longer has the NVDA main window as its parent. To ensure we're never blocked by wx.
    - CustomWindow classes may now only have one instance. This is because the window class is created with the window and destroyed with it. Debugging this issue revealed that sometimes, multiple instances were created when reinitializing too quickly, but that should never happen.
    - The highlighter now fails to initialize if something goes wrong in the highlighter thread

commit b9e66bb1bf39fed9c7fc31fa7e00e957c7fef6c9
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Nov 25 15:07:27 2019 +1000

    Update changes file for pr #10538

commit 197f5d69b76655ff84b7dfc8f6c39fc58fe6fa49
Author: James Teh <jamie@jantrid.net>
Date:   Mon Nov 25 15:04:48 2019 +1000

    Revert "Support for out-of-process iframes in Firefox (#9672)" (#10538)
    
    This reverts commit 71475bc8763071b488eb29be684bc16ba0f7bbd4.

commit 30f4574599be98c1591f608854638acb73f3f53e
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Sun Nov 24 22:48:15 2019 +0100

    No longer repeat focusing UIA consoles (#10531)

commit 2c52e9356364c66ff637bf5bd153120aab421576
Author: Łukasz Golonka <wulfryk1@gmail.com>
Date:   Sun Nov 24 22:33:27 2019 +0100

    Fix up of #10463 (#10537)
    
    * When not reporting content of edit fields which are going to lose focus ensure that focus moves to the different control by comparing class names and roles. Fix for https://github.com/nvaccess/nvda/issues/10536
    
    * Style
    
    * Rework the implementation. Instead of checking class names and roles overwrite method on a NVDAObjects.behaviors.editableText.

commit 415bbd963613e130d2370f4ad308c1f73b4ae010
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Nov 25 07:23:47 2019 +1000

    Fix typo in translation string.

commit 67bf1df60b75ee47e8ec9e1841af4975b8a64ccc
Author: CyrilleB79 <cyrille.bougot2@laposte.net>
Date:   Fri Nov 22 11:03:10 2019 +0100

    Fix Find dialog layout (PR #10354)
    
    Several visual issues with the Find dialog (NVDA+Ctrl+F) are fixed:
    - Missing space between the "Type the text you wish to find" label and the corresponding field
    - Missing space between the "Case sensitive" check box and the dialog edge
    - Missing space between "OK"/"Cancel" buttons and the dialog's edge
    
    This led to an unusual design of the dialog. It created difficulty for visually impaired people to get the expected information from the dialog. E.g. difficulty to read the text to find in the edit box because it is not properly separated from the label.

commit 04569185156096e99ae39684acd213c38c07f314
Merge: 50671356e 35e4073d9
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Nov 22 06:41:57 2019 +1000

    Merge branch 'master' into beta

commit 35e4073d910958aa7a129a8bacc5c55814e5ca25
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Nov 22 06:39:50 2019 +1000

    Update changes file for pr #10525.

commit 5e50ce128f7a83c640b488377ee4e9ef4e947b69
Author: James Teh <jamie@jantrid.net>
Date:   Fri Nov 22 06:38:06 2019 +1000

    Enable the Java Access Bridge for the user at startup. (#10525)
    
    Installed JREs allow users to do this from Ease of Access.
    However, given that some apps now bundle their own Java VM and given that many JREs don't provide an installer (official OpenJDK is just a zip file, for example), doing this from Ease of Access isn't possible for many users.
    It's also an extra hoop a user really shouldn't have to jump through.
    Therefore, if this is an installed copy of NVDA and the JAB isn't already enabled for the user, we just do this quietly when initialising JABHandler.

commit bcf0f96f88e884e6d6479bf4bad85cb6858b16ba
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Fri Nov 22 06:31:16 2019 +1000

    UIA NVDAObject's processID property: fallback to super for ConsoleWindowClass windows as the UIA implementation exposes the wrong processID (conhost, not the hosted app). (#10524)

commit 50671356eb1033159843382a4761be39302906a2
Merge: 3effdc946 a7477f688
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 22 00:06:13 2019 +1000

    Update translations.
    
    From translation svn revision: 52223

commit a7477f6882066c15b058421cc766458f6081fa2e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 22 00:06:07 2019 +1000

    L10n updates for: tr
    From translation svn revision: 52223
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    6       6       source/locale/tr/LC_MESSAGES/nvda.po
     1 file changed, 6 insertions(+), 6 deletions(-)

commit fd18222505864e8251994a3277960c50c983ae4f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 22 00:06:03 2019 +1000

    L10n updates for: sv
    From translation svn revision: 52223
    
    Authors:
    Daniel Johansson <daniel.johansson@coeptus.se>
    Niklas Johansson <sleeping.pillow@gmail.com>
    Karl-Otto Rosenqvist <Karl-otto@mawingu.se>
    
    Stats:
    191     342     source/locale/sv/LC_MESSAGES/nvda.po
     1 file changed, 191 insertions(+), 342 deletions(-)

commit 2925ea3535f7c7c3f8ca83cd76e11cb0b6dd4e09
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 22 00:05:39 2019 +1000

    L10n updates for: ja
    From translation svn revision: 52223
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    62      26      user_docs/ja/userGuide.t2t
     1 file changed, 62 insertions(+), 26 deletions(-)

commit ebd007f5bb693ff74668395a30840bc76a150d39
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 22 00:05:33 2019 +1000

    L10n updates for: hr
    From translation svn revision: 52223
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Tea Turkovic <tturkovi@gmail.com>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    19      19      source/locale/hr/symbols.dic
     1 file changed, 19 insertions(+), 19 deletions(-)

commit 30f19b869a66c6cde46d5788ac8c0c369bea52de
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 22 00:05:28 2019 +1000

    L10n updates for: fr
    From translation svn revision: 52223
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess.net>
    
    Stats:
    15      15      user_docs/fr/changes.t2t
     1 file changed, 15 insertions(+), 15 deletions(-)

commit d07a00070f9733fe848c438797644ccd5643ab26
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 22 00:05:18 2019 +1000

    L10n updates for: de
    From translation svn revision: 52223
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    4       4       source/locale/de/LC_MESSAGES/nvda.po
     1 file changed, 4 insertions(+), 4 deletions(-)

commit 02cb8464d37185987844256ea30fda47b5517aaa
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 22 00:05:08 2019 +1000

    L10n updates for: ar
    From translation svn revision: 52223
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>, Omar Alojaimi <amrahmad1995@gmail.com>
    
    Stats:
    33      32      source/locale/ar/LC_MESSAGES/nvda.po
    58      4       user_docs/ar/changes.t2t
    3       3       user_docs/ar/userGuide.t2t
     3 files changed, 94 insertions(+), 39 deletions(-)

commit 3cd482f5fce3472e42ea5f832e18a26876ce9dcc
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Thu Nov 21 20:31:55 2019 +1000

    winConsoleUIA: Greatly speed up move by word (#10522)
    
    * winConsoleUIATextInfo: greatly speed up moving by word by calculating current offset within a line by counting utf16 characters in the text rather than calling move with unit character over and over again.
    
    * Fix linting issues.
    
    * WinConsoleUIA: slightly refactor move by word to avoid unnecessary math.

commit 02f1dffb66cdb6c2f9e51c556874c33080d93665
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Nov 21 15:58:04 2019 +1000

    Update changes file for pr #10523

commit d5aeb23035fb4021531173366164092219a7632b
Author: James Teh <jamie@jantrid.net>
Date:   Thu Nov 21 15:56:58 2019 +1000

    Don't unconditionally report aria-current for all property changes. (#10523)
    
    1. Previously, speech.speakObjectProperties unconditionally forced reporting of aria-current, regardless of whether it was enabled in the allowedProperties argument.
        This meant it was reported for all property changes, including name and state changes.
        aria-current also wasn't checking the cache for property changes, so we couldn't determine whether it had changed or not, resulting in double reporting in some cases.
        This has been fixed and speakObject enables this so it's still reported on focus, query, etc.
    
    2. Now that aria-current is no longer unconditionally reported, the call from event_IA2AttributeChange to event_stateChange no longer reports aria-current.
        This wasn't appropriate anyway.
        Now, Ia2Web.event_IA2AttributeChange explicitly requests that aria-current changes be spoken.

commit ef2c845a1b4cfe29db1d3c1510756d4d579cc75d
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Nov 21 15:52:12 2019 +1000

    Update changes file for pr #10526

commit 7c471be958a5e0d9566ae55e4387aa788ed64d9b
Author: James Teh <jamie@jantrid.net>
Date:   Thu Nov 21 15:50:50 2019 +1000

    Allow JAB messages through the Windows message filter before initialising JAB. (#10526)
    
    Internally, the JAB client dll keeps track of Java VMs.
    This is done via window messages.
    If a JAB client dll is initialised after a VM, it needs to learn about existing VMs.
    It does this by broadcasting a message, which is picked up by Java VMs.
    VMs in turn send a message back to the client DLL.
    Previously, we allowed messages through the message filter *after* initialising the JAB.
    That meant that messages from existing Java VMs might be rejected if they were received before the function returned.
    To fix this, we allow messages through the filter before initialising the JAB.

commit fba44b47997aea38f778ccc80e1f1ffd89eea694
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Nov 21 07:16:02 2019 +1000

    Update changes file for pr #10515

commit 25de470feb624aee0c7463562bd22eada282d73e
Author: James Teh <jamie@jantrid.net>
Date:   Thu Nov 21 06:49:36 2019 +1000

    Bundle the Java Access Bridge with NVDA. (#10515)
    
    NVDA is a 32 bit application and requires the 32 bit Java Access Bridge client dll.
    This will happily talk to 64 bit Java applications.
    However, since Java 10, official 32 bit builds are no longer provided.
    So that users don't have to find and install a community 32 bit build of Java themselves, bundle the JAB with NVDA.
    
    1. Include the dll via a Git submodule.
    2. Have SCons copy the dll into source/lib.
    3. Modify JABHandler to load it from the versioned lib directory if appropriate. This meant reorganising initialisation somewhat, as we need NVDAHelper to get the versioned lib path, but trying to use it at module level breaks due to circular import.
    4. Remove JABHandler's support for the legacy bridge, since it can no longer be used now that the proper 32 bit bridge is always present.

commit 39312e4be31024dd165197b32cbdad6e7dad8275
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Wed Nov 20 17:40:12 2019 +0100

    Vision framework GUI fix: when changing a synthesizer don't keep settingsInstance alive (PR #10519)
    
    * GUI bindings were holding onto a reference to settingsStorage and not allowing the settingsInstance to object to die.
    * Use a weakref.proxy instead.
    * Refresh GUI when reference to driver dies.

commit 866aafb1e491de58a329a72eed4462e22b27503e
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Wed Nov 20 17:16:01 2019 +0100

    Provider 'enabled' config state moved to the provider's config section (PR #10500)
    
    * Save enabled state for a provider within the provider's config section
    * NVDA Highlighter, make sure that highlighting state is properly reflected when the provider is off and all tree check boxes are on. In this case, the provider config has gotten out of sync "somehow".

commit e310170bbac284e184696422700ac81982c97aed
Author: eric <26911141+dingpengyu@users.noreply.github.com>
Date:   Wed Nov 20 23:36:13 2019 +0800

    Add push of NVDA .pot translation from CI (PR #10465)
    
    During builds, push the .pot file to the artifacts folder.

commit 833bc4ebeec7d8c5a5e5a07997a2ca748db0b105
Author: Bill Dengler <codeofdusk@gmail.com>
Date:   Tue Nov 19 19:52:16 2019 -0500

    Revert "Backport _getTextLines from #9735." (#10513)
    
    This reverts commit 9fbd6b49015eba744dc2294642d96c481194930d.

commit eb0c6773515d4eb7463e46694c4a65ffa5c623e2
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Tue Nov 19 23:17:06 2019 +0100

    Hide most UIA specific logging behind debug logging category UIA, and add new log entries (#10397)
    
    * Hide UIA TextInfo debug logging behind a advanced panel logging category
    
    * Add many log entries
    
    * Add more logging
    
    * Fix linting
    
    * No debugWarning for some logs
    
    * Handle object creation exceptions in event handlers

commit ff3722e91b83bc2769db90ff115167dbb4e106ee
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Tue Nov 19 14:30:04 2019 +0100

    Avoid Screen Curtain error on Windows 7 (PR #10503)

commit b58f00aad02329f6ce337bcc6cbe0dc278bfdfef
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Tue Nov 19 14:28:13 2019 +0100

    Use supportedSettings instead of sizerDict to determine if options exist (PR #10504)
    
    For a provider that only has run-time settings and uses the VisionProviderSubPanel_Wrapper, the VisionProviderSubPanel_Settings would be properly hidden if the provider is disabled. After enabling and disabling the provider, the empty panel is still shown and can receive keyboard access. Whether a panel had options was based on the sizerDict. However, for performance reasons, the sizerDict isn't cleared when updating the driver settings.
    
    Instead use the supportedSettings property to determine if the panel has options.

commit f1cde0139bf9c31d41c8fb9efcff33a1518ed96e
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue Nov 19 14:18:52 2019 +0100

    Update readme to mention nvdaHelperLogLevel

commit 90ae5d617b7166f1431092f33c0790fb8617adfc
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue Nov 19 13:47:52 2019 +0100

    Fix typo in changes file

commit e7b61dc3842cb8412c1d3c017c7e9dcd3239bd4e
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue Nov 19 12:52:59 2019 +0100

    Update changes file for PR #10082

commit 3effdc946cc3b2feaa11b2bb1f014df2ab26be6b
Merge: 9fe14a9fb cd627be6b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Tue Nov 19 08:03:07 2019 +1000

    Update translations.
    
    From translation svn revision: 52192

commit cd627be6bbe3098e838ddd0ebd1e23e87d5d43c5
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Tue Nov 19 08:03:00 2019 +1000

    L10n updates for: tr
    From translation svn revision: 52192
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    5       3       source/locale/tr/LC_MESSAGES/nvda.po
     1 file changed, 5 insertions(+), 3 deletions(-)

commit df9816dd63e23218948c61ae742659b00e8a1196
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Tue Nov 19 08:02:58 2019 +1000

    L10n updates for: ta
    From translation svn revision: 52192
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    2       0       source/locale/ta/symbols.dic
     1 file changed, 2 insertions(+)

commit be990d637d2bb6bf72da6c6de635a058e9ca606d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Tue Nov 19 08:02:57 2019 +1000

    L10n updates for: sv
    From translation svn revision: 52192
    
    Authors:
    Daniel Johansson <daniel.johansson@coeptus.se>
    Niklas Johansson <sleeping.pillow@gmail.com>
    Karl-Otto Rosenqvist <Karl-otto@mawingu.se>
    
    Stats:
    11      8       source/locale/sv/LC_MESSAGES/nvda.po
    6       4       source/locale/sv/symbols.dic
     2 files changed, 17 insertions(+), 12 deletions(-)

commit bb53ad3ab9bc4481befafdf20c59b654257abae0
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Tue Nov 19 08:02:52 2019 +1000

    L10n updates for: ru
    From translation svn revision: 52192
    
    Authors:
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    3077    2888    source/locale/ru/LC_MESSAGES/nvda.po
    4       2       source/locale/ru/symbols.dic
     2 files changed, 3081 insertions(+), 2890 deletions(-)

commit 60e0fc73a1afeabcfbe82240b7f3705b404faa16
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Tue Nov 19 08:02:49 2019 +1000

    L10n updates for: ro
    From translation svn revision: 52192
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <contact@florian-ionascu.ro>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    
    Stats:
    125     0       user_docs/ro/changes.t2t
     1 file changed, 125 insertions(+)

commit 59060f9c4d5bb49f8464d3e13a747cafb765d43b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Tue Nov 19 08:02:46 2019 +1000

    L10n updates for: pt_BR
    From translation svn revision: 52192
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    4       2       source/locale/pt_BR/symbols.dic
    125     0       user_docs/pt_BR/changes.t2t
    139     103     user_docs/pt_BR/userGuide.t2t
     3 files changed, 268 insertions(+), 105 deletions(-)

commit 7b1fc1ad790af0ad2d88b5f79023a54cbd8aefd5
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Tue Nov 19 08:02:38 2019 +1000

    L10n updates for: mn
    From translation svn revision: 52192
    
    Authors:
    Mongol NVDA-Translation <mongoliannvdatranslation@gmail.com>
    
    Stats:
    1       1       source/locale/mn/symbols.dic
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 1df25ce579dc92d0a1ba7d485477b30f4264cd97
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Tue Nov 19 08:02:32 2019 +1000

    L10n updates for: ja
    From translation svn revision: 52192
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    2556    2360    source/locale/ja/LC_MESSAGES/nvda.po
    2       0       source/locale/ja/symbols.dic
     2 files changed, 2558 insertions(+), 2360 deletions(-)

commit a269b83b9f70ce3be2e89f830a47140ca4df9009
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Tue Nov 19 08:02:29 2019 +1000

    L10n updates for: it
    From translation svn revision: 52192
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    11      11      source/locale/it/LC_MESSAGES/nvda.po
     1 file changed, 11 insertions(+), 11 deletions(-)

commit ff7130e8e2b11d2bb5c60b197fb7f415fb6ce607
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Tue Nov 19 08:02:25 2019 +1000

    L10n updates for: hr
    From translation svn revision: 52192
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Tea Turkovic <tturkovi@gmail.com>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    574     709     source/locale/hr/LC_MESSAGES/nvda.po
    96      84      source/locale/hr/symbols.dic
     2 files changed, 670 insertions(+), 793 deletions(-)

commit 0c5c142f4ddee4ad5baab9fec66b4f5f34c04b9e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Tue Nov 19 08:02:20 2019 +1000

    L10n updates for: fr
    From translation svn revision: 52192
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess.net>
    
    Stats:
    3       3       source/locale/fr/LC_MESSAGES/nvda.po
    17      17      user_docs/fr/changes.t2t
     2 files changed, 20 insertions(+), 20 deletions(-)

commit e2f6929fb6269fea2a485a563bcde6dfdbc93b20
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Tue Nov 19 08:02:18 2019 +1000

    L10n updates for: fi
    From translation svn revision: 52192
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    2983    2778    source/locale/fi/LC_MESSAGES/nvda.po
    2       0       source/locale/fi/symbols.dic
    81      15      user_docs/fi/changes.t2t
    55      19      user_docs/fi/userGuide.t2t
     4 files changed, 3121 insertions(+), 2812 deletions(-)

commit b834e1683436768847dca7630aa52f5dd1746324
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Tue Nov 19 08:02:10 2019 +1000

    L10n updates for: de
    From translation svn revision: 52192
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    1       0       user_docs/de/userGuide.t2t
     1 file changed, 1 insertion(+)

commit a813e63b4e5193609455810f69cb7e01bf4724ea
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Tue Nov 19 08:02:07 2019 +1000

    L10n updates for: da
    From translation svn revision: 52192
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    2723    2518    source/locale/da/LC_MESSAGES/nvda.po
    49      61      user_docs/da/changes.t2t
    46      10      user_docs/da/userGuide.t2t
     3 files changed, 2818 insertions(+), 2589 deletions(-)

commit b434fa60a405ed381312485534dac7fff8f97390
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Tue Nov 19 08:02:00 2019 +1000

    L10n updates for: ar
    From translation svn revision: 52192
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>, Omar Alojaimi <amrahmad1995@gmail.com>
    
    Stats:
    2966    2767    source/locale/ar/LC_MESSAGES/nvda.po
    52      19      user_docs/ar/userGuide.t2t
     2 files changed, 3018 insertions(+), 2786 deletions(-)

commit 8306ec15a7cc962b54dd8352926a73c7a803a114
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Mon Nov 18 21:59:10 2019 +0100

    IA2Web: report regions and figures in focus mode (#10499)
    
    * Recognize regions in focus mode
    
    * Add figure

commit 730640bda09acb54d03a368af31e1162f96e84bc
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Nov 19 06:55:09 2019 +1000

    Update changes file for pr #10498

commit 328532322a0f62bb953cea5766bd003e685d5fde
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Mon Nov 18 21:53:42 2019 +0100

    Run initial display for braille on the main thread (#10498)
    
    * Call initialDisplay from the main thread
    
    * Use event queue instead

commit 46c5606c27682d4c37905f93eb0eac11149123f3
Merge: d13635dc9 e8f8a8987
Author: Reef Turner <reef@nvaccess.org>
Date:   Mon Nov 18 16:02:12 2019 +0100

    Merge branch 'visionGui' for PR #10082
    
    To preserve history of moved code, PR #10082 was rebased and condensed
    prior to merging.
    
    Follow up from #9064
    Closes #971
    Closes #10082

commit e8f8a898772892623080a2b189b12f0ebe11fc88
Author: Reef Turner <reef@nvaccess.org>
Date:   Wed Nov 13 14:12:54 2019 +0100

    Add a GUI for the vision framework
    
    - Each provider has it's own group for settings.
    - Providers can use "driverSettings" to define GUI for configurable
      options, these controls will be constructed automatically.
    - Auto constructed GUI will have an enable checkbox as a minimum.
    - Custom controls for configuration is possible. See NVDA Highlighter.
    - Runtime / static settings support. See example provider.
    - Rename example provider (removing first underscore) to make it run.
    
    Other notable changes:
    
    - Focus Highlight:
      - Turning on any one option will enable the highlighter.
      - Convenience checkbox to enable/disable all.
    
    - Screen Curtain:
      - A warning is displayed before enable (settings and gesture)
      - Warning can be disabled
      - Gesture: Use 1 press for temporary enable, and 2 presses for permanent.
    
    - Use dataclass ProviderInfo rather than string providerId to control
      providers.
      - The providerInfo allows for differentiating providerId and moduleName.
        Helpful when a provider wants a single implementation to
        work with several versions of an app which have incompatible
        configurations.
        In this case, they will need different config sections, hence
        different providerId's.
    
    - Remove unused role concept
    
    - Partial rewrite of class DriverSettingsMixin:
      - Rename to AutoSettingsMixin
        - Provides better consistency with the AutoSettings class.
        - An alias mapping DriverSettingsMixin to AutoSettingsMixin is provided
          for backwards compatibility, however DriverSettingsMixin should be
          considered deprecated. Use AutoSettingsMixin instead.
      - rename self._curDriverRef -> self._currentSettingsRef
      - replace driver method with getSettings and _getSettingsStorage
        - getSettings to get settings definitions
        - _getSettingsStorage to load / save configuration values.
      - renamed various internal only methods:
        - makeSliderSettingControl -> _makeSliderSettingControl
        - makeBooleanSettingControl -> _makeBooleanSettingControl
        - makeStringSettingControl -> _makeStringSettingControl
      - settingsStorage is passed into the following:
        - _makeSliderSettingControl
        - _makeBooleanSettingControl
        - _makeStringSettingControl

commit e3a02326578000231928a609b7135d9fce21c0a4
Author: Reef Turner <reef@nvaccess.org>
Date:   Wed Nov 13 13:20:10 2019 +0100

    Clean up param/percent conversion functions
    
    Use type hints, rather than doc-string.
    Remove unnecessary cast.

commit 0ccb00ca1018d0067aa01a9d55f5f392cbb706a5
Author: Reef Turner <reef@nvaccess.org>
Date:   Sat Oct 19 18:24:11 2019 +0200

    Fix non-existent name attribute on DriverSetting instance.

commit 21b5fe2631430db950a2d7ec286b1c754de312b7
Author: Reef Turner <reef@nvaccess.org>
Date:   Thu Oct 17 14:19:42 2019 +0200

    Adapt Driver class to implement AutoSettings class
    
    The class properties (name, description, _configSection) on Driver are
    mapped to the abstract methods getId, getDisplayName, _getConfigSectino
    respectively.
    
    Also:
    - Specify type for SupportedSettingsType as an Iterable
    - Add type hinting and comments
    - Fix: don't hide 'id' warning on _initSpecificSettings (renamed to settingsId)
    - Remove unused properties on stringParams

commit 3befbab90de698acbbd21f11c21ac6fd010cc527
Author: Reef Turner <reef@nvaccess.org>
Date:   Thu Oct 17 10:18:28 2019 +0200

    Move config aspects of driverHandler into new package
    
    Separate concerns of driverHandler, allow easier sharing and re-use of
    configuration code.
    - Move settings related content to AutoSettings class
    - Move percent/param conversion helpers

commit e02548800341bf458a5dfece134b3852064bc05b
Author: Reef Turner <reef@nvaccess.org>
Date:   Sun Nov 17 20:01:03 2019 +0100

    Make DriverHandler class more flexible
    
    - Split load settings
      + private method to load specific settings
    - Split save settings
      + private method to save specific settings.
    - Split getConfigSpec
      + private method to get config spec for settings
    - Split initSettings
      + private method to init specific settings
    - Split init
      + private method to register for config save action
      + private method to unregister for config save action

commit d13635dc9365c79ef924767b7bba98caf4987b10
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Mon Nov 18 00:52:16 2019 -0800

    UIA/SearchField: catch COMError when attempting to look for search fields (#10492)
    
    * UIA/SearchField: catch COMError when attempting to look for search fields. Re #10422
    
    Error thrown by Comtypes: COMError thrown when attempting to look for search fields. Therefore wrap this inside a try/except block. This resolves error tones heard when one navigates through Windows 10 Settings categories and subpages.
    
    * UIA search field: log a debug log when COMError is caught. Re #10422.
    
    Recommended by Leonard de Ruijter: record a log when COMError is thrown when locating search field objects.
    
    * UIA search field: lint

commit f737934596c07e2573ffbebf722e531df3b449a0
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Nov 18 18:44:06 2019 +1000

    Update changes file for pr #10462

commit 16f0b903ca3f53a481b3c17e8464b6b19af957e6
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Mon Nov 18 09:40:12 2019 +0100

    Fix reporting of landmarks, implement reporting of groupings and figures (#10462)
    
    * Add grouping reporting to config
    
    * Report groupings in browse mode
    
    * Add groupings script
    
    * Report descriptions of groupings in browse mode
    
    * Linter fixes
    
    * Report captions in browse mode
    
    * Proper support for figure in Firefox and Chrome
    
    * Make figures really work
    
    * Fix landmark presentation in braille
    
    * Don't report end of landmarks in braille, for now
    
    * In line with how Firefox implements is, the search role now gets ROL_LANDMARK in aria.ariaRolesToNVDARoles
    
    * More work on merging landmark, region and grouping code
    
    * Try to implement alwaysReportName
    
    * Get the name in braille if alwaysReportName is True
    
    * Edge classic: at least report the proper landmark for main, nav and form
    
    * Fix in braille.py, ROLE_ARTICLE was mapped to rgn
    
    * Update user guide
    
    * Fix linting
    
    * Fix accidental whitespace in nameIsContent
    
    * Braille: Only get landmark from the field when we really need it
    
    * Also suppress ends of articles and groupings, as they are overly verbose
    
    * Implement grouping quicknav
    
    * Fix typo in mshtml
    
    * MSTHML: add figcaption
    
    * Add FIELDSET to list of nodes we have a custom role for on MSHTML object
    
    * MSHTML vbuf: add alwaysReportName in cases name is not content and there is a label
    
    * Last lint fix
    
    * Fix error when firefox exposes IA2ROLE_LANDMARK with a wrong landmark role, e.g. <footer role='content-info'>
    
    * No longer suppress 'end of' announcements for articles, regions and groupings

commit ca883da8dc7fa4429862ca7a7f3de2b10a69c3e7
Merge: 481418e57 e8cb5872d
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Mon Nov 18 08:07:39 2019 +0100

    Merge branch 'master' into i9280

commit a3eedeefe95337f96892a6c32271b37e8d1c0690
Merge: 4e459568d e8cb5872d
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Mon Nov 18 08:06:52 2019 +0100

    Merge branch 'master' into i9910-browseableMessage

commit e8cb5872de96f5ac2f4e7151cac35856caa2c0f2
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Sun Nov 17 15:29:21 2019 -0800

    What's new and user guide: refinements for 2019.3 (#10497)
    
    * User guide: refine sections 13.1 and 13.5. Re #10495.
    
    Section 13.1: mention that OneCore is used in Windows 10 by default.
    Section 13.5: mention that Espeak NG is used in other Windows releases other than 10. For both sections, anchors for synth sections were added.
    
    * User guide: remove Audiologic section (section 13.6). Re #10496.
    
    As Audiologic synth driver module is gone in NVDA 2019.3, Audiologic section should be removed from the user guide. Thus section 13.6 is deleted.
    
    * What's new: Windows 10 version names, clarity, grammar.
    
    Windows 10 versions are once again denoted with public names instead of version YYMM.
    Various clarifications and grammar fixes, specifically punctuation.

commit cde557d5620efec4caed50e5f98799335229f8df
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Thu Nov 14 14:36:08 2019 -0800

    WinVersion.isWin10: recognize build 18363 as Version 1909 (November 2019 Update) (#10487)
    
    * WinVersion: update copyright header
    
    * WinVersion: build 18363 is version 1909.
    
    On November 12, 2019, Version 1909 (November 2019 Update/build 18363) was released. Although this version is mostly identical to Version 1903 (May 2019 Update/build 18362), it includes one or more features for use by assistive technologies such as NVDA. Therefore recognize this release.
    
    * WinVersion: address review comments on copyright header and release ID map.

commit 9fe14a9fbefd6e1fa51b3a3c22d7fa63a577455f
Merge: b84f21dd0 814a244b8
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 15 00:06:18 2019 +1000

    Update translations.
    
    From translation svn revision: 51964

commit 814a244b8f77a097b644ae6f68916a0aa31d0da7
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 15 00:06:15 2019 +1000

    L10n updates for: zh_CN
    From translation svn revision: 51964
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    
    Stats:
    3048    2851    source/locale/zh_CN/LC_MESSAGES/nvda.po
    125     0       user_docs/zh_CN/changes.t2t
     2 files changed, 3173 insertions(+), 2851 deletions(-)

commit 93580af26719de04e6b2e8232a3aca72abc7553f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 15 00:06:13 2019 +1000

    L10n updates for: vi
    From translation svn revision: 51964
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    3109    2910    source/locale/vi/LC_MESSAGES/nvda.po
    2       0       source/locale/vi/symbols.dic
    64      1       user_docs/vi/changes.t2t
    46      10      user_docs/vi/userGuide.t2t
     4 files changed, 3221 insertions(+), 2921 deletions(-)

commit 469e94dd29a899aac645f13e08fa15619391ab4f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 15 00:06:10 2019 +1000

    L10n updates for: tr
    From translation svn revision: 51964
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    2970    2769    source/locale/tr/LC_MESSAGES/nvda.po
    125     0       user_docs/tr/changes.t2t
    54      18      user_docs/tr/userGuide.t2t
     3 files changed, 3149 insertions(+), 2787 deletions(-)

commit c08e5adeccc8495e6111331d27eda4dd386a925a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 15 00:06:06 2019 +1000

    L10n updates for: sv
    From translation svn revision: 51964
    
    Authors:
    Daniel Johansson <daniel.johansson@coeptus.se>
    Niklas Johansson <sleeping.pillow@gmail.com>
    Karl-Otto Rosenqvist <Karl-otto@mawingu.se>
    
    Stats:
    3283    3037    source/locale/sv/LC_MESSAGES/nvda.po
    3       3       source/locale/sv/symbols.dic
     2 files changed, 3286 insertions(+), 3040 deletions(-)

commit e0653b680d41e21469a113b31f77f1273e9fe0c1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 15 00:05:59 2019 +1000

    L10n updates for: ro
    From translation svn revision: 51964
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <contact@florian-ionascu.ro>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    
    Stats:
    2976    2773    source/locale/ro/LC_MESSAGES/nvda.po
    3       0       source/locale/ro/symbols.dic
     2 files changed, 2979 insertions(+), 2773 deletions(-)

commit 397a451f2617585c19e2505362294cd0a17151be
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 15 00:05:56 2019 +1000

    L10n updates for: pt_BR
    From translation svn revision: 51964
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    2716    2513    source/locale/pt_BR/LC_MESSAGES/nvda.po
     1 file changed, 2716 insertions(+), 2513 deletions(-)

commit 27a144e88de2e4eb6627c96bafb38fc62b8c6ced
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 15 00:05:54 2019 +1000

    L10n updates for: pl
    From translation svn revision: 51964
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <hubmeyer1989@gmail.com>
    
    Stats:
    3129    2922    source/locale/pl/LC_MESSAGES/nvda.po
     1 file changed, 3129 insertions(+), 2922 deletions(-)

commit c94d68ab7989b2850540952e2ad73528bc2d260f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 15 00:05:52 2019 +1000

    L10n updates for: nl
    From translation svn revision: 51964
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    2565    2343    source/locale/nl/LC_MESSAGES/nvda.po
    61      0       user_docs/nl/changes.t2t
     2 files changed, 2626 insertions(+), 2343 deletions(-)

commit 27d39b24da3bd13b6be12a36293ce5999fa13c40
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 15 00:05:39 2019 +1000

    L10n updates for: it
    From translation svn revision: 51964
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    2833    2628    source/locale/it/LC_MESSAGES/nvda.po
     1 file changed, 2833 insertions(+), 2628 deletions(-)

commit 1e1f2b257745727b788fdd056506d15da3fafdde
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 15 00:05:35 2019 +1000

    L10n updates for: hr
    From translation svn revision: 51964
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Tea Turkovic <tturkovi@gmail.com>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    3104    2899    source/locale/hr/LC_MESSAGES/nvda.po
    4       2       source/locale/hr/symbols.dic
    62      0       user_docs/hr/changes.t2t
    48      12      user_docs/hr/userGuide.t2t
     4 files changed, 3218 insertions(+), 2913 deletions(-)

commit 43671ec58e1db3071cfe32de4719b9c6dedeb5e5
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 15 00:05:32 2019 +1000

    L10n updates for: he
    From translation svn revision: 51964
    
    Authors:
    Shmuel Naaman <shmuel_naaman@yahoo.com>
    Afik Sofir <afik.sofer@gmail.com>
    
    Stats:
    2556    2361    source/locale/he/LC_MESSAGES/nvda.po
     1 file changed, 2556 insertions(+), 2361 deletions(-)

commit e0db940f9c8e104f9d7d3b4a106ecfa0251b25b3
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 15 00:05:31 2019 +1000

    L10n updates for: gl
    From translation svn revision: 51964
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    
    Stats:
    3148    2944    source/locale/gl/LC_MESSAGES/nvda.po
    3       0       source/locale/gl/symbols.dic
    125     0       user_docs/gl/changes.t2t
    46      11      user_docs/gl/userGuide.t2t
     4 files changed, 3322 insertions(+), 2955 deletions(-)

commit 9354a6231e8d9ee5f00173ba2650da4cf732354c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 15 00:05:29 2019 +1000

    L10n updates for: fr
    From translation svn revision: 51964
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess.net>
    
    Stats:
    2682    2514    source/locale/fr/LC_MESSAGES/nvda.po
    2       1       source/locale/fr/gestures.ini
    6       1       source/locale/fr/symbols.dic
    125     0       user_docs/fr/changes.t2t
    46      10      user_docs/fr/userGuide.t2t
     5 files changed, 2861 insertions(+), 2526 deletions(-)

commit 565dad140c9b7d9caf959bbb718ec46c72934b9d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 15 00:05:23 2019 +1000

    L10n updates for: es
    From translation svn revision: 51964
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    2571    2367    source/locale/es/LC_MESSAGES/nvda.po
    3       0       source/locale/es/symbols.dic
    125     0       user_docs/es/changes.t2t
    47      11      user_docs/es/userGuide.t2t
     4 files changed, 2746 insertions(+), 2378 deletions(-)

commit a10ada72cb8c36229cace388949f5e38af82b524
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 15 00:05:18 2019 +1000

    L10n updates for: de
    From translation svn revision: 51964
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    3192    2989    source/locale/de/LC_MESSAGES/nvda.po
    2       0       source/locale/de/symbols.dic
    126     0       user_docs/de/changes.t2t
    87      52      user_docs/de/userGuide.t2t
     4 files changed, 3407 insertions(+), 3041 deletions(-)

commit aac635f83603ceafec5ce02a3bb17fc51854694a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 15 00:05:13 2019 +1000

    L10n updates for: cs
    From translation svn revision: 51964
    
    Authors:
    Martina Letochova <letochova@seznam.cz>
    
    Stats:
    3066    2864    source/locale/cs/LC_MESSAGES/nvda.po
     1 file changed, 3066 insertions(+), 2864 deletions(-)

commit d473de81aa23cc8af4785e5aa64731d6f6e9936a
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Nov 12 08:51:45 2019 +1000

    Update changes file for pr #9672

commit 71475bc8763071b488eb29be684bc16ba0f7bbd4
Author: James Teh <jamie@jantrid.net>
Date:   Tue Nov 12 08:49:43 2019 +1000

    Support for out-of-process iframes in Firefox (#9672)
    
    * gecko_ia2 vbuf getNVDAObjectFromIdentifier: Use getNVDAObjectFromEvent instead of accChild on the document.
    
    This was changed to use accChild on the document in the theoretical hope that it might be slightly faster, since it doesn't need to go via the parent process.
    However, this was never proved to be a performance benefit in real terms.
    In Firefox, when an iframe document is rendered in a separate process to its embedder, the embedder has no knowledge of children in the embedded document and cannot communicate with the embedded document at all.
    This means that accChild for accessibles in the embedded document fails.
    The root accessible is in the parent process and can fetch children in all content documents, so using AccessibleObjectFromEvent works as expected.
    
    * gecko_ia2 vbuf __contains__: If accChild fails, try the embedder iframe(s).
    
    In Firefox, when an iframe document is rendered in a separate process to its embedder, accChild for accessibles in the embedded document fails.
    If this is the case, we can get the embedder iframe and try accChild with the iframe's id.
    There can be nested out-of-process iframes, so we keep trying this until there are no more embedders in the hierarchy (or until we hit the buffer's root id).

commit b84f21dd06db354c7e8ea9897357161306dd355f
Merge: ab8b8ea63 e71965473
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Nov 11 16:30:04 2019 +1000

    Merge branch 'master' into beta

commit e71965473525315ab66322e31d93dd66342c6ecd
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Sun Nov 10 22:42:22 2019 +0100

    Fix-up of: Browse mode: When the user moves the cursor, speak before setting selection. (PR #10389) (#10458)

commit 76ad9055bcf610f6265e827d7feef2c30592d767
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Sun Nov 10 22:30:16 2019 +0100

    Use our comInterfaces directory for nvda_slave (#10466)

commit f25ec73b627b2711a7f02ebfbb2443db1884615c
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Nov 11 07:22:31 2019 +1000

    Update changes file for pr #10468)

commit f11301743541679e693c94972b769281fc62ade7
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Mon Nov 11 07:20:22 2019 +1000

    Remove scriptHandler.isCurrentScript as it is very old, was not updated to Python3, is not used in NVDA's codebase, and does not seem to be used by any add-ons. (#10468)

commit 0124e647c2c58f04370b9ec5c9fd8ba957315441
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Fri Nov 8 13:10:51 2019 +0100

    Store speech priorities in an enum (PR #10471)

commit ab8b8ea63366505155d64e62599e9c53974fdc10
Merge: 1d4ed4021 94212ddee
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 8 00:06:15 2019 +1000

    Update translations.
    
    From translation svn revision: 51779

commit 94212ddee929062b3561851f7808a424e5280b3e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 8 00:06:15 2019 +1000

    L10n updates for: zh_TW
    From translation svn revision: 51779
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    14      14      source/locale/zh_TW/LC_MESSAGES/nvda.po
     1 file changed, 14 insertions(+), 14 deletions(-)

commit 3d77d5936005aecaeb2f7968d5629c0d334e681b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 8 00:06:04 2019 +1000

    L10n updates for: sv
    From translation svn revision: 51779
    
    Authors:
    Daniel Johansson <daniel.johansson@coeptus.se>
    Niklas Johansson <sleeping.pillow@gmail.com>
    Karl-Otto Rosenqvist <Karl-otto@mawingu.se>
    
    Stats:
    200     251     source/locale/sv/LC_MESSAGES/nvda.po
    1       0       source/locale/sv/symbols.dic
     2 files changed, 201 insertions(+), 251 deletions(-)

commit c2ad4eb485f2d7581a59596c95f04d3179a503b2
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 8 00:05:56 2019 +1000

    L10n updates for: ro
    From translation svn revision: 51779
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <contact@florian-ionascu.ro>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    
    Stats:
    1       1       source/locale/ro/symbols.dic
     1 file changed, 1 insertion(+), 1 deletion(-)

commit b94532ac7b9db26d8ded810bcb9e68dae0a54dbe
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 8 00:05:28 2019 +1000

    L10n updates for: fr
    From translation svn revision: 51779
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess.net>
    
    Stats:
    3       3       source/locale/fr/LC_MESSAGES/nvda.po
    1       1       user_docs/fr/userGuide.t2t
     2 files changed, 4 insertions(+), 4 deletions(-)

commit fb0b89f0693659b5a734fa170636b7544812eac5
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 8 00:05:26 2019 +1000

    L10n updates for: fi
    From translation svn revision: 51779
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    5       5       source/locale/fi/LC_MESSAGES/nvda.po
    5       5       user_docs/fi/changes.t2t
    8       8       user_docs/fi/userGuide.t2t
     3 files changed, 18 insertions(+), 18 deletions(-)

commit adfc0b5a6efcb570c8ae38b72a6057c13f654fed
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 8 00:05:20 2019 +1000

    L10n updates for: es_CO
    From translation svn revision: 51779
    
    Authors:
    Jorge Zarache <reydelasmaquinas@outlook.com>
    
    Stats:
    576     1115    source/locale/es_CO/LC_MESSAGES/nvda.po
     1 file changed, 576 insertions(+), 1115 deletions(-)

commit df0211c4b3078c260706ab9f1bf71bcbf1f349c7
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Thu Nov 7 14:33:08 2019 +0100

    Fix missing languageHandler import in speech package (PR #10475)
    
    languageHandler was being imported to speech via `from synthDriverHandler import *`. Now import it explicitly.
    Also explicitly import the methods used in synthDriverHandler rather than importing *.

commit 6a7ba7f8fa37c0305af09d46e0908bd133ea722d
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Wed Nov 6 14:59:42 2019 +0100

    Update changes file for PR #10469

commit 46fc5eb96d6b225706ba854ed6d77dcab8d335c6
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Wed Nov 6 14:59:13 2019 +0100

    Rename getBrailleTextForProperties to getPropertiesBraille (PR #10469)
    
    In PR #10371, getSpeechTextForProperties was renamed to getPropertiesSpeech, make the equivalent change for Braille.

commit d9c5eaa67022654158ceaa6ce06d2fcf8b2aa421
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Wed Nov 6 14:41:15 2019 +0100

    Update changes file for PR #10371

commit 4b80c41312ab5323f07962f78e5fe2b79bfd6f51
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Wed Nov 6 14:36:19 2019 +0100

    Speech commands use sequences rather than strings (PR #10371)
    
    In order to get many of the benefits of the speech refactor, we need to have speech sequences (rather than single strings) returned from our various getXSpeech methods. This will be necessary if we want to use sounds instead of text to indicate spelling errors, change voice parameters for emphasized text or links, etc.
    
    * Definitions and all usages converted:
    - getControlFieldSpeech
      - speech.getControlFieldSpeech
      - browseMode.BrowseModeDocumentTextInfo.getControlFieldSpeech
      - textInfos.TextInfo.getControlFieldSpeech
      - speech.getFormatFieldSpeech
    - getFormatFieldSpeech
      - appModules.kindle.BookPageViewTextInfo.getFormatFieldSpeech
      - textInfos.TextInfo.getFormatFieldSpeech
      - treeInterceptorHandler.RootProxyTextInfo.getFormatFieldSpeech
    - speech.getSpeechTextForProperties
    - speech.getIndentationSpeech
    - speech.getTableInfoSpeech
    
    * Rename getSpeechTextForProperties to getPropertiesSpeech
    * Unify line endings (use Windows line endings) in excel.py
    * Add speechSequence checking
    - Logs errors in speech sequences (unknown types, None entries, empty list entries)
    - Must be enabled in the advanced panel, logging options.
    
    * Remove separator argument from getFormatFieldSpeech method
    * Include padding added to strings for speech in test
    - In the future it would be better to test speech as structured data. This would allow us to test commands as well.
    
    * Fix unnecessary newlines between speech items in Speech viewer
    - SpeechViewer.appendText renamed to appendSpeechSequence.
    - appendSpeechSequence takes a SpeechSequence instead of a str.
    - This allows more control over the presentation of speech, which will separate speech items with a space, and conclude with a newline.
    
    Fixes #10098

commit 8cd9582afd8c31a63eadfa5952c938c558e53811
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Nov 6 16:59:51 2019 +1000

    Provide NVDA store app with UIAccess capabilities (#10464)
    
    * appX package: ask to gain UIAccess, and allow audioDucking / touchHandler to be used.
    
    * Fix linting issues.
    
    * appx manifest: update min/max Windows version and set to start after logon.

commit 5a30d5ce8fa80d2f7a1a7fde1341dae10878feaa
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Nov 6 16:57:59 2019 +1000

    Update changes file for pr #10467

commit 30e11a5ef5bf8a95509fe9cadc172cd5c6e96f1b
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Nov 6 16:55:35 2019 +1000

    UIA in MS Word: Stop announcing the next bullet on the previous line (#10467)
    
    * UIAUtils.iterUIARangeByUnit: Doubly ensure that we do not start emitting a range passed the end of the given outer range.
     Fix for #9613: The next bullet in MS Word is announced on the line above.
    
     # Please enter the commit message for your changes. Lines starting
    
    * Fix linting issues.
    
    * Fix typo
    
    Co-Authored-By: Leonard de Ruijter <leonardder@users.noreply.github.com>

commit 4d1d4f640bcc4c2a44e57a24304819baa2752f71
Author: Łukasz Golonka <wulfryk1@gmail.com>
Date:   Tue Nov 5 02:17:13 2019 +0100

    No longer report content of edit fields which are going to lose focus. (#10463)

commit 90a250dc8a7aec33fac4f2114c2cc09db273e000
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Tue Nov 5 02:13:57 2019 +0100

    Make accessibleObjectFromEvent log at level debug instead (#10457)

commit 1b7cddfdb73203928120ea7b1f4ae4f9a79d879a
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Fri Nov 1 10:38:48 2019 +0100

    Fix: changes file entry "originating thread in log" should be in dev section (PR #10445)
    
    "For every entry in the NVDA log, information about the originating thread is now included"
    
    Belongs in dev section not general changes.
    
    Fixes #10443

commit 1d4ed40214a5f603167dc624018b8c2f7dbfce75
Merge: 3061f47c3 3451fb125
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 1 00:06:13 2019 +1000

    Update translations.
    
    From translation svn revision: 51728

commit 3451fb1256cac7b7d8898c9d1b69b8073c5f4262
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 1 00:06:12 2019 +1000

    L10n updates for: zh_TW
    From translation svn revision: 51728
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    25      25      source/locale/zh_TW/LC_MESSAGES/nvda.po
    24      24      source/locale/zh_TW/characterDescriptions.dic
     2 files changed, 49 insertions(+), 49 deletions(-)

commit 7b33ce100a14076412272622fe73537d96920872
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 1 00:06:02 2019 +1000

    L10n updates for: sv
    From translation svn revision: 51728
    
    Authors:
    Daniel Johansson <daniel.johansson@coeptus.se>
    Niklas Johansson <sleeping.pillow@gmail.com>
    Karl-Otto Rosenqvist <Karl-otto@mawingu.se>
    
    Stats:
    329     476     source/locale/sv/LC_MESSAGES/nvda.po
     1 file changed, 329 insertions(+), 476 deletions(-)

commit 4c5f8dbc846efbc54a9532448ecb48451e620b12
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 1 00:05:27 2019 +1000

    L10n updates for: fr
    From translation svn revision: 51728
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess.net>
    
    Stats:
    4       4       source/locale/fr/LC_MESSAGES/nvda.po
     1 file changed, 4 insertions(+), 4 deletions(-)

commit f53a675e8e40e6a15e6d8f91164da58f540a8a1d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 1 00:05:17 2019 +1000

    L10n updates for: de
    From translation svn revision: 51728
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    4       6       source/locale/de/LC_MESSAGES/nvda.po
     1 file changed, 4 insertions(+), 6 deletions(-)

commit 054d7b29a93212c2ee23f4a08b0d832f2de5cb65
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Tue Oct 29 23:39:40 2019 +0100

    readme.md: Update Visual Studio 2017 download link (#10437)

commit b051a0c8616591bdea887b68d19fdcc50d6e04e5
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Oct 30 08:31:55 2019 +1000

    Update changes file for pr 10424

commit 2f9c7d456e21519f34132cf7ecf9909786f55ede
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Tue Oct 29 23:27:09 2019 +0100

    Add an article role and allow quick navigation to articles (#10424)
    
    * Add article role
    
    * Add articles to gui and globalCommands
    
    * Make vbuf and IA2 objects support article
    
    * Allow disabling article reporting
    
    * Start with articles disabled by default
    
    * Update user guide
    
    * Fixes for mshtml
    
    * Allow quick nav scripts to have an optionak key, rather than mandatory
    
    * Add support for article navigation in Firefox, Chrome and IE
    
    * Äria: add mappings for aside, section and dialog
    
    * Experimental support for Edge
    
    * Linter fixes
    
    * Edge: treat article as block
    
    * Restore doc string

commit f9388eb51614de3256215be50bf97899e2c1ccfc
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Oct 29 07:07:53 2019 +1000

    Update changes file for pr #10421

commit 524e48dd96314fa588c1c13ba08411646b10d574
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Tue Oct 29 07:06:17 2019 +1000

    Gracefully handle regular expression errors in speech dictionaries (#10421)
    
    * speechDictHandler: If a regular expression error is thrown when processing text for a given dictionary entry, log an error,  remove the entry from memory, and continue processing further entries.
    
    * Fix linting issues.

commit c576628d471b2a84c08eb73ee174fb9841e55d77
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Mon Oct 28 22:03:44 2019 +0100

    Remove base implementation of synthDriverHandler.SynthDriver (#10431)

commit 481418e5760bfbea375d065f757c5f22adddc03d
Merge: e35f7ae26 ac405d577
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Mon Oct 28 10:14:42 2019 +0100

    Merge branch 'master' into i9280

commit ac405d5770de0d38f93a3f888f1136b4753a9967
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Oct 28 09:53:58 2019 +1000

    Update changes file for pr #10426

commit 5522d3ea792ba181341324b8cabe7c8e5dcf075b
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Mon Oct 28 00:52:17 2019 +0100

    Update CLDR to version 36 (#10426)

commit 5a0b42ea78e26f245132c807634f1e6b930ed1d2
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Oct 25 08:07:45 2019 +1000

    Update changes file for pr #10414

commit b979ff5f1dc588b84eefb6c9867f2843adaf0271
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Fri Oct 25 00:06:04 2019 +0200

    When creating NVDAObjects, make sure external modules can't disrupt object creation (#10414)
    
    * NVDAObject __init__: catch exceptions caused by external modules
    
    * When there is a bug in an appModule, speak the message at a higher speech priority so it can't be missed
    
    * import speech.priorities
    
    * Restore UTF-8 comments

commit 5cc7104529b6428c3136478bbdf98647532cabf6
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Oct 25 07:57:59 2019 +1000

    Update changes file for pr #10110

commit eda04a245332b4ecd3a99696706157de7da365f8
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Thu Oct 24 23:55:53 2019 +0200

    Add support for IA2_ROLE_LANDMARK (#10110)
    
    * Add support for IA2_ROLE_LANDMARK
    
    * Fix most linter errors
    
    * Review action, fix linting issues
    
    * Support for roleTextBraille, copied from ariaRoleDescriptionBraille branch
    
    * SPeak landmarks using roleText in focus mode
    
    * Remove landmark exception out of browse mode
    
    * Objects with roleDescription are always content
    
    * Add landmark property to MSHTML
    
    * Fix linting issues
    
    * Fix landmark reporting in focus mode when it is off
    
    * Add extra forgotten if check
    
    * Fix label announcement in Edge
    
    * Fix always speaking landmarks on quicknav, but now it's never spoken on quicknav
    
    * Fix landmark pronunciation
    
    * Fix linting issue
    
    * Make landmark property update the first landmark role it finds
    
    * More closely follow aria spec for role attribute

commit 45614e487f4c4a85eee301549cb382a429c67cd2
Author: Łukasz Golonka <wulfryk1@gmail.com>
Date:   Thu Oct 24 23:33:57 2019 +0200

    Start ignoring duplicate focus events emitted by Windows 7 desktop items. Fix for https://github.com/nvaccess/nvda/issues/2988 (#10419)

commit 3061f47c344b83588b06670c1a0114d15c620d48
Merge: 77d0899e6 8d9014c1d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 25 00:06:11 2019 +1000

    Update translations.
    
    From translation svn revision: 51672

commit 8d9014c1d91ea9ac241ef8a75048a9b0dd09c864
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 25 00:06:01 2019 +1000

    L10n updates for: sv
    From translation svn revision: 51672
    
    Authors:
    Daniel Johansson <daniel.johansson@coeptus.se>
    Niklas Johansson <sleeping.pillow@gmail.com>
    Karl-Otto Rosenqvist <Karl-otto@mawingu.se>
    
    Stats:
    245     299     source/locale/sv/LC_MESSAGES/nvda.po
     1 file changed, 245 insertions(+), 299 deletions(-)

commit 00f6c8217e89e6fa944becf0d1577b7ba19596f3
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 25 00:05:44 2019 +1000

    L10n updates for: mn
    From translation svn revision: 51672
    
    Authors:
    Mongol NVDA-Translation <mongoliannvdatranslation@gmail.com>
    
    Stats:
    3       4       source/locale/mn/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 4 deletions(-)

commit aa15700c49647b87e3373f500339ab0ae25c912c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 25 00:05:27 2019 +1000

    L10n updates for: fr
    From translation svn revision: 51672
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess.net>
    
    Stats:
    5       5       source/locale/fr/LC_MESSAGES/nvda.po
     1 file changed, 5 insertions(+), 5 deletions(-)

commit 793d3ee1416e03b88920065bce5bd7fad81ee889
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 25 00:05:17 2019 +1000

    L10n updates for: de
    From translation svn revision: 51672
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    332     335     source/locale/de/LC_MESSAGES/nvda.po
     1 file changed, 332 insertions(+), 335 deletions(-)

commit ab42941716fda105fdabf7d559079f2232e69565
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Wed Oct 23 17:25:02 2019 +0200

    Update flake8-tabs (PR #10391)
    
    Use continuation-style=hanging option to reduce confusion around alignment styles.
    
    Flake 8 will now issue an error (ET113) for code that would be interpreted as intending vertical alignment style.
    Comments no longer trigger the vertical alignment interpretation.
    
    Extends #10050 now that https://gitlab.com/ntninja/flake8-tabs/issues/1 is closed.
    Closes: #10021

commit 900380cdf9a19b3a03c054e7eb92af84bf4f63ad
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Oct 23 10:41:24 2019 +1000

    Update changes file for pr #10412

commit bb054198ba0e7b54c5684d35e9654884895234f0
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Tue Oct 22 17:38:14 2019 -0700

    Windows 10 System Settings: remove progress bar announcement from input/output volume meter. Re #10411. (#10412)
    
    In Windows 10 Version 1803 (April 2018 Update, specifically withj build 17035) and later, Windows 10's Settings app added System/Sound page, moving Sound property sheet from Control Panel to Settings. However, this page includes an anoying progress bar which is really a volume meter, causing NVDA to announce progress bar information. Thus remove progress bar behavior so NVDA can remain silent.

commit be3fdc459479929602edfe607230f61d044dce3b
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Oct 22 10:10:30 2019 +1000

    Update changes file for pr #10368

commit ee8a150a23c1d3270ba689f9f0b343963b6010ff
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Tue Oct 22 02:09:45 2019 +0200

    displayModel, compensate for left coordinates greater than right (#10368)
    
    * displayModel, compensate for left coordinates greater than right
    
    * Fix missing parenthesis

commit 35f47190072b270c8cd3a3833989437feb218731
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Oct 22 09:51:33 2019 +1000

    Update changes file for pr #10375)

commit 36a23a720128a61ab1e19528834242e4f61bb6ea
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Mon Oct 21 16:50:21 2019 -0700

    Windows 10/File Explorer: recognize ApplicationFrameWindow as UIA object so first selected emoji and cloud clipboard item can be announced in May 2019 Update and later (#10375)
    
    * appModules/textinputhost: typo fix for top-level comment
    
    * appModules/explorer: recognize modern input panel in May 2019 Update and later. Re #9204.
    
    In build 18305 and later, it is File Explorer that raises window open event for modern keyboard. Because of this, when emoji panel and related panels open, first selected item will not be announced. Thus:
    * Recognize the top-level modern input window as proper UIA item. Although a 'Close' button is next to it, not all input features will be accompanied with this - emoji panel does but dictation does not.
    * If window open event is fired from File Explorer, make sure that the child window is indeed a modern input window.
    
    * Remove duplicate 'import winVersion' statement

commit 329bf886330744220fa1c0f13f3e03e162f82db6
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Oct 22 09:43:52 2019 +1000

    Update changes file for pr #10393

commit 60f068e91fe066af8fbab1af48e1091e1d758e96
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Tue Oct 22 01:42:35 2019 +0200

    Enable logging for python dependencies, particularly comtypes (#10393)
    
    * Add logging for comtypes
    
    * Redirect stdout and stderr to the root logger
    
    * Don't touch comtypes logging level
    
    * Make log handler global
    
    * More changes to root logger

commit 0d997b281be95d7a7788c77483c373fece923275
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Oct 22 09:33:28 2019 +1000

    Update changes file for pr #10396

commit 934bf77edeef19612341da55890497cc84082a61
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Tue Oct 22 01:31:15 2019 +0200

    Add textInfos unit mappings for UIA document, page and format field, make FORMATFIELD and CONTROLFIELD units global (#10396)

commit d7f222905602ddb8261cfe9c92722be47d4491e6
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Oct 22 09:24:16 2019 +1000

    Update changes file for pr #10404

commit d83bc267c8e437a691b27740651881dda994c8f8
Author: CyrilleB79 <cyrille.bougot2@laposte.net>
Date:   Tue Oct 22 01:21:30 2019 +0200

    Fix bullet reading in Word (#10404)
    
    * Fix bullet reading in Word
    
    * Fix linting issues

commit ba13d5c28c440dc1cdb8e30c9579831717707477
Author: Łukasz Golonka <wulfryk1@gmail.com>
Date:   Mon Oct 21 17:13:08 2019 +0200

    Fix up of: remove pyd file in installation folder (#10070) (#10224)
    
    * Stop removing compiled Python files from user and system configs during update of NVDA.
    
    - In addition remove all .dll and manifest files.
    - stop removing mpr.dll explicitly - it is removed along with all other libraries.
    
    * Review actions.

commit aa15b2e9fab4b13f1866cae94856bb10207f2092
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Oct 21 23:48:54 2019 +1000

    Update changes file for pr #10389.

commit 74f53978df9cef17d24aae77638009d295fdeef7
Author: James Teh <jamie@jantrid.net>
Date:   Mon Oct 21 23:45:06 2019 +1000

    Browse mode: When the user moves the cursor, speak before setting selection. (#10389)
    
    Previously, for both normal cursor movement and quick navigation, we set the selection before speaking.
    However, setting selection might move the focus, which might mutate the document.
    For virtual buffers, the TextInfo is offset-based, so this could invalidate the offsets, causing the wrong part of the document to be spoken.
    To get around this, we now speak before setting the selection.

commit 12f27acfd4cc3b9e87f18cddf0f083d4b064506f
Author: Arnold Loubriat <arnold.loubriat@outlook.com>
Date:   Sat Oct 19 18:38:56 2019 +0200

    ExitDialog: Align OK and Cancel buttons to the right (PR #10076)
    
    In most NVDA and Windows dialogs, the OK and Cancel buttons are aligned to the right.
    This change makes the exit dialog consistent.

commit 77d0899e649a8e40e5731b501ab642341398cece
Merge: f4730e2a4 7439d245b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 18 00:06:11 2019 +1000

    Update translations.
    
    From translation svn revision: 51643

commit 7439d245ba9bfda6b975195d9789bd198d3f1c62
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 18 00:06:01 2019 +1000

    L10n updates for: sv
    From translation svn revision: 51643
    
    Authors:
    Daniel Johansson <daniel.johansson@coeptus.se>
    Niklas Johansson <sleeping.pillow@gmail.com>
    Karl-Otto Rosenqvist <Karl-otto@mawingu.se>
    
    Stats:
    841     478     source/locale/sv/LC_MESSAGES/nvda.po
    154     50      source/locale/sv/symbols.dic
     2 files changed, 995 insertions(+), 528 deletions(-)

commit e82be53a4144ad2c19f07b5fd39676c8a7ba16b4
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 18 00:05:54 2019 +1000

    L10n updates for: ro
    From translation svn revision: 51643
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <contact@florian-ionascu.ro>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    
    Stats:
    2       1       source/locale/ro/symbols.dic
     1 file changed, 2 insertions(+), 1 deletion(-)

commit 4bfa4d87edf48ab9923202e7d29e274b898d213e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 18 00:05:38 2019 +1000

    L10n updates for: ja
    From translation svn revision: 51643
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    11      11      source/locale/ja/LC_MESSAGES/nvda.po
    18      18      user_docs/ja/userGuide.t2t
     2 files changed, 29 insertions(+), 29 deletions(-)

commit c86eedd76af037bd532a4cf46796ee8959d2eb91
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 18 00:05:31 2019 +1000

    L10n updates for: hr
    From translation svn revision: 51643
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Tea Turkovic <tturkovi@gmail.com>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    41      40      source/locale/hr/LC_MESSAGES/nvda.po
     1 file changed, 41 insertions(+), 40 deletions(-)

commit 568a87ffe74bc68abc954197e3285bd365a7ff65
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 18 00:05:25 2019 +1000

    L10n updates for: fi
    From translation svn revision: 51643
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    0       24      user_docs/fi/changes.t2t
     1 file changed, 24 deletions(-)

commit 535dbf78008066f7ee20448535b34170b984c2a2
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 18 00:05:20 2019 +1000

    L10n updates for: es_CO
    From translation svn revision: 51643
    
    Authors:
    Jorge Zarache <reydelasmaquinas@outlook.com>
    
    Stats:
    1082    66      user_docs/es_CO/changes.t2t
    1790    806     user_docs/es_CO/userGuide.t2t
     2 files changed, 2872 insertions(+), 872 deletions(-)

commit 5bd8872b6ad5541f95bb8498c0e68f7bdfabba7e
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Tue Oct 15 18:50:05 2019 +0200

    Python 3: change remaining next method in objidl.IEnumMoniker into __next__ (PR #10386)
    
    objidl.IEnumMoniker is used as an iterable in the visual studio appModule. However, due to python 2/3 change (next method should be __next__), this was missed during conversion.

commit f4730e2a42866ddf0d6f91e45862c7ac4390b9c2
Merge: 69dcb3a90 5c04156d4
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 11 00:06:13 2019 +1000

    Update translations.
    
    From translation svn revision: 51579

commit 5c04156d4e7193617512671be848678a96c4d497
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 11 00:06:11 2019 +1000

    L10n updates for: zh_CN
    From translation svn revision: 51579
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    
    Stats:
    36      460     user_docs/zh_CN/changes.t2t
     1 file changed, 36 insertions(+), 460 deletions(-)

commit 66fce153f86d045f9545bfa6d2b3c8189597414d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 11 00:06:06 2019 +1000

    L10n updates for: tr
    From translation svn revision: 51579
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    12      12      source/locale/tr/LC_MESSAGES/nvda.po
     1 file changed, 12 insertions(+), 12 deletions(-)

commit 4320675b8f0e9cc1351c955c0f6038dd450ebc3a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 11 00:05:33 2019 +1000

    L10n updates for: hr
    From translation svn revision: 51579
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Tea Turkovic <tturkovi@gmail.com>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    1574    1550    source/locale/hr/LC_MESSAGES/nvda.po
     1 file changed, 1574 insertions(+), 1550 deletions(-)

commit 60cba0b47fe2bb4c0577f911b114c66b23da4e3b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 11 00:05:28 2019 +1000

    L10n updates for: fr
    From translation svn revision: 51579
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess.net>
    
    Stats:
    3       3       source/locale/fr/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 3 deletions(-)

commit 228ef01f8e4a94cdf97b28c5e8afa58ea444923a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 11 00:05:26 2019 +1000

    L10n updates for: fi
    From translation svn revision: 51579
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    24      0       user_docs/fi/changes.t2t
     1 file changed, 24 insertions(+)

commit 901d072838eae4589f866b2e9b87b988771fd0fb
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 11 00:05:20 2019 +1000

    L10n updates for: es_CO
    From translation svn revision: 51579
    
    Authors:
    Jorge Zarache <reydelasmaquinas@outlook.com>
    
    Stats:
    677     264     source/locale/es_CO/LC_MESSAGES/nvda.po
     1 file changed, 677 insertions(+), 264 deletions(-)

commit 0b83227886a34ada57f9ad279708ba6e5221dc4b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 11 00:05:17 2019 +1000

    L10n updates for: de
    From translation svn revision: 51579
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    4       4       source/locale/de/LC_MESSAGES/nvda.po
     1 file changed, 4 insertions(+), 4 deletions(-)

commit 86b5b7e5491151979b139ffb91037c2bab4fc79b
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Wed Oct 9 22:08:14 2019 -0700

    Modern keyboard: add support for 20H1 Text Input Host. Re #10359. (#10362)
    
    In build 18963, modern keyboard executable has been renamed to textinputhost.exe, breaking support for emoji panel, clipboard history and other modern input features. Thus add an alias app module.

commit b54718e8578b5a1f5c1fa115622ab860f3ded29f
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Oct 10 08:14:51 2019 +1000

    Update changes file for pr #10340

commit d3adf2f4cd6ad7e69daea433a56219cf73a1b287
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Wed Oct 9 15:13:01 2019 -0700

    Start menu suggestions: announce result details (#10340)
    
    * SearchUI app module: update copyright headers, indentation, add introductory docstring.
    
    * SearchUI: recognize search results in recent Windows 10 feature updates with redesigned Windows Search. Re #10329.
    
    In 2019, Windows Search has been redesigned. Although the new UI appeared in Version 1903 (May 2019 Update), it was made available to older Windows 10 releases with a server-side update. Compared to old UI, suggestions are grouped by categories - instead of all results grouped under a single list, results list is now populated with search categories, with each category in turn hosting a list of results. This latter control isn't recognized as suggestions list, leading to NVDA not announcing item detalis as it used to.
    Therefore recognize the new UI and recognize actual results so NVDA can announce result details. This results in repetitions, which will be corrected with a accompanying work dealing with search field caret event changes.
    
    * Lint: whitespace
    
    * UIA.findOverlayClasses: add a comment on 2019 Windows Search results due to UI redesign.
    
    Commented by Leonard de Ruijter (Babbage): because not all suggestions list items are not part of results list (some are inside another item such as results from Windows Search in 2019 due to UI changes), document this fact for clarity.

commit b5a9a6011652bfbd213e6259356e5da82a5c55ee
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Wed Oct 9 05:56:35 2019 +0200

    Fix handy tech message window (#10286)

commit afe26289d6789b6b64f55e7c90f8c80315ef0c07
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Tue Oct 8 20:15:20 2019 -0700

    Windows Search: renamed from searchui to searchapp in build 18965. Re #10350. (#10351)
    
    Several Windows Search features will not work in Windows 10 build 18965 and later becasue executable has been renamed from searchui to searchapp. Therefore add an alias app module for SearchApp.exe that imports everything from searchui app module.

commit df44fdf9c443d704363dbfc23a6bd1c3f266558b
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue Oct 8 18:41:24 2019 +0200

    Update changes file for PR #9925

commit c7a00ab9dbf96bba118c468dd117f7b9bff9c710
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Tue Oct 8 18:35:48 2019 +0200

    Add command to move review cursor to position marked as start for copy (PR #9925)
    
    New command: Move review cursor to position marked as start for copy
    Fixes #1969

commit b40bc9e29f35872038b4cdb1be96ed35e4bec86d
Author: Łukasz Golonka <wulfryk1@gmail.com>
Date:   Tue Oct 8 01:36:28 2019 +0200

    Bundle Universal CRT libraries when creating NVDA distribution. (#10347)
    
    This makes it again possible to use NVDA on clean installs of Windows versions older than Windows 10.
    Fixes https://github.com/nvaccess/nvda/issues/10031

commit 49365d1bb80c1ef9150ada43482c63c3aa70ea11
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Oct 8 07:57:14 2019 +1000

    Update changes file for pr #10313.

commit a157fbd70363acf16ac3bba8b4ad42aabbd820c0
Author: CyrilleB79 <cyrille.bougot2@laposte.net>
Date:   Mon Oct 7 23:54:18 2019 +0200

    Report hidden formatting in MS Word (#10313)
    
    * Report hidden formatting in MS Word
    
    * Update source/speech/__init__.py
    
    Co-Authored-By: Leonard de Ruijter <leonardder@users.noreply.github.com>
    
    * Fix linting issues.

commit 287f4ea9a88a352a2b568a64c67b30a57fc076f2
Author: Łukasz Golonka <wulfryk1@gmail.com>
Date:   Mon Oct 7 23:32:38 2019 +0200

    Ask Py2exe to bundle all *.dll files required for BrlAPI. Fix for https://github.com/nvaccess/nvda/issues/10238 (#10304)

commit 44a1dd1458b75179d2d09f4b424bf5195105e5e7
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Oct 8 07:18:49 2019 +1000

    Update changes file for pr #10293.

commit 0e12e8a526714a628992f60c31cfd3c3b4b8fa0d
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Mon Oct 7 23:16:30 2019 +0200

    Add ability to reset all gestures to their factory default (#10293)
    
    * Add ability to reset all gestures to their factory default
    
    * Review action https://github.com/nvaccess/nvda/pull/10293#discussion_r329491679
    
    Co-Authored-By: Leonard de Ruijter <leonardder@users.noreply.github.com>
    
    * Remove dev log leftover
    
    Re https://github.com/nvaccess/nvda/pull/10293/files#r329491860
    
    * Handle failure to save gestures.ini
    
    * Review action https://github.com/nvaccess/nvda/pull/10293#discussion_r330315199
    
    Co-Authored-By: Luke Davis <8139760+XLTechie@users.noreply.github.com>
    
    * Review action https://github.com/nvaccess/nvda/pull/10293#discussion_r330316904
    
    Co-Authored-By: Luke Davis <8139760+XLTechie@users.noreply.github.com>

commit 6cdb7be0ec7e4681356fe35eb8842197bb58b1f6
Author: eric <26911141+dingpengyu@users.noreply.github.com>
Date:   Fri Oct 4 18:09:24 2019 +0800

    Update readme links: use HTTPS (PR #10315)
    
    Fixes #10314

commit c5d9b9ab766efa1f733c1c1e38c8335f57f368ec
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Oct 4 16:53:17 2019 +1000

    Update changes file for pr #9707

commit 36e608dc7375ab2c02f19549310348b69f78a251
Author: Patrick ZAJDA <patrick@zajda.fr>
Date:   Fri Oct 4 08:50:18 2019 +0200

    Modify NVDA behavior with CLDR characters (#9707)
    
    * Modify NVDA behavior with CLDR characters to have them announced everytimes and quicker configurable.
    * In the cldr.dic files, set the punctuation level to none
    * Add shift+NVDA+p to toggle on and off CLDR characters anouncement
    Fix #8826
    
    * User guide: add gesture
    
    * Changes after reviewS.
    cldrDict_sconscript:
    * Add a comment to specify why punctuation level is set to none
    source/globalCommands.py:
    * Use script decorator instead of old-style coding
    * Fix translators comments
    * commented gesture assignment until final advice
    
    * Fix code style for Lint check
    One error left: continuation line under-indented for hanging indent
    I don't understand how to fix this when I took it from another part of this file
    
    * Code style fix
    
    * Reverted to original code style as codestyle checks now pass
    
    * Delete the commented gesture, will add it back if needed when PR will be reviewed again by @josephsl or someone else
    
    * Remove keyboard shortcut from user guide
    
    * User guide: advise users to assign a command to toggle this feature from everywhere.

commit b94777ec8c7366c4184d182d9600ccbc8b0f68c4
Author: James Teh <jamie@jantrid.net>
Date:   Fri Oct 4 11:26:41 2019 +1000

    Fix several memory leaks in the webKit vbuf backend. (#10316)
    
    When this code was originally written, we needed to hold onto the IAccessible pointers so we could map them to/from vbuf nodes.
    Once WebKit implemented IAccessible2, I converted the vbuf backend to use IAccessible2 and this was no longer necessary.
    Unfortunately, in the conversion, I neglected to add code to release the pointers we previously held onto.
    
    In fixing this, I've moved everything to use CComPtr/Variant/BSTR smart pointers.

commit abacd3397a96cebcf631283e6763d780f4404ebe
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Oct 4 10:58:28 2019 +1000

    Changes file: no longer list bug fixes under  2019.3 that are also in 2019.2.1 as that has now been released.

commit c56e4e4aa400b29cdfd24aeba63579deea4a82ba
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Oct 4 10:14:27 2019 +1000

    Update changes file for pr #10168.

commit 7b0aea1cfbfa708b6878d21c883b2606b56f003d
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Fri Oct 4 02:12:56 2019 +0200

    Update liblouis to commit 58d67e63 (#10168)
    
    * Update liblouis to commit 58d67e63
    
    * Use commit 146c0757
    
    * Rename Greek international braille

commit 69dcb3a906045691770f671a351547b05f5929a9
Merge: 5c6a70865 f6578e765
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 4 00:06:10 2019 +1000

    Update translations.
    
    From translation svn revision: 51537

commit f6578e7658187e6947f0838456c72d863c2adfe7
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 4 00:06:08 2019 +1000

    L10n updates for: zh_CN
    From translation svn revision: 51537
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    
    Stats:
    5       5       source/locale/zh_CN/LC_MESSAGES/nvda.po
     1 file changed, 5 insertions(+), 5 deletions(-)

commit 2918fa64eea490c15c1806de28f0976b0854778a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 4 00:06:06 2019 +1000

    L10n updates for: vi
    From translation svn revision: 51537
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    4       4       source/locale/vi/LC_MESSAGES/nvda.po
     1 file changed, 4 insertions(+), 4 deletions(-)

commit 78c584f4d0c1ba24a4941965f66304ddfe41b9d9
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Wed Oct 2 16:49:34 2019 +0200

    Log manfest validation errors for addons already installed (PR #10284)
    
    When an addon is already installed, but fails manifest validation, a more helpful message is now shown.

commit 2e2d39a13e24d8a1acf02836ea88040f5600c15f
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Wed Oct 2 14:51:53 2019 +0200

    Add reference to readme for visual studio code project repository (PR #10064)
    
    Depends on nvaccess/vscode-nvda
    Closes #9971

commit 78fa572a4192b1518f64e4ceeb42fc0edc426f64
Merge: b7677f232 5c6a70865
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Oct 2 11:11:51 2019 +1000

    Merge 'beta'

commit 5c6a70865392c3ea8bcca349aedaa7eec12096a6
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Oct 2 11:06:47 2019 +1000

    Update version_minor to 1 (2019.2.1)

commit b7677f232c9caf2c628d7772a5249c043298e224
Merge: 2d0ba99b2 d53ce26c3
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Oct 2 11:03:17 2019 +1000

    Merge branch 'beta'

commit d53ce26c319291592ef0d3714885191757cd2c1e
Merge: 2ed0f4786 d37c45204
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Oct 2 11:01:23 2019 +1000

    Update translations.
    
    From translation svn revision: 51518

commit d37c4520429a1c1b79e8fe5c7786d9357d930ea3
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Oct 2 11:01:22 2019 +1000

    L10n updates for: zh_TW
    From translation svn revision: 51518
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    23      22      source/locale/zh_TW/characterDescriptions.dic
    10      2       user_docs/zh_TW/changes.t2t
     2 files changed, 33 insertions(+), 24 deletions(-)

commit 6ecf3cabb815bedc054a8e7601369c6ac970c5c6
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Oct 2 11:01:16 2019 +1000

    L10n updates for: tr
    From translation svn revision: 51518
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    2       0       user_docs/tr/changes.t2t
     1 file changed, 2 insertions(+)

commit d58688728c94c13eb34a315fb99e3840388b3f00
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Oct 2 11:01:08 2019 +1000

    L10n updates for: ru
    From translation svn revision: 51518
    
    Authors:
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    11      11      source/locale/ru/LC_MESSAGES/nvda.po
    3       3       user_docs/ru/changes.t2t
     2 files changed, 14 insertions(+), 14 deletions(-)

commit 40f2bca0c181f3a85b169c2140bb5d4b6edce043
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Oct 2 11:01:05 2019 +1000

    L10n updates for: ro
    From translation svn revision: 51518
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <contact@florian-ionascu.ro>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    
    Stats:
    2       0       user_docs/ro/changes.t2t
     1 file changed, 2 insertions(+)

commit 77bc3332e1ec85ac18ae939cb4a726a99dadbb02
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Oct 2 11:01:02 2019 +1000

    L10n updates for: pt_BR
    From translation svn revision: 51518
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    10      2       user_docs/pt_BR/changes.t2t
     1 file changed, 10 insertions(+), 2 deletions(-)

commit 9a64c091fb34408085d21bbcc0f49ce49374d413
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Oct 2 11:01:01 2019 +1000

    L10n updates for: pl
    From translation svn revision: 51518
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <hubert.meyer@wp.pl>
    
    Stats:
    38      38      source/locale/pl/LC_MESSAGES/nvda.po
     1 file changed, 38 insertions(+), 38 deletions(-)

commit be4defb3da335af434b7e137db55ac873a20d6b1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Oct 2 11:00:43 2019 +1000

    L10n updates for: hr
    From translation svn revision: 51518
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Tea Turkovic <tturkovi@gmail.com>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    2       0       user_docs/hr/changes.t2t
     1 file changed, 2 insertions(+)

commit 406472acf4bbf7614519f6837af3f34c60e5c69c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Oct 2 11:00:35 2019 +1000

    L10n updates for: fa
    From translation svn revision: 51518
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    9       1       user_docs/fa/changes.t2t
     1 file changed, 9 insertions(+), 1 deletion(-)

commit 4c700e5fcacd40b75eb1b4a57ac6f1cf699787d4
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Oct 2 11:00:30 2019 +1000

    L10n updates for: el
    From translation svn revision: 51518
    
    Authors:
    Irene Nakas <irnakas@gmail.com>
    Nikos Demetriou <nikosdemetriou@googlemail.com>
    access@e-rhetor.com
    
    Stats:
    57      16      source/locale/el/LC_MESSAGES/nvda.po
     1 file changed, 57 insertions(+), 16 deletions(-)

commit d6d5e8b5a61bb7aac5d38e2bffafada2210cb6df
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Oct 2 11:00:28 2019 +1000

    L10n updates for: de
    From translation svn revision: 51518
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    2       1       source/locale/de/gestures.ini
     1 file changed, 2 insertions(+), 1 deletion(-)

commit 2d0ba99b2f1d42f096996590362a11367000b819
Merge: 70bc6864d 2ed0f4786
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Sep 30 18:13:17 2019 +1000

    Merge branch 'beta'

commit 70bc6864d9953c0c68c9478f36446d2a1217e238
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Mon Sep 30 09:47:55 2019 +0200

    MSHTML vbuf: HTMLAttrib::src: Truncate base64 data, yet preserve the MIME type (#10280)

commit 2ed0f478663813fe34dd07ed10b5b63aeccf4fbc
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Mon Sep 30 09:44:09 2019 +0200

    Fix up of: IA2: Do not treat huge base64 data as NVDA might freeze in Google Chrome (PR #10240) (#10282)
    
    * Fix up of: IA2: Do not treat huge base64 data as NVDA might freeze in Google Chrome (PR #10240)
    
    Ensure to truncate base64 data only in the `src` attribute, and not in an eventual
    text content (eg. in and inline editor).
    
    Re: https://github.com/nvaccess/nvda/pull/10231#issuecomment-535254306
    
    * Fix up of bd35387cbe: Include the comma after "base64" in the capturing group

commit 0587211220029d88f6e5504be4e8bb5f0fece237
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Mon Sep 30 09:39:29 2019 +0200

    Fix up of: IA2: Do not treat huge base64 data as NVDA might freeze in Google Chrome (PR #10231) (#10281)
    
    * Fix up of: IA2: Do not treat huge base64 data as NVDA might freeze in Google Chrome (PR #10231)
    
    Ensure to truncate base64 data only in the `src` attribute, and not in an eventual
    text content (eg. in and inline editor).
    
    Re: https://github.com/nvaccess/nvda/pull/10231#issuecomment-535254306
    
    * Fix up of db3ec56c53: Include the comma after "base64" in the capturing group

commit 547712e3ac056dfbd496d95dcce72e1bf5d00b16
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Mon Sep 30 09:30:03 2019 +0200

    IA2 vbuf: IAccessible2::attribute_src: Truncate base64 data yet preserve the MIME type (#10290)

commit 27edd27acd7c4ac3b69acd8aec28afc623d95ab3
Author: Łukasz Golonka <wulfryk1@gmail.com>
Date:   Mon Sep 30 09:21:34 2019 +0200

    Fix-up of: "Compile NVDA with the Windows 10 SDK (#7568)" (#10298)
    
    * Remove import of no longer existing windowsSdk tool from sconscript.
    
    * Style

commit 4b1ea4759bd73b01e25544e0e0949e3f09f800e4
Merge: 47b742c01 00f39d0d7
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 27 00:06:13 2019 +1000

    Update translations.
    
    From translation svn revision: 51432

commit 00f39d0d7e6f316c71415c9d46452da99810f044
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 27 00:06:10 2019 +1000

    L10n updates for: zh_CN
    From translation svn revision: 51432
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    
    Stats:
    13      1       user_docs/zh_CN/changes.t2t
     1 file changed, 13 insertions(+), 1 deletion(-)

commit 17b16a54f8353a0b3d305d0533c135c1bc8a8027
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 27 00:06:08 2019 +1000

    L10n updates for: vi
    From translation svn revision: 51432
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    10      2       user_docs/vi/changes.t2t
     1 file changed, 10 insertions(+), 2 deletions(-)

commit 311bcef6fe04fad57958c7e1b073cc9adbe39efc
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 27 00:06:06 2019 +1000

    L10n updates for: uk
    From translation svn revision: 51432
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    14      14      source/locale/uk/LC_MESSAGES/nvda.po
     1 file changed, 14 insertions(+), 14 deletions(-)

commit 4a55eb151703bd0b5b9fe814f15e3e1c0f5b089e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 27 00:06:05 2019 +1000

    L10n updates for: tr
    From translation svn revision: 51432
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    8       2       user_docs/tr/changes.t2t
     1 file changed, 8 insertions(+), 2 deletions(-)

commit 95cf2db67bb1457aa516a8d8dbc5bcd308accf3a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 27 00:06:01 2019 +1000

    L10n updates for: sr
    From translation svn revision: 51432
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    9       1       user_docs/sr/changes.t2t
     1 file changed, 9 insertions(+), 1 deletion(-)

commit b3c5fd6a797b0581d432b63486d67395af7e4191
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 27 00:05:57 2019 +1000

    L10n updates for: ru
    From translation svn revision: 51432
    
    Authors:
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    24      24      source/locale/ru/LC_MESSAGES/nvda.po
    8       0       user_docs/ru/changes.t2t
    8       8       user_docs/ru/userGuide.t2t
     3 files changed, 40 insertions(+), 32 deletions(-)

commit 0b6d3120ffb4c37122c2e7834d3117cf8ec795d9
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 27 00:05:54 2019 +1000

    L10n updates for: ro
    From translation svn revision: 51432
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <contact@florian-ionascu.ro>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    
    Stats:
    6       0       user_docs/ro/changes.t2t
     1 file changed, 6 insertions(+)

commit 47adb40708fffaa6232259f454fed297fae5b23c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 27 00:05:53 2019 +1000

    L10n updates for: pt_PT
    From translation svn revision: 51432
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    8       0       user_docs/pt_PT/changes.t2t
     1 file changed, 8 insertions(+)

commit 9bb8a05496ee33cad5084bce33bbd6e4be3f080c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 27 00:05:48 2019 +1000

    L10n updates for: nl
    From translation svn revision: 51432
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    8       0       user_docs/nl/changes.t2t
     1 file changed, 8 insertions(+)

commit 99a7cf3402da772faaeb59255d911be9f1c72c79
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 27 00:05:37 2019 +1000

    L10n updates for: ja
    From translation svn revision: 51432
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    7       1       user_docs/ja/changes.t2t
     1 file changed, 7 insertions(+), 1 deletion(-)

commit 08738e68a4f1d12891c837b73c252b8df32018ce
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 27 00:05:35 2019 +1000

    L10n updates for: it
    From translation svn revision: 51432
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    8       0       user_docs/it/changes.t2t
     1 file changed, 8 insertions(+)

commit 2d748528d16d13b5fc8c58ee0153b592503b256c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 27 00:05:31 2019 +1000

    L10n updates for: hr
    From translation svn revision: 51432
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Tea Turkovic <tturkovi@gmail.com>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    8       1       user_docs/hr/changes.t2t
     1 file changed, 8 insertions(+), 1 deletion(-)

commit e680f5ef88067306904e6f92476b89b12290da27
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 27 00:05:28 2019 +1000

    L10n updates for: gl
    From translation svn revision: 51432
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    
    Stats:
    9       1       user_docs/gl/changes.t2t
     1 file changed, 9 insertions(+), 1 deletion(-)

commit 63071e3a4709a7b8270e50754a72c2576cb8a3bb
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 27 00:05:26 2019 +1000

    L10n updates for: fr
    From translation svn revision: 51432
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess.net>
    
    Stats:
    5       5       source/locale/fr/LC_MESSAGES/nvda.po
    10      2       user_docs/fr/changes.t2t
     2 files changed, 15 insertions(+), 7 deletions(-)

commit 6b19a79f2172f7c9a686c1ad423c46e37c7510b2
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 27 00:05:24 2019 +1000

    L10n updates for: fi
    From translation svn revision: 51432
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    12      22      user_docs/fi/changes.t2t
     1 file changed, 12 insertions(+), 22 deletions(-)

commit 80d10cb2e757d078a86257d19faaf67879f4e18b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 27 00:05:21 2019 +1000

    L10n updates for: es
    From translation svn revision: 51432
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       0       source/locale/es/characterDescriptions.dic
    9       1       user_docs/es/changes.t2t
     2 files changed, 10 insertions(+), 1 deletion(-)

commit 6e113d335778f7039dfde04435462715c517f878
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 27 00:05:16 2019 +1000

    L10n updates for: de
    From translation svn revision: 51432
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    15      15      source/locale/de/LC_MESSAGES/nvda.po
    2       2       source/locale/de/characterDescriptions.dic
    8       1       source/locale/de/gestures.ini
    2676    2668    user_docs/de/changes.t2t
     4 files changed, 2701 insertions(+), 2686 deletions(-)

commit a9fbafc7eefdf3ac6adf50a33cd748cb7263f387
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 27 00:05:13 2019 +1000

    L10n updates for: da
    From translation svn revision: 51432
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    8       0       user_docs/da/changes.t2t
     1 file changed, 8 insertions(+)

commit 91aad387153a028ee12cd4dd2cf8e5d583ae6601
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 27 00:05:09 2019 +1000

    L10n updates for: bg
    From translation svn revision: 51432
    
    Authors:
    Zahari Yurukov <zahari.yurukov@gmail.com>
    Kostadin Kolev <k_kolev1985@mail.bg>
    
    Stats:
    8       0       user_docs/bg/changes.t2t
     1 file changed, 8 insertions(+)

commit de14fbfc111c9cd5cd2e133b61134104ba53a26e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 27 00:05:06 2019 +1000

    L10n updates for: ar
    From translation svn revision: 51432
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>, Omar Alojaimi <amrahmad1995@gmail.com>
    
    Stats:
    11      2       user_docs/ar/changes.t2t
     1 file changed, 11 insertions(+), 2 deletions(-)

commit af65e6926d3fd935abb73740974bee6e92ae7af1
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Sep 26 18:47:30 2019 +1000

    Update changes file for pr #9855

commit 2e287ab4ecb78d593d2cfc12733d6115188cb7e5
Author: FelixGruetzmacher <constantlyvariable@gmail.com>
Date:   Thu Sep 26 10:42:20 2019 +0200

    New handy tech display models (#9855)
    
    * Added support for Connect Braille and Basic Braille 84.
    
    * Added Handy Tech Basic Braille Plus 32 support.
    
    * Make linter pass

commit 05fb32940de59b7c55093d540bf930f829949185
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Thu Sep 26 14:28:03 2019 +1000

    Again ensure comtypes calls raise CallCancelled when cancelled by watchdog  (#10279)
    
    * comtypesMonkeyPatches: don't import any comtypes modules before ctypes.WINFUNCTYPE has been replaced with a cancellable version.
    
    * Ignore deliberate linting error.
    
    * No longer import comtypesMonkeypatches from sconstruct as it does too much for what scons needs, and fails as it tries to import core.
    Rather, just do the specific comtypes.client._generate monkeypatch in comInterfaces_sconscript where it is actually needed.

commit 6cb40529f1995f6785c6c42f8f9e0b32e5f4600b
Merge: 194ecc521 87f097d8c
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Sep 25 05:55:11 2019 +1000

    Merge branch 'beta'

commit 87f097d8c1b1c564b31b923f650b7bbf8a92ebe4
Merge: 806647680 47b742c01
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Sep 25 05:53:40 2019 +1000

    Merge branch 'beta' of https://github.com/nvaccess/nvda into beta

commit 47b742c01601feb4e27a3bf0a3dc718780d9d54a
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Sep 25 05:52:50 2019 +1000

    Update changes file for pr #10240

commit 5f79898c6c23749487a52e02bfbb29d65654e4c3
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Tue Sep 24 21:47:42 2019 +0200

    IA2: Do not treat huge base64 data as NVDA might freeze in Google Chrome (#10227) - Py2 backport to beta (#10240)
    
    * IA2: Do not treat huge base64 data as NVDA might freeze in Google Chrome (#10227)
    
    * Refine comment
    
    Review action https://github.com/nvaccess/nvda/pull/10231#discussion_r327376868

commit 194ecc5218a75e24f0e7f761becac03d4abdbd73
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Sep 25 05:40:34 2019 +1000

    Update changes file for pr #10231

commit 7bd4bf72d64935fbf9c3c0e6008910eccaf08b2c
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Tue Sep 24 21:36:55 2019 +0200

    IA2: Do not treat huge base64 data as NVDA might freeze in Google Chrome (#10227) (#10231)
    
    * IA2: Do not treat huge base64 data as NVDA might freeze in Google Chrome (#10227)
    
    * Refine comment
    
    Review action https://github.com/nvaccess/nvda/pull/10231#discussion_r327376868

commit 18c37e6880e5e71ca829d4ec7b1b8298167cbbaf
Merge: ad0e637ec 806647680
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Sep 24 16:39:12 2019 +1000

    Merge branch 'beta'

commit 8066476809e1c13da489a953a3b160f899c69ed9
Merge: 3f60a531f a0338dc69
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Sep 24 16:35:19 2019 +1000

    Merge branch 'beta' of https://github.com/nvaccess/nvda into beta

commit a0338dc694e3e9ba8eb451da26ab1d5cd7931a9c
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Sep 24 16:34:05 2019 +1000

    Update changes file to mention fix for #5337.

commit ad0e637ec81c592d3a6a3b720a69783d200387b6
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Sep 24 09:09:45 2019 +1000

    Update changes file for pr #10242

commit 4ef1ada7c7ca970b1fbd400b10bac1f44ef1cb94
Author: CyrilleB79 <cyrille.bougot2@laposte.net>
Date:   Tue Sep 24 01:06:50 2019 +0200

    Vocalize the shortcut to toggle displaying nonprintable characcters i… (#10242)
    
    * Vocalize the shortcut to toggle displaying nonprintable characcters in MS Word.
    
    * Use script decorator.
    
    * Shorten announced messages

commit fb10585270864134cf1712c94d779aa3ff803eb2
Author: Łukasz Golonka <wulfryk1@gmail.com>
Date:   Tue Sep 24 00:45:24 2019 +0200

    Make NVDA less verbose when  searching in Windows 7 start menu (#10257)
    
    * Discard useless name of search results list in Windows 7 start menu. Closes https://github.com/nvaccess/nvda/issues/2020
    
    * Review actions

commit bde76ec2955f32308bd765fa8e1fb774561bc42f
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Tue Sep 24 00:33:41 2019 +0200

    Fixup of: 'NVDA logging: add originating thread to log entry' (#10267)
    
    * Fixup of: 'NVDA logging: add originating thread to log entry'
    
    * LInting

commit e9cfa1b1b9b0377764980642f3b00f62f24b4b38
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Mon Sep 23 10:13:18 2019 +0200

    Ensure pickle files can be read by earlier versions of NVDA (#7105) (#10255)
    
    Impacts both the add-ons state and the updater state files.
    Both are now written using pickle protocol 0 so that Python 2 version of NVDA
    can read them in case of downgrading.
    
    Re https://github.com/nvaccess/nvda/pull/10224#issuecomment-533459119

commit f8ad5c4c45549e34ee39d434d3c9da5f3633e1f3
Merge: edc04e043 3f60a531f
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Sep 23 17:33:32 2019 +1000

    Merge branch 'beta'

commit edc04e0438da3e1b2e1d9dc4f24904ed134fb9d5
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Sep 23 17:30:36 2019 +1000

    Update changes file for pr #10258

commit 5264fedaf57fe9583afcfffb67b359d911b1117b
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Mon Sep 23 09:26:42 2019 +0200

    General Settings GUI: Disable log level drop-down when log level is disabled or forced (#10209) (#10258)
    
    * General Settings GUI: Disable log level drop-down when log level is disabled or forced (#10209)
    
    * Review action https://github.com/nvaccess/nvda/pull/10258#discussion_r326856734
    
    Co-Authored-By: Leonard de Ruijter <leonardder@users.noreply.github.com>
    
    * Fix typos
    
    Review action https://github.com/nvaccess/nvda/pull/10258#discussion_r326938944
    Review action https://github.com/nvaccess/nvda/pull/10258#discussion_r326939086

commit 3f60a531f478b5ffef5ca29d519392cebb7fce24
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Sep 23 17:07:01 2019 +1000

    Update changes file for pr #10234

commit 73f9fabb309972777c34e63e3baba103b33288f0
Author: Łukasz Golonka <wulfryk1@gmail.com>
Date:   Mon Sep 23 08:48:06 2019 +0200

    port of pr 10153 into beta. (#10234)
    
    * port of pr 10153 into beta.
    
    * Update source/appModules/explorer.py
    
    Co-Authored-By: Leonard de Ruijter <leonardder@users.noreply.github.com>
    
    * Update source/appModules/explorer.py
    
    Co-Authored-By: Leonard de Ruijter <leonardder@users.noreply.github.com>

commit a64b16f3200d717aa1cd54bb0f3e4ab10238eafe
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Sep 23 16:32:21 2019 +1000

    Update changes file for pr #10259

commit 0a4a182ffc02c5bb80f93c8c967129bdb9e87217
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Mon Sep 23 08:27:33 2019 +0200

    NVDA logging: add originating thread to log entry (#10259)
    
    * Log thread info
    
    * Name all threads in core
    
    * Fix accidental change of scons submodule
    
    * Small fixes
    
    * Thread name logging: Generalize logging of full qualified names (#10259) (#10)
    
    * Thread name logging: Generalize logging of full qualified names (#10259)
    
    * Review action https://github.com/BabbageCom/nvda/pull/10#discussion_r326867603
    
    Co-Authored-By: Leonard de Ruijter <leonardder@users.noreply.github.com>

commit fd5e0e324fdba498c5e12ec111057d9fc4c1886d
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Mon Sep 23 04:59:07 2019 +0200

    Fix up of: Initial support for reporting revisions (track changes) in Microsoft Word. Re #1670. (#10262)

commit 90fbbdaee27f0f04055c702ca1863f18a5d0b972
Merge: 0e3e0f9c9 3a19c3398
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 20 00:06:10 2019 +1000

    Update translations.
    
    From translation svn revision: 51237

commit 3a19c3398aff8784d8484d058198c286f1116076
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 20 00:06:06 2019 +1000

    L10n updates for: vi
    From translation svn revision: 51237
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    1       1       user_docs/vi/userGuide.t2t
     1 file changed, 1 insertion(+), 1 deletion(-)

commit bf82051bb7f00e27dccd72c2394e82e34667a3f5
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 20 00:06:03 2019 +1000

    L10n updates for: tr
    From translation svn revision: 51237
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    6       6       source/locale/tr/LC_MESSAGES/nvda.po
     1 file changed, 6 insertions(+), 6 deletions(-)

commit 43722a81f4d9714a35ce4cd90080f5a791d3e2c5
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 20 00:05:26 2019 +1000

    L10n updates for: fr
    From translation svn revision: 51237
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess.net>
    
    Stats:
    1       1       source/locale/fr/symbols.dic
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 6c2dfbaa6fd6b7f060993d5d1cfb94636b006a36
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 20 00:05:16 2019 +1000

    L10n updates for: de
    From translation svn revision: 51237
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    3       3       source/locale/de/characterDescriptions.dic
     1 file changed, 3 insertions(+), 3 deletions(-)

commit 0e4bb4ad5380bfadafff30c61466bcf424c251aa
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Wed Sep 18 17:55:22 2019 +0200

    Fix-up of: "displayModel.getCaretRect: return a locationHelper.RectLTRB instance", fixes issue in PuTTY (#10244)
    
    * Fix-up of: displayModel.getCaretRect: return a locationHelper.RectLTRB instance
    
    * Fix linting

commit e77dcbd192204a646a147df479c4a46e747eac80
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Wed Sep 18 08:16:21 2019 +0200

    Fix comInterfaces_sconscript to no longer fail on wrapper module creation (#10235)
    
    * Fix comInterfaces_sconscript to no longer fail on creation
    
    * Monkeypatch instead

commit 340291b9dfd5fa8bd549cbdf583bcb827d5790a5
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Sep 18 07:32:37 2019 +1000

    Ensure short single lines before a prompt are still spoken in terminals  (#10219)
    
    * Ensure that characters are suppressed from being spoken in terminals as new text to stop duplication with speak typed characters only if one line has changed.
    
    * Address review comments.

commit 881803618e685a80ea74b26aa477bf0e1b1a0764
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Sep 18 07:31:22 2019 +1000

    Update changes file for pr #10233.

commit b8265c636eb997e48b5c7efcb6ac1d1f31571497
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Tue Sep 17 23:29:27 2019 +0200

    displayModel.getCaretRect: return a locationHelper.RectLTRB instance (#10233)
    
    * displayModel.getCaretRect: return a locationHelper.RectLTRB instance
    
    * RuntimeError

commit 348c350010e23395e58eb6304292629b106688ef
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Tue Sep 17 10:50:17 2019 +0200

    MS Word: Remove unintended input help message on tab key script (#9943) (#9945)
    
    * MS Word: Remove unintended input help message on tab key script (#9943)
    
    * Fix re https://github.com/nvaccess/nvda/pull/9945#issuecomment-512192251
    
    Turn the faulty docstring into a block comment
    rather than setting the `__doc__` attribute to `None`.
    
    * Fix up: Use the `@script` decorator and preserve the docstring
    
    * Fix up: Reduce diff, allowing for easier blaming and not linting historical comment

commit e51656696635556302611012e80cc92281e87c20
Merge: 1d71aa34d 0e3e0f9c9
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Sep 17 17:25:06 2019 +1000

    Merge branch 'beta'

commit 0e3e0f9c97bee278c648b58062d0ba10c8c1516e
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Sep 17 17:19:38 2019 +1000

    Updated changes file for 2019.2.1 release.

commit 1d71aa34d4f7629cbbdb3b5e6c63c5b222c842f0
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Sep 17 17:10:13 2019 +1000

    Update changes file for pr #9873.

commit dbb1cf1e5e5f3f6b7895a12b037cc16b5f107f37
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Tue Sep 17 09:11:21 2019 +0200

    Hide invisible columns in syslistview32 lists (#9873)
    
    
    
    * Fix linting issues
    
    * Fix typo

commit 1587299bad976a3f8d89bdad827541cbf34cf0e3
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Tue Sep 17 08:59:23 2019 +0200

    Fix up of: Hide the mouse when screen curtain is on (PR #10182) (#10211)
    
    * Fix up of: Hide the mouse when screen curtain is on (PR #10182)
    
    Only hide the mouse when screen curtain effectively turned on.
    This prevents the mouse to disappear if the screen curtain could no be turned
    on because the Windows Magnifier is started.
    
    * Fix up of: Hide the mouse when screen curtain is on (PR #10182)
    
    Review action https://github.com/nvaccess/nvda/pull/10211#discussion_r324069933
    
    * Fix up of: Hide the mouse when screen curtain is on (PR #10182)
    
    Review action https://github.com/nvaccess/nvda/pull/10211#discussion_r324119573

commit 4db20fa793eeb665450810daa3d311b032f9c01e
Merge: a3ebe5aa8 6ce4f4b07
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Sep 17 16:28:17 2019 +1000

    Merge branch 'rc' into beta

commit a3ebe5aa8d33c0c3a049873233c6755f3cd54368
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Tue Sep 17 15:46:31 2019 +1000

    No longer use UIA rangeFromPoint in windows 7 (#10230)

commit 71dbd71835b00d45c7f89d8059dbc9bc86628501
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Tue Sep 17 14:32:48 2019 +1000

    2019.2 backport: VBufStorage: do not delete reference nodes prematurely when replacing subtrees (#10229)
    
    * VBufStorage_buffer_t::replaceSubtrees: move all referenced nodes in a separate loop, before removing the replaced nodes from the backend. Otherwise, some referenced nodes might be prematurely deleted.
    
    * VBufBackend_t::reuseExistingNodeInRender: remove the limitation that a node must be part of the same parent to be reused. This code did not handle descendants and the true underlying cause of crashes has been dealt with in vbufStorage_buffer_t::replaceSubtrees now.
    
    * VBufBackend_t::reuseExistingNodeInRender: correct comment.
    
    * VBufStorage_buffer_t::replaceSubtrees: rename some variables for better understanding and to avoid shadowing variables from an outer scope.

commit 96504b8688dccbccb8f75b853e07bc6f72c8a294
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Tue Sep 17 06:02:25 2019 +0200

    Fix up of: Add filtering functionality to the symbols list (#8790, #10216) (#10218)

commit 59a799a8c72b35e0877ed20d40faef6fa958be3a
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Sep 17 07:08:15 2019 +1000

    Update changes file for pr #10004.

commit 9d04d053db898f9f76c32e1c25af7285d7606c56
Author: Łukasz Golonka <wulfryk1@gmail.com>
Date:   Mon Sep 16 23:05:43 2019 +0200

    Log NVDA version number at the top of the log file to make debugging easier (#10004)
    
    * Log NVDA version number at the top of the log file to make debugging easier. Closes https://github.com/nvaccess/nvda/issues/9803
    
    * Set encoding to UTF-8
    
    * Some fixes for linter
    
    * Second fix for linter
    
    * Standardize copyright header
    
    * Attempt at moving import around to make linter happy

commit 65af2a79da4669992fa1d94194b77485d6a944f7
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Sep 17 06:48:30 2019 +1000

    Update changes file for pr #10212

commit a507d525a92c40252bdbd7d764c058b028e1a701
Author: CyrilleB79 <cyrille.bougot2@laposte.net>
Date:   Mon Sep 16 22:45:29 2019 +0200

    Vocalize MS Word change tracking activation and deactivation. (#10212)
    
    * Vocalize MS Word change tracking activation and deactivation.
    
    * Fix translator comments
    
    * Fix code linting issues

commit 8a7a086b7cf799d97d48083fc704b22b8fc2009f
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Mon Sep 16 11:55:34 2019 +0200

    GUI: Make the Addons dialogs resizable and maximizable (PR #10204)
    
    Issue #6332

commit 30f6cec83c7ffbb6fed0b685f654a6466308b62e
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Mon Sep 16 10:13:12 2019 +0200

    Fix up of: Add filtering functionality to the symbols list (PR #10217)
    
    The replacement control was added to the wrong sizer.
    Issues: (#8790, #10216)

commit 65a2c3c26027837adba3215c9edec611680bdea7
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Sep 13 20:05:00 2019 +1000

    Update changes file for pr #10188.

commit b8205d6e517ed7d6c536d96732cc415386bfde0c
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Fri Sep 13 20:02:59 2019 +1000

    VBufStorage:  do not delete reference nodes prematurely when replacing subtrees (#10188)
    
    * VBufStorage_buffer_t::replaceSubtrees: move all referenced nodes in a separate loop, before removing the replaced nodes from the backend. Otherwise, some referenced nodes might be prematurely deleted.
    
    * VBufBackend_t::reuseExistingNodeInRender: remove the limitation that a node must be part of the same parent to be reused. This code did not handle descendants and the true underlying cause of crashes has been dealt with in vbufStorage_buffer_t::replaceSubtrees now.
    
    * VBufBackend_t::reuseExistingNodeInRender: correct comment.
    
    * VBufStorage_buffer_t::replaceSubtrees: rename some variables for better understanding and to avoid shadowing variables from an outer scope.

commit fb1e9c4e63ee5f9088bde1a6486d110b73f4ca3a
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Fri Sep 13 11:54:21 2019 +0200

    GUI: Allow maximizing settings dialogs that are already resizable (PR #10190)
    
    Settings dialogs that use the resizable keyword arg additionally get the maximise button style
    Issue: #6332

commit c16af5999031d356ba3aa90446a1a259a7e4a9f4
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Fri Sep 13 11:01:33 2019 +0200

    GUI: Allow the Speech Symbols dialog to be enlarged vertically (PR #10198)
    
    Allow the Speech Symbols dialog to be enlarged vertically
    
    Issue: #6332

commit d3161a50f28596ddd805984380b08463b4dd53ac
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Fri Sep 13 10:47:58 2019 +0200

    GUI: Make the Dictionary dialogs resizeable (PR #10203)
    
    Make Dictionary Dialog resizable
    Issue: #6332

commit 866cc7eec8e2d19fb2c83c531342d9d14f47339a
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Fri Sep 13 10:27:18 2019 +0200

    GUI: Make Input Gestures Dialog resizeable (PR #10189)
    
    Issue: #6332
    
    Make the input gesture dialog resizable. For resizable dialogs, setting an initial size on one of the controls in the dialog will affect the minimum size.

commit 77a2e62546eea5e13fd5873afb89ca7e4af62170
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Sep 13 15:35:05 2019 +1000

    Update changes file for pr #10153.

commit 7e42799710f3c554d387adc9417be684c50075a5
Author: Łukasz Golonka <wulfryk1@gmail.com>
Date:   Fri Sep 13 07:33:01 2019 +0200

    No longer crash Windows Explorer on Windows 7 when focusing metadata edit fields (#10153)
    
    * Stop using ITextDocumentTextInfo for metadata fields in Win Explorer under Windows 7. Fixes https://github.com/nvaccess/nvda/issues/5337
    
    * Style
    
    * Review actions

commit c67933a2e56791f69774c98f14cffcba142f6b59
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Sep 13 15:29:49 2019 +1000

    Update changes file for pr #10046.

commit e8cbe952a013dc003329869654800e319b854242
Author: James Teh <jamie@jantrid.net>
Date:   Fri Sep 13 15:28:22 2019 +1000

    Support for ARIA 1.1 combo boxes in Firefox and Chrome. (#10046)
    
    1. If the first child of a combo box is a text box, render that text box in browse mode.
    2. Previously, we treated anything inside a combo box as being outside a browse mode document (#8687). Don't do this for text boxes. Otherwise, you can't switch back to browse mode when the text box has focus.

commit a1086b163c409ef9efa50503aec57490b02fe3da
Author: Clément Boussiron <clement.boussiron@gmail.com>
Date:   Fri Sep 13 07:15:31 2019 +0200

    remove pyd file in installation folder (#10070)
    
    * remove pyd file in installation folder
    
    * not remove python 3 pyd files

commit f5acc93f7c02ec1710d3832ea107c6cdbfdcadae
Author: Larry Wang <41977369+larry801@users.noreply.github.com>
Date:   Fri Sep 13 13:00:32 2019 +0800

    Remove old library files for arm64 (#10085)
    
    * Remove old library files for arm64
    
    * Fix style
    
    * fix other style problems

commit 7030822c670cfbb20bc9212f3c54627d53f5812b
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Sep 13 14:15:38 2019 +1000

    Update changes file for pr #10200.

commit 3f14dddc717166edd423b220eaa2bd0b082f3861
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Thu Sep 12 21:14:04 2019 -0700

    NVDAObjects/UIA/search field: EdgeHTML Edge's address omnibar is no longer a search field. Re #10002. (#10200)
    
    Thanks to UIA auto-select for eit fields, it is no longer necessary to treat Edge's address omnibar as a dedicated search field, in that search results will be announced automatically. This also resolves an issue where NVDA kept playing search suggestion sound when Edge was maximized due to odd controller for event being fired by omnibar itself.

commit b9c81a586067904f2a7f2d716ea2ad70454ce0f9
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Fri Sep 13 06:05:35 2019 +0200

    Fix up of: Fix gui alignment issues (#6287) (#10199)

commit 1e906fb046339a9ad6509205ac44b1c4fe3d3512
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Fri Sep 13 06:03:46 2019 +0200

    Fix up of: Fix gui alignment issues (#6287) (#10205)

commit 003c700f2cef118b22be6b275cf4175bfa7431d9
Merge: ae0f7afae 2e81da1d9
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 13 00:06:18 2019 +1000

    Update translations.
    
    From translation svn revision: 51193

commit 2e81da1d907b7daaa429967c16c6af80d93bd2c1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 13 00:06:17 2019 +1000

    L10n updates for: zh_TW
    From translation svn revision: 51193
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    11      10      source/locale/zh_TW/characterDescriptions.dic
     1 file changed, 11 insertions(+), 10 deletions(-)

commit 585fdc30c201d27b5a00caaf5f1431289940b65f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 13 00:06:01 2019 +1000

    L10n updates for: ru
    From translation svn revision: 51193
    
    Authors:
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    3       1       source/locale/ru/gestures.ini
     1 file changed, 3 insertions(+), 1 deletion(-)

commit c555a40c23b8ee31d4c9f2aeb8075c9c6ea38f8a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 13 00:05:34 2019 +1000

    L10n updates for: hr
    From translation svn revision: 51193
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Tea Turkovic <tturkovi@gmail.com>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    26      26      user_docs/hr/userGuide.t2t
     1 file changed, 26 insertions(+), 26 deletions(-)

commit 464514768f17e6aa8b939e7e6cbedaf505e8b6fb
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 13 00:05:33 2019 +1000

    L10n updates for: hi
    From translation svn revision: 51193
    
    Authors:
    dipendra.lists@gmail.com
    Doc Mehta <joyofinspiring@gmail.com>
    
    Stats:
    215     380     source/locale/hi/LC_MESSAGES/nvda.po
     1 file changed, 215 insertions(+), 380 deletions(-)

commit f5d4315cbea407aac1745c050d9bf50e55107427
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 13 00:05:29 2019 +1000

    L10n updates for: fr
    From translation svn revision: 51193
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess.net>
    
    Stats:
    2       2       user_docs/fr/userGuide.t2t
     1 file changed, 2 insertions(+), 2 deletions(-)

commit 1e1cabeabc3ca983c9761e4883eeec39c1ffbade
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 13 00:05:19 2019 +1000

    L10n updates for: de
    From translation svn revision: 51193
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    2       2       source/locale/de/LC_MESSAGES/nvda.po
     1 file changed, 2 insertions(+), 2 deletions(-)

commit e295dbdd128ee54c7b51040b3dc3ab10c17600a0
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Wed Sep 11 23:18:22 2019 +0200

    Fix reference to nonexistent textInfos.UNIT_DISPLAYCHUNK (#10187)

commit b5e4f73872e7ff64c2556c409db97467e59c4a07
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Sep 11 18:00:56 2019 +1000

    Update changes file for #10080

commit 5eccf58dd04c67821062f0ff00e62cbf6448a7ec
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Wed Sep 11 09:58:02 2019 +0200

    Fix up of: Fix up of: Don't announce 'selected' when the focus moves in Google sheets if the focused cell is the only cell selected (#8898) (#10080)

commit 5061915820da69d67df92e93e33ecdee1d4a2fc8
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Sep 11 08:52:00 2019 +1000

    Update changes file for pr #10114.

commit e02b54845a616d833093a99a943a03d203b048d1
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Tue Sep 10 15:50:16 2019 -0700

    App modules/product name and version: use kernel32::GetPackageFullName to obtain product info for immersive (hosted) apps (#10114)
    
    * App modules/product name and version: obtain product info for immersive (hosted) apps via kernel32::GetPackageFullName function. Re #10108.
    
    On Windows 8 and later, some apps can run inside a container. This is the case for WinRT/UWP apps, some web apps, and converted desktop apps (such as Microsoft Office 365 downloaded from Microsoft Store). For these apps, kernel32.dll::GetPackageFullName returns the 'real' product info such as name and version. Because it'll be returned in a serialized string representation, parse the first two values (name and version).
    To accomodate this change, the former method of obtaining product name and version via file version info has been moved to an internal function inside product info setter method. This function will be invoked if:
    * This is Windows 7/Server 2008 R2 (no support for containers yet).
    * An immersive app that is really a native pap (such as File Explorer).
    * Converted desktop apps that will not expose version info via file version info structure (such as Notepad in 20H1 Preview build 18963 and later).
    For consistency with immersive app info structure, the modified function will return a 2-tuple that records product name and version in that order.
    
    * App module handler/product name and version: _executableFileInfo -> _getExecutableFileInfo. Re #10108.
    
    Reviewed by Mick Curran (NV Access): because of what the internal function does, it is better to give it a more descriptive name than just 'executable file info'.
    
    * App module handler/product name and version for immersive apps: typo fix.
    
    * Product name and version: separate executable file info function to its own method in base pap module. Re #10108.
    
    Suggested by Leonard de Ruijter (Babbage): transform executable file info function from an internal one to a private method in base app module for ease of future maintenance.

commit 327482df54cdd58610d507675a909d6149f68b21
Author: Bill Dengler <codeofdusk@gmail.com>
Date:   Tue Sep 10 18:47:04 2019 -0400

    Automatically enable UIA in consoles on Windows 10 1809 and later. (#10129)

commit abb9f55bd98f27f611c9163a5a1257b3f786d871
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Wed Sep 11 00:41:27 2019 +0200

    Fix up of: Launcher: Default to replacing an already running NVDA (#8320, #9827, #10179) (#10183)

commit 23430002d6129215e797639072692eaa566e6a94
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Tue Sep 10 15:58:09 2019 +0200

    Hide the mouse when screen curtain is on (PR #10182)
    
    Use the MagShowSystemCursor function to hide the mouse.
    Fixes #10181

commit 56f5fcd22829fdd4d8378fd6bd7c5e4b329c2b53
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Sep 10 11:03:41 2019 +1000

    Update changes file for pr #9660.

commit 45f9ac692469fabbd6cbbb8b5d7694c51a5d5d5f
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Tue Sep 10 03:02:02 2019 +0200

    Use auto select detection for UIA when listening for TextChanged and TextSelectionChanged events (#9660)
    
    * Use auto select detection for UIA when listening for TextChanged and TextSelectionChanged events
    
    * event_valueChange, make sure we match on UIATextInfo and subclasses to ignore them if appropriate
    
    * Make sure event_caret in UIABrowseMode executes nextHandler when in focus moude
    
    * Remove event_caret override from UIABrowseMode
    
    * Fix autoselect detection in Excel edit fields
    
    * Fix most linting warnings
    
    * More error fixes, except for f405
    
    * Fix linting issues

commit ac5f4fb4fc3a17e1ab952cd33fdaca81b8444dd0
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Sep 10 09:39:19 2019 +1000

    Update changes file for pr #9827.

commit 4e8073d34533055d778e208a5730edbd1aa57ec4
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Tue Sep 10 01:36:35 2019 +0200

    Launcher: Default to replacing an already running NVDA (#8320) (#9827)
    
    * An already running NVDA is always terminated, unless -k|--check-running
     * -q|--quit and -k|--check-running are now mutually exclusive
     * Updated User Guide
        * Launching NVDA
        * Command Line Options

commit 37b118a6823a2fe7f1355dd9db48f97ef4b6c52a
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Tue Sep 10 01:14:43 2019 +0200

    Align braille input fall-back table to the default configuration (#9863) (#9864)

commit 99e523ad8072826bc7fc1db434be2a6f5d5a9cae
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Sep 10 08:57:14 2019 +1000

    Update changes file for pr #10104.

commit 368cc35192c711c086eda942982e2f8293b35138
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Tue Sep 10 00:56:12 2019 +0200

    No longer use UIA rangeFromPoint in windows 7 (#10104)

commit f8772c3a310bcff1069d8531b3de29b99dc700ea
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Sep 10 08:50:51 2019 +1000

    Update changes file for pr #10111.

commit f8280f4243ca97c7d96eadbfac00e25f8e5bd21f
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Tue Sep 10 00:48:12 2019 +0200

    Prevent system sleep when reading lon pieces of text with braille only (#10111)
    
    * Prevent system from being idle when a braille display gesture is executed
    
    * Lint actions
    
    * Review action

commit b819014b19959c9cfc179ae1d632738b65a06a5b
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Sep 10 08:41:38 2019 +1000

    Update changes file for pr #10165.
    Also fix some indenting in changes for Developers section.

commit a9bce469670c3428f9f5e7f1cfa8cb5556c99ae9
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Tue Sep 10 00:36:44 2019 +0200

    Implement new displayChunk unit for display model (#10165)
    
    * Implement readingChunk unit support for display model
    
    * create displayModel.UNIT_DISPLAYCHUNK and use that instead of UNIT_READINGCHUNK
    
    * Type hints for _storyFieldsAndRects, ensure that we alrways return 4 lists

commit 7eacfe0da33a5f65d2c542cf3d0cb75517371c56
Author: James Teh <jamie@jantrid.net>
Date:   Tue Sep 10 08:20:21 2019 +1000

    Gecko vbuf backend: Remove old workaround for old versions of Firefox which didn't fire reorder on iframes. (#10174)
    
    In Firefox <= 3.5, a reorder event wasn't fired on an iframe when its embedded document changed (Mozilla bug 420845).
    To work around this, the Gecko vbuf had code in its win event callback to retrieve the target for stateChange events and query the NODE_CHILD_OF relation to get the iframe.
    This was fixed in Firefox 3.6 (10 years ago) and thus is no longer needed.
    Also, this code causes us to retrieve objects unnecessarily in the win event callback, which does matter more in Firefox now that these are cross-process calls.
    Although I wouldn't have thought this would have much of a performance impact, this code path does show up in Firefox profiling.

commit 5823f604f84a840719473e092e7bd5c3e24b7099
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Sep 9 09:34:40 2019 +1000

    Update changes file for #10008.

commit 39dd2aaa8bce051e1a2fa37fb203c2c7f44c42d7
Author: Łukasz Golonka <wulfryk1@gmail.com>
Date:   Mon Sep 9 01:32:47 2019 +0200

    No longer treat spaces as separate words when using  text review commands in Scintilla based editors (#10008)
    
    * No longer thread spaces as a separate words when using  text review commands in Scintilla based editors. Fix for https://github.com/nvaccess/nvda/issues/8295
    
    * Make space a constant
    
    * Add spaces in the commend to make linter work
    
    * Additional changes for linter
    
    * Last changes for linter

commit 6fadac5a995f297cf907f5aaf53f5ffea2500fba
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Sep 9 07:54:02 2019 +1000

    Update changes file for pr #10144.

commit db1524ed63e75c9088effebdf7d3a9e10838565e
Author: Łukasz Golonka <wulfryk1@gmail.com>
Date:   Sun Sep 8 23:51:16 2019 +0200

    No longer fail to present UI elements in Audacity compressor dialog (#10144)
    
    * Fix for https://github.com/nvaccess/nvda/issues/10103
    
    * Style

commit ff8b3a2143bb8de68d96083f4844036c9a45f2c8
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Sun Sep 8 23:28:17 2019 +0200

    winUser.py: Add missing mouse related constants (#10171)

commit ed940201c24ab2ebd8aa9faa81c4b1c2779e3f08
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Fri Sep 6 16:12:58 2019 +0200

    Updated changes file for PR  #10090

commit c628071d8bae168fcb3ffdd06ce49aa8d5e7cf43
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Fri Sep 6 16:09:06 2019 +0200

    Vision framework: add a screen curtain (PR #10090)
    
    The screen curtain uses the Windows Magnification API to color the screen black.
    A color transform matrix is applied to the whole screen.
    This feature is limited to Windows 8 and above.

commit ae0f7afae7b9e0ee393f879ef4173d578d0760c7
Merge: 0887269f7 8e1394fdc
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 6 00:06:11 2019 +1000

    Update translations.
    
    From translation svn revision: 51136

commit 8e1394fdc31ce1e882a0d4a99056436e60fd0355
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 6 00:05:26 2019 +1000

    L10n updates for: fr
    From translation svn revision: 51136
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess.net>
    
    Stats:
    1       1       source/locale/fr/gestures.ini
    30      33      user_docs/fr/userGuide.t2t
     2 files changed, 31 insertions(+), 34 deletions(-)

commit 4b53f8764fc19236450a162c7fb0ae62f197e1d5
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Sep 3 13:40:03 2019 +1000

    Update changes file for pr #10157.

commit 3fb8d546ddc14a8759d4ca9c1a2d36e5fc8293dc
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Tue Sep 3 05:38:35 2019 +0200

    Implement bounding rectangle support for java text ranges (#10157)
    
    * Implement bounding rectangle support for java text ranges
    
    * Fix lint issues, also fix an additional undefined name issue while at it

commit 15a4675a5ffe06a645ea3811f5b657a128748964
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Tue Sep 3 05:19:22 2019 +0200

    Fix another wordOffsets bug causing java text ranges to fail (#10158)

commit 861634fb00054085376f62ef7ae95ad606571641
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Tue Sep 3 05:12:30 2019 +0200

    Fix up of: Abstract vision framework with included support for focus, navigator object and browse mode caret highlighting (PR #9064) (#10160)

commit 7987169fa3cb2050b984f8d7640debd070482c59
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Sep 2 09:40:16 2019 +1000

    Remove threshold and threshold_py3_staging from branches to automatically build in appveyor.yaml as work on these branches is complete.

commit 0887269f736664177a91bc7c6977b12401d8d40c
Merge: 89d532cd3 0a97d1282
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 30 00:06:13 2019 +1000

    Update translations.
    
    From translation svn revision: 51065

commit 0a97d1282f503596e6e3b342b54c3a7897e46f14
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 30 00:06:13 2019 +1000

    L10n updates for: zh_TW
    From translation svn revision: 51065
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    25      25      source/locale/zh_TW/characterDescriptions.dic
     1 file changed, 25 insertions(+), 25 deletions(-)

commit 22d7cfc7ac6fefa58aef257d8e9e8be54c83d39b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 30 00:06:11 2019 +1000

    L10n updates for: zh_CN
    From translation svn revision: 51065
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    
    Stats:
    1       1       source/locale/zh_CN/characterDescriptions.dic
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 16c17a7ce25ca9f61ed76ab2b6b41b2066bb62a1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 30 00:05:51 2019 +1000

    L10n updates for: pl
    From translation svn revision: 51065
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <hubert.meyer@wp.pl>
    
    Stats:
    4       4       source/locale/pl/LC_MESSAGES/nvda.po
     1 file changed, 4 insertions(+), 4 deletions(-)

commit 1ce4e5d7a0a1dfe4ea7b0640c9b906d61f898b78
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 30 00:05:27 2019 +1000

    L10n updates for: fr
    From translation svn revision: 51065
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess.net>
    
    Stats:
    6       6       source/locale/fr/LC_MESSAGES/nvda.po
     1 file changed, 6 insertions(+), 6 deletions(-)

commit 2a1305656e4b685af0a08e587a50afbdc629ff3d
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Wed Aug 28 18:09:08 2019 +0200

    Update changes file for PR #10102

commit e874975fe4a0c81b5280e079371115221cb08d35
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Wed Aug 28 18:08:59 2019 +0200

    No longer warn for abstract class properties, as they are now supported (PR #10102)
    
    When we introduced abstract auto (class) properties in baseObject (#8393), we introduced an exception for abstract class properties, as they aren't supported by Python 2. In Python 3, abstract class properties are supported.

commit 65482a7b0853e7fd6036b950028817f78704a6c0
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Wed Aug 28 18:05:07 2019 +0200

    Fix word offsets fetching for uniscribe and non encoded textInfo (PR #10152)
    
    Fix basic _getWordOffsets implementation on OffsetsTextInfo. Make sure that we convert all offsets from str offsets to widestring offsets and back. Also make sure that we do not accidentally leak offsets for our uniscribe workaround into the actual returned offsets.
    
    fixes #10151

commit 8c27752f5ab06ce1c2288b50e9cf99903e464334
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Thu Aug 22 18:28:51 2019 +0200

    Leave decoding of add-on manifests up to configobj (PR #10077)
    
    Installing and loading add-ons with manifests encoded in UTF-8 with BOM was raising an error.
    Instead, manifests in add-ons are now opened in binary mode. Decoding the contents of the manifest is now again the responsibility of configobj.

commit 89d532cd35fa98005ab551a9856584630ec5da62
Merge: a58b4e3f5 7fa0f00fe
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 23 00:06:13 2019 +1000

    Update translations.
    
    From translation svn revision: 50938

commit 7fa0f00feba2793598f9ceef610f8a1bd00b6099
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 23 00:06:13 2019 +1000

    L10n updates for: zh_TW
    From translation svn revision: 50938
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    16      17      source/locale/zh_TW/characterDescriptions.dic
     1 file changed, 16 insertions(+), 17 deletions(-)

commit 9e2693a30341d0f404f1322cc2e5eb1bf81079ca
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 23 00:05:49 2019 +1000

    L10n updates for: nl
    From translation svn revision: 50938
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    9       9       source/locale/nl/LC_MESSAGES/nvda.po
     1 file changed, 9 insertions(+), 9 deletions(-)

commit 30248f80723c7e8f24cf6f970231e8e09d96486e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 23 00:05:28 2019 +1000

    L10n updates for: fr
    From translation svn revision: 50938
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess.net>
    
    Stats:
    6       6       source/locale/fr/LC_MESSAGES/nvda.po
     1 file changed, 6 insertions(+), 6 deletions(-)

commit 02ee366206f83e9cdf2d496235362da23be5ca6b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 23 00:05:18 2019 +1000

    L10n updates for: de
    From translation svn revision: 50938
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    3       5       source/locale/de/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 5 deletions(-)

commit 4d384fa25b5a0a6ff3ba10212f93cfcb46c41264
Author: Bill Dengler <codeofdusk@gmail.com>
Date:   Thu Aug 22 06:01:23 2019 -0400

    Disables caret events for all Terminal objects (PR #10118)
    
    In Mintty, the last character of the prompt was being read when quickly deleting text, just as in Windows Console (see this comment and the "summary of the issue" section in #9986).
    
    This change disables caret events for all Terminal objects by overriding NVDAObjects.behaviors.Terminal._get_caretMovementDetectionUsesEvents, instead of only Windows Console like in #9986.
    
    Closes #1348.
    Related to #9933, #9986.

commit a8e8db192885a0c902bb07aaf5b194bb6039e383
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Fri Aug 16 12:34:58 2019 +0200

    Ensure that no reference is kept to sapi4 synth on terminate (PR #10078)
    
    When switching from SAPI4 to another synth, a reference to the sapi4 object is kept alive by a circular reference on the com Sink.
    
    Modified the design of both SAPI4 and 5 to clarify the use of weakRefs

commit a58b4e3f59743aadede66a97e4607fc5ab2f48b2
Merge: f008d4782 eeb1bd3c2
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 16 00:06:12 2019 +1000

    Update translations.
    
    From translation svn revision: 50776

commit eeb1bd3c2598c94471e3d630c609174057ffcb12
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 16 00:06:12 2019 +1000

    L10n updates for: zh_TW
    From translation svn revision: 50776
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    1       1       source/locale/zh_TW/LC_MESSAGES/nvda.po
    1       3       user_docs/zh_TW/changes.t2t
    1       4       user_docs/zh_TW/userGuide.t2t
     3 files changed, 3 insertions(+), 8 deletions(-)

commit 6a64c13682c3006bd5a3f6d9fa989ef9a32d14c0
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 16 00:06:08 2019 +1000

    L10n updates for: vi
    From translation svn revision: 50776
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    3       3       source/locale/vi/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 3 deletions(-)

commit 4010cd0cb1dcfca4cd6f5949d34b6191697c454f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 16 00:06:06 2019 +1000

    L10n updates for: uk
    From translation svn revision: 50776
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    1       4       user_docs/uk/userGuide.t2t
     1 file changed, 1 insertion(+), 4 deletions(-)

commit 257d443e3c3cd5f1524fa9b64a14733cc3babf60
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 16 00:05:27 2019 +1000

    L10n updates for: fr
    From translation svn revision: 50776
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess.net>
    
    Stats:
    2       0       source/locale/fr/symbols.dic
     1 file changed, 2 insertions(+)

commit b988eb5f2a530b30dee372c2f39d415dda12f883
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 16 00:05:17 2019 +1000

    L10n updates for: de
    From translation svn revision: 50776
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    3       3       user_docs/de/userGuide.t2t
     1 file changed, 3 insertions(+), 3 deletions(-)

commit dade58cd6fcda768ee9dd1bfd8205a28adcbf78b
Merge: 85c584761 6ce4f4b07
Author: Reef Turner <reef@nvaccess.org>
Date:   Wed Aug 14 16:54:57 2019 +0200

    Merge remote-tracking branch 'origin/rc'

commit 6ce4f4b0718b19e81a1d828195008a6ac7b6b337
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Wed Aug 14 16:37:38 2019 +0200

    Small gramatical fixes to changes file.

commit 85c584761ab80a36ea3fb6be86881ad2a2780aaf
Author: Bill Dengler <codeofdusk@gmail.com>
Date:   Wed Aug 14 09:52:35 2019 -0400

    Fix bugs in the set/compare endPoint overrides. (PR #10091)

commit 26485a0973f82c85188607b6ec9f5353f51168c1
Author: Bill Dengler <codeofdusk@gmail.com>
Date:   Tue Aug 13 10:47:17 2019 -0400

    UIA in WinConsole: Always use ConsoleUIATextInfo for UIA consoles (PR #10052)
    
    NVDA was dynamically selecting the wrong TextInfo implementation (see NVDAObjects.UIA.UIA._getTextInfo).
    Instead we override the _get_TextInfo method of NVDAObjects.UIA.UIA to return ConsoleUIATextInfo instead of UIATextInfo.
    ConsoleUIATextInfo will properly handle collapsed textRanges in UIA consoles.

commit e35f7ae26276e6437399f67255418bc9a3511256
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Fri Jun 28 19:16:03 2019 +0200

    Support copying a fragment of the log to the clipboard (#9280)

commit 4e459568daad8423ec5015aaaf130f6302fb067f
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Wed Jul 10 22:52:22 2019 +0200

    Browseable Messages - Centered and enlarged (#9910)

commit ac5ab409fa5dcf526377f284f7a798179b8c3cce
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Mon Aug 12 21:06:39 2019 +0200

    Update changes file for PR #9064

commit 5ad32bf4e72d9f43a5df623bf21703d49bdc3316
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Mon Aug 12 21:03:57 2019 +0200

    Abstract vision framework with included support for focus, navigator object and browse mode caret highlighting (PR #9064)
    
    Foundations of framework to enable:
    
    - #7857: Making the screen black (i.e. a screen curtain) while NVDA is active, mainly for privacy reasons
    - #971: Visual highlight of focus, review or browse mode caret location
    - Basic screen magnification facility within NVDA.
    
    This pr intends to lay the base of a vision framework that can be used to implement such functionality in the core of NVDA. Though there is no GUI in the current pull request, the framework is functional.

commit 39d20e29a87b7ab74d0cea3cc1c459aa956d9092
Author: Bill Dengler <codeofdusk@gmail.com>
Date:   Mon Aug 12 14:12:18 2019 -0400

    UIA in Win Console: fix setEndPoint/compareEndPoints (PR #10057)
    
    Closes #10035
    Related to #9614
    Identical to #10043
    
    Works around a UIA bug on Windows 10 1803 and later that means we can
    not trust the "end" endpoint of a collapsed (empty) text range for comparisons.
    The console incorrectly reports the "end" as being past the "start" endpoint.
    
    This stops braille being able to properly track the system caret in Windows Console.
    
    Instead use getText(1) on the textRange to attempt to fetch 1 character.
    getText returns an empty string for a collapsed range. By definition, the "start" and
    "end" endpoints for a collapsed range are equivalent, thus read from the "start"
    endpoint of a collapsed range instead of the "end" endpoint.

commit 70851728fe2b02f6486b83b76dcd083c99755311
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Mon Aug 12 19:30:02 2019 +0200

    Guide: address common lint errors (#10050)
    
    Developers are having trouble to know how to resolve certain lint errors.
    
    Specifically misleading is ET128 (flake8-tabs) unexpected number of tabs and spaces at start of expression/definition line. It is likely that flake8 is expecting a code alignment style, rather than hanging indent style in this case. To make it expect hanging indent, first ensure that there is a newline after the opening paren/bracket/brace.

commit f008d4782b75e56902854c8440c607f8df7e7b0b
Merge: 5634710a7 f03b1181c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 9 00:06:12 2019 +1000

    Update translations.
    
    From translation svn revision: 50715

commit f03b1181cab4a7dcef4b310ec6c110fb16f6e9dd
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 9 00:06:11 2019 +1000

    L10n updates for: zh_TW
    From translation svn revision: 50715
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    71      71      source/locale/zh_TW/LC_MESSAGES/nvda.po
     1 file changed, 71 insertions(+), 71 deletions(-)

commit 14d5834cbf9b06e040c671c31c1f710b577c856f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 9 00:06:09 2019 +1000

    L10n updates for: zh_CN
    From translation svn revision: 50715
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    
    Stats:
    0       4       user_docs/zh_CN/changes.t2t
    0       3       user_docs/zh_CN/userGuide.t2t
     2 files changed, 7 deletions(-)

commit 7304138d30ef75e9eb06a0497c29b748f43a8e50
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 9 00:05:18 2019 +1000

    L10n updates for: de
    From translation svn revision: 50715
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    93      80      source/locale/de/LC_MESSAGES/nvda.po
     1 file changed, 93 insertions(+), 80 deletions(-)

commit b4db7dca62fc3cdaaddbecba6af879f7be44aed0
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Wed Aug 7 18:33:22 2019 +0200

    Clarify UIA console whats new
    
    Fixes to changes file for UIA console items with similar qualifiers

commit 5634710a7791c0019b8f7299316094364481bbc4
Merge: 90516aec9 af5939864
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Aug 7 22:10:55 2019 +1000

    Update translations.
    
    From translation svn revision: 50704

commit af5939864c187ab5c68bc5ba8f19da69745d8b0c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Aug 7 22:10:54 2019 +1000

    L10n updates for: zh_TW
    From translation svn revision: 50704
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    2       2       source/locale/zh_TW/symbols.dic
     1 file changed, 2 insertions(+), 2 deletions(-)

commit 5677ef0bbaf5f9043bb2bbceaf8a53c4a9312d78
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Aug 7 22:10:50 2019 +1000

    L10n updates for: vi
    From translation svn revision: 50704
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    1       3       user_docs/vi/changes.t2t
    0       3       user_docs/vi/userGuide.t2t
     2 files changed, 1 insertion(+), 6 deletions(-)

commit f5c7a792d7d7e9b545f14dcdc9b2137e67a5b4fb
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Aug 7 22:10:48 2019 +1000

    L10n updates for: tr
    From translation svn revision: 50704
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    1       3       user_docs/tr/changes.t2t
    0       3       user_docs/tr/userGuide.t2t
     2 files changed, 1 insertion(+), 6 deletions(-)

commit 52faa59be2d333ce3e5c47412340f17279ba2fd3
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Aug 7 22:10:46 2019 +1000

    L10n updates for: ta
    From translation svn revision: 50704
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    0       3       user_docs/ta/userGuide.t2t
     1 file changed, 3 deletions(-)

commit 2a8e5bbc85f7507e22e915baee4c1b01c4c026ce
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Aug 7 22:10:44 2019 +1000

    L10n updates for: sr
    From translation svn revision: 50704
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    0       2       user_docs/sr/changes.t2t
    0       3       user_docs/sr/userGuide.t2t
     2 files changed, 5 deletions(-)

commit be7d302ca12af6f32b3e17771fa9ce5fd29b8940
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Aug 7 22:10:42 2019 +1000

    L10n updates for: sl
    From translation svn revision: 50704
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    0       3       user_docs/sl/userGuide.t2t
     1 file changed, 3 deletions(-)

commit 6d0dd245f6d8d85654d9681392f7523d0eab4ccf
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Aug 7 22:10:41 2019 +1000

    L10n updates for: sk
    From translation svn revision: 50704
    
    Authors:
    Ondrej Rosik <ondrej.rosik@gmail.com>
    Peter Vagner <peter.v@datagate.sk>
    Jan Kulik <jan.kulik.szsle@outlook.sk>
    
    Stats:
    0       2       user_docs/sk/changes.t2t
    0       3       user_docs/sk/userGuide.t2t
     2 files changed, 5 deletions(-)

commit 931581ab2af167a6cda0e75a502e1fe23a770177
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Aug 7 22:10:40 2019 +1000

    L10n updates for: ru
    From translation svn revision: 50704
    
    Authors:
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    0       2       user_docs/ru/changes.t2t
    1       4       user_docs/ru/userGuide.t2t
     2 files changed, 1 insertion(+), 6 deletions(-)

commit 328e20bcb4d2a3156f042f708ab1c335824372b7
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Aug 7 22:10:37 2019 +1000

    L10n updates for: ro
    From translation svn revision: 50704
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <contact@florian-ionascu.ro>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    
    Stats:
    0       2       user_docs/ro/changes.t2t
    0       3       user_docs/ro/userGuide.t2t
     2 files changed, 5 deletions(-)

commit d86026ee184343634cb64a052076645eee943437
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Aug 7 22:10:36 2019 +1000

    L10n updates for: pt_PT
    From translation svn revision: 50704
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    0       2       user_docs/pt_PT/changes.t2t
    0       3       user_docs/pt_PT/userGuide.t2t
     2 files changed, 5 deletions(-)

commit 7cf1372d65168a165384ebc9f7e3f823640c8e2c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Aug 7 22:10:34 2019 +1000

    L10n updates for: pt_BR
    From translation svn revision: 50704
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    0       2       user_docs/pt_BR/changes.t2t
    0       3       user_docs/pt_BR/userGuide.t2t
     2 files changed, 5 deletions(-)

commit decceb976e432f03bc06d05c1a1316817b1a6ac1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Aug 7 22:10:32 2019 +1000

    L10n updates for: pl
    From translation svn revision: 50704
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <hubert.meyer@wp.pl>
    
    Stats:
    0       2       user_docs/pl/changes.t2t
    0       3       user_docs/pl/userGuide.t2t
     2 files changed, 5 deletions(-)

commit 048edbd07a0b2583754934399ee125353f764fde
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Aug 7 22:10:30 2019 +1000

    L10n updates for: nl
    From translation svn revision: 50704
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    0       2       user_docs/nl/changes.t2t
    1       4       user_docs/nl/userGuide.t2t
     2 files changed, 1 insertion(+), 6 deletions(-)

commit 0423e1b6867fe145751ce6bac125a56fe44f8089
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Aug 7 22:10:20 2019 +1000

    L10n updates for: ja
    From translation svn revision: 50704
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    0       2       user_docs/ja/changes.t2t
    0       3       user_docs/ja/userGuide.t2t
     2 files changed, 5 deletions(-)

commit 479175483b12a49a60f509b89d922454e8684a10
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Aug 7 22:10:18 2019 +1000

    L10n updates for: it
    From translation svn revision: 50704
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    0       2       user_docs/it/changes.t2t
    8       3       user_docs/it/userGuide.t2t
     2 files changed, 8 insertions(+), 5 deletions(-)

commit 6bd58ad05a602a29d4aee54d2d5998130a58347f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Aug 7 22:10:14 2019 +1000

    L10n updates for: hr
    From translation svn revision: 50704
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Tea Turkovic <tturkovi@gmail.com>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    0       2       user_docs/hr/changes.t2t
    1       4       user_docs/hr/userGuide.t2t
     2 files changed, 1 insertion(+), 6 deletions(-)

commit c26ef85f06ce059be61a3409da8defa92752bffb
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Aug 7 22:10:11 2019 +1000

    L10n updates for: gl
    From translation svn revision: 50704
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    
    Stats:
    0       2       user_docs/gl/changes.t2t
    0       3       user_docs/gl/userGuide.t2t
     2 files changed, 5 deletions(-)

commit a61b5e89bcc7218451133ce6280d176f8c57c128
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Aug 7 22:10:09 2019 +1000

    L10n updates for: fr
    From translation svn revision: 50704
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess.net>
    
    Stats:
    0       2       user_docs/fr/changes.t2t
     1 file changed, 2 deletions(-)

commit 16e756548967981ccc9a1dc77d999abd565ccbb0
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Aug 7 22:10:07 2019 +1000

    L10n updates for: fi
    From translation svn revision: 50704
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    0       2       user_docs/fi/changes.t2t
    0       3       user_docs/fi/userGuide.t2t
     2 files changed, 5 deletions(-)

commit a5fc1d4c5fdc138ea414dc2ce971a07e04fb1ffa
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Aug 7 22:10:06 2019 +1000

    L10n updates for: fa
    From translation svn revision: 50704
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    0       2       user_docs/fa/changes.t2t
    0       3       user_docs/fa/userGuide.t2t
     2 files changed, 5 deletions(-)

commit 4d71aa698dca1e6f58e25d3dee191b53d3b36cfd
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Aug 7 22:10:04 2019 +1000

    L10n updates for: es
    From translation svn revision: 50704
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    0       2       user_docs/es/changes.t2t
    0       3       user_docs/es/userGuide.t2t
     2 files changed, 5 deletions(-)

commit 10b450d04deafe38ff025988ea12f6e2091886b0
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Aug 7 22:09:59 2019 +1000

    L10n updates for: de
    From translation svn revision: 50704
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    1       4       user_docs/de/changes.t2t
    0       3       user_docs/de/userGuide.t2t
     2 files changed, 1 insertion(+), 7 deletions(-)

commit 43b6c512e1231ceb9cc14e093122648d0ce4c59f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Aug 7 22:09:56 2019 +1000

    L10n updates for: da
    From translation svn revision: 50704
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    0       2       user_docs/da/changes.t2t
    0       3       user_docs/da/userGuide.t2t
     2 files changed, 5 deletions(-)

commit 575c2971ec9a8684a5aa6dd3ed55f4575b992289
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Aug 7 22:09:52 2019 +1000

    L10n updates for: bg
    From translation svn revision: 50704
    
    Authors:
    Zahari Yurukov <zahari.yurukov@gmail.com>
    Kostadin Kolev <k_kolev1985@mail.bg>
    
    Stats:
    0       2       user_docs/bg/changes.t2t
    1       3       user_docs/bg/userGuide.t2t
     2 files changed, 1 insertion(+), 5 deletions(-)

commit 2992bca782f6d26ee2112ca19744f80b93bbc2c2
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Aug 7 22:09:49 2019 +1000

    L10n updates for: ar
    From translation svn revision: 50704
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>, Omar Alojaimi <amrahmad1995@gmail.com>
    
    Stats:
    0       2       user_docs/ar/changes.t2t
    0       3       user_docs/ar/userGuide.t2t
     2 files changed, 5 deletions(-)

commit 8f4909b5ef474825d5954b264d45935fd84b6a9c
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue Aug 6 11:21:32 2019 +0200

    Update contributors file
    
    This commit adds translator Doc Mehta (at their request) and normalises line endings.

commit ddf27fa7200c3750aa3a57066d48da7c91322505
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Mon Aug 5 13:29:02 2019 -0700

    Update changes file for PR's from threshold branch (PR #9942)
    
    Fixes #9862

commit f27bfedc15fd55427646684e994b4a0c67aa8120
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Mon Aug 5 13:40:56 2019 +0200

    Don't use pycodestyle-indent checks (PR #10037)
    
    They do not seem to be compatible with tabs.
    
    In particular E125 is causing problems.

commit 7b5cd2d09c227051a9bc7162740e24108cae6322
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Fri Aug 2 20:41:07 2019 +0200

    Fix alpha updates and lint error reporting (PR #10020)
    
    - Fix NVDA exe upload location
      - When the artifacts are uploaded, they need to preserve the folder structure.
    - Fix failure to upload lint errors to unit test results
      - Decoding as UTF-8 was not working for lint output, use ANSI and replace on error instead.
    - Changes to config of Flake8
      - Particularly flake8-tabs settings and its overlap with pycodestyle

commit 2989b57f6a39972b54910e22eba76b51e1a6238a
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Fri Aug 2 20:38:23 2019 +0200

    Update changes file for PR #9771

commit 216e4767e3f758fc6bed2357b0f6a008e05fae3f
Author: Bill Dengler <codeofdusk@gmail.com>
Date:   Fri Aug 2 14:32:19 2019 -0400

    UI Automation in Windows Console: Make UIA the default for Windows 10 1803 and later (PR #9771)
    
    NVDA's UIA console support significantly improves performance and stability, so we should enable it by default.
    
    While UIA in consoles was added in Windows 10 1709, the initial implementation left much to be desired, particularly concerning caret movement and expansion to character.
    
    A new `UIAUtils.shouldUseUIAConsole` function has been added which determines whether to use UIA in consoles:
    * If the user has explicitly chosen to use UIA or legacy console support, the function returns `True` or `False` respectively.
    * Otherwise, if the user is running at least Windows 10 1803, the function returns `True`, or `False` if not.
    
    The "use UI Automation in the Windows Console when available" GUI setting has been changed to expose all options in the config spec (i.e. to automatically detect UIA/legacy or override this autodetection).
    
    builds on #9614
    closes #673
    closes #6291

commit 90516aec92559fc0b439b22e5c911e2d4cba0781
Merge: 04a603e6e aa2de9cc1
Author: Reef Turner <reef@nvaccess.org>
Date:   Thu Aug 1 18:17:00 2019 +0200

    Merge remote-tracking branch 'origin/rc' into beta

commit aa2de9cc1f7ddf8133cd823498041576adf1dc7a
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Thu Aug 1 09:14:47 2019 -0700

    Revert search history (PR #9993)
    
    Revert "History in search dialog (PR #8921)"
    
    Although useful, search history combo box does not allow languages requiring IME (input method editor) to cancel entry of search text. This affects Chinese, Japanese, Korean and other languages.
    
    This reverts commit e3b2e797cbcdada8522bb872d55b92a265a041f0.
    
    Keep the "Searching for text section" in the user guide as most of the section
    is accurate and there are links to this section in other parts of the document.
    
    Only remove lines that refer to search history.

commit 1af8775930e53766f67c28dea42ee9c958a7c12d
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Thu Aug 1 17:28:48 2019 +0200

    Update changes file for PR #9957

commit 8a8c1c2509aaa54d1fe1d4365c0ac99c5d8f9395
Author: Bill Dengler <codeofdusk@gmail.com>
Date:   Thu Aug 1 11:28:42 2019 -0400

    UI Automation in Windows Console: improve reliability of visible range checks (PR #9957)
    
    Builds on #9614
    Supersedes #9735 and #9899
    Closes #9891
    
    Previously, after the console window was maximized (or the review cursor is otherwise placed outside the visible text), text review is no longer functional.
    The review top line and review bottom line scripts do not function as intended.
    
    This commit changes:
    - The isOffscreen property has been implemented as UIAUtils.isTextRangeOffscreen.
    - When checking if the text range is out of bounds, we now also check that oldRange is in bounds before stopping movement.
    - Re-implemented POSITION_FIRST and POSITION_LAST in terms of visible ranges.

commit 83d72334518ff7d26449c9676e39dd948533c6a6
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Thu Aug 1 17:05:53 2019 +0200

    Update changes file for PR #9958

commit e68ce2d0733bb9c75229452a1828d9a0e530c3f0
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Thu Aug 1 17:04:52 2019 +0200

    Integrate Flake8 linting with SCons (PR #9958)
    
    Code contributors regularly have to deal with ill-defined and inconsistently enforced code style requirements. Code reviewers spend much of their time reporting minor issues, time that would be better spent looking for architectural problems / product issues / logic errors.
    
    In this commit we introduce automated checking of python style. The diff from new PR's will be tested for compliance with Flake8. The NVDA Python code already contains several inconsistent styles, so rather than try to match it I have tried to configure Flake8 to use the default style guidelines as much as possible.
    
    Added two new SCons build targets:
    - `lint`
      - creates a unified diff with `git diff -U0 $(git merge-base <baseBranch>)`
        - A helper script is used to generate this diff (`tests\lint\genDiff.py`)
      - The diff is piped to `flake8` to perform the linting.
      - The output is printed to stdout and also to `tests/lint/current.lint`
    - `lintInstall`
      - required by `lint`.
      - Uses pip to install dependencies from a `requirements.txt` file.
    
    AppVeyor changes:
    - Adds a new script for tests phase of build
    - Mostly does what SCons does, does not need to worry about getting working tree / uncommit changes into the diff.
    - In order to preserve the availability of artifacts, these are uploaded from a `on_finish` phase rather than `artifacts` phase.
      - This acts like a "finally" block, and happens regardless of whether the build passes or fails.
      - The installer artifact is often used to test if a change fixes an issue before the PR is polished off / reviewed. It also can help reviewers to test a change locally without having to build the branch.
    - A message is sent when there are linting errors.
    - A failed lint will still halt the build, system tests are not run.
    
    Closes #5918

commit 00755f27d40b7aa887a78b341517a7da1b37c7c4
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Thu Aug 1 16:54:59 2019 +0200

    Update changes file for PR #9915

commit cffbaa7f92be8851e20cdeb664e14874adcb3b87
Author: Bill Dengler <codeofdusk@gmail.com>
Date:   Thu Aug 1 10:54:37 2019 -0400

    Improve keyboard support for some terminal programs (PR #9915)
    
    Previously:
    NVDA failed to announce typed characters and/or words in Mintty, and spells output close to the caret in
    legacy Windows consoles.
    
    This commit factors out much of the code for handling typed characters in UIA consoles into a new
    `NVDAObjects.behaviors.TerminalWithoutTypedCharDetection class`. The class is now used in
    Mintty (PuTTY, Git Bash) and legacy Windows consoles on Windows 10 version 1607 and later.
    
    In legacy Windows consoles, the old keyboard handling code is disabled when the class is in use, and the
    new support can be disabled in the advanced preferences in case it is incompatible with some programs
    or if suppression of passwords is critical.
    
    Since legacy Windows consoles fire textChange rather slowly, this commit prefers faster responsiveness at
    the cost of offscreen characters (such as passwords) always being reported. Users may disable "speak typed
    characters" and/or "speak typed words" (using the existing scripts) when entering passwords to suppress
    this output.
    
    On Windows 10 version 1607 with the new keyboard support enabled, spurious characters are reported
    when the dead key (if available) is pressed.
    
    Fixes #513
    Fixes #1348
    Related to #9614

commit 04a603e6ef5b6bfc89b908159cba9e6a93094c65
Merge: bc11064fb 0ce558c90
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 2 00:06:11 2019 +1000

    Update translations.
    
    From translation svn revision: 50558

commit 0ce558c904c05effa355926010b69d726d5b0105
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 2 00:05:43 2019 +1000

    L10n updates for: mn
    From translation svn revision: 50558
    
    Authors:
    Mongol NVDA-Translation <mongoliannvdatranslation@gmail.com>
    
    Stats:
    54      18      source/locale/mn/LC_MESSAGES/nvda.po
     1 file changed, 54 insertions(+), 18 deletions(-)

commit 4e634980ca810eacf7ede4f83568efa73dd0181c
Author: Bill Dengler <codeofdusk@gmail.com>
Date:   Wed Jul 31 06:28:58 2019 -0400

    Ignore _expandCollapseBeforeReview in script_reviewStartOfLine. (PR #9944)
    
    This fixes an issue in UIA consoles, invoking the "review start of line" script (`shift+numpad 1` by default) does not move the review cursor.
    
    Expanding and collapsing the textInfo is essential for the functionality of this script (to move the textInfo to the start of the line), we should ignore the _expandCollapseBeforeReview flag.
    
    The _expandCollapseBeforeReview flag was added in #9614. It is True everywhere except in UIA consoles.

commit 288af0dc8b16b247d443c91c5a6cc147270e5982
Author: Bill Dengler <codeofdusk@gmail.com>
Date:   Wed Jul 31 06:03:35 2019 -0400

    Disable caret events in the UIA console (PR #9986)
    
    A regression caused during Python 3 migration.
    NVDA was announcing the final character of the prompt after backspacing text quickly.
    This can result in NVDA announcing "greater" after backspacing a line of text.
    
    Disable caret events in the UIA console and legacy consoles.
    This PR disables the caret movement event detection from #9933

commit bc11064fbeaa899f9522d50726579dfca401e1ab
Merge: 94e0339f0 08336ab7c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Tue Jul 30 01:02:42 2019 +1000

    Update translations.
    
    From translation svn revision: 50535

commit 08336ab7c778f8b8c287517fa4bbfca099ed1b06
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Tue Jul 30 01:02:42 2019 +1000

    L10n updates for: zh_TW
    From translation svn revision: 50535
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    76      74      source/locale/zh_TW/characterDescriptions.dic
     1 file changed, 76 insertions(+), 74 deletions(-)

commit ed0ce7d640abac55e9869bdcf25614ffcf321419
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Tue Jul 30 01:02:40 2019 +1000

    L10n updates for: zh_HK
    From translation svn revision: 50535
    
    Authors:
    Eric Yip <ericycy@gmail.com>
    
    Stats:
    51      17      source/locale/zh_HK/LC_MESSAGES/nvda.po
     1 file changed, 51 insertions(+), 17 deletions(-)

commit f777a6be811bf4c33c20eaf3baf1396fde9da0a1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Tue Jul 30 01:02:39 2019 +1000

    L10n updates for: zh_CN
    From translation svn revision: 50535
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    
    Stats:
    3       3       source/locale/zh_CN/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 3 deletions(-)

commit 73e9cc9ff8f6839cf7ed1770b9ecbfbf5f6d38ed
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Tue Jul 30 01:02:01 2019 +1000

    L10n updates for: hi
    From translation svn revision: 50535
    
    Authors:
    dipendra.lists@gmail.com
    Doc Mehta <joyofinspiring@gmail.com>
    
    Stats:
    85      85      source/locale/hi/LC_MESSAGES/nvda.po
     1 file changed, 85 insertions(+), 85 deletions(-)

commit 1f0fdea47733af8b6a7f697c14d661cdb993222d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Tue Jul 30 01:01:57 2019 +1000

    L10n updates for: fr
    From translation svn revision: 50535
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess.net>
    
    Stats:
    10      10      source/locale/fr/LC_MESSAGES/nvda.po
     1 file changed, 10 insertions(+), 10 deletions(-)

commit 30c30465ba1401ca94c0b00c2d286f2eac6914f8
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Tue Jul 30 01:01:53 2019 +1000

    L10n updates for: fa
    From translation svn revision: 50535
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    3       3       user_docs/fa/changes.t2t
     1 file changed, 3 insertions(+), 3 deletions(-)

commit be63d19d3ab9d86f9fd2a985d9f75bcf3184f45b
Author: Marco Zehe <MarcoZehe@users.noreply.github.com>
Date:   Mon Jul 29 14:54:56 2019 +0200

    Properly check if the object is an instance of IAccessible2. (PR #9984)
    
    Instead of using hasattr, use instanceof to check that the IAccessible object is an IA2 object before checking for the IA2 specific states.
    
    This prevents:
    -  "_ctypes.COMError: -2147467262": E_NOINTERFACE 0x80004002 - No such interface supported
    - "_ctypes.COMError: -2147467259": E_FAIL 0x80004005 - Unspecified error
    
    Fixes #9980
    Fixes #9988

commit ff0fd1cc8c50ac5cc2f54ac3b143086f5c5a002c
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Mon Jul 29 09:34:45 2019 +0200

    Fix division error in papenmeier_serial (PR #9983)

commit af9b85de15eb5e60be7c2875134775dbf75945d1
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Fri Jul 26 15:49:11 2019 +0200

    Update changes file for PR  #8124

commit 845a589baa38b0958974a0bec00b93f4c64ce4a2
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Fri Jul 26 06:48:22 2019 -0700

    NVDAObjects/UIA: recognize UWP tooltips (PR #8124)
    
    Fixes #8118
    
    Tooltips from universal apps are powered by XAML and has a specific class name (for now). This allows us to recognize them as proper tool tips.

commit fa7f6438813cd553eafa3bbc14faad80a54f01ca
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Thu Jul 25 23:59:10 2019 -0700

    (re)set NVDA version to 2019.3 (PR #9975)

commit 23ad41e62dd24bad60c1fe61cf70e59b43e6d39c
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Thu Jul 25 22:25:49 2019 +0200

    Readme now refers to requirement for Python 3
    
    Cherry picked changes from #9942
    
    Closes #8421

commit ba6b4f6b5b8e40a1231ccb25bc95f3b7bd77e3dd
Merge: e579eb025 75c8d00ef
Author: Reef Turner <reef@nvaccess.org>
Date:   Thu Jul 25 22:08:34 2019 +0200

    Merge speech refactor and python 3 to master
    
    Merge remote-tracking branch 'origin/pr/9974'

commit 94e0339f08de2b4e0021745afb90befc41f263db
Merge: b29acb42f 1e49db245
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 26 00:06:16 2019 +1000

    Update translations.
    
    From translation svn revision: 50442

commit 1e49db2453dfdfa4739e2211a61d3100d78bdf16
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 26 00:06:16 2019 +1000

    L10n updates for: zh_TW
    From translation svn revision: 50442
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    13      11      source/locale/zh_TW/LC_MESSAGES/nvda.po
    16      2       user_docs/zh_TW/changes.t2t
     2 files changed, 29 insertions(+), 13 deletions(-)

commit 6d606d222a5945e33800c34645f0ae407fa9c071
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 26 00:06:09 2019 +1000

    L10n updates for: tr
    From translation svn revision: 50442
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    52      16      source/locale/tr/LC_MESSAGES/nvda.po
    16      2       user_docs/tr/changes.t2t
    8       0       user_docs/tr/userGuide.t2t
     3 files changed, 76 insertions(+), 18 deletions(-)

commit ae13083838eb5ab47e26f57334c4f5b006ed98bc
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 26 00:06:02 2019 +1000

    L10n updates for: sk
    From translation svn revision: 50442
    
    Authors:
    Ondrej Rosik <ondrej.rosik@gmail.com>
    Peter Vagner <peter.v@datagate.sk>
    Jan Kulik <jan.kulik.szsle@outlook.sk>
    
    Stats:
    53      16      source/locale/sk/LC_MESSAGES/nvda.po
    10      1       user_docs/sk/changes.t2t
    8       0       user_docs/sk/userGuide.t2t
     3 files changed, 71 insertions(+), 17 deletions(-)

commit 7c1e2e4d7226d34f3ec0e8f1cd794c61b9f31169
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 26 00:06:00 2019 +1000

    L10n updates for: ru
    From translation svn revision: 50442
    
    Authors:
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    3       6       source/locale/ru/LC_MESSAGES/nvda.po
    28      16      user_docs/ru/changes.t2t
    84      76      user_docs/ru/userGuide.t2t
     3 files changed, 115 insertions(+), 98 deletions(-)

commit 3a67306bbd62cbe11aeceb976fd2414467bfa4e5
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 26 00:05:56 2019 +1000

    L10n updates for: pt_PT
    From translation svn revision: 50442
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    57      21      source/locale/pt_PT/LC_MESSAGES/nvda.po
    17      1       user_docs/pt_PT/changes.t2t
    10      2       user_docs/pt_PT/userGuide.t2t
     3 files changed, 84 insertions(+), 24 deletions(-)

commit 947cfea02f1bee082aec39bc77886d2a8fff10e1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 26 00:05:51 2019 +1000

    L10n updates for: nl
    From translation svn revision: 50442
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    0       1       source/locale/nl/symbols.dic
     1 file changed, 1 deletion(-)

commit fabf5c8cbcc050b9499626c86441c2103c4d4d75
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 26 00:05:40 2019 +1000

    L10n updates for: ja
    From translation svn revision: 50442
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    3       3       user_docs/ja/userGuide.t2t
     1 file changed, 3 insertions(+), 3 deletions(-)

commit 6c81e90ca7c520d97b738f6004a8d143aac09e3f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 26 00:05:33 2019 +1000

    L10n updates for: hi
    From translation svn revision: 50442
    
    Authors:
    dipendra.lists@gmail.com
    Doc Mehta <joyofinspiring@gmail.com>
    
    Stats:
    404     175     source/locale/hi/LC_MESSAGES/nvda.po
     1 file changed, 404 insertions(+), 175 deletions(-)

commit 7d81549067b3541237856ed101c9f2d49208d281
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 26 00:05:29 2019 +1000

    L10n updates for: fr
    From translation svn revision: 50442
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess.net>
    
    Stats:
    12      11      source/locale/fr/LC_MESSAGES/nvda.po
     1 file changed, 12 insertions(+), 11 deletions(-)

commit c46b6b171edc5c0e041c2f39e53c3aba946fd99c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 26 00:05:27 2019 +1000

    L10n updates for: fi
    From translation svn revision: 50442
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    54      16      source/locale/fi/LC_MESSAGES/nvda.po
    27      3       user_docs/fi/changes.t2t
    20      12      user_docs/fi/userGuide.t2t
     3 files changed, 101 insertions(+), 31 deletions(-)

commit 37119d2abbaaed9898a0abe90bcfd3dc06e85d04
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 26 00:05:15 2019 +1000

    L10n updates for: cs
    From translation svn revision: 50442
    
    Authors:
    Martina Letochova <letochova@seznam.cz>
    
    Stats:
    52      16      source/locale/cs/LC_MESSAGES/nvda.po
     1 file changed, 52 insertions(+), 16 deletions(-)

commit 638063cf609fcf68888c7abd342a9cfa1d21c1fb
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 26 00:05:12 2019 +1000

    L10n updates for: bg
    From translation svn revision: 50442
    
    Authors:
    Zahari Yurukov <zahari.yurukov@gmail.com>
    Kostadin Kolev <k_kolev1985@mail.bg>
    
    Stats:
    56      17      source/locale/bg/LC_MESSAGES/nvda.po
    15      2       user_docs/bg/changes.t2t
    9       2       user_docs/bg/userGuide.t2t
     3 files changed, 80 insertions(+), 21 deletions(-)

commit 53f92c1745960439888d8d7c93d9d7860abfaa75
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 26 00:05:09 2019 +1000

    L10n updates for: ar
    From translation svn revision: 50442
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>, Omar Alojaimi <amrahmad1995@gmail.com>
    
    Stats:
    8       5       source/locale/ar/LC_MESSAGES/nvda.po
    3       4       user_docs/ar/changes.t2t
    4       4       user_docs/ar/userGuide.t2t
     3 files changed, 15 insertions(+), 13 deletions(-)

commit d5c34c2ef393b496b4d632b0c1ac615526d63149
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 26 00:05:06 2019 +1000

    L10n updates for: an
    From translation svn revision: 50442
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    
    Stats:
    55      15      source/locale/an/LC_MESSAGES/nvda.po
     1 file changed, 55 insertions(+), 15 deletions(-)

commit 75c8d00ef56a623625edab020fbb3c2b4ae0e339
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Wed Jul 24 22:54:33 2019 +0200

    Detect caret movement using events, except for IA2Web (PR #9933)
    
    ## Summary of the issue:
    
    In text fields, when moving the caret with caret movement commands, such as the arrows, NVDA relies on bookmarks to find out whether the caret has moved.
    
    In short:
    
    1. You press left arrow
    2. NVDA creates a bookmark of the current caret position
    3. NVDA executes left arrow
    4. For up to the caret movement timeout, NVDA tries to find out whether the caret has moved by creating new bookmarks and comparing them against the old.
    
    However, for UIA, this comparison fails, as creating a bookmark at the end of a range and then removing one character from the end of the range results in a new bookmark that is equal to the former.
    
    ## Description of how this fixes the issue:
    
    This PR introduces a different approach based on #9773. In first instance, this code caused #9786 to occur (i.e. editors in Chrome reporting the wrong caret position).
    
    Compared to #9773, flow is now as follows:
    
    -  In a loop in EditableText._hasCaretMoved, NVDA processes pedning events
    -   If there is a focus event pending, the loop is exited
    -   NVDA tries to find out whether the caret position has changed by creating a textInfo at the caret position
    -   new code: only when this succeeds, NVDA checks for pending caret and textChange events. If the object that contains the caret has caretMovementDetectionUsesEvents set to False, it still ignores the caret events. This is what we do in IA2Web objects.
    
    ## Testing performed:
    
    - Tested that deleted characters/words are again reported in UIA controls, such as MS Word
    - Tested Notepad, Wordpad, Word Without UIA, Thunderbird, LibreOffice, start menu edit field, legacy command consoles and Skype Electron. Made sure that the caret was still correctly reported in all of them when moving with arrow keys or deleting.
    
    ## Known issues with pull request:
    
    We can't set the caretMovementDetectionUsesEvents attribute to True on editableText.EditableText and then override it in other places, such as IA2Web. This is because EditableText precedes the IA2Web class as well as other classes in the mro Setting it on EditableText directly therefore makes it impossible for other classes to override the attribute. I solved this by making it a magic property on EditableText that first tries to call super before returning the default.
    
    Fixes #9928
    Follow up of  PR #9773

commit 3c10f6d1409d5016bfb758d658ad4e84d66466ac
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Wed Jul 24 22:43:56 2019 +0200

    Python3: Fix SAPI5 and MSSP on installed NVDA (PR #9964)
    
    SAPI5 was not working on installed copies NVDA because dllImportTableHooks_hookSingle was getting wide strings, not byte strings.
    Changing from SAPI5 to another synthesiser still showed the SAPI5 voices in the list of voices.
    
    Now expect Python 3 (unicode) strings, and encode to mbcs/ANSI. This is required because in nvdaHelper/local/dllImportTableHooks.cpp we are using ANSI functions, which should probably change in the future, but for now we need to ensure that these strings are no more than ANSI strings. If the encode fails, which we don't currently expect, the error is logged.
    
    Also add protections in __del__ method self._hook is not set, if there is some failure in the initialisation.
    
    Also fix a circular reference with the SAPI5 event sink.

commit 44c3234569903d345d53bf2216a9fa93c85bb3c3
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Tue Jul 23 14:36:05 2019 +0200

    Remove .pyc and .pyo files when updating (PR #9961)
    
    When updating NVDA, old *.pyc and *.pyo files were remaining. This is problematic for Python 2 pyc files that Python 3 tries to open. Furthermore, it causes issues such as reported in #9960, where the logHandler gets really mad if it tries to log a traceback for a file in library.zip which is also available in the installation directory.
    
    When removing old program files, check for *.pyc and *.pyo files and get rid of them.

commit 3dcea5375b8e7e91d853767029ea60c99d8b4cfa
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Fri Jul 19 16:08:59 2019 +0200

    Fix error in JAVA text ranges (PR #9951)
    
    When fetching java text ranges, NVDA now provides a character buffer (created with `create_string_buffer` instead of `create_unicode_buffer`) to getAccessibleTextRange (see commit 15d8374). This no longer matches the ctypes prototype applied to the function.
    
    Change the prototype applied to the function to expect c_char instead of _wchar.
    
    Fixes #9939

commit 6ec2eaa22ce1e45164b253c1eb1e7d75247a28c4
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Fri Jul 19 15:34:24 2019 +0200

    Log never handled speech indexes, and don't make the speech queue lag behind (PR #9946)
    
    From the speech manager docs:
    
    > For every index reached, L{_handleIndex} is called.
    >               The completed sequence is removed from L{_pendingSequences}.
    >               If there is an associated callback, it is run.
    >               If the index marks the end of an utterance, L{_pushNextSpeech} is called to push more speech.
    
    `_handleIndex` calls `_removeCompletedFromQueue` for the specified index. However, that code did check whether `currentIndex >= lastCommand.index`. In the case where the speech synthesizer sometimes doesn't send a notification for an index, this means the following:
    
    1. Speech synth misses an index, calls the extension point for the index after the missing one
    2. `_removeCompletedFromQueue` removes the sequence from the queue that is associated with the missed index, thereby ignoring the current index.
    3. More importantly, `_removeCompletedFromQueue` checks the missed index to see whether it is the index for the end of an utterance.
    4. If it is not, it expects the sequence to continue. However, if the current index was actually the end of the current utterance, the current index would be handled as soon as the next utterance starts as it is still in the queue, but as the end of the utterance is never handled, speech simply ceases.
    
    Now:
    Log cases of indexes we missed, and clean up the sequences for the missed indexes.

commit d55bee360c7339783d429521b46f265a3e84acdc
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Fri Jul 19 15:31:07 2019 +0200

    Fix waiting for outlook/powerpoint window to exist for ever (PR #9950)
    
    In outlook and powerpoint, we create a waiting for xx window while pumping com events. However, comtypes.client.PumpEvents now always raises an error due to a bug in comtypes, see enthought/comtypes#187
    
    Until the bug is fixed in comtypes, this will also log a debug warning for time outs, though that's not very problematic IMO.
    
    Fixes #9921

commit ad8aad5d40cc637b8d1dcbc85354e46a7f8f13fc
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Fri Jul 19 12:20:51 2019 +0200

    Update changes file for #9935

commit 6c46739ed4a7c6d947c35f5b7137b1f7495e57e0
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Fri Jul 19 12:12:44 2019 +0200

    Update Developer Guide re. tab completion (PR #9935)
    
    In the Python console, the tab-completion is smarter with Python 3.
    Auto complete does not suggest attribute names starting with underscore until an underscore is typed, or a double underscore for attributes with two.
    
    Fixes #9918

commit b29acb42f8886a6366de115ce3570f40affdc51d
Merge: e579eb025 140bc20f5
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 19 00:06:16 2019 +1000

    Update translations.
    
    From translation svn revision: 50372

commit 140bc20f5d567f486b6952215d734bc876c337cb
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 19 00:06:15 2019 +1000

    L10n updates for: zh_TW
    From translation svn revision: 50372
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    87      85      source/locale/zh_TW/characterDescriptions.dic
    393     331     user_docs/zh_TW/userGuide.t2t
     2 files changed, 480 insertions(+), 416 deletions(-)

commit 356c8496e778d22bd3c129611f9e25fc9863fe30
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 19 00:06:13 2019 +1000

    L10n updates for: zh_CN
    From translation svn revision: 50372
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    
    Stats:
    5       5       user_docs/zh_CN/changes.t2t
    1       1       user_docs/zh_CN/userGuide.t2t
     2 files changed, 6 insertions(+), 6 deletions(-)

commit c470414a5f54a822bd9c8cf122804b8443882b04
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 19 00:06:09 2019 +1000

    L10n updates for: uk
    From translation svn revision: 50372
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    58      20      source/locale/uk/LC_MESSAGES/nvda.po
    28      22      user_docs/uk/userGuide.t2t
     2 files changed, 86 insertions(+), 42 deletions(-)

commit 8eebf776f5883691391b7175c045fc3543ca80ea
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 19 00:06:06 2019 +1000

    L10n updates for: ta
    From translation svn revision: 50372
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    18      9       user_docs/ta/userGuide.t2t
     1 file changed, 18 insertions(+), 9 deletions(-)

commit 9e35d5110d14589ec778974fa4e41f335fd20657
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 19 00:06:04 2019 +1000

    L10n updates for: sr
    From translation svn revision: 50372
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    51      15      source/locale/sr/LC_MESSAGES/nvda.po
    9       1       user_docs/sr/changes.t2t
    8       0       user_docs/sr/userGuide.t2t
     3 files changed, 68 insertions(+), 16 deletions(-)

commit 6b458327fe4cc638c0e9a5fc9a78cf7e03397b5d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 19 00:06:02 2019 +1000

    L10n updates for: sl
    From translation svn revision: 50372
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    7       170     source/locale/sl/LC_MESSAGES/nvda.po
     1 file changed, 7 insertions(+), 170 deletions(-)

commit 39d58210ed69d8bc3fd7a3a415aa81c3a47cae75
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 19 00:05:57 2019 +1000

    L10n updates for: ro
    From translation svn revision: 50372
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <contact@florian-ionascu.ro>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    
    Stats:
    3       3       source/locale/ro/LC_MESSAGES/nvda.po
    1       1       user_docs/ro/changes.t2t
     2 files changed, 4 insertions(+), 4 deletions(-)

commit e6fde161372b3d8cf24e82cb5df83d9b83cec09e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 19 00:05:54 2019 +1000

    L10n updates for: pt_BR
    From translation svn revision: 50372
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    1       1       user_docs/pt_BR/changes.t2t
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 94ba9c56089f4e9ef5bf7bc314e7546411adc892
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 19 00:05:52 2019 +1000

    L10n updates for: pl
    From translation svn revision: 50372
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <hubert.meyer@wp.pl>
    
    Stats:
    1       1       user_docs/pl/changes.t2t
    8       0       user_docs/pl/userGuide.t2t
     2 files changed, 9 insertions(+), 1 deletion(-)

commit 9308c2881b0968003275942866c672d1151e8191
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 19 00:05:50 2019 +1000

    L10n updates for: nl
    From translation svn revision: 50372
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    14      6       user_docs/nl/changes.t2t
     1 file changed, 14 insertions(+), 6 deletions(-)

commit 0935999790486d62fff13423959ad1bde129dbb1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 19 00:05:42 2019 +1000

    L10n updates for: ko
    From translation svn revision: 50372
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    53      48      source/locale/ko/LC_MESSAGES/nvda.po
     1 file changed, 53 insertions(+), 48 deletions(-)

commit 64fe322d2d8132d4e92f07544e8c38f5ab33ef13
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 19 00:05:39 2019 +1000

    L10n updates for: ja
    From translation svn revision: 50372
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    17      3       user_docs/ja/changes.t2t
     1 file changed, 17 insertions(+), 3 deletions(-)

commit 7c781487098ff532e6cc8454e31b97b2a3bade28
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 19 00:05:33 2019 +1000

    L10n updates for: hr
    From translation svn revision: 50372
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Tea Turkovic <tturkovi@gmail.com>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    1       1       user_docs/hr/changes.t2t
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 4ecc7c1bc46ffac9c251226fe2447573183d0676
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 19 00:05:32 2019 +1000

    L10n updates for: hi
    From translation svn revision: 50372
    
    Authors:
    dipendra.lists@gmail.com
    Doc Mehta <joyofinspiring@gmail.com>
    
    Stats:
    257     669     source/locale/hi/LC_MESSAGES/nvda.po
     1 file changed, 257 insertions(+), 669 deletions(-)

commit 431daa145f972ed3a4124c4d5f41983d20f9fdc7
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 19 00:05:31 2019 +1000

    L10n updates for: he
    From translation svn revision: 50372
    
    Authors:
    Shmuel Naaman <shmuel_naaman@yahoo.com>
    Afik Sofir <afik.sofer@gmail.com>
    
    Stats:
    51      17      source/locale/he/LC_MESSAGES/nvda.po
     1 file changed, 51 insertions(+), 17 deletions(-)

commit 62859143eb3ed0481ab8be4172f205b6e65fb3b2
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 19 00:05:29 2019 +1000

    L10n updates for: gl
    From translation svn revision: 50372
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    
    Stats:
    1       1       user_docs/gl/changes.t2t
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 0a93fce7100657a4f87460ed3987b7ffe9baa182
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 19 00:05:27 2019 +1000

    L10n updates for: fr
    From translation svn revision: 50372
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess33.net>
    
    Stats:
    15      9       user_docs/fr/changes.t2t
     1 file changed, 15 insertions(+), 9 deletions(-)

commit 6319584056964df1d1aeb9c3975afd42440be6f8
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 19 00:05:24 2019 +1000

    L10n updates for: fa
    From translation svn revision: 50372
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    3       3       source/locale/fa/LC_MESSAGES/nvda.po
    1       1       user_docs/fa/changes.t2t
     2 files changed, 4 insertions(+), 4 deletions(-)

commit 57952d28c2af6344fc410b7ead4eaf64c1bb58e9
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 19 00:05:21 2019 +1000

    L10n updates for: es
    From translation svn revision: 50372
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       user_docs/es/changes.t2t
     1 file changed, 1 insertion(+), 1 deletion(-)

commit d3f11c9cbc669f410b26c9b7a9e2de752402a3db
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 19 00:05:17 2019 +1000

    L10n updates for: de
    From translation svn revision: 50372
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    3       3       user_docs/de/changes.t2t
     1 file changed, 3 insertions(+), 3 deletions(-)

commit e51ce7f6f967bac5412a5960e6bc9fed4120d94e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 19 00:05:14 2019 +1000

    L10n updates for: da
    From translation svn revision: 50372
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    1       1       user_docs/da/changes.t2t
     1 file changed, 1 insertion(+), 1 deletion(-)

commit dd108c8b9a6752376993d1fee1f6d737fe11c189
Merge: ddec4297c 131ed8406
Author: Reef Turner <reef@nvaccess.org>
Date:   Mon Jul 15 14:03:26 2019 +0200

    Merge branch 'threshold_py3_staging' into threshold
    
    closes #9929

commit 131ed8406587f5fb8508a3798afdb1a27775011d
Merge: cb5405f1d ddec4297c
Author: Reef Turner <reef@nvaccess.org>
Date:   Mon Jul 15 13:46:54 2019 +0200

    Merge remote-tracking branch 'origin/threshold' into threshold_py3_staging
    
     Conflicts:
            source/gui/settingsDialogs.py

commit ddec4297caed53572651eb736adeebe9f5d55b92
Author: Reef Turner <reef@nvaccess.org>
Date:   Mon Jul 15 13:42:24 2019 +0200

    Fix missing priority args after merge from master

commit 27eda96750837b38e972205110833ecb260edaad
Merge: ae3747ad7 e579eb025
Author: Reef Turner <reef@nvaccess.org>
Date:   Mon Jul 15 12:31:11 2019 +0200

    Merge remote-tracking branch 'origin/master' into threshold
    
     Conflicts:
            source/speech/__init__.py

commit cb5405f1d72ca24883a4f52c0106628a33ded0e9
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Mon Jul 15 02:26:19 2019 -0700

    Python 3: Check for None during check for previous installation version in Installer GUI (PR #9924)
    
    Comparison function found in installer can return an integer (-1, 0, 1) or None. Because of this, when comparing the return value from installer GUI, it assumed None was an integer when in fact in Python 3, it is a different type.
    
    Fixes #9923

commit 92458e986f9742d985f6feb70082345efeef0310
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Fri Jul 12 20:22:05 2019 +0200

    Python 3: Fix several local overrides of range function (PR #9912)
    
    We were using range as a name of a local attribute or function parameter. In at least one case (uia _getBoundingRectsFromUIARange), this fails, as were also calling the range function in that method.
    
    Looked for every instance of range as a local attribute. In most cases, rename it to textRange.

commit ed15de9961ad6866fa7477e3dd32382d9d3e35ad
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Fri Jul 12 19:42:54 2019 +0200

    Python 3: Fix loading of espeak variants (PR #9920)
    
    Fixes mistake introduced in #9853

commit 7c235ec351fe338003666ae7942121861a72fdf8
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Fri Jul 12 09:42:03 2019 -0700

    Python 3: Use built-in "input" instread of "raw_input" (PR #9908)
    
    NVDA slave module was using the raw_input function to scrape stdin, which raises NameError in Python 3.
    In Python 3 raw_input has been replaced with the functional equal input. For more information see:
    https://www.python.org/dev/peps/pep-3111/

commit 2faf24bbde17e20dfcf860a590ac2135ed802c19
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Thu Jul 11 18:27:19 2019 +0200

     Python 3: Remove Python 2 specific workarounds (PR #9889)
    
    Our Python 2 code contained some workarounds  and code paths that are no longer necessary or confusing when on Python 3.
    
    1. Most notably, this is related to functions with `*args` and `**kwargs` catch all handlers which also required a specific keyword argument. Once of these was part of the `hwIo` module and has already been removed in an earlier state.
       - Code where we pop a particular argument from `kwargs` now contains that argument as a keyword only argument in the signature of the function.
    2. Furthermore, there was a workaround in the `gui` code to register support for the `cp65001` codec in Python 2, which is a known codec in Python 3.
       - This is removed
    3. The `scriptHandler.script` decorator checked whether the decorated script was a routine. This also returned `True` for bound instance methods, and therefore no warning was raised when trying to decorate a bound instance method (which is unsupported). Now, such a warning will be raised. See also #9884
       - When decorating a script, we now use `isinstance(script, types.FunctionType)`
    4. `config.AggregatedSection` still had an `iteritems` method.
       - `config.AggregatedSection.iteritems` has been renamed to items.

commit bbbb969c46fc71a79291f57b8b975ba84bbb2265
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Thu Jul 11 17:14:34 2019 +0200

    Python 3: Clean the current words buffer in more cases (PR #9877)
    
    Speech refactor introduced a new way to clear the current words buffer for speech. However, in some cases, this buffer wasn't cleared, particularly in the following cases:
    
    - In legacy windows consoles, when typing a word and pressing enter, pressing space still reported the previous word that was already sent to the console.
    - When moving by sentence in Word, the buffer wasn't cleared.
    
    To fix this:
    - in EditableText, the logic to clear the buffer was moved from _caretMovementScriptHelper to _caretScriptPostMovedHelper. This ensures that the buffer is also cleared when navigating by sentence, while not clearing it when the cart hasn't moved, such as when trying sentence nav in an application that doesn't implement it.
    - I copied the flush_queuedChars from winConsoleUIA to winConsole.
    
    Fixes #9769

commit 2c7680cbdf4086b6a0a6a76022819582ffbac4ff
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Thu Jul 11 08:00:57 2019 -0700

    Python 3:  MoveFileEx - catch WindowsError instead of WinError (PR #9876)
    
    Fixes an issue in #9847: catch WindowsError because WinError is not an exception type.

commit ae3747ad7fd0cd100ccb26ec8467e6e57c2c6f54
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Thu Jul 11 16:55:16 2019 +0200

    Revert "Restore VoiceSettingsSlider to ensure we don't break compatibility with Audio Themes add-on" (PR #9907)
    
    This reverts commit 7f986ca252a80b569e99245b3407a47831810f92 from PR #9826

commit d28b52792249992b12e94071bb5bc57c11162d0d
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Thu Jul 11 16:51:59 2019 +0200

    Python 3: Fix adobe reader int/str to NoneType comparisons as well as other identified cases (PR: #9881)
    
    Reading documents in Adobe Reader was raising a TypeError
    Fixed this int to NoneType comparison, identified some others while at it.

commit e579eb0253e51f9fdd2c92e5fa2e52a6ec162ad2
Merge: dc5c0b8cc e472f06d7
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 12 00:06:18 2019 +1000

    Update translations.
    
    From translation svn revision: 50267

commit e472f06d7870f553e7aaefc7ba990fe8d5e9940e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 12 00:06:17 2019 +1000

    L10n updates for: zh_TW
    From translation svn revision: 50267
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    162     128     source/locale/zh_TW/LC_MESSAGES/nvda.po
     1 file changed, 162 insertions(+), 128 deletions(-)

commit 9fcb75cda755c71aaf5068ad50d303567fd8b145
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 12 00:06:15 2019 +1000

    L10n updates for: zh_CN
    From translation svn revision: 50267
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    
    Stats:
    51      17      source/locale/zh_CN/LC_MESSAGES/nvda.po
    24      6       user_docs/zh_CN/changes.t2t
    18      10      user_docs/zh_CN/userGuide.t2t
     3 files changed, 93 insertions(+), 33 deletions(-)

commit 4d7afa185e74839e406fb73e1796f88b093201f6
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 12 00:06:12 2019 +1000

    L10n updates for: vi
    From translation svn revision: 50267
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    60      24      source/locale/vi/LC_MESSAGES/nvda.po
    14      5       user_docs/vi/changes.t2t
    54      46      user_docs/vi/userGuide.t2t
     3 files changed, 128 insertions(+), 75 deletions(-)

commit 6ed4b21626f982efc44196afbbeacd61eeba6404
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 12 00:06:04 2019 +1000

    L10n updates for: sl
    From translation svn revision: 50267
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    216     17      source/locale/sl/LC_MESSAGES/nvda.po
    8       0       user_docs/sl/userGuide.t2t
     2 files changed, 224 insertions(+), 17 deletions(-)

commit 7734cbe534a51020de853e632bc05c258c270167
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 12 00:06:01 2019 +1000

    L10n updates for: ru
    From translation svn revision: 50267
    
    Authors:
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    53      16      source/locale/ru/LC_MESSAGES/nvda.po
     1 file changed, 53 insertions(+), 16 deletions(-)

commit e97b45204f8b40e05e04982427c4e9ea6e70b55c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 12 00:05:59 2019 +1000

    L10n updates for: ro
    From translation svn revision: 50267
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <contact@florian-ionascu.ro>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    
    Stats:
    56      17      source/locale/ro/LC_MESSAGES/nvda.po
    15      4       user_docs/ro/changes.t2t
    19      3       user_docs/ro/userGuide.t2t
     3 files changed, 90 insertions(+), 24 deletions(-)

commit 097950957597e5ac1d0a0810b98ed73bcb781593
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 12 00:05:55 2019 +1000

    L10n updates for: pt_BR
    From translation svn revision: 50267
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    53      16      source/locale/pt_BR/LC_MESSAGES/nvda.po
    15      1       user_docs/pt_BR/changes.t2t
    8       0       user_docs/pt_BR/userGuide.t2t
     3 files changed, 76 insertions(+), 17 deletions(-)

commit 42866618adb5d385635859da8e958398ed4a9ace
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 12 00:05:53 2019 +1000

    L10n updates for: pl
    From translation svn revision: 50267
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <hubert.meyer@wp.pl>
    
    Stats:
    56      21      source/locale/pl/LC_MESSAGES/nvda.po
    11      2       user_docs/pl/changes.t2t
     2 files changed, 67 insertions(+), 23 deletions(-)

commit 422417eb83d4f7a762befeb0c41330272b574dc1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 12 00:05:51 2019 +1000

    L10n updates for: nl
    From translation svn revision: 50267
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    54      16      source/locale/nl/LC_MESSAGES/nvda.po
    8       0       user_docs/nl/userGuide.t2t
     2 files changed, 62 insertions(+), 16 deletions(-)

commit 617f76f60b256d7dfa9e9f7fc6373ea2f52ba8b2
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 12 00:05:43 2019 +1000

    L10n updates for: ko
    From translation svn revision: 50267
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    1       1       user_docs/ko/changes.t2t
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 4a83a78a7f976d18630c162bc62a9f75965c2f5d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 12 00:05:41 2019 +1000

    L10n updates for: kmr
    From translation svn revision: 50267
    
    Authors:
    Imam Kahraman <imam.kahraman@googlemail.com>
    
    Stats:
    94      94      source/locale/kmr/symbols.dic
     1 file changed, 94 insertions(+), 94 deletions(-)

commit d263bf6cf92358c8b6b9f016a588e6f121c52111
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 12 00:05:41 2019 +1000

    L10n updates for: ja
    From translation svn revision: 50267
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    53      17      source/locale/ja/LC_MESSAGES/nvda.po
    8       0       user_docs/ja/userGuide.t2t
     2 files changed, 61 insertions(+), 17 deletions(-)

commit 81fd53bbd9b89daa13e1cf95c094de028eb8774a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 12 00:05:38 2019 +1000

    L10n updates for: it
    From translation svn revision: 50267
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    53      16      source/locale/it/LC_MESSAGES/nvda.po
    15      2       user_docs/it/changes.t2t
     2 files changed, 68 insertions(+), 18 deletions(-)

commit fa6870b52dddc6e97cd68cb24a6ab69efb4132e0
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 12 00:05:34 2019 +1000

    L10n updates for: hr
    From translation svn revision: 50267
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Tea Turkovic <tturkovi@gmail.com>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    54      16      source/locale/hr/LC_MESSAGES/nvda.po
    10      2       user_docs/hr/changes.t2t
    8       0       user_docs/hr/userGuide.t2t
     3 files changed, 72 insertions(+), 18 deletions(-)

commit c4c4de966999537706293a9d10b2e8485f028f6a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 12 00:05:32 2019 +1000

    L10n updates for: hi
    From translation svn revision: 50267
    
    Authors:
    dipendra.lists@gmail.com
    Doc Mehta <joyofinspiring@gmail.com>
    
    Stats:
    1170    772     source/locale/hi/LC_MESSAGES/nvda.po
     1 file changed, 1170 insertions(+), 772 deletions(-)

commit 51f9a2d66474cc2380dc0ffe6c9997e3f087ff1c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 12 00:05:31 2019 +1000

    L10n updates for: gl
    From translation svn revision: 50267
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    
    Stats:
    63      26      source/locale/gl/LC_MESSAGES/nvda.po
    24      12      user_docs/gl/changes.t2t
    16      8       user_docs/gl/userGuide.t2t
     3 files changed, 103 insertions(+), 46 deletions(-)

commit 5a4cc3bb0a5bfcbc7a11ed701bb69fcfd44ffdf7
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 12 00:05:28 2019 +1000

    L10n updates for: fr
    From translation svn revision: 50267
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess33.net>
    
    Stats:
    56      17      source/locale/fr/LC_MESSAGES/nvda.po
    3       0       user_docs/fr/changes.t2t
    8       0       user_docs/fr/userGuide.t2t
     3 files changed, 67 insertions(+), 17 deletions(-)

commit 99c6d5216e760818c5ffb6a320667afd91e6ea48
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 12 00:05:25 2019 +1000

    L10n updates for: fa
    From translation svn revision: 50267
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    53      16      source/locale/fa/LC_MESSAGES/nvda.po
    13      5       user_docs/fa/changes.t2t
    14      6       user_docs/fa/userGuide.t2t
     3 files changed, 80 insertions(+), 27 deletions(-)

commit 8bf778ccfd9fec27932e6b5c66cc0b98b8c5766d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 12 00:05:22 2019 +1000

    L10n updates for: es
    From translation svn revision: 50267
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    65      26      source/locale/es/LC_MESSAGES/nvda.po
    24      12      user_docs/es/changes.t2t
    16      9       user_docs/es/userGuide.t2t
     3 files changed, 105 insertions(+), 47 deletions(-)

commit e74a28f311d534880ade5730ce08fbf6401f2e9f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 12 00:05:18 2019 +1000

    L10n updates for: de
    From translation svn revision: 50267
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    67      27      source/locale/de/LC_MESSAGES/nvda.po
    17      4       user_docs/de/changes.t2t
    43      103     user_docs/de/userGuide.t2t
     3 files changed, 127 insertions(+), 134 deletions(-)

commit 5b33dcf5b4405b0a04fce8ef438c63d58545d6b8
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 12 00:05:14 2019 +1000

    L10n updates for: da
    From translation svn revision: 50267
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    51      15      source/locale/da/LC_MESSAGES/nvda.po
    10      1       user_docs/da/changes.t2t
    8       0       user_docs/da/userGuide.t2t
     3 files changed, 69 insertions(+), 16 deletions(-)

commit b8e784bbd0c5bbf8233c6139d8286cde718b8570
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 12 00:05:08 2019 +1000

    L10n updates for: ar
    From translation svn revision: 50267
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>, Omar Alojaimi <amrahmad1995@gmail.com>
    
    Stats:
    53      16      source/locale/ar/LC_MESSAGES/nvda.po
    10      0       user_docs/ar/changes.t2t
    9       1       user_docs/ar/userGuide.t2t
     3 files changed, 72 insertions(+), 17 deletions(-)

commit dc5c0b8cc7be4f2be4e81b92ff0c0df7a42c666c
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Thu Jul 11 10:40:23 2019 +0200

    Update changes file for #9909

commit e1c80879824f41c09add616fbb6525a8f7fd8b9d
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Thu Jul 11 10:38:11 2019 +0200

    Differentiate preselected from just selected text (PR #9909)
    
    The order of selection messages for preselected and just selected text needs to be different. When a control with preselected text gains focus, we must inform them it is selected first so they do not unintentionally modify the text. When a user intentionally selects text, the 'selected' part of the message is still important (for users who may not be familiar with a command), but the text selected is more important.
    
    This commit differentiates and documents the differences here with helper methods to make these announcements.

commit 0fb2342a9de82f6cbd262a6a33a70d9d8c6aeb29
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Wed Jul 10 18:55:44 2019 +0200

    Python 3: Remove many instances of "py3 review required" comments (PR #9890)
    
    These comments are no longer required, they have now been reviewed.

commit 513659f73be87000be3a77efae093e16f6723c1f
Author: Bill Dengler <codeofdusk@gmail.com>
Date:   Wed Jul 10 23:49:33 2019 +0800

    Pass the end argument to collapse in the super call. (PR #9887)
    
    Fixes #9875
    
    When collapsing a ConsoleUIATextInfo, the end keyword argument was not properly handled. This caused strange behaviour during the 'say all' command in Windows Consoles using UIA.

commit a92ac90b34948367e2ab9c58a6f012ac5e5bea41
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Wed Jul 10 17:27:51 2019 +0200

    Python 3: Fix error with accPropServer (PR #9900)
    
    Fixes #9768
    
    The VARIANT out-param was not being initialised correctly. Calling VariantClear on an uninitialised VARIANT is an error.
    
    Comtypes was not initialising VARIANT.vt to VT_EMPTY, and attempting to call VariantClear (oleauto.h) before assigning it the value returned from getProp.
    Instead, we implement a low-level getProp method by requiring an unused "this" param. This low-levl getProp method is provided pointers to the out-params, allowing it to manually initialise the VARIANT correctly before assigning a value.

commit f1c884d1d57405ed916517e877be4315596fec83
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Tue Jul 9 14:27:29 2019 +0200

    Python 3: When processing xml coming from virtual buffers, make sure that surrogate characters are handled properly (PR #9897)
    
    Before this change, in virtual buffers, emoji are shown as two surrogate characters instead of the actual emoji character.
    This is because virtual buffers output in UTF-16, and surrogate characters are not allowed in xml. Therefore, the XML contains integer values for the surrogate characters, and they are converted to real characters in the xmlFormatting module. As surrogate characters are perfectly valid within Python 3 and even a surrogate pair is allowed, Python 3 does not collapse two surrogate characters into one 32-bit character.
    
    If a low surrogate character is handled, add it to the currently buffered text, and quickly encode and decode the text to/from UTF-16. This ensures that surrogate pairs are properly decoded to the associated 32-bit character. The decision to do this for low surrogates only is intentional. A high surrogate is usually followed by a low surrogate. Therefore it doesn't make sense to re-encode if processing a high surrogate. We also want to avoid just re-encoding anything.

commit 92be7aa66e35520527361fb9d83f4cbccebdc57f
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Tue Jul 9 03:44:24 2019 -0700

    Python 3: use UTF-8 decoding for font name with Scintilla controls (PR #9893)
    
    Fixes #9892
    
    Format info command fails in Notepad++ and other Scintilla controls because font name is a bytes-like object.
    Font name is decoded using UTF-8.

commit 200a7a6ce65c0da484504599c62725a8380e1738
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Tue Jul 9 12:33:14 2019 +0200

    Python3: Fix save scripts in lockapp (PR #9884)
    
    Fixes #9883
    
    On the Windows 10 lock screen, invoked with Windows+L. The user copy of NVDA is still active. As the screen is locked, there is a set of safe scripts on the appmodule for the lock screen to make sure that the NVDA configuration isn't changed when on the lock screen. However, this SAFE_SCRIPTS set expected scripts on globalCommands.GlobalCommands to be unbound methods, so for every script, it took the __func__ attribute on the unbound method to get to the actual function. In python 3 unbound methods are gone.
    
    SAFE_SCRIPTS now just contains the raw scripts from globalCommands.GlobalCommands, which are now functions, no longer unbound methods. When comparing a bound script with the SAFE_SCRIPTS, we're dealing with a bound method and thus we still have to traverse up to the __func__ attribute on the bound script. I added an explanatory comment for that.

commit 0f2db0b1d52c7bd7c915466fbc3aec73958d0d9b
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue Jul 9 11:22:52 2019 +0200

    Python 3: Fix missing import, remove unused imports (PR #9901)

commit 74431b8bc894b9b3e887e589f7b40efc6f66588a
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Mon Jul 8 19:06:09 2019 +0200

    Python 3: Fix usages of "open" function (PR #9853)
    
    Searched for, inspected, and fixed usages of "open" function
    Used `git grep "\Wopen("` to search of usages of "open"
    
    Fixes #9838
    
    Python can open a file in binary mode and in text mode. In python 2, this difference was less distinct than in Python 3. In python 3, reading a file in text mode returns unicode strings, whereas binary mode returns bytes objects. Therefore, a call of open without supplying proper arguments would open a file in text mode with the default system encoding assumed.
    
    1. #9838: wrong encoding assumed when decoding add-on manifests. As open didn't have an encoding specified, the default text encoding of the system was specified. This failed for Japanese systems.
    2. To read Espeak VARIANT DATA, NVDA parses files in the espeak data folder. For this, the open function was also used without an encoding. This resulted in the inability to load espeak on systems where the beta option "Use Unicode UTF-8 for worldwide language support" was enabled.
    3. To open calls in NVDAHelper and watchdog are used to open a file without actually writing or reading to it using Python directly. These files are now opened in binary mode. While not strictly necessary, this makes it clearer from a code perspective that we aren't dealing with Python's ability to write or read encoded text files.
    4. The logViewer now consistently uses open instead of codecs.open

commit 4e60f5e623020095f442d0e08d9bdc0280cf515f
Merge: 83e6a549f 39479bbaf
Author: Reef Turner <reef@nvaccess.org>
Date:   Mon Jul 8 18:12:42 2019 +0200

    Merge remote-tracking branch 'origin/threshold' into threshold_py3_staging

commit 39479bbafacebaec83a6e82a277ab9dea4c4ee9f
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Mon Jul 8 18:12:04 2019 +0200

    Fix api back compat version number

commit 83e6a549ff62b7987f352c4cd81c12130f0ea527
Merge: 37d4dfe58 177820d36
Author: Reef Turner <reef@nvaccess.org>
Date:   Mon Jul 8 16:49:55 2019 +0200

    Merge remote-tracking branch 'origin/threshold' into threshold_py3_staging

commit 177820d36f6dde254b80aca3004eae81da48285a
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Mon Jul 8 16:48:05 2019 +0200

    Fix buildversion for threshold branch

commit 5ea6514707b325c82b6453864fa65e5389a218d8
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Mon Jul 8 16:47:03 2019 +0200

    Fix buildversion for 2019.2 beta

commit 37d4dfe589d34c91d4f270cb6079ef8153a6575a
Author: Reef Turner <reef@nvaccess.org>
Date:   Fri Jul 5 17:35:41 2019 +0200

    Fix merge: inspected diff for Py3 errors

commit 3ab902404fba01e56002fe1d0adb744f4cee9019
Merge: 2a260be63 053d63ad1
Author: Reef Turner <reef@nvaccess.org>
Date:   Fri Jul 5 16:43:43 2019 +0200

    Merge remote-tracking branch 'origin/threshold' into threshold_py3_staging
    
    Resolved Conflicts:
            readme.md
            source/NVDAObjects/IAccessible/__init__.py
            source/brailleDisplayDrivers/handyTech.py
            source/gui/settingsDialogs.py
            source/pythonConsole.py

commit 053d63ad112c0328d45a7d1841f540616fd6907f
Author: Reef Turner <reef@nvaccess.org>
Date:   Fri Jul 5 16:08:28 2019 +0200

    Fix merge: missing priority argument

commit f905f7b758e7784c9d0f534234e2a4ecdc918217
Merge: 52ba6ac3b 9dfbd2eea
Author: Reef Turner <reef@nvaccess.org>
Date:   Fri Jul 5 15:42:23 2019 +0200

    Merge remote-tracking branch 'origin/master' into threshold
    
    Resolved Conflicts:
            source/speech/__init__.py
            user_docs/en/changes.t2t

commit 2a260be633bc406220435366bdde0aba5d3a0459
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Fri Jul 5 05:29:23 2019 -0700

    WinKernel: create a wrapper for MoveFileExW function and associated flag constants (PR #9849)
    
    Fixes #9847
    Fixes #9825
    
    Add a wrapper for kernel32.dll::MoveFileExW function, along with flag constants. This then allows any module/function/class to use this wrapper instead of defining their own. Re: #9847
    
    Update check: use winKernel.moveFileEx instead of os.renames after postponing an update. Re #9825.
    Python 3.7's `os.renames` function no longer allows copies across disk drives, it raises `OSError` with ERROR_NOT_SAME_DEVICE.
    The extended description of this error is "The system cannot move the file to a different disk drive".
    This can cause an error when updating a portable copy of NVDA"
    See https://bugs.python.org/issue28356 for information about the change to os.rename / os.renames

commit 17c7ea1b68904fb27f38b89f7955b9dae52d2616
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Fri Jul 5 13:24:12 2019 +0200

    Python 3: sys.exec_prefix > sys.prefix for nvda_slave (PR #9871)
    
    Fixes #9870

commit e45868335384fcff91822263061d60cd3fe2e112
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Fri Jul 5 13:14:25 2019 +0200

    Python 3: fix say all for DisplayModelEditableText (PR #9866)
    
    Fixes #9860

commit b229fc4e941ed38f3aa89422ad7512f549e539c5
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Fri Jul 5 12:48:45 2019 +0200

    Python 3 one core: Don't check for sys.frozen in the check method. (PR #9857)
    
    When running a python 2 copy from source, NVDA is unable to detect if it is running under Windows 10. Therefore, the oneCore synthesizer contains a work around in its check method, always listing the synthesizer in the synthesizer list when running from source, even on Windows versions older than Windows 10.
    On Python 3 however, the manifest of the main Python targets Windows 10 and therefore, this workaround is no longer necessary.

commit fd65a653d596ca6869b5514433909fd6c67620a6
Merge: 9dfbd2eea 3669603bc
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 5 00:06:11 2019 +1000

    Update translations.
    
    From translation svn revision: 49978

commit 3669603bc8217c262c0db501f5804749c8c6ced5
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 5 00:06:11 2019 +1000

    L10n updates for: zh_TW
    From translation svn revision: 49978
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    25      25      source/locale/zh_TW/characterDescriptions.dic
     1 file changed, 25 insertions(+), 25 deletions(-)

commit 201956ce43012890c69a0b22cd137293355cb24c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 5 00:06:09 2019 +1000

    L10n updates for: zh_CN
    From translation svn revision: 49978
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    
    Stats:
    35      11      source/locale/zh_CN/symbols.dic
    2       0       user_docs/zh_CN/changes.t2t
     2 files changed, 37 insertions(+), 11 deletions(-)

commit 84ae5232487019674053f035fa7f81b4859f5787
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 5 00:06:07 2019 +1000

    L10n updates for: vi
    From translation svn revision: 49978
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    3       3       source/locale/vi/LC_MESSAGES/nvda.po
    1       0       user_docs/vi/changes.t2t
    27      27      user_docs/vi/userGuide.t2t
     3 files changed, 31 insertions(+), 30 deletions(-)

commit a6cabadb23a9281d531a8e5ec08a2b52226c4c0b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 5 00:06:00 2019 +1000

    L10n updates for: sr
    From translation svn revision: 49978
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    1       0       user_docs/sr/changes.t2t
     1 file changed, 1 insertion(+)

commit b61e30b544e57f75ac2be25eec6a3609a158021f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 5 00:05:56 2019 +1000

    L10n updates for: ru
    From translation svn revision: 49978
    
    Authors:
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    1       0       user_docs/ru/changes.t2t
     1 file changed, 1 insertion(+)

commit 83876e4ee39d437141d73df853ec0dd0dd806770
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 5 00:05:54 2019 +1000

    L10n updates for: ro
    From translation svn revision: 49978
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <contact@florian-ionascu.ro>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    
    Stats:
    1       0       user_docs/ro/changes.t2t
     1 file changed, 1 insertion(+)

commit 163c261f9c9f62d42c31b733662dfe1903658675
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 5 00:05:52 2019 +1000

    L10n updates for: pt_PT
    From translation svn revision: 49978
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    2       1       user_docs/pt_PT/changes.t2t
     1 file changed, 2 insertions(+), 1 deletion(-)

commit 4b3e1e19748c0b544ba778b8513683d96ab3b6ce
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 5 00:05:51 2019 +1000

    L10n updates for: pt_BR
    From translation svn revision: 49978
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    1       0       user_docs/pt_BR/changes.t2t
     1 file changed, 1 insertion(+)

commit 060f7331eb732cd25bec43595c1926da675f2809
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 5 00:05:49 2019 +1000

    L10n updates for: pl
    From translation svn revision: 49978
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <hubert.meyer@wp.pl>
    
    Stats:
    1       0       user_docs/pl/changes.t2t
     1 file changed, 1 insertion(+)

commit 896772f1fa420796ef495e9b454f925710868541
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 5 00:05:31 2019 +1000

    L10n updates for: hr
    From translation svn revision: 49978
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Tea Turkovic <tturkovi@gmail.com>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    1       0       user_docs/hr/changes.t2t
     1 file changed, 1 insertion(+)

commit bc29b9428c8cb3c6bd70c36cae62c94ecb55a1fc
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 5 00:05:30 2019 +1000

    L10n updates for: hi
    From translation svn revision: 49978
    
    Authors:
    dipendra.lists@gmail.com
    Doc Mehta <joyofinspiring@gmail.com>
    
    Stats:
    158     187     source/locale/hi/LC_MESSAGES/nvda.po
     1 file changed, 158 insertions(+), 187 deletions(-)

commit d7241a1b4edc184c250c6da8d109f8736581776a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 5 00:05:28 2019 +1000

    L10n updates for: gl
    From translation svn revision: 49978
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    
    Stats:
    1       0       user_docs/gl/changes.t2t
     1 file changed, 1 insertion(+)

commit cc70b22f37bc008d0db28ad01e5c41d5b709f281
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 5 00:05:26 2019 +1000

    L10n updates for: fr
    From translation svn revision: 49978
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess33.net>
    
    Stats:
    2       2       source/locale/fr/symbols.dic
    1       0       user_docs/fr/changes.t2t
     2 files changed, 3 insertions(+), 2 deletions(-)

commit ddab5c019865c2174cf100e6d8c5cf34ece9efc4
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 5 00:05:24 2019 +1000

    L10n updates for: fi
    From translation svn revision: 49978
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    1       0       user_docs/fi/changes.t2t
     1 file changed, 1 insertion(+)

commit f9c0bdafc40f3197f3ac8ac9c413c5b23f649c93
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 5 00:05:23 2019 +1000

    L10n updates for: fa
    From translation svn revision: 49978
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    1       0       user_docs/fa/changes.t2t
     1 file changed, 1 insertion(+)

commit c4f8f3d3c467e852becb2b06e55e95160023af8a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 5 00:05:20 2019 +1000

    L10n updates for: es
    From translation svn revision: 49978
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       0       user_docs/es/changes.t2t
     1 file changed, 1 insertion(+)

commit 1682f6e93b24d4754bcb8f1c86556a11e28e1ab6
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 5 00:05:17 2019 +1000

    L10n updates for: de
    From translation svn revision: 49978
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    5       5       source/locale/de/LC_MESSAGES/nvda.po
    25      29      user_docs/de/changes.t2t
     2 files changed, 30 insertions(+), 34 deletions(-)

commit 5a0fb7f48beb2e659270ae345b2caeaf2e7d5951
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Wed Jul 3 17:42:55 2019 +0200

    Update UIAutomationCore.dll comtypes module to version 10.0.18362 (PR #9829)
    
    Ran `comtypes.client.GetModule("UIAutomationCore.dll")` from a Python 3.7.3 interpreter with `comtypes 1.1.7`.
    
    UIAutomationCore.dll File info"
    - File version: 7.2.18362.1
    - Product version: 10.0.18362.1

commit 9dfbd2eead4e15a3dac82cda04df101d5c27cd04
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Wed Jul 3 16:51:10 2019 +0200

    Remove duplicate entry in changes file

commit 9812e7b50fbc1c113a8fa88d8bb8697b5f3bbec3
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Wed Jul 3 15:16:01 2019 +0200

    Python 3: Update py2exe to fix several issues (PR #9856)
    
    * Exclude win32wnet
    * No longer strip the base path from tracebacks when running a frozen build
    * Update py2exe-bin

commit d2c750c36a8890f6cf98f16aba098de1e2752aa7
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Wed Jul 3 14:59:33 2019 +0200

    Changes file: push back to 2019.2 release
    
    These features will be included in the 2019.2 release, adjusted the changes file to reflect this.

commit 4dd26bc0448ac96b1dc1de7b8bf6f3bd8fdf1c93
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Wed Jul 3 14:09:58 2019 +0200

    Update changes file for PR #9854

commit 4007cf4a3d6ff8e9bb584782f442c2d52bfd6d7e
Author: Bill Dengler <codeofdusk@gmail.com>
Date:   Wed Jul 3 08:08:11 2019 -0400

    Update Espeak-ng to commit 67324cc. (PR #9854)

commit 15d8374e46f0615ae5d892fbba2ae34d594f224e
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Tue Jul 2 16:56:50 2019 +0200

    textUtils module to deal with offset differences between Python 3 strings and Windows wide character strings with surrogate characters (PR #9545)
    
    Closes #8981
    
    On Windows, wide characters are two bytes in size. This is also the case in python 2. This is best explained with an example:
    
    Python 2:
    >>> len(u"😉")
    2
    
    In Python 3 however, strings are saved using a variable byte size, based on the number of bytes that is needed to store the highest code point in the string. One index always corresponds with one code point.
    
    A much more detailed description of the problem can be found in #8981.
    
    This commit introduces a new textUtils module that intends to mitigate issues introduced with the Python 3 transition. Most offset based TextInfos are based on a two bytes wide character string representation. For example, uniscribe uses 2 byte wide characters, and therefore 😉 is treated as two characters by uniscribe whereas Python 3 treats it as one.
    
    This is where textUtils.WideStringOffsetConverter comes into view. This new class keeps the decoded and encoded form of a string in one object. This object can be used to convert string offsets between two implementations, namely the Python 3 one offset per code point implementation, and the Windows wide character implementation with surrogate offsets.

commit ac6ea147a131618c9cedf0f15784113be3e09ef8
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Mon Jul 1 13:23:03 2019 +0200

    Update changes file for PR #9781

commit 80acce2051a2e00cd22a700c9275ef0ebfd1f9b2
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Mon Jul 1 13:20:46 2019 +0200

    Allow pasting multiple lines in the Python Console (PR #9781)
    
    In the Python Console, the input field now supports pasting multiple lines from the clipboard.
    
    Fixes #9776

commit bb126125c182237624ed71376d107ef18e6aef17
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Mon Jul 1 12:54:32 2019 +0200

    Update BRLTTY driver (PR #9821)

commit b6c1a92bdc520bc35c7cacded5fd378945ec782d
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Mon Jul 1 12:38:12 2019 +0200

    Update changes file for PR #9828

commit 480950f8bc8c195b77b014d4bc5723ea5a907129
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Mon Jul 1 12:36:39 2019 +0200

    appModule for VS Code (PR #9828)

commit 3e04309262d420f043cf1ca3008802c6cb725590
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Mon Jul 1 12:34:12 2019 +0200

    Fix comparison error in start menu (PR #9846)
    
    Fixes #9842

commit b6729dd9ab442732b56dcf83eb47a66c1ce63bf5
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Mon Jul 1 12:00:31 2019 +0200

    readme.md: Fix broken link to Doxygen version 1.7.3 Windows installer (PR #9848)
    
    Fixes issue #9513

commit ec1c253908a3deac145588a91f2d57b90a74581e
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Fri Jun 28 16:41:37 2019 +0200

    Python 3: Fix deprecation warning extensionPoints.callWithSUpportedKwargs (PR #9778)
    
    * Simplify `extensionPoints.util.callWithSupportedKwargs` in a major way with a major rewrite using python 3 features.

commit 83385de4212a658aca24f6ae9ca071ed2ad3e12f
Author: Bram Duvigneau <bram@bramd.nl>
Date:   Fri Jun 28 12:39:24 2019 +0200

    Fixes for BrailliantB and FreedomScientific (PR #9839)
    
    * Fix Freedom Scientific driver
    
     * Remove writeSize parameter from the call to hwIo.Bulk
    
    * Fix BrailliantB driver
    
     * Ensure the HID report type is a byte in the HID onReceive handler

commit 0a35c8f1863bfc6be68940002ccb49a3ec0a407e
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Fri Jun 28 12:06:59 2019 +0200

    Python3 convert braille drivers (PR #9736)
    
    * fix malformed newline character in brailleNote.py
    
    Converts :
    * braille driver framework.
    * alva driver
    * baum driver
    * BrailleNote driver
    * BrailliantB driver
    * ecoBraille driver
    * eurobraille driver
    * seika driver
    * superBrl driver
    * freedomScientific driver
    * handyTech driver
    * hedoMobilLine driver
    * hedoProfiLine driver
    * hims driver
    * lilli driver
    * papenmeier driver
    * papenmeier serial driver
    
    Adds type annotations to help with fixing these issues
    - braille.py
    - bdDetect.py
    - hwIo.py
    - brailleInput.py
    - hwPortUtils.py
    
    * Moved functions related to Input gesture in papenmeier driver. For some they depend on classes defined later in the file, others are not related to the area they are in.
    
    * Hid device (in hwIo.py) buffers are now created manually using ctypes for writes.
    By creating the buffer manually, we can ensure that data smaller than OutputReportByteLength
    will be padded with null bytes. I tested ctypes marshalling by creating
    a C++ dll, loading it and calling it with ctypes.
    
    * Small refactor to hwIo.py:
     - Only class `hwIo.HID` was using `_writeSize`. class `hwIo.Bulk`
    took the parameter, but only the hims driver provided it, and set it 0. This
    failed the Truth test, and `len(data)` was used in this case anyway.
     - The refactor allows the HID complexity to stay with the HID class.
    If it becomes necessary to support buffers larger than OutputReportByteLength
    further refactoring will become necessary.
    
    In braille display drivers, checked all usages of:
    - ord()
    - bytes()
    - bytearray()
    - str()

commit 4672136a6ef015fa3c9f5e7325a55b9bce6989f1
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Fri Jun 28 11:52:59 2019 +0200

    Update changes file for PR #9028

commit 54913335f1486897dcdfb3672e83ad5d37dfacca
Author: Łukasz Golonka <wulfryk1@gmail.com>
Date:   Fri Jun 28 11:50:53 2019 +0200

    Move the message 'selected' after the text which is selected. (PR #9028)
    
    When text is selected, it is now spoken as "{text} selected".
    
    This change adds a new function `speakSelectedText` which is responsible for announcing selection. This will make future improvements to announcing selection easier.

commit 7241d4fa8f1e9b97d7fa1510e0e20e7c327fa4cd
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Fri Jun 28 18:45:47 2019 +1000

    Python3: stop using unichr in brailleInput.py (#9835)
    
    * brailleInput.py: no longer use unichr or mention the unicode type in comments.
    
    * brailleInput: remove some lines added in a separate pr.

commit 0b9f3efb930667f3f8f8561d5ccf8e441340b025
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Thu Jun 27 19:52:03 2019 -0700

    Update check/Python 3: update check resource is encoded as bytes, thus make it Unicode. Re #9819. (#9837)
    
    Update check resource is encoded as bytes, causing a type error to be thrown if trying to make a key:val out of it. Thus convert this into Unicode before splitting into key:val.

commit 6c739d23ad26b959d28bcd9b2fab54a51b430ae9
Merge: 7dd122b77 7f986ca25
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Jun 28 08:30:03 2019 +1000

    Merge branch 'beta'

commit 7f986ca252a80b569e99245b3407a47831810f92
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Fri Jun 28 00:22:46 2019 +0200

    Restore VoiceSettingsSlider to ensure we don't break compatibility with Audio Themes add-on (#9826)

commit 779ca15be177a26ec43e8e1dbb92cc792cda03f1
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Wed Jun 26 16:07:58 2019 -0700

    Python 3/urllib: imports, timeout (#9820)
    
    * Urllib/Python 3: import urllib.request and urllib.parse, not just urllib. Re #9818.
    
    If one imports urllib in Python 3, only the bare bone package will be imported - no parsing, no errors, no opener, etc. Thus import both urllib.request and urllib.parse 9although just importing urllib.request will then load other parts of this package, imported both in update check module for sake of completeness).
    
    * Urllib/Python 3: urllib.urlencode -> urllib.parse.urlencode. Re #9818.
    
    * Urllib/Python 3: urllib.urlopen -> urllib.request.urlopen for ones without timeout. Re #9818.
    
    * Urllib/Python 3: urllib.urlopen -> urllib.request.urlopen for certificates. Re #9818.
    
    * Urllib/Python 3: urllib.urlopen -> urlib.request.urlopen with timeout. Re #9818.
    
    In Python 3, timeout is specified as part of urllib.request.urlopen function. Therefore move the code around and the accompanying comment for #2352.

commit 1c474d95412fe84572aa657dc21a8f08196b0cfa
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Jun 26 16:42:54 2019 +1000

    Update miscDeps to contain new brlApi module (#9812)
    
    * Update miscDeps to contain new brlApi module.
    
    * Update readme.md to mention brlApi 0.7.0

commit 25eebe0190e9ef9fbc55413d5491d48956d1e087
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Jun 26 14:45:48 2019 +1000

    config.addConfigDirsToPythonPackagePath: When adding scratchpad dirs, create them if they don't already exist. (#9814)

commit 46bbf7db3617e786e76dddf2ec5aecf558a5482e
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Jun 26 14:22:14 2019 +1000

    Revert "App module handler/does app mod exists: return false when called before imports are initialized  (#9800)" (#9815)
    
    This reverts commit 5db55ce41d2dd833bda8ec4e54d118cf4c4bc4f2.

commit 7dd122b77fd0c5bffef17c94c16e95c80f01e4ed
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Jun 26 08:51:08 2019 +1000

    Update what's new for pr #9783

commit 329657f865770cc54f396d785a1409a083604bb6
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Wed Jun 26 00:46:38 2019 +0200

    Python Console: Preserve the result of the last executed command (#9782) (#9783)
    
    * Python Console: Preserve the result of the last executed command (#9782)
    
    * Python Console: Preserve the result of the last executed command (#9782)
    
    Update Developer Guide

commit 9514a3b0d15ad37e082888db65d56147a0532e01
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Jun 26 08:38:43 2019 +1000

    Update what's new for pr #9790

commit 63eaeb5c773241f33b0e352f1936b1d08ee38f41
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Wed Jun 26 00:35:11 2019 +0200

    Python Console: Additions to the initial namespace (#9789) (#9790)

commit 6507e9f81b99c9a95f666af1c80e182d8a9fe673
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Tue Jun 25 13:10:54 2019 -0700

    Add-on handler: ugettext -> gettext (#9810)

commit 8acc73649635612f96face379850296143b3227b
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Tue Jun 25 21:29:12 2019 +0200

    Python 3: fix logging level not being updated correctly (#9809)

commit c61900e549947ac5797496665368599580c80faa
Author: Łukasz Golonka <wulfryk1@gmail.com>
Date:   Tue Jun 25 13:50:13 2019 +0200

    Add additional import to make dllHost appModule work. (#9791)

commit 52ba6ac3b371c7626b1b2784b6f1c7e1907f96ba
Merge: bb1022ec3 b99c96f22
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Jun 25 14:55:49 2019 +1000

    Merge branch 'master' into threshold

commit b99c96f22278456c5819d6fe1ab0785048680bb6
Merge: 4a7808508 d37203fc7
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Jun 25 14:55:19 2019 +1000

    Merge branch 'beta'

commit d37203fc79e4bd17f7011bd757de4ea4d61e6fbe
Merge: ea536389d 1d0ba07eb
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Tue Jun 25 14:50:22 2019 +1000

    Update translations.
    
    From translation svn revision: 49767

commit 1d0ba07eb7f549417878b06d376e86146a285230
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Tue Jun 25 14:50:21 2019 +1000

    L10n updates for: zh_TW
    From translation svn revision: 49767
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    3       3       source/locale/zh_TW/LC_MESSAGES/nvda.po
    15      16      source/locale/zh_TW/characterDescriptions.dic
     2 files changed, 18 insertions(+), 19 deletions(-)

commit 60b34416c59281a1022a812659fe7ab0b491072c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Tue Jun 25 14:50:19 2019 +1000

    L10n updates for: zh_CN
    From translation svn revision: 49767
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    
    Stats:
    4       4       source/locale/zh_CN/LC_MESSAGES/nvda.po
    41      40      user_docs/zh_CN/changes.t2t
    6       6       user_docs/zh_CN/userGuide.t2t
     3 files changed, 51 insertions(+), 50 deletions(-)

commit f1daec819afbff2cb6188226e2bcefc72bbdef6a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Tue Jun 25 14:50:13 2019 +1000

    L10n updates for: ta
    From translation svn revision: 49767
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    5       5       source/locale/ta/LC_MESSAGES/nvda.po
    6       6       user_docs/ta/userGuide.t2t
     2 files changed, 11 insertions(+), 11 deletions(-)

commit dd53df7d691751e6a929f4338eb60de1285ca695
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Tue Jun 25 14:50:09 2019 +1000

    L10n updates for: sk
    From translation svn revision: 49767
    
    Authors:
    Ondrej Rosik <ondrej.rosik@gmail.com>
    Peter Vagner <peter.v@datagate.sk>
    Jan Kulik <jan.kulik.szsle@outlook.sk>
    
    Stats:
    146     35      source/locale/sk/LC_MESSAGES/nvda.po
    64      0       user_docs/sk/changes.t2t
    62      8       user_docs/sk/userGuide.t2t
     3 files changed, 272 insertions(+), 43 deletions(-)

commit c4c4cf3b48b14e91a48da90993f655f65162a025
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Tue Jun 25 14:50:08 2019 +1000

    L10n updates for: ru
    From translation svn revision: 49767
    
    Authors:
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    9       9       user_docs/ru/userGuide.t2t
     1 file changed, 9 insertions(+), 9 deletions(-)

commit a7bb1b5b6825f9d1e917de4a4372bdd13a7d26e0
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Tue Jun 25 14:50:05 2019 +1000

    L10n updates for: ro
    From translation svn revision: 49767
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <contact@florian-ionascu.ro>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    
    Stats:
    46      5       user_docs/ro/userGuide.t2t
     1 file changed, 46 insertions(+), 5 deletions(-)

commit afb7dfd7edeb8164cbdc4c0367965098f43bd256
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Tue Jun 25 14:50:01 2019 +1000

    L10n updates for: pl
    From translation svn revision: 49767
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <hubert.meyer@wp.pl>
    
    Stats:
    7       7       source/locale/pl/LC_MESSAGES/nvda.po
    67      0       user_docs/pl/changes.t2t
    60      6       user_docs/pl/userGuide.t2t
     3 files changed, 134 insertions(+), 13 deletions(-)

commit ba91304fe1b4f2364dc35c6203c18a3412804de9
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Tue Jun 25 14:49:44 2019 +1000

    L10n updates for: hi
    From translation svn revision: 49767
    
    Authors:
    dipendra.lists@gmail.com
    Doc Mehta <joyofinspiring@gmail.com>
    
    Stats:
    620     841     source/locale/hi/LC_MESSAGES/nvda.po
     1 file changed, 620 insertions(+), 841 deletions(-)

commit 7c47d8ea9293dca030f102619b1f4d16f609a6ff
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Tue Jun 25 14:49:43 2019 +1000

    L10n updates for: he
    From translation svn revision: 49767
    
    Authors:
    Shmuel Naaman <shmuel_naaman@yahoo.com>
    Afik Sofir <afik.sofer@gmail.com>
    
    Stats:
    21      35      source/locale/he/LC_MESSAGES/nvda.po
     1 file changed, 21 insertions(+), 35 deletions(-)

commit ab93942eb35b0d09ce232aa54984640104ead683
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Tue Jun 25 14:49:39 2019 +1000

    L10n updates for: fi
    From translation svn revision: 49767
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    11      12      source/locale/fi/LC_MESSAGES/nvda.po
    5       1       user_docs/fi/changes.t2t
    8       10      user_docs/fi/userGuide.t2t
     3 files changed, 24 insertions(+), 23 deletions(-)

commit 7487c98da56ccecc4287c823947bca8fab630344
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Tue Jun 25 14:49:32 2019 +1000

    L10n updates for: de
    From translation svn revision: 49767
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    84      83      source/locale/de/LC_MESSAGES/nvda.po
     1 file changed, 84 insertions(+), 83 deletions(-)

commit 5d4f5daa8f7955e6b69ba3913ee63d711711b610
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Tue Jun 25 14:49:21 2019 +1000

    L10n updates for: an
    From translation svn revision: 49767
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    
    Stats:
    72      18      user_docs/an/userGuide.t2t
     1 file changed, 72 insertions(+), 18 deletions(-)

commit 5db55ce41d2dd833bda8ec4e54d118cf4c4bc4f2
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Mon Jun 24 19:37:29 2019 -0700

    App module handler/does app mod exists: return false when called before imports are initialized  (#9800)
    
    * App module handler/does app mod exists: catch attribute error and assume there is no app module for desktop object if invokved from system tests in Python 3. Re #9797.
    
    When invoked from system tests under Python 3, app module handler will not be initialized, leaving importers (a private list) as None. By the time does app module exists function is called, this will return an attribute error. Thus return False if this happens.
    
    * App module handler/review actions: return early if importers list is not set. Re #9797.
    
    Reviewed by Mick Curran (NV Access): instead of using a try block, let NVDA say there is no app module if importers list isn't set, seen when invoking this function from system tests.

commit 088fb0d1ab6d0070da45f75a39108bd460b991ca
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Jun 25 09:03:52 2019 +1000

    Make output of both py2exe and nose more verbose to aide in future build issues.

commit 4a78085089149606a7bcd085fd314c271a4d2526
Author: Bill Dengler <codeofdusk@gmail.com>
Date:   Mon Jun 24 07:39:08 2019 -0400

    V2 of UI Automation in Windows Console: work around Microsoft bugs on Windows 10 version 1903 and improve caret movement (#9802)
    
    * Check-in winConsoleUIA.py.
    
    * Check-in editableText.py (without caret event handling)
    
    * Reduce _caretMovementTimeoutMultiplier for consoles to balance performance and ssh stability.

commit 3a134d02995fb50fa636e670d91514451e00eac5
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Jun 24 17:24:28 2019 +1000

    bdDetect: change basestring to str.
    This was the only thing causing NVDA not to run in this branch, and will be introduced exactly the same by pr #9736 anyway.

commit e7a7af1ebcdce7c742f473e74fad8fcf3334b60d
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Mon Jun 24 00:05:35 2019 -0700

    System tests/Python 3: syntax and imports (#9801)
    
    * System tests: xmlrpclib and SimpleXMLRPCServer -> xmlrpc. Re #9798.
    
    In Python 3, xmlrpclib and SimleXMLRPCServer are part of a unified xmlrpc module (the former is xmlrpc.client and the latter is xmlrpc.server). Thus combine the imports.
    
    * System tests/library: use relative import.
    
    * System tests: basestring -> str.

commit 4b99fd95e830300d1a08a8bad0dfba4057c9de92
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Mon Jun 24 17:01:11 2019 +1000

    Python3: implement new way of converting COMError to CallCancelled (#9795)
    
    * As we can no longer hook the constructor of COMError, convert COMError to CallCancelled by hooking WinFunctionType's __call__ in the context of comtypes.
    
    * comtypesMonkeyPatches: fix typos in comments.

commit 993ee7b042ac565b9f7b34ca0e65719dbafb1706
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Mon Jun 24 16:34:08 2019 +1000

    Ensure NVDA contains a signed and valid python37.dll (#9796)
    
    * sconstruct: after running py2exe, copy a fresh version of python37.dll into dist as Py2exe currently corrupts the dll's certificate by trying to add a string resource.
    
    * Sconstruct: Fix typo in comment.

commit e03e69737814f424fefc77d29f50f9b47f2a5037
Author: Larry Wang <41977369+larry801@users.noreply.github.com>
Date:   Mon Jun 24 09:06:28 2019 +0800

    Add support for  input methods as Chinese Simplified Microsoft Pinyin and Microsoft Wubi (#8621)
    
    * Support for the Modern IME candidate list UI (used in Windows 8 and above for such input methods as Chinese Simplified Microsoft Pinyin).
    
    Fixes #4145
    Fixes #4011
    
    * Fix focus move issue
    
    * Window handle of ModernCandidateUI destory event is not the same as host application.Use className CiceroUIWndFrame
    
    * Move get windows class into first if
    
    * Use another class name found in log for stability CireoWndFrame
    sometimes does not appear
    
    * Fix double reading after ending inputComposition
    
    * Add Microsoft Quick support
    
    * Correct focus in NVDAHelper since OBJ_HIDE events cannot be detected in NVDA find dialog
    
    * fix strange double NVDAHelper.py
    
    * fix confiicts caused by line ending
    
    * Correct focus fix
    
    * Turn off autocrlf
    
    * fix line ending problem
    
    * Restore old msaa focus correction
    
    * Fix merge issue
    
    * merge master
    
    * Split long comments
    
    Co-Authored-By: Leonard de Ruijter <leonardder@users.noreply.github.com>
    
    * Split long if statement to lines
    
    Co-Authored-By: Leonard de Ruijter <leonardder@users.noreply.github.com>
    
    * Split comments
    
    Co-Authored-By: Leonard de Ruijter <leonardder@users.noreply.github.com>
    
    * Use standalone focus correction logic for ModernCandidate
    
    * Call  _get_parent in NVDAObject.window directly
    
    Co-Authored-By: Leonard de Ruijter <leonardder@users.noreply.github.com>
    
    * Remove debug logging
    
    * Merge two if statement and split into lines
    
    * Fix missing imports
    
    * Optimize imports
    
    * Remove redundant import
    
    * Add comment for why candidate window is considered bad
    
    * Refresh candidate item on its own so that we do not touch property of other objects
    
    * Fix line endings for NVDAHelper.py
    
    * Fix line endings for NVDAObjects/IAccessible/__init__.py
    
    * Fix line endings of NVDAObjects/IAccessible/mscandui.py
    
    * Fix line endings for _UIAHandler.py
    
    * Fix typo in comments
    
    Co-Authored-By: Leonard de Ruijter <leonardder@users.noreply.github.com>

commit 0a0990453ce23b6efcf749c81a3d48ad2f084f47
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Mon Jun 24 10:32:43 2019 +1000

    Correct a few places where we are trying to do integer comparisons with None. (#9794)

commit 40bef374ec4982a58445f3678a6821bd7c024dbd
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Sat Jun 22 22:16:16 2019 +1000

    Revert "UI Automation in Windows Console: work around Microsoft bugs on Windows 10 version 1903 and improve caret movement (#9773)" (#9788)
    
    This reverts commit 27694a311df7c20829398111309d46a290c79235.

commit 7e0599d95820e103c87082a4f826d137c9d4f90c
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Fri Jun 21 06:43:40 2019 +0200

    Write syntax errors and tracebacks to python console (#9767)

commit b8fb2a7db49b63b4ea2d474d72fc96c146368c3f
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Fri Jun 21 06:33:12 2019 +0200

    Python 3: fix several remaining division errors (#9774)
    
    * Edit objects, font size
    
    * 'MSHTML
    
    * Changes to api, use locationHelper to calculate center point
    
    * devenv
    
    * Progress bars
    
    * IBM/Lotes Notes
    
    * displayModel and touch
    
    * virtual buffers
    
    * winConsoleHandler

commit 27694a311df7c20829398111309d46a290c79235
Author: Bill Dengler <codeofdusk@gmail.com>
Date:   Fri Jun 21 00:11:50 2019 -0400

    UI Automation in Windows Console: work around Microsoft bugs on Windows 10 version 1903 and improve caret movement (#9773)
    
    * Work around UIA caret/selection bugs in Windows 10 1903 and later.
    
    * On Windows 10, use UIA caret events for determining caret movement.
    
    * Remove hardcoded development value.
    
    * Move caret fixes to consoles.
    
    * Review actions.

commit 5883af56752c3775ce1f50710d7214f29f2b840d
Merge: 1e24ae6df ea536389d
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Jun 21 10:40:59 2019 +1000

    Merge branch 'beta'

commit ea536389d6a5f65fd7a5fcb470e92238c38a7078
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Jun 21 10:40:16 2019 +1000

    Update what's new.

commit f8507be467e025c1b121dd2fdb53ef95f4a245aa
Author: FelixGruetzmacher <constantlyvariable@gmail.com>
Date:   Fri Jun 21 02:35:32 2019 +0200

    New handy tech display models (#9691)
    
    * Added support for Connect Braille and Basic Braille 84.
    
    * Update what's new.
    
    * Added support for the Basic Braille Plus family of displays. Added sleep mode functionality so that applications can signal to the driver that it temporarily close its ports.
    
    * Hidden message window for Handy Tech driver is now always created and destroyed on the main ui thread.
    
    * Fixed line endings for modified files.
    
    * Cleaned up Handy Tech driver code.
    
    * Follow-up, getting rid of an inconsistency.
    
    * Final cosmetic corrections to Handy Tech driver.
    
    * Removed unnecessary import.

commit a72de7152dd7d3277a7d608a105655be040cbab2
Author: Łukasz Golonka <wulfryk1@gmail.com>
Date:   Fri Jun 21 02:23:30 2019 +0200

    No longer map ReadOnlyEditBox to all edit fields in Windows Explorer do it only for read-only ones. Hopefully fixes https://github.com/nvaccess/nvda/issues/9772 (#9779)

commit 1e24ae6df667c758c427d58fba8f122d3c6c8a7f
Merge: 1d50498c5 ea6c163d2
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Jun 21 10:16:02 2019 +1000

    Merge branch 'beta'

commit ea6c163d2bee88a8fad259bda1696a3519ca7199
Author: Adriani90 <adriani.botez@googlemail.com>
Date:   Fri Jun 21 02:15:07 2019 +0200

    Updated contributors file.

commit 97b01e398cc91af6d392999547314f5881d0ba80
Merge: 4684490fd 4b5190975
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 21 00:06:09 2019 +1000

    Update translations.
    
    From translation svn revision: 49648

commit 4b5190975eeb5da4057f5983cc245a13b2124a78
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 21 00:06:08 2019 +1000

    L10n updates for: zh_TW
    From translation svn revision: 49648
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    542     189     source/locale/zh_TW/LC_MESSAGES/nvda.po
    133     132     source/locale/zh_TW/characterDescriptions.dic
     2 files changed, 675 insertions(+), 321 deletions(-)

commit 0d50e309e9dbe8e27b2011efaedffaa220f85140
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 21 00:06:06 2019 +1000

    L10n updates for: zh_HK
    From translation svn revision: 49648
    
    Authors:
    Eric Yip <ericycy@gmail.com>
    
    Stats:
    143     35      source/locale/zh_HK/LC_MESSAGES/nvda.po
     1 file changed, 143 insertions(+), 35 deletions(-)

commit b239c18af987df9579a8940521cd71885e1f90f8
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 21 00:06:05 2019 +1000

    L10n updates for: zh_CN
    From translation svn revision: 49648
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    singer.mike.zhao@gmail.com
    
    Stats:
    2       1       source/locale/zh_CN/LC_MESSAGES/nvda.po
    59      8       user_docs/zh_CN/changes.t2t
    2       4       user_docs/zh_CN/userGuide.t2t
     3 files changed, 63 insertions(+), 13 deletions(-)

commit d6a36680a0bbd041956e3319d2220dc529a5366e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 21 00:06:03 2019 +1000

    L10n updates for: vi
    From translation svn revision: 49648
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    86      87      source/locale/vi/LC_MESSAGES/nvda.po
    10      8       user_docs/vi/userGuide.t2t
     2 files changed, 96 insertions(+), 95 deletions(-)

commit d81fd85a6a948b73213b5fa48cb888f0ade0517d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 21 00:06:02 2019 +1000

    L10n updates for: uk
    From translation svn revision: 49648
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    66      10      user_docs/uk/userGuide.t2t
     1 file changed, 66 insertions(+), 10 deletions(-)

commit 3f917810211331f5e0d8783d1f5f25d8c4582891
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 21 00:05:59 2019 +1000

    L10n updates for: ta
    From translation svn revision: 49648
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    19      19      source/locale/ta/LC_MESSAGES/nvda.po
    44      44      user_docs/ta/userGuide.t2t
     2 files changed, 63 insertions(+), 63 deletions(-)

commit 41b5470ba38c06e15560dc1bd8de088484101819
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 21 00:05:51 2019 +1000

    L10n updates for: ro
    From translation svn revision: 49648
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <contact@florian-ionascu.ro>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    
    Stats:
    72      0       user_docs/ro/changes.t2t
    9       9       user_docs/ro/userGuide.t2t
     2 files changed, 81 insertions(+), 9 deletions(-)

commit ab40819db3adc7172d68b12b76147316e43c3907
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 21 00:05:50 2019 +1000

    L10n updates for: pt_PT
    From translation svn revision: 49648
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    3       3       source/locale/pt_PT/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 3 deletions(-)

commit bbe69c6879d48dd5eaad2fe6d63d3bf402f822d4
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 21 00:05:46 2019 +1000

    L10n updates for: nl
    From translation svn revision: 49648
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    153     37      source/locale/nl/LC_MESSAGES/nvda.po
    101     33      user_docs/nl/changes.t2t
     2 files changed, 254 insertions(+), 70 deletions(-)

commit df0229ec3b71127d3c7e9b9d91b177abcd20884f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 21 00:05:42 2019 +1000

    L10n updates for: mn
    From translation svn revision: 49648
    
    Authors:
    Mongol NVDA-Translation <mongoliannvdatranslation@gmail.com>
    
    Stats:
    543     153     source/locale/mn/LC_MESSAGES/nvda.po
     1 file changed, 543 insertions(+), 153 deletions(-)

commit 30e529550f8d072e8b27a877a1b1254fcb90637f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 21 00:05:36 2019 +1000

    L10n updates for: ja
    From translation svn revision: 49648
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    2       2       user_docs/ja/userGuide.t2t
     1 file changed, 2 insertions(+), 2 deletions(-)

commit f8bcbb5fc2f55c3c6f5e00a96d210603ee850ee9
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 21 00:05:34 2019 +1000

    L10n updates for: it
    From translation svn revision: 49648
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    3       3       source/locale/it/LC_MESSAGES/nvda.po
    65      0       user_docs/it/changes.t2t
    2       1       user_docs/it/userGuide.t2t
     3 files changed, 70 insertions(+), 4 deletions(-)

commit 389b95b12e1578cbed3cc200e6b34b458f245c86
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 21 00:05:29 2019 +1000

    L10n updates for: hi
    From translation svn revision: 49648
    
    Authors:
    dipendra.lists@gmail.com
    Doc Mehta <joyofinspiring@gmail.com>
    
    Stats:
    122     172     source/locale/hi/LC_MESSAGES/nvda.po
     1 file changed, 122 insertions(+), 172 deletions(-)

commit f105b50900fec54502599ce8375f95e6c7bedc64
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 21 00:05:28 2019 +1000

    L10n updates for: he
    From translation svn revision: 49648
    
    Authors:
    Shmuel Naaman <shmuel_naaman@yahoo.com>
    Afik Sofir <afik.sofer@gmail.com>
    
    Stats:
    154     32      source/locale/he/LC_MESSAGES/nvda.po
     1 file changed, 154 insertions(+), 32 deletions(-)

commit 4e4c851c0ec830470b809b73953b64e1593888ed
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 21 00:05:25 2019 +1000

    L10n updates for: fr
    From translation svn revision: 49648
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess33.net>
    
    Stats:
    2       2       source/locale/fr/LC_MESSAGES/nvda.po
     1 file changed, 2 insertions(+), 2 deletions(-)

commit 4c96bc9c7f2074c67de7631b75d418931459b7f3
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 21 00:05:18 2019 +1000

    L10n updates for: el
    From translation svn revision: 49648
    
    Authors:
    Irene Nakas <irnakas@gmail.com>
    Nikos Demetriou <nikosdemetriou@googlemail.com>
    access@e-rhetor.com
    
    Stats:
    156     35      source/locale/el/LC_MESSAGES/nvda.po
     1 file changed, 156 insertions(+), 35 deletions(-)

commit d21028eca56e98499a96e91d68a33e64e422e464
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 21 00:05:10 2019 +1000

    L10n updates for: bg
    From translation svn revision: 49648
    
    Authors:
    Zahari Yurukov <zahari.yurukov@gmail.com>
    Kostadin Kolev <k_kolev1985@mail.bg>
    
    Stats:
    159     41      source/locale/bg/LC_MESSAGES/nvda.po
    72      0       user_docs/bg/changes.t2t
    76      22      user_docs/bg/userGuide.t2t
     3 files changed, 307 insertions(+), 63 deletions(-)

commit 4a49cb15a4770628ba7215b730c4c667cef38899
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 21 00:05:08 2019 +1000

    L10n updates for: ar
    From translation svn revision: 49648
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>, Omar Alojaimi <amrahmad1995@gmail.com>
    
    Stats:
    11      11      source/locale/ar/LC_MESSAGES/nvda.po
    3       1       user_docs/ar/changes.t2t
     2 files changed, 14 insertions(+), 12 deletions(-)

commit 7bbbea777e176ebc8a62ccf158ef6f85bc879982
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 21 00:05:05 2019 +1000

    L10n updates for: an
    From translation svn revision: 49648
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    
    Stats:
    63      0       user_docs/an/changes.t2t
     1 file changed, 63 insertions(+)

commit 1d50498c513bb34b826dd111e2be437674a411c7
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Jun 18 12:16:53 2019 +1000

    Fix formatting of changes.t2t.

commit 0ee187da56693c4e399f4b9ceaee8de8024bb8eb
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Jun 18 10:02:22 2019 +1000

    Update What's new for pr #9761.

commit 2d4e27cf4e446074a3ad3c681793540fa7f88d98
Merge: c4cafd341 bb1022ec3
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Jun 18 09:40:31 2019 +1000

    Merge branch 'threshold' into threshold_py3_staging

commit bb1022ec36f129f7e0ea29b6edca0e8199c58461
Merge: a705a1254 d4e81ac4e
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Jun 18 09:39:54 2019 +1000

    Merge branch 'master' into threshold

commit c4cafd3416836549dd604f09f7853fda4e1a5f6f
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Jun 18 09:39:07 2019 +1000

    Update what's new.

commit c312713b64df4345c5b4a9b7326c2757deb54960
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Tue Jun 18 01:36:30 2019 +0200

    Compile liblouis with 32 bit widechars (#9544)
    
    * Build liblouis with 32-bit unicode support (UCS-4)
    
    * Remove the /WX flag when compiling liblouis
    
    * Fix character offsets for IA2
    
    * Review action
    
    * No longer remove /WX flag for liblouis builds

commit d4e81ac4ed259c94697bda21f7ed49461f3828a8
Author: Bill Dengler <codeofdusk@gmail.com>
Date:   Mon Jun 17 19:31:02 2019 -0400

    UI Automation in Windows Console: Remove "Text area", replace isAtLeastWin10, and code cleanup (#9761)
    
    * isAtLeastWin10 -> isWin10(atLeast = True)
    
    * winConsoleUIA.winConsoleUIA -> winConsoleUIA.WinConsoleUIA for consistency.
    
    * Further renaming of winConsoleUIA -> WinConsoleUIA, and once again explicitly clear the word buffer when flushing queued chars.
    
    * Comments.

commit 9cfa14ef9a49659d7dc9f3d200a93e50d34e04c7
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Mon Jun 17 17:19:44 2019 +1000

    Python3: Provide __hash__ methods where ever we have provided __eq__ methods (#9757)
    
    * Provide __hash__ methods where ever we have provided __eq__ methods.
    
    * locationHelper: we can just use super's __hash__ for hashing as these are NamedTuples.

commit 535c9382e3b89480f36f82fb72dceda65dc029ef
Author: Bill Dengler <codeofdusk@gmail.com>
Date:   Mon Jun 17 01:12:04 2019 -0400

    UI Automation in Windows Console: remove the isTyping logic from UIA consoles (#9673)
    
    * Remove the isTyping logic from UIA consoles.
    
    This makes autoread work with more console programs at the cost of a few typed characters possibly being echoed/doubled.
    
    * Meeting actions.
    
    * Fix Liblouis submodule maybe?

commit eb2d28079f5e0905f897758a045d442ef4a75896
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Mon Jun 17 09:52:56 2019 +1000

    cmp no longer exists in Python3. Replace with (a>b)-(a<b) (#9758)

commit 7862dfb038afe00b5dd7fef117e91c819eac4b3a
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Mon Jun 17 09:52:21 2019 +1000

    Python3: base virtualBuffer: coerce attribute values to a string before escaping for regular expression  (#9759)
    
    * Base virtualBuffer: make sure to coerce values to a string before escaping xml characters.
    
    * Actually coerce the string :)
    
    * Correct comment.

commit a8f4c5494a2555a811c75198cd679f0a34516934
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Mon Jun 17 09:00:19 2019 +1000

    Revert "Remove need for hashing NVDAObject and TextInfo objects (#9746)" (#9756)
    
    This reverts commit 6ef31d97d51ff45d68ac5da83fccc48487549ce3.

commit c3d8e4aa6967ec98fd3a7417552da17c767559d9
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Sun Jun 16 14:54:15 2019 -0700

    Python 3: use native metaclass definition syntax (#9753)
    
    * NVDA object: metaclass syntax.
    
    Python 2 classes can specify metaclasses via __metaclass__ attribute, whereas a metaclass keyword argument is required in Python 3. Thus use Python 3 native syntax for specifying metaclasses.
    
    * Excel window object: metaclass syntax.
    
    * Base object: metaclass syntax.
    
    * Browse mode: metaclass syntax.
    
    * Content recog: metaclass syntax.
    
    * Acc prop server: metaclass syntax.
    
    * Settings dialogs: metaclass syntax.
    
    * Speech commands: metaclass syntax.
    
    * Metaclass: remove six.with_metaclass import as Python 3 native metaclass syntax is used.

commit b34733e76185c6ca8c46232052540f8407088cee
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Sat Jun 15 21:47:33 2019 -0700

    Input core/input gestures dialog: script function object has no attribute __func__. (#9752)
    
    As part of Input Gestures dialog initialization, script function objects are gathered (or at least script infos are gathered). Previously it would work, but in Python 3, attribute erro is raised when trying to obtain script.__func__, with Python 3 claiming that there is no such attribute. Thus remove this attribute which restores Input Gestures dialog.

commit 7ccbe6fdf93ccf1e2f50d3637d56de1683d44003
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Sat Jun 15 19:47:57 2019 -0700

    Python 3: more native imports and modules (#9751)
    
    * Python Console: __builtin__ -> builtins.
    
    * Add-on handler: cPickle -> pickle
    
    * Add-on handler: six.moves.CStringIO -> io.StringIO
    
    * Update check: cPickle -> pickle

commit e8fdfbf8b94337d84a2c7bb29e3fc13b9f945105
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Sat Jun 15 15:51:16 2019 -0700

    Global commands: restore commands affected by division operator differences between Python 2 and 3 (#9748)
    
    * Global commands/mouse to navigator object: use two slashes to guarantee integers for mouse coordinates. Re #9641.
    
    Move mouse to navigator object command fails in Python 3 because of ytpe differences: user32::SetCursorPos wants integers, but because one slash is used, it'll get floats, causing errors to be logged. Thus guarantee inteers via floor division, thus restoring the said command.
    
    * Global commands/battery status: hours and minutes must be integers. Re #9641.
    
    With just one slash, hours nad minutes for remaining time on battery will get floats when the text format specifies integers. Thus use floor division, restoring battery status command in Python 3.

commit 6ef31d97d51ff45d68ac5da83fccc48487549ce3
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Sun Jun 16 08:47:21 2019 +1000

    Remove need for hashing NVDAObject and TextInfo objects (#9746)
    
    * baseObject.AutoPropertyObject's __instances, and eventHandler's _pendingEventCounts: NvDAObject and TextInfo instances can no longer be used directly as the key in a dict due to hashing issues in Python3. Rather, the key is now the id (address) of the object.
    
    * Address review comments.

commit 590c4f98dd94dd75386e346639b4014dced0ccbf
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Sat Jun 15 18:36:16 2019 +1000

    remove use of unichr, basestring and unicode objects. (#9724)
    
    * Convert all usage of unichr to chr.
    
    * Replace basestring with str.
    
    * Remove usage of unicode() which is not available in Python3.
    
    * Revert changes to braille related files as these will be handled in a separate pr.
    
    * Address review comments.

commit 5ec1aeb24430ffbe4a2c51188de65c7109be7fbd
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Sat Jun 15 15:06:44 2019 +1000

    objidl: HRESULT is no longer available in ctypes.wintypes. Get it from comtypes. (#9745)

commit e19697ed5446c8c871fa4116e646f6b883ba3214
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Sat Jun 15 02:06:01 2019 +0200

    Python 3: No longer encode or decode if it is not necessary (#9734)
    
    * Remove obsolete encoding and decoding steps
    
    * Fix bite iteration

commit 5da17fd0d6940cccf13444eb420ec471c4deedc2
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Jun 14 16:59:02 2019 +1000

    Quick fix from pr #9729: for loop's cannot be split over two lines.

commit 8d63788fd0c801f8e269e779f96df453270fb533
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Thu Jun 13 23:33:26 2019 -0700

    Python 3: zip function -> list(zip), itertools.izip -> zip() (#9729)
    
    * Language list/Python 3: wrap zip function call inside a list call.
    
    Behavior of zip() functoin has changed - returning a list in Python 2 versus being an iterator in Python 3. Because language handler/language list uses old zip function behavior, wrap this inside a list call.
    
    * IAccessible/IA2mozilla: itertools.izip -> zip, remove itertools import.
    
    * Braille: itertools.izip -> zip function.
    
    * Language handler: remove extraneous whitespace
    
    * Izip to zip (address review actions): simplify comment in language handler, pslit lines in mozilla text iA2 objects.

commit e6fa0583f0cdf18ce579f064f944aca55376e7e9
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Thu Jun 13 16:45:42 2019 -0700

    Unittests/Python 3: update syntax, catch unbound method registration test in extension points as expected failure (#9726)
    
    * Unittest/Python 3: update copyright years. Re #9720.
    
    * Unittest/test driver/Python 3: no more unicode/decoding, proper relative import. Re #9720.
    
    * Unittest/base object tests/Python 3: proper relative import. Re #9720.
    
    * Unittest/braille tests/Python 3: proper relative import. Re #9720.
    
    * Unittest/braille tables/Python 3: dict.itervalues -> dict.values. Re #9720.
    
    * Unittest/control types/Python 3: dict.iteritems -> dict.items. Re #9720.
    
    * Unittest/text provider/Python 3: just use text as given instead of converting it into Unicode first. Re #9720.
    
    * Unittest/script handler/Python 3: assertItemsEqual -> assertCountEqual. Re #9720.
    
    Python 2's unittest documentation states self.assertItemsEqual is replaced by self.assertCountEqual in Python 3, thus follow this directive.
    
    * Unittest/extension points/Python 3: mark unbound method registration test as expected failure. Re #9720.
    
    For some reason unbound method registration test keeps failing in Python 3. Until this is resolved, mark this test as expected failure.
    
    * Unittest/base object/Python 3: self.assertRaisesRegexp -> self.assertRaisesRegex due to deprecation warning. Re #9720.
    
    * Unittests/review action: remove unnecessary comments. Re #9720.
    
    * Unittests/control types: contorlTypes.__dict__ -> vars(contorlTypes). Re #9720.
    
    * Extension points/util: add a comment about failing unittest. Re #9720.

commit 95b20d14998f67a1850f4ac0a9a2a70a9d24a24f
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Thu Jun 13 16:01:40 2019 -0700

    WinConsole handler/Python 3: use floor divisoin assignment operator. Re #9641. (#9737)
    
    When calculating console coordinates, Python 2 returns integers but Python 3 returns a float, caused by division assignment operator. Thus use //= instead of /= to guarantee integers. This also resolves backspacing error seen with wrong coordinate type.

commit 4684490fde6831b3fd343b96983cde0b2f6856ca
Merge: a7bdcaea8 076d7dfbe
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 14 00:06:06 2019 +1000

    Update translations.
    
    From translation svn revision: 49542

commit 076d7dfbe5c7576fe7f3e70468e0cb19be7be9bb
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 14 00:06:04 2019 +1000

    L10n updates for: zh_CN
    From translation svn revision: 49542
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    
    Stats:
    72      0       user_docs/zh_CN/changes.t2t
     1 file changed, 72 insertions(+)

commit c6d0a269a881da1b80d5d3f3072f2e48e0eb835f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 14 00:05:58 2019 +1000

    L10n updates for: ta
    From translation svn revision: 49542
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    29      28      source/locale/ta/LC_MESSAGES/nvda.po
    144     90      user_docs/ta/userGuide.t2t
     2 files changed, 173 insertions(+), 118 deletions(-)

commit b6674c1c64ae08a37a4176a8aa127f04b7b97ac7
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 14 00:05:56 2019 +1000

    L10n updates for: sr
    From translation svn revision: 49542
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    151     33      source/locale/sr/LC_MESSAGES/nvda.po
    67      0       user_docs/sr/changes.t2t
    62      8       user_docs/sr/userGuide.t2t
     3 files changed, 280 insertions(+), 41 deletions(-)

commit eae5412af3ea11271bf8e2cc6d6f7c40546ec508
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 14 00:05:52 2019 +1000

    L10n updates for: ru
    From translation svn revision: 49542
    
    Authors:
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    5       5       user_docs/ru/changes.t2t
     1 file changed, 5 insertions(+), 5 deletions(-)

commit b4ba0b3e4dcd7ef11240e7dae935dc14d39eaeef
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 14 00:05:49 2019 +1000

    L10n updates for: pt_PT
    From translation svn revision: 49542
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    9       9       source/locale/pt_PT/LC_MESSAGES/nvda.po
    10      0       user_docs/pt_PT/changes.t2t
    96      38      user_docs/pt_PT/userGuide.t2t
     3 files changed, 115 insertions(+), 47 deletions(-)

commit 29e0249b4f5b3587b8ccecca17fb070ef95aee11
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 14 00:05:47 2019 +1000

    L10n updates for: pt_BR
    From translation svn revision: 49542
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    10      10      source/locale/pt_BR/LC_MESSAGES/nvda.po
    12      7       user_docs/pt_BR/changes.t2t
    61      7       user_docs/pt_BR/userGuide.t2t
     3 files changed, 83 insertions(+), 24 deletions(-)

commit 981df848aa8c2dcc6d64b064ad5df4ee3fe05171
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 14 00:05:44 2019 +1000

    L10n updates for: nl
    From translation svn revision: 49542
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    62      5       user_docs/nl/userGuide.t2t
     1 file changed, 62 insertions(+), 5 deletions(-)

commit fc44ed37b94a3dea76b471745360321d0c804435
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 14 00:05:37 2019 +1000

    L10n updates for: ko
    From translation svn revision: 49542
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    29      30      source/locale/ko/LC_MESSAGES/nvda.po
    10      10      user_docs/ko/changes.t2t
     2 files changed, 39 insertions(+), 40 deletions(-)

commit 5e4b7647f934b8c58f502ac58df3aeeeb3efc154
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 14 00:05:33 2019 +1000

    L10n updates for: it
    From translation svn revision: 49542
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    154     36      source/locale/it/LC_MESSAGES/nvda.po
    63      9       user_docs/it/userGuide.t2t
     2 files changed, 217 insertions(+), 45 deletions(-)

commit d43aa952cbccfb46d79c0df351d70b5f42c52a86
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 14 00:05:28 2019 +1000

    L10n updates for: hi
    From translation svn revision: 49542
    
    Authors:
    dipendra.lists@gmail.com
    Doc Mehta <joyofinspiring@gmail.com>
    
    Stats:
    231     274     source/locale/hi/LC_MESSAGES/nvda.po
     1 file changed, 231 insertions(+), 274 deletions(-)

commit b0e3171b924e543fd0385a65f6eaecc819904c10
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 14 00:05:16 2019 +1000

    L10n updates for: de
    From translation svn revision: 49542
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    20      21      source/locale/de/LC_MESSAGES/nvda.po
    1       1       source/locale/de/characterDescriptions.dic
    1       1       source/locale/de/symbols.dic
    1       1       user_docs/de/changes.t2t
    1       1       user_docs/de/userGuide.t2t
     5 files changed, 24 insertions(+), 25 deletions(-)

commit 2a93e9a5540412ec4eb31704ff837107c093d04d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 14 00:05:08 2019 +1000

    L10n updates for: ar
    From translation svn revision: 49542
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>, Omar Alojaimi <amrahmad1995@gmail.com>
    
    Stats:
    69      4       user_docs/ar/changes.t2t
    5       6       user_docs/ar/userGuide.t2t
     2 files changed, 74 insertions(+), 10 deletions(-)

commit 35d0e51819a5dd210ba93fb1f68d12ea91667ff8
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 14 00:05:05 2019 +1000

    L10n updates for: an
    From translation svn revision: 49542
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    
    Stats:
    1067    324     source/locale/an/LC_MESSAGES/nvda.po
     1 file changed, 1067 insertions(+), 324 deletions(-)

commit c3d0e273c59d09c4bd564d9b43037c1f962c941b
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Jun 12 22:39:24 2019 +1000

    Python3: gettext is unicode, and pgettext is placed in builtins properly (#9714)
    
    * gettext is now always unicode. Insert pgettext into builtins rather than Python 2's __builtin__.
    
    * Address review comments.
    
    * Unit tests: gettext is unicode.

commit 0e06e4532f662284f1a6078fe751651069cd26f8
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Jun 12 19:02:45 2019 +1000

    Python3: fix NVDA's logging infrastructure (#9712)
    
    * The logging._levelNames dict no longer exists in Python 3. Instead, we now use logging.getLevelName.
    
    * logHandler: We can now use logging.FileHandler rather than logging.StreamHandler and assume unicode all the way until writing the file to disk with utf8.
    logHandler: FunctionType.func_code is now FunctionType.__code__.
    
     # Please enter the commit message for your changes. Lines starting
    
    * logHandler: address review comments.

commit 7b2861fc14b9f1d30c28df0df1b7cd22738cc28b
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Wed Jun 12 10:04:17 2019 +0200

    Add NVDA+F1 shortcut to the userguide (#9690)

commit 1164178fb4172a2893f94d1c87155830412f6115
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Jun 12 17:30:56 2019 +1000

    Python3: fix remaining syntax errors found by py2exe (#9719)
    
    * Bracket some tuples in for loops, and remove L (long-type)suffix from numbers.
    
    * Python 3: 'ur' string prefixes no longer supported.
    
    Modified 'ur' strings to be just 'r' strings prefixes
    
    * More syntax fixes.
    
    * Address review comments.
    
    * setup.py: exclude win32api which stops py2exe from trying to include pywintypes37.dll.
    
    * setup.py: exclude netbios and winxptheme pywin32 modules as they are not needed.

commit 1ab7d8203f736f939d165c445ed9e3e1810d5979
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Jun 12 07:19:40 2019 +1000

    Python 3: the thread module is no longer available. Use threading instead. (#9713)

commit 0443119eb6968b711bb60966718d6e51a0af437e
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Tue Jun 11 13:42:42 2019 -0700

    Check pot: file -> open (#9718)
    
    * Tests/check pot: update copyright years
    
    * Tests/check pot: file -> open.

commit 031532db1b3652d0b169f81b7aafadd87b06f51d
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Tue Jun 11 14:16:33 2019 +0200

    Python 3: Fix use of subprocess (#9716)
    
    * Python 3: Fix use of subprocess
    
    * Revert unnecessary change

commit 840dce5bbfe4ab7e3bfb22e30bed31e66ce243a2
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Tue Jun 11 09:26:50 2019 +0200

    Update Scons build environment to run on Python 3 (#9667)
    
    * Update batch script and python wrapper for scons
    
    * * Update copyright
    * Remove obsolete _winreg import
    * No longer pass unicode=True to gettext.install
    
    * * sconstruct: xrange>range
    * comInterfaces_sconscript: iteritems>items
    * comInterfaces_sconscript: basestring>str
    * nvdaHelper/archBuild_sconscript: xrange>range
    * Liblouis sconscript: file>open
    * cldrDict_sconscript: iteritems>items
    
    * Disable developer documentation for now
    
    * comInterfaces_sconscript: make sure that the byte compiled targets are picked up correctly by scons
    
    * Fix espeak initialization and paths
    
    * sconstruct: file>open
    
    * Convert doxygen script to Python 3 and fix doxygen site tool
    
    * Fix pot files creation
    
    * Fix several issues to the dist builder
    
    * Issue errors about str(bytes_instance), str(bytearray_instance)
    
    * Update readme

commit f1f823e5fd2bed5ddb4a619ff70fe4d50fdc0b71
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Tue Jun 11 04:49:29 2019 +0200

    Update setup script for Python 3.7 (#9605)
    
    * Update setup script for Python 3.7
    
    * Fix typo and wrongly formatted tuple
    
    * On python 3, Tkinter was renamed to tkinter

commit 2e323342702e6c11212f061e4411cb80b3d9a9c2
Author: Takuya Nishimoto <nishimotz@gmail.com>
Date:   Tue Jun 11 11:42:32 2019 +0900

    txt2tags for python3 #8734 (#9648)
    
    * txt2tags for python3 #8734
    
    * address review comments
    
    Co-Authored-By: Leonard de Ruijter <leonardder@users.noreply.github.com>
    
    * address review comments
    
    * address review comments. revert miscDeps
    
    * address review comment #9648
    
    * Update miscDeps to master containing python3 txt2tags.

commit 89b2744991c7095dc3584a1aa9bdeb46a9932bce
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Jun 11 12:40:55 2019 +1000

    Update miscDeps to latest master, containing python3 txt2tags.

commit 11ec1be097e07445b1cd0ae1bda0ca78ecfe7d9b
Author: Bill Dengler <codeofdusk@gmail.com>
Date:   Mon Jun 10 20:19:38 2019 -0400

    UI Automation in Windows Console: add focus redirection for the UIA console main window (#9674)
    
    * Add focus redirection for the UIA console main window.
    
    * Implement winConsoleUIA.findExtraOverlayClasses.
    
    * If->elif

commit b8082539f4cd9a644841ce676fd656a2dab201db
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Mon Jun 10 10:26:06 2019 +1000

    Python 3/remote python console: SocketServer -> socketserver. (#9706)

commit ddae63bf0f07b339be8b24db3a2c5c5863226310
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Mon Jun 10 10:09:52 2019 +1000

    Python3: os.getcwdu -> os.getcwd (#9705)
    
    * Python 3: os.getcwdu -> os.getcwd.
    
    * config.isInstalledCopy: don't catch attributeError when comparing with os.stat. This should never happen. and if it does, we want to know about it.
    
    * updateCheck.py: one more use of getcwdu changed.

commit ef8c266d467123f6420fe4a43c8c562153fd5ade
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Mon Jun 10 09:37:22 2019 +1000

    Python 3: sys.maxint -> sys.maxsize, as maxint is gone in Python 2. Re #7105. (#9704)

commit 5b67a1bf6fccb60cba123b71c7c9ee348c5a9056
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Mon Jun 10 09:25:01 2019 +1000

    import Python 3 native modules (#9703)
    
    * Python 3: import Python 3 native modules.
    
    * nvda.pyw: _winreg -> winreg.

commit 6506bc78c124207bd21d2ce6bc49af976acfc57d
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Sun Jun 9 22:34:05 2019 +0200

    Update dependencies for Python 3 (#9630)
    
    * Update dependencies for Python 3
    
    * Update dependency for py2exe to contain pywin32
    
    * Update submodule references to latest master branches
    
    * Update miscDeps to latest master.

commit 5f0be63c9bb845e29df31434998efbe805a25b2b
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Sat Jun 8 18:06:57 2019 -0700

    Python 3: dict.haskey -> key in dict (#9697)
    
    * Outlook Express app module: dict.has_key -> key in dict. Re #9640.
    
    Python 3 retires dict.has_key in favor of testing for membership (key in dict), thus use this method instead.
    
    * JAB objects: dict.has_key -> key in dict. Re #9640.

commit e18c5f40701015b68cc4602ac214315adb2406cc
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Sat Jun 8 18:05:47 2019 -0700

    Python 3: except exception, e -> except as e (#9698)
    
    * IAccessible object: except COMError, e -> COMError as e.
    
    In Python 2, the exception statement of the form 'except exception, e' was acceptable, no longer the case in Python 3 (requires 'except exception as e'). Thus use the latter in IAccessible objects and others.
    
    * Adobe Flash object: except COMError, e -> COMError as e.
    
    * Log viewer: except (IOError, OSError), e -> (IOError, OSError) as e.
    
    * Input core: except (configobj.ConfigObjError,UnicodeDecodeError), e -> (configobj.ConfigObjError,UnicodeDecodeError) as e.
    
    * NVDA slave: except exception, e -> exception as e.
    
    * NVWave: except WindowsError, e -> WindowsError as e.

commit 61e66ec86603dbd7ec2020254ffeb94a952fa165
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Sat Jun 8 18:03:47 2019 -0700

    SAPI 5 synth driver: percentage to pitch/rate must return an integer. Re #9641. (#9699)
    
    Runtime test result: SAPI5 synth driver did not load in Python 3 mode because percentage to rate/pitch were returning floats instead of integers. This has been corrected.

commit 4e0d3f7f41353029838c1b1aac0d299bdf29ddf1
Author: Michael Curran <mick@nvaccess.org>
Date:   Sat Jun 8 16:46:11 2019 +1000

    Appveyor: use Python 3.7 rather than Python 2.

commit f797aef1e52ac9c731c6e0f856cb164af7f5d246
Author: Michael Curran <mick@nvaccess.org>
Date:   Sat Jun 8 16:44:22 2019 +1000

    Start building threshold_py3_staging branch on appveyor.  For now it is expected to fail.

commit e573f306d0867e58e23eceb85514037299c00c8e
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Fri Jun 7 23:41:52 2019 -0700

    Python 3: xrange -> range (#9627)
    
    * Text infos/offsets/Python 3: remove six.moves.range import. Re #9078.
    
    Although a good compatibility call, it is better to call range function directly. The only place six.moves.range was used was textInfos/offsets.
    
    * Python 3/API handlers: xrange -> range, explanatory comments. Re #9078.
    
    Xrange is gone in Python 3, replaced by range which performs the same thing as xrange.
    The following API handlers were modified: IAccessible, JAB, UIA.
    
    * NVDA objects/top level/Python 3: xrange -> range and explanatory comments. Re #9078.
    
    * NVDAObjects/IAccessible/Python 3: xrange -> range and explanatory comments. Re #9078.
    
    * NVDAObjects/JAB/Python 3: xrange -> range and explanatory comments. Re #9078.
    
    * NVDAObjects/UIA/Python 3: xrange -> range and explanatory comments. Re #9078.
    
    * NVDAObjects/window/Python 3: xrange -> range and explanatory comments. Re #9078.
    
    * NVDA helper/Python 3: xrange -> range. Re #9078.
    
    * UIA browse mode and utilities: xrange -> range. Re #9078.
    
    * API/Python 3: xrange -> range for states set construction and focus ancestor calcualtions. Re #9078.
    
    * App modules/Python 3: xrange -> range except for Skype module. Re #9078.
    
    If Skype app module is planned to be removed, it won't make sense to change xrnage to range. Other than this, other app modules were edited, including Excel, Kindle, Miranda, Outlook, and VIPMud.
    
    * Braille input and output/Python 3: xrange -> range. Re #9078.
    
    * Braille display drivers/Python 3: xrange -> range, mostly involving device identification, status, input devices and connection attempts. Re #9078.
    
    * Config/Python 3: xrange -> range. Re #9078.
    
    * Display model/Python 3: xrange -> range. Re #9078.
    
    * GUI/NVDA controls/Python 3: xrange -> range, mostly dealing with custom check list box handling. Re #9078.
    
    * HW port utils/Python 3: xrange -> range. Re #9078.
    
    * Installer/Python 3: xrange -> range. Re #9078.
    
    * Keyboard and mouse handlers/Python 3: xrange -> range. Re #9078.
    
    * NVDA Ease of Access/Python 3: xrange -> range. Re #9078.
    
    * nvwave/Python 3: xrange -> range. Re #9078.
    
    * NVDA Python Console/Python 3: xrange -> range. Re #9078.
    
    * Queue handler/Python 3: xrange -> range. Re #9078.
    
    * Speech viewer, touch tracker/Python 3: xrange -> range. Re #9078.
    
    * Virtual buffers/Python 3: xrange -> range, mostly states set construction. Re #9078.
    
    * Windows console handler/Python 3: xrange -> range. Re #9078.
    
    * Python 3/range: remove source code comments.
    
    Review by Reef Turner (NV Access): add explanatory comments for code fragments that are unclear at first. Since xrange to range is trivial and clear enough, reomve such comments.
    
    * Speech/Python 3: xrange -> range. Re #9078.
    
    * SAPI5 synth driver/Python 3: xrange -> range. Re #9078.
    
    * NVDAObjects/UIA/Edge/Python 3: wrap range function used in heading level lookup inside a list. Re #9078.
    
    Comment from Leonard de Ruijter (Babbage): there is one genuine need for range function, or at least its Python 2 behavior: EdgeHTML heading lookup, which will lookup heading level text from 1 through 6 inclusive (in a list). Thus wrap this inside a list call.
    
    * IAccessible handler/Python 3: add a note about enumerate() function. Re #9078.
    
    Comment from Leonard de Ruijter (Babbage): try using enumerate() function to access both the index and the value at hand. Note that this may need to be postponed until this is merged into Project Threshold.

commit 1d43a4e52f6116dfc969ec63aa74ad9f11fd998f
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Fri Jun 7 23:36:32 2019 -0700

    Python 3: dictionary iteration/list methods made compatible with Python 3 (#9671)
    
    * Various modules/Python 3: wrap dict.items/keys/values inside a list call. Re #9067.
    
    Modules such as UIA handler, settings dialogs and others use dict.items/keys/values. This means in Python 2, it returns a list, whereas it returns an iterator in Python 3. Therefore wrap these inside a list call to preserve semantics (also include notes for some of these).
    
    * NVDAObjects/Python 3: dict.iteritems -> dict.items. Re #9067.
    
    * IAccessible handler/Python 3: dict.iteritems -> dict.items. Re #9067.
    
    * UIA handler and utilities/Python 3: dict.iteritems -> dict.items, dict.iterkeys -> dict.keys. Re #9067.
    
    * Add-on handler/Python 3: dict.itervalues -> dict.values. Re #9067.
    
    * App module handler/Python 3: dict.iteritems -> dict.items, dict.itervalues -> dict.values. Re #9067.
    
    * Base object/Python 3: dict.iteritems -> dict.items. Re #9067.
    
    * Braille display detection/Python 3: dict.iteritems -> dict.items. Re #9067
    
    * Braille display drivers/Python 3: dict.iteritems -> dict.items, dict.itervalues -> dict.values. Re #9067.
    
    * Character processing/Python 3: dict.iteritems -> dict.items, dict.itervalues -> dict.values. Re #9067.
    
    * Config/Python 3: dict.iteritems -> dict.items. Re #9067.
    
    * Global plugin handler/Python 3: dict.iteritems -> dict.items. Re #9067.
    
    * GUI/Python 3: dict.iteritems -> dict.items, dict.itervalues -> dict.values. Re #9067.
    
    * Input core/Python 3: dict.iteritems -> dict.items. Re #9067.
    
    * Installer/Python 3: dict.iteritems -> dict.items. Re #9067.
    
    * Oleacc/Python 3: dict.iteritems -> dict.items. Re #9067.
    
    * Speech/Python 3: dict.iteritems -> dict.items. Re #9067.
    
    * Speech XML/Python 3: dict.iteritems -> dict.items. Re #9067.
    
    * Synth drivers/Python 3: dict.iteritems -> dict.items, dict.itervalues -> dict.values. Re #9067.
    
    * Table utils/Python 3: dict.iteritems -> dict.items. Re #9067.
    
    * Text infos offsets/Python 3: dict.iteritems -> dict.items. Re #9067.
    
    * Touch tracker/Python 3: dict.itervalues -> dict.values. Re #9067.
    
    * VK codes/Python 3: dict.iteritems -> dict.items. Re #9067.
    
    * Watchdog/Python 3: dict.iteritems -> dict.items. Re #9067.

commit 8b82c5d5a13ce8d140e51f1e79be5573a705843a
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Fri Jun 7 20:45:14 2019 -0700

    Python 3: use importlib for importing modules (#9693)
    
    * IAccessible objects/Python 3: use importlib. Re #8768.
    
    * App module handler/Python 3: use importlib. Re #8768.
    
    * Braille display drivers/Python 3: use importlib. Re #8768.
    
    * Global plugin handler/Python 3: use importlib. Re #8768.
    
    * Synth drivers/Python 3: use importlib. Re #8768.

commit a8074d50aeeca1e95ef28971e023e4e76adac2f0
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Fri Jun 7 20:34:36 2019 -0700

    Python 3: use floor division (//) to obtain integer results from division operations (#9692)
    
    * GUI/Python 3: use floor division (//) when obtaining pixel coordinates in integers. Re #9641.
    
    Python 3 changes one slash to tru division rather than classic division. Because of this, when trying to obtain pixel coordinates, float is returned. Thus use floor division (//) to guarantee integers.
    
    * NVWare/Python 3: use floor division for int values. Re #9641.
    
    ctypes.wintypes.WORD is mapped to ctypes.USHORT, which is in fact an integer. Thus use two slashes instead of one in order to guarantee this.
    
    * OneCore speech synthesizer/Python 3: ensure integers via floor division. Re #9641.
    
    A comment says no floating points. One way to ensure this is use of two slashes in Python 3.

commit f66e46ee42cc6df1170159243ea797b1239039a3
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Fri Jun 7 20:30:09 2019 -0700

    Python 3: file function -> open function (#9663)
    
    * Add-on handler and update check/Python 3: file function -> with open function for reading from and writing to pickle files. Re #9038.
    
    * NVDA helper and watchdog/Python 3: with file -> with open function. Re #9038.
    
    * Config/Python 3: use open function when creating an empty profile data file. Re #9038.
    
    * Build version/Python 3: use with open function when obtaining Git head/commit for version information construction. Re #9038.
    
    Without modifying head/commit values for version info, NVDA will report 'year.major.minor' when running from source. Therefore edit this routine.
    
    * Log viewer/Python 3: add an explanatory note on with open function and encoding issue. Re #9038.
    
    When saving logs, a log file object will be created. The routine responsible for this is eligible for conversion to 'with open' statement, but there is a note about UTF-8 codecs conversion problem. Thus add a note regarding this and exclude that routine from conversion for now.
    
    * Add-on handler and update check/Python 3: use binary format when working with pickles. Re #9038.
    
    Clarified by Mick Curran (NV Access): in Python 3, when loading and dumping pickles, binary format must be used (rb/wb).
    
    * Log viewer/Python 3: save log file in UTF-8 format. Re #9038.
    
    Reviewed by Mick Curran (NV Access): open log file for saving with UTF-8 encoding from the start. Note that Python 2's open function does not include encoding parameter directly, but Python 3 does.

commit b63554cd0b7b2695cf9130d5f234500505d093dc
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Fri Jun 7 20:24:49 2019 -0700

    Python 3: print statement -> print function (#9664)
    
    * App module handler/Python 3: print statement -> function when printing crash dump path.
    
    * SAPI5 synth driver/Python 3: print statement -> function when announcing function hooks.
    
    * SAPI 5: print function -> log.debug.
    
    Reviewed and clarified by Mick Curran (NV Access): print function should have been a log.debug call.

commit 7631d7ae4730a5eb744d0d9c1337e3b5693354b1
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Fri Jun 7 20:22:55 2019 -0700

    Python 2/3: relative imports (#9670)
    
    * IAccessible objects: relative imports. Re #8712.
    
    * Excel window objects: relative imports. Re #8712.
    
    * GUI: relative imports. Re #8712.
    
    * Settings dialogs: relative imports. Re #8712.

commit a705a1254d5d613fff443a754391c9da557a0159
Merge: 7972f4576 549a6aaa3
Author: Michael Curran <mick@nvaccess.org>
Date:   Sat Jun 8 13:18:21 2019 +1000

    Merge branch 'master' into threshold

commit 7972f45767edb17db92a0829b73bda189577e424
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Jun 7 15:36:22 2019 +1000

    Update what's new mentioning synthIndexReached and synthDoneSpeaking actions.

commit 549a6aaa3585879e9b471b06f848229ad2d05498
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Jun 7 09:45:26 2019 +1000

    Update what's new for pr #8595

commit 496d0289d08650f4d9c1db92a62868130ec6b3cb
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Thu Jun 6 16:43:30 2019 -0700

    Find dialog: NVDA will no longer appear to do nothing when trying to find text while NVDA's about dialog is opened. Re #8566. (#8595)
    
    wxPython 4: somehow, Find dialog (Control+NVDA+F) doesn't work if NVDA's About dialog is opened. Mitigate this by giving this dialog the same treattment as elements list - creating a run callback.

commit f9edfef2b7085220142fa8aba57d9e4ba17eedf1
Merge: d5dc57577 3ef8410ed
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Jun 7 09:01:16 2019 +1000

    Merge branch 'master' into threshold

commit d5dc57577eab0b95cc6a2aa9710317bb1ac31230
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Jun 7 09:00:47 2019 +1000

    Update what's new.

commit c09cf748ba1d0bf4d257db6a84c66d2304f6c08a
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Thu Jun 6 15:59:36 2019 -0700

    nvwave.playWaveFile: async > asynchronous (#8647)
    
    * nvWave.playWaveFile: async > asynchronous. Re #8607.
    
    Python 3.5 introduces 'async' and 'await' keywords to deal with asynchronous generators and other possibiliites. Since Python 3.7, use of these keywords as variable names is no longer allowed. In NVDA code, nvWave.playWaveFile is affected, so rename 'async' to 'asynchronous'.
    
    * nvwave.playWaveFile: document 'asynchronous' keyword.
    
    Reviewed by Leonard de Ruijter (Babbage): document the renamed keyword arg.
    
    * Speech commands: async -> asynchronous.
    
    * nvwave.playWaveFile: correct argument name in docstring.

commit 3ef8410ed8b88b5bc8e7d2ad950a3356384b8504
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Jun 7 08:42:44 2019 +1000

    Update what's new for pr #9678

commit d5ed95ce01d3d1d79a0367b2cded83cfd1527df8
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Fri Jun 7 00:39:31 2019 +0200

    Update liblouis to version 3.10 (#9678)
    
    * Update liblouis to version 3.10.0
    
    * Update sconscript to avoid warnings

commit a7bdcaea85d3acb16d781d66162e629aea4b9683
Merge: 305bb0498 9b1de7b80
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 7 00:06:06 2019 +1000

    Update translations.
    
    From translation svn revision: 49401

commit 9b1de7b80cc1445eee75b3819297c3c27b4232c1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 7 00:06:06 2019 +1000

    L10n updates for: zh_TW
    From translation svn revision: 49401
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    382     628     source/locale/zh_TW/LC_MESSAGES/nvda.po
    39      39      source/locale/zh_TW/characterDescriptions.dic
    71      0       user_docs/zh_TW/changes.t2t
     3 files changed, 492 insertions(+), 667 deletions(-)

commit 47cfc48f8efa42251ee0be8a0c9d90c2fbf9b2d1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 7 00:06:04 2019 +1000

    L10n updates for: zh_CN
    From translation svn revision: 49401
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    
    Stats:
    20      20      source/locale/zh_CN/LC_MESSAGES/nvda.po
    5       5       source/locale/zh_CN/characterDescriptions.dic
     2 files changed, 25 insertions(+), 25 deletions(-)

commit 4bbef73e19e31df0ccffb9429a85a1cb6f9aa422
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 7 00:05:53 2019 +1000

    L10n updates for: ru
    From translation svn revision: 49401
    
    Authors:
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    7       20      source/locale/ru/LC_MESSAGES/nvda.po
    23      23      user_docs/ru/changes.t2t
    64      10      user_docs/ru/userGuide.t2t
     3 files changed, 94 insertions(+), 53 deletions(-)

commit d24ef4f143676f1c995e2a6532477f6e5edbd743
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 7 00:05:50 2019 +1000

    L10n updates for: ro
    From translation svn revision: 49401
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <contact@florian-ionascu.ro>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    
    Stats:
    10      12      source/locale/ro/LC_MESSAGES/nvda.po
     1 file changed, 10 insertions(+), 12 deletions(-)

commit ad70237fb5fad6ff4e66554dedce2af41def10ca
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 7 00:05:46 2019 +1000

    L10n updates for: pl
    From translation svn revision: 49401
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <hubert.meyer@wp.pl>
    
    Stats:
    11      11      source/locale/pl/LC_MESSAGES/nvda.po
     1 file changed, 11 insertions(+), 11 deletions(-)

commit 27c3fcc06bacc4cda4a1303b6f1038720afdfba0
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 7 00:05:35 2019 +1000

    L10n updates for: ja
    From translation svn revision: 49401
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    10      10      source/locale/ja/LC_MESSAGES/nvda.po
    2       2       source/locale/ja/characterDescriptions.dic
    26      14      source/locale/ja/symbols.dic
    72      1       user_docs/ja/changes.t2t
    3       5       user_docs/ja/userGuide.t2t
     5 files changed, 113 insertions(+), 32 deletions(-)

commit 5a1c6360e2a6e35fd65281aa4d3df8d584ce840d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 7 00:05:30 2019 +1000

    L10n updates for: hr
    From translation svn revision: 49401
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Tea Turkovic <tturkovi@gmail.com>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    10      10      user_docs/hr/changes.t2t
     1 file changed, 10 insertions(+), 10 deletions(-)

commit f7a0e6de24246bf9961341d181ad29a0af0423c6
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 7 00:05:28 2019 +1000

    L10n updates for: hi
    From translation svn revision: 49401
    
    Authors:
    dipendra.lists@gmail.com
    Doc Mehta <joyofinspiring@gmail.com>
    
    Stats:
    739     757     source/locale/hi/LC_MESSAGES/nvda.po
     1 file changed, 739 insertions(+), 757 deletions(-)

commit df267178f5aff87938a1c5f3b7247bfc42c34f07
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 7 00:05:27 2019 +1000

    L10n updates for: gl
    From translation svn revision: 49401
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    
    Stats:
    5       5       user_docs/gl/changes.t2t
     1 file changed, 5 insertions(+), 5 deletions(-)

commit 95929655ad50f4445ab9b7264be1055b4cd01889
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 7 00:05:20 2019 +1000

    L10n updates for: es
    From translation svn revision: 49401
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    5       5       user_docs/es/changes.t2t
     1 file changed, 5 insertions(+), 5 deletions(-)

commit 7b8f966e37c89eb03aea1f3a2713076d65314c2f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 7 00:05:13 2019 +1000

    L10n updates for: cs
    From translation svn revision: 49401
    
    Authors:
    Martina Letochova <letochova@seznam.cz>
    
    Stats:
    154     34      source/locale/cs/LC_MESSAGES/nvda.po
     1 file changed, 154 insertions(+), 34 deletions(-)

commit 0f7c14193155002bf0e5705fb2712729b92ae0c2
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Thu Jun 6 07:23:49 2019 +1000

    Update espeak-ng to latest master (#9668)
    
    * Update eSpeak-ng to 86e67a.
    
    * Update what's new.

commit 06539e66fe41768a53b47432a841c95974db4b85
Author: Bill Dengler <codeofdusk@gmail.com>
Date:   Wed Jun 5 16:59:06 2019 -0400

    UI Automation in Windows Console: limit blank lines in review and initial word movement support (#9647)
    
    * Restrict the number of blank lines shown in console UIA's object review.
    
    Note: there are issues when reaching the bottom of the review (cursor gets stuck).
    
    * UIA console: only apply our custom move logic when not moving the caret.
    
    This should mostly restore caret movement support.
    
    * Add basic word movement support.
    
    * ConsoleUIATextInfo: support expantion by word.
    
    * consoleUIATextInfo._countCharsToEnd(reverse=True) is now consoleUIATextInfo._getCurrentOffset. The reverse option has been removed.
    
    * Cleanup.
    
    * Improve cursor placement after word movement.
    
    * Review actions (without changes to expand)
    
    * Re-implement expand.
    
    Note: this new approach includes characters after a line break in the current word.
    
    * Review actions.
    
    * Review actions.
    
    * Review actions.
    
    * Fix forward movement across lines.
    
    * UIAWinConsole support: Improve logic of moving previous word to no longer jump over the last word on the previous line.
    
    * Style.

commit d1db21a63ebfbc77613a95e77c843bf380e3d5b0
Author: Bill Dengler <codeofdusk@gmail.com>
Date:   Wed Jun 5 07:00:18 2019 -0400

    Move legacy console code to IAccessible and only enable UIA when available.

commit 4ff31728d00d4b492b3f4988c25e7acf714cf41f
Author: Bill Dengler <codeofdusk@gmail.com>
Date:   Tue Jun 4 21:38:40 2019 -0400

    UI Automation in Windows Console: make speaking of passwords configurable (#9649)
    
    * Don't speak off-screen text (like passwords) in console windows.
    
    This approach works on my system, but needs wider testing.
    
    * Speaking of passwords is now configurable in UIA consoles, add accelerators for UIA console options in the GUI.
    
    * Clarify user guide.
    
    * Allow the password toggle to be restored.

commit a74796f80f031e659c6c92a415a36a50bf210111
Author: James Teh <jamie@jantrid.net>
Date:   Mon Jun 3 15:44:05 2019 +1000

    Don't report live regions in background tabs in Firefox (#9634)
    
    * Don't report live regions in background tabs in Firefox.
    
    In Firefox, all tabs have the same HWND.
    Objects in background tabs do get the offscreen state, but offscreen live regions are used to report visually hidden information, so we can't filter based on that.
    Therefore, if the offscreen state is set, we do an additional background check.
    We get the tab document from the accessible, get the foreground tab document and compare them.
    If they differ, the event is for a background tab and we thus ignore the event.
    
    * Update what's new.

commit ef3ed13f4e3f95aeda148693133267dbe5b48a82
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Mon Jun 3 15:35:46 2019 +1000

    No longer require pyWin32 (#9639)
    
    * Remove dependency on pyWin32, including pythoncom, win32clipboard and win32con.
    
    * nvdaHelperLocal's oleUtils.cpp: fix syntax error.
    
    * Address review comments.
    
    * No longer forceably include win32api via setup.py. Also update what's new.

commit e768e3e5b1b70add05559a01552bd648d2e41f2e
Author: Bill Dengler <codeofdusk@gmail.com>
Date:   Sun Jun 2 20:46:19 2019 -0400

    UI Automation in Windows Console: add STABILIZE_DELAY and improve "speak typed words" (#9651)
    
    * Add a 30 ms STABILIZE_DELAY to the UIA console (identical to that in legacy consoles).
    
    This helps NVDA process large amounts of text.
    
    * unset _isTyping on interrupt characters, and clear the typed words buffer when enter or tab is pressed.
    
    Note: this will need to be investigated once #8110 is merged.
    
    * Cleanup.
    
    * Add \n

commit 305bb0498593d559c5fd9e9b96cd3b2e0692040b
Merge: ef0c98aa9 4cc61a9f8
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Jun 3 08:13:11 2019 +1000

    Update translations.
    
    From translation svn revision: 49330

commit 4cc61a9f8dac1f4c22b4961fe7f93ec6ca5c74d6
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Jun 3 08:13:08 2019 +1000

    L10n updates for: vi
    From translation svn revision: 49330
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    9       9       source/locale/vi/LC_MESSAGES/nvda.po
    5       0       user_docs/vi/changes.t2t
    2       3       user_docs/vi/userGuide.t2t
     3 files changed, 16 insertions(+), 12 deletions(-)

commit 68dffed55c905a6e372a5abe8daf1abdf697806d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Jun 3 08:13:06 2019 +1000

    L10n updates for: uk
    From translation svn revision: 49330
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    150     34      source/locale/uk/LC_MESSAGES/nvda.po
     1 file changed, 150 insertions(+), 34 deletions(-)

commit 0446d36868481ede82eddaf2d8131bb63783401c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Jun 3 08:13:05 2019 +1000

    L10n updates for: tr
    From translation svn revision: 49330
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    9       9       source/locale/tr/LC_MESSAGES/nvda.po
    6       0       user_docs/tr/changes.t2t
    1       3       user_docs/tr/userGuide.t2t
     3 files changed, 16 insertions(+), 12 deletions(-)

commit 0f139a8d63f2992b8a53dfe6547a73b2f995ba94
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Jun 3 08:13:03 2019 +1000

    L10n updates for: ta
    From translation svn revision: 49330
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    155     36      source/locale/ta/LC_MESSAGES/nvda.po
     1 file changed, 155 insertions(+), 36 deletions(-)

commit 0223a9c0f99dccfc464fe6f0d28f0f80aa5ce33b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Jun 3 08:12:59 2019 +1000

    L10n updates for: sl
    From translation svn revision: 49330
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    11      11      source/locale/sl/LC_MESSAGES/nvda.po
    1       3       user_docs/sl/userGuide.t2t
     2 files changed, 12 insertions(+), 14 deletions(-)

commit 88ab7bea51acb505f541af067d5ddb6cf6a7ce60
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Jun 3 08:12:57 2019 +1000

    L10n updates for: ru
    From translation svn revision: 49330
    
    Authors:
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    12      13      source/locale/ru/LC_MESSAGES/nvda.po
    72      0       user_docs/ru/changes.t2t
     2 files changed, 84 insertions(+), 13 deletions(-)

commit 4a0f604f0288a5a2ced8c3c2d4ee49a489ccd049
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Jun 3 08:12:42 2019 +1000

    L10n updates for: ko
    From translation svn revision: 49330
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    151     35      source/locale/ko/LC_MESSAGES/nvda.po
    69      0       user_docs/ko/changes.t2t
     2 files changed, 220 insertions(+), 35 deletions(-)

commit 4fa4b50698289304b5207b026ca915154645c192
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Jun 3 08:12:36 2019 +1000

    L10n updates for: hu
    From translation svn revision: 49330
    
    Authors:
    Aron OcsvAri <oaron@nvda.hu>
    
    Stats:
    148     33      source/locale/hu/LC_MESSAGES/nvda.po
    59      1       user_docs/hu/changes.t2t
     2 files changed, 207 insertions(+), 34 deletions(-)

commit 51f9aca8cbdd2e054f9d69df717335c9dd0f1f91
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Jun 3 08:12:34 2019 +1000

    L10n updates for: hr
    From translation svn revision: 49330
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Tea Turkovic <tturkovi@gmail.com>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    10      10      source/locale/hr/LC_MESSAGES/nvda.po
    10      6       user_docs/hr/changes.t2t
    1       3       user_docs/hr/userGuide.t2t
     3 files changed, 21 insertions(+), 19 deletions(-)

commit 41fc6eb4aec69c6f1c206927bd66df169bde19fa
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Jun 3 08:12:32 2019 +1000

    L10n updates for: gl
    From translation svn revision: 49330
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    
    Stats:
    10      11      source/locale/gl/LC_MESSAGES/nvda.po
    6       0       user_docs/gl/changes.t2t
    1       3       user_docs/gl/userGuide.t2t
     3 files changed, 17 insertions(+), 14 deletions(-)

commit c5e8e4894a56935b8e018d7ac8f9fe602074f8d8
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Jun 3 08:12:30 2019 +1000

    L10n updates for: fr
    From translation svn revision: 49330
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess33.net>
    
    Stats:
    11      11      source/locale/fr/LC_MESSAGES/nvda.po
    21      7       user_docs/fr/changes.t2t
    2       4       user_docs/fr/userGuide.t2t
     3 files changed, 34 insertions(+), 22 deletions(-)

commit ba9bfc31999696758e7245ab244befec183bf54b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Jun 3 08:12:26 2019 +1000

    L10n updates for: fa
    From translation svn revision: 49330
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    14      14      source/locale/fa/LC_MESSAGES/nvda.po
    63      0       user_docs/fa/changes.t2t
    116     62      user_docs/fa/userGuide.t2t
     3 files changed, 193 insertions(+), 76 deletions(-)

commit c55ae8447aeb47070c906fa40730574cf5bde54e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Jun 3 08:12:24 2019 +1000

    L10n updates for: es
    From translation svn revision: 49330
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    11      11      source/locale/es/LC_MESSAGES/nvda.po
    6       0       user_docs/es/changes.t2t
    1       3       user_docs/es/userGuide.t2t
     3 files changed, 18 insertions(+), 14 deletions(-)

commit 97b4a07e4c3f1e84f9b5ad23f1686a848b39cd62
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Jun 3 08:12:20 2019 +1000

    L10n updates for: de
    From translation svn revision: 49330
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    15      15      source/locale/de/LC_MESSAGES/nvda.po
    46      26      user_docs/de/changes.t2t
    4       5       user_docs/de/userGuide.t2t
     3 files changed, 65 insertions(+), 46 deletions(-)

commit ea02911b934cc6f1c5ca3a4c8c6719771fd93fe3
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Jun 3 08:12:17 2019 +1000

    L10n updates for: da
    From translation svn revision: 49330
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    147     34      source/locale/da/LC_MESSAGES/nvda.po
    46      57      user_docs/da/changes.t2t
    67      13      user_docs/da/userGuide.t2t
     3 files changed, 260 insertions(+), 104 deletions(-)

commit 0e69463a6c7a9dcc3322fb2bf0d63a0786d6a9b4
Merge: 57e4c0c2a cda0a3c0c
Author: Michael Curran <mick@nvaccess.org>
Date:   Sat Jun 1 10:48:00 2019 +1000

    Merge branch 'master' into threshold

commit cda0a3c0c2cd11c18b78ccb4659cdf10821011a6
Merge: 0639f1f04 ef0c98aa9
Author: Michael Curran <mick@nvaccess.org>
Date:   Sat Jun 1 10:47:21 2019 +1000

    Merge branch 'beta'

commit ef0c98aa94e326e1404711618cbb6519a76801be
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Fri May 31 17:37:54 2019 -0700

    Revert "Python 3 imports: additional work on builtins, relative imports, importlib (PR #8727)" (#9657)
    
    This reverts commit 8cbd3bb68baba6aea140ad09a51b16976e2859df.

commit 0639f1f04393eef5a2c6744ea3f15737c90ab032
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Sat Jun 1 02:13:37 2019 +0200

    UIA: Ignore win events for all automation events we are registered to (#9658)

commit b15bda42edb8d04cde2380cd0f81f800e8303770
Author: Łukasz Golonka <wulfryk1@gmail.com>
Date:   Sat Jun 1 01:19:38 2019 +0200

    Install older version of pyAutoGui to  make system tests on AppVeyor working again (#9659)
    
    * * Install older version of PyAutoGui as latest release don't work with Python 2.7
    * move all dependencies to the separate requirements file and use it when installing on AppVeyor
    * update the readme for system tests accordingly
    
    * remove unneded line

commit 57e4c0c2ad6aab7e1c3fe66aa1fb00ab5a108b20
Merge: a939e3c0d 8debe6ae9
Author: Michael Curran <mick@nvaccess.org>
Date:   Sat Jun 1 09:21:19 2019 +1000

    Merge branch 'master' into threshold

commit 8debe6ae9e749f726c93bf1f22e795891184930c
Author: Łukasz Golonka <wulfryk1@gmail.com>
Date:   Sat Jun 1 01:19:38 2019 +0200

    Install older version of pyAutoGui to  make system tests on AppVeyor working again (#9659)
    
    * * Install older version of PyAutoGui as latest release don't work with Python 2.7
    * move all dependencies to the separate requirements file and use it when installing on AppVeyor
    * update the readme for system tests accordingly
    
    * remove unneded line

commit e9faffa1706c04bd3e1e5b78311add3ab5fb4dcf
Merge: 2a9aaccf3 074722801
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 31 00:06:10 2019 +1000

    Update translations.
    
    From translation svn revision: 49165

commit 074722801aef848e30528c0ef747a9fd56f87644
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 31 00:06:09 2019 +1000

    L10n updates for: zh_TW
    From translation svn revision: 49165
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    361     15      source/locale/zh_TW/characterDescriptions.dic
    358     1       source/locale/zh_TW/symbols.dic
     2 files changed, 719 insertions(+), 16 deletions(-)

commit 2d5502a91e23e0cebd42f4f6d0133ca2129690aa
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 31 00:06:07 2019 +1000

    L10n updates for: zh_CN
    From translation svn revision: 49165
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    
    Stats:
    147     37      source/locale/zh_CN/LC_MESSAGES/nvda.po
    62      6       user_docs/zh_CN/userGuide.t2t
     2 files changed, 209 insertions(+), 43 deletions(-)

commit 888aa92008ce88a3b7275a9087063d6978d9ebdb
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 31 00:06:05 2019 +1000

    L10n updates for: vi
    From translation svn revision: 49165
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    147     34      source/locale/vi/LC_MESSAGES/nvda.po
    62      0       user_docs/vi/changes.t2t
    65      12      user_docs/vi/userGuide.t2t
     3 files changed, 274 insertions(+), 46 deletions(-)

commit 51418959d1f421d863ecf001474f9306150554a4
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 31 00:06:03 2019 +1000

    L10n updates for: tr
    From translation svn revision: 49165
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    148     35      source/locale/tr/LC_MESSAGES/nvda.po
    65      0       user_docs/tr/changes.t2t
    60      4       user_docs/tr/userGuide.t2t
     3 files changed, 273 insertions(+), 39 deletions(-)

commit ddc822432878dd8cf68bcf0e685a3d6d4f15edbd
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 31 00:05:58 2019 +1000

    L10n updates for: sl
    From translation svn revision: 49165
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    163     43      source/locale/sl/LC_MESSAGES/nvda.po
    62      6       user_docs/sl/userGuide.t2t
     2 files changed, 225 insertions(+), 49 deletions(-)

commit 500c02f5aea649063f6fcad4d2df751e49cc2d8b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 31 00:05:55 2019 +1000

    L10n updates for: ru
    From translation svn revision: 49165
    
    Authors:
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    151     26      source/locale/ru/LC_MESSAGES/nvda.po
     1 file changed, 151 insertions(+), 26 deletions(-)

commit 38b29b48eeb99caddfb701446e3b8ff37aa3682e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 31 00:05:53 2019 +1000

    L10n updates for: ro
    From translation svn revision: 49165
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <contact@florian-ionascu.ro>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    
    Stats:
    151     35      source/locale/ro/LC_MESSAGES/nvda.po
     1 file changed, 151 insertions(+), 35 deletions(-)

commit 94e36292f80e9bb08f446f668ffe8e840722e0ee
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 31 00:05:52 2019 +1000

    L10n updates for: pt_PT
    From translation svn revision: 49165
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    152     35      source/locale/pt_PT/LC_MESSAGES/nvda.po
    63      0       user_docs/pt_PT/changes.t2t
     2 files changed, 215 insertions(+), 35 deletions(-)

commit 714152f93954533d78ac5cd47a05fd5b7954f613
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 31 00:05:50 2019 +1000

    L10n updates for: pt_BR
    From translation svn revision: 49165
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    150     34      source/locale/pt_BR/LC_MESSAGES/nvda.po
    66      0       user_docs/pt_BR/changes.t2t
     2 files changed, 216 insertions(+), 34 deletions(-)

commit d1eec35416cbb5daeb38399cd8300824d2d7cd2b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 31 00:05:48 2019 +1000

    L10n updates for: pl
    From translation svn revision: 49165
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <hubert.meyer@wp.pl>
    
    Stats:
    149     34      source/locale/pl/LC_MESSAGES/nvda.po
     1 file changed, 149 insertions(+), 34 deletions(-)

commit 3ac3be92ca9815aadb1eded49ad842e4783a4a2f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 31 00:05:37 2019 +1000

    L10n updates for: ja
    From translation svn revision: 49165
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    146     39      source/locale/ja/LC_MESSAGES/nvda.po
    61      5       user_docs/ja/userGuide.t2t
     2 files changed, 207 insertions(+), 44 deletions(-)

commit 5e725077d5f9380c0d09cc02d7613e2abafb9e06
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 31 00:05:31 2019 +1000

    L10n updates for: hr
    From translation svn revision: 49165
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Tea Turkovic <tturkovi@gmail.com>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    153     38      source/locale/hr/LC_MESSAGES/nvda.po
    53      0       user_docs/hr/changes.t2t
    63      7       user_docs/hr/userGuide.t2t
     3 files changed, 269 insertions(+), 45 deletions(-)

commit a9301ccfadb0a4c29aa4fe96063051c14de88fde
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 31 00:05:28 2019 +1000

    L10n updates for: gl
    From translation svn revision: 49165
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    
    Stats:
    150     34      source/locale/gl/LC_MESSAGES/nvda.po
    66      0       user_docs/gl/changes.t2t
    60      4       user_docs/gl/userGuide.t2t
     3 files changed, 276 insertions(+), 38 deletions(-)

commit 81229ba94191bfcefcf14f0309d313a42100a023
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 31 00:05:26 2019 +1000

    L10n updates for: fr
    From translation svn revision: 49165
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess33.net>
    
    Stats:
    145     27      source/locale/fr/LC_MESSAGES/nvda.po
    178     122     user_docs/fr/changes.t2t
    63      7       user_docs/fr/userGuide.t2t
     3 files changed, 386 insertions(+), 156 deletions(-)

commit 921829fda63e68b5079886ba303d6475a7b4d26d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 31 00:05:24 2019 +1000

    L10n updates for: fi
    From translation svn revision: 49165
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    149     36      source/locale/fi/LC_MESSAGES/nvda.po
    65      2       user_docs/fi/changes.t2t
    68      12      user_docs/fi/userGuide.t2t
     3 files changed, 282 insertions(+), 50 deletions(-)

commit ac0831f593cc019f8f5eb19c89616a01e4825376
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 31 00:05:22 2019 +1000

    L10n updates for: fa
    From translation svn revision: 49165
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    146     32      source/locale/fa/LC_MESSAGES/nvda.po
     1 file changed, 146 insertions(+), 32 deletions(-)

commit 7ddb897f2ee48d29b2bd4508f990afe0de7ee0f0
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 31 00:05:20 2019 +1000

    L10n updates for: es
    From translation svn revision: 49165
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    154     34      source/locale/es/LC_MESSAGES/nvda.po
    66      0       user_docs/es/changes.t2t
    62      6       user_docs/es/userGuide.t2t
     3 files changed, 282 insertions(+), 40 deletions(-)

commit 15073e134f146321773076a49707aaf7647a59a0
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 31 00:05:16 2019 +1000

    L10n updates for: de
    From translation svn revision: 49165
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    156     41      source/locale/de/LC_MESSAGES/nvda.po
    63      5       user_docs/de/changes.t2t
    84      29      user_docs/de/userGuide.t2t
     3 files changed, 303 insertions(+), 75 deletions(-)

commit a07c025397325e4ab45b5bd2a797181e28655084
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 31 00:05:08 2019 +1000

    L10n updates for: ar
    From translation svn revision: 49165
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>, Omar Alojaimi <amrahmad1995@gmail.com>
    
    Stats:
    148     37      source/locale/ar/LC_MESSAGES/nvda.po
    290     105     user_docs/ar/userGuide.t2t
     2 files changed, 438 insertions(+), 142 deletions(-)

commit a939e3c0d0445b693ae59275382f81484331184f
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Wed May 29 23:46:21 2019 +0200

    Remove functionality marked as deprecated (#9603)
    
    * Remove deprecated functionality from braille
    
    * Remove validate module
    
    * Remove deprecated functions from synthDriverHandler
    
    * Replace textInfos.Rect and textInfos.Point with locationHelper
    
    * Fix tethering
    
    * Remove old sound recorder appModule
    
    * Removed old pre vista code
    
    * Remove getConfigValidationParameter
    
    * Remove deprecated synthesizer setting classes
    
    * Remove deprecated logIdentifier
    
    * Remove validate from setup.py
    
    * Remove pythonMonkeyPatches
    
    * Remove support for Skype 7
    
    * Remove Outlook pre2003 class
    
    * Remove support for abandoned klango player
    
    * Remove legacy code from Explorer appmodule
    
    * Remove Vista specific check from installer
    
    * Revert "Remove Vista specific check from installer"
    
    This reverts commit dfb2dbcbb69568838138f12fa6da31da89daab08.
    
    * Revert accidental change of configobj module
    
    * Fix typo in explorer appModule
    
    * espeak synthesizer, do not import BooleanSynthSetting
    
    * synthDriverHandler: no longer mention supportedSettings in the doc string on SynthDriver, as it is already part of the Driver class
    
    * Update what's new.

commit 07f4f0010eecfde3983aa4dcd5778b350118d095
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed May 29 07:53:24 2019 +1000

    Bump threshold version and add-on compatibility version to 2019.4.0 for now as master is already heading toward a 2019.3.

commit e6002f32ffc4bdb541a8b27791e29c4c0ec86ee8
Merge: 74577797c f20e6821f
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed May 29 07:51:26 2019 +1000

    Merge branch 'master' into threshold

commit f20e6821fa7a9202def428d5ceb1a08c54e7e83a
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed May 29 07:48:43 2019 +1000

    Update what's new / buildVersion to start 2019.3 on master.

commit 74577797c50f3df518eee7b55f8af2b520bc1e31
Merge: 5493ddce7 98dc8278b
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed May 29 07:41:00 2019 +1000

    Merge branch 'master' into threshold

commit 5493ddce7302e3ceb357422015886db08140665b
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed May 29 07:35:12 2019 +1000

    Pr7599 review actions (#9626)
    
    * SayAll: avoid error when reading to the end of a Microsoft word document where self.reader is set to None.
    
    * Move speech.py into its own package ready for splitting out into separate modules.
    
    * Move speech command objects into a speech.commands module.
    
    * Split out speechManager into speech.manager module and priority constants into  speech.priorities module.
    
    * espeak: provide constants for callback return codes.
    
    * espeak: use named constants for converting ms to bytes.
    
    * nvWave: use named constants for buffer size calculation.
    
    * speech.getSpeechForSpelling: use a named constant for the idiographic comma and rename char to speakCharAs.
    
    * espeak: ensure that onIndexReached is set before espeak_setSynthCallback is called.
    
    * removed accidental file speech./commands.py
    
    * rename constant with caps

commit 96afe9b02551bf28c16856de945aed1f142a63ee
Author: jakubl7545 <48619364+jakubl7545@users.noreply.github.com>
Date:   Tue May 28 16:35:16 2019 +0200

    Change iter.next() to next(iter) (PR #9535)
    
    Change iter.next() to next(iter)
    closes #9086

commit d5026b8a97fa1d437fc1cae52ae13d43fd5fcb74
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Tue May 28 16:33:05 2019 +0200

    Update to pySerial 3.4 (#8815)

commit d66f20286bbed365ab245e8c90f3e23a86afdc95
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue May 28 16:32:54 2019 +0200

    Update changes file for PR #8815
    
    The version number for threshold is currently unknown, I have added a new section at the start of this file as a place holder for this version number.
    
    Merges from master with modifications to this file should not be too hard, the changes from master should always come after the changes on the threshold branch. Because they are in different parts of the file there should be very few conflicts.

commit 98dc8278ba59881d4e4d4b18ea9db2ca28cf53f1
Merge: c12f0aebd 2a9aaccf3
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue May 28 22:31:01 2019 +1000

    Merge branch 'beta'

commit 2a9aaccf34713077cc844f79ffc94d68ad408a2b
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue May 28 20:59:59 2019 +1000

    Update what's new.

commit 9d8224ebde26fa11dce10394b99fdfb19cea6d7a
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Thu May 23 23:37:10 2019 +0200

    Fix Notepad++ 7.7x64 hanging for around 10 seconds when expanding the first character in a file (#9612)
    
    * Fix Notepad++ 7.7x64 hanging for around 10 seconds when expanding the first character in a file
    
    * Introduce INVALID_POSITION constant
    
    * Update what's new.

commit f38751bbf92adcceb73b4b082ec435ea488ac7a4
Merge: f1d872951 df6010f5c
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue May 28 20:50:07 2019 +1000

    Merge branch 'master' (early part) into beta

commit c12f0aebd2ef3c1117ddf726a5faed43abf070bb
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Tue May 28 20:45:36 2019 +1000

    Revert "Report virtual desktop switches in Windows 10 (#8259)" (#9629)
    
    This reverts commit 0d29265e6400faac824a7a44c5d127f6ee45fd2a.

commit 1fd194f12869799dc08f9231cb9a8a4827c02f11
Merge: a9aca9841 6490bbf3e
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue May 28 08:21:21 2019 +1000

    Merge branch 'master' into threshold

commit 6490bbf3eeb52efec4fa31d9b0f94379cdfbad75
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue May 28 08:13:41 2019 +1000

    Revert "Report virtual desktop switches in Windows 10 (#8259)"
    
    This reverts commit 0d29265e6400faac824a7a44c5d127f6ee45fd2a.

commit 52bf8b78ce2e69543eac20501dc9ffba99ffe9a3
Author: Bill Dengler <codeofdusk@gmail.com>
Date:   Mon May 27 18:03:39 2019 -0400

    Preliminary support for UI Automation in Windows Console (#9614)
    
    * Add a feature flag for UIA console support.
    
    At the moment, it merely disables NVDA's existing console support, falling back to what UIA support is available in NVDA. The option is currently called `ConsoleUIA`, but we'll need to change this once autodetection is implemented (as there will be three options at that point).
    
    Typed characters are now spoken in UIA consoles, but characters are doubled when typing quickly, leading to incorrect typed word reporting.
    
    * Disable in-process injection for speak typed characters for now.
    
    This fixes the doubled characters bug, making speaked typed words function as intended, but it may have other implications.
    
    * Receive textChanged events from UIA and add consoleUIA and consoleUIATextInfo classes to implement automatic readout and work around a caret movement bug in Windows 10 version 1903.
    
    The consoleUIA class inherits from NVDAObjects.behaviors.Terminal, which serves as the foundation for automatic readout support. At the moment, it is likely that such support will either be not functional at all or report extraneous text from user input.
    
    * Introduce basic automatic readout support, and rename ConsoleUIATextInfo->consoleUIATextInfo for consistency.
    
    See the source code comments in this commit for some steps still incomplete.
    
    * Filter out extraneous characters by disabling live text reporting while a user is typing.
    
    This does not regress NVDA functionality, since we already cancel speech when the user types.
    
    * Cleanup.
    
    * Style, eliminate magic number, halve typing timeout, update label in GUI to inform the user that restarting NVDA is required to switch console implementations.
    
    * Clear isTyping when tab is pressed to announce tab completion.
    
    * Re-implement consoleUIA._getTextLines using UIATextPattern.GetVisibleRanges. This may improve performance when large amounts of text are written to the console, but possibly at the cost of less reliable autoread (particularly when the screen is refreshed or scrolled).
    
    * Review actions, style, update user guide.
    
    The user guide will need to be updated once auto-detection is introduced (and therefore the NVDA preference is changed).
    
    * Review actions.
    
    * Remove unneeded event_textChanged
    
    * Fix document review on Windows 10 1903.
    
    This fix adds a new textInfo instance variable, _expandCollapseBeforeReview, which stops review from expanding and immediately collapsing the textInfo during review. For some reason, this was causing object review to malfunction in this instance.
    
    * Remove 1903 warning from user guide.
    
    * Check bad UIA window class name at runtime.
    
    This allows for UIA console support to be dynamically enabled/disabled.
    
    Note: _UIAHandler.badUIAWindowClassNames has been removed. To check if a UIA windowClassName is bad, use the new _UIAHandler.UIAHandler._isBadUIAWindowClassName method.
    
    * Add a new winVersion.isAtLeastWin10 function for checking win10 builds with friendly version numbers, and only register for UIA textChange on Windows 10.
    
    * Misc review actions.
    
    * Review actions.
    
    * Change config spec
    
    * Meeting actions.
    
    * Make auto the default.
    
    * Use->force
    
    * Updated what's new.
    
    * Settings dialog: Ensure that the UIA in Windows Consoles option can be restored to default using the Advance Panel's restore to defaults button.

commit bba3166ae6eb17d01f0b409fcb0b795ff166254c
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Mon May 27 12:02:05 2019 +0200

    Update changes file for PR #9287

commit 41acae1d429015df2a81d45578e7b7fcc70e7987
Author: nvdaes <nrm1977@gmail.com>
Date:   Mon May 27 12:00:27 2019 +0200

    Add a command to show the symbol replacement (PR #9287)
    
    * Add a command to show the symbol replacement for the current speech language
    * It is available in the text review category of the input gestures dialog.
    * In the symbol itself, corresponding to the character where the review cursor is placed, and the replacement, are shown in browse mode
    * The title of the browse mode dialog contains the language for the current voice, i.e., the language for which the symbols can be edited from Preferences submenu

commit b73e342603bba4e227f3be5074e40ed25df918e1
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Thu May 23 23:37:10 2019 +0200

    Fix Notepad++ 7.7x64 hanging for around 10 seconds when expanding the first character in a file (#9612)
    
    * Fix Notepad++ 7.7x64 hanging for around 10 seconds when expanding the first character in a file
    
    * Introduce INVALID_POSITION constant
    
    * Update what's new.

commit f1d872951c501bd3754133434996b2c41ac68ef3
Merge: 7ecb8de38 267ea47dc
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 24 00:06:06 2019 +1000

    Update translations.
    
    From translation svn revision: 48913

commit 267ea47dc329faccd75159995a21104aefcbc3f1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 24 00:06:06 2019 +1000

    L10n updates for: zh_TW
    From translation svn revision: 48913
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    18      18      source/locale/zh_TW/characterDescriptions.dic
     1 file changed, 18 insertions(+), 18 deletions(-)

commit 4ce5c31ea5c9c7368144b588e3feb10694800f9d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 24 00:05:34 2019 +1000

    L10n updates for: ja
    From translation svn revision: 48913
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    5       5       source/locale/ja/LC_MESSAGES/nvda.po
     1 file changed, 5 insertions(+), 5 deletions(-)

commit 9fe8cbefbfdca28d896f96ffd2b9607a3395a5b4
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 24 00:05:27 2019 +1000

    L10n updates for: he
    From translation svn revision: 48913
    
    Authors:
    Shmuel Naaman <shmuel_naaman@yahoo.com>
    Afik Sofir <afik.sofer@gmail.com>
    
    Stats:
    3       3       source/locale/he/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 3 deletions(-)

commit 04a54b3d280eccfe39489912783410bc22649518
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 24 00:05:15 2019 +1000

    L10n updates for: de
    From translation svn revision: 48913
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    6       6       source/locale/de/characterDescriptions.dic
    2       1       user_docs/de/userGuide.t2t
     2 files changed, 8 insertions(+), 7 deletions(-)

commit 0d29265e6400faac824a7a44c5d127f6ee45fd2a
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed May 22 11:28:52 2019 +1000

    Report virtual desktop switches in Windows 10 (#8259)
    
    * Report virtual desktop switches in Windows 10.
    The desktop is checked on focus changes, and also the desktop's own name changes in case the focus does not move (such as when on the task bar).
    
    * eventHandler: desktop switches can only be reported on Windows 10 April 2019 and above.
    
    * Update what's new.
    
    * Fix winVersion check for virtual desktop switches.
    
    * Desktop IAccessible NVDAObject: hardcode its role to window, and ensure that parent, next and previous are all None, so that it could be used for the root of the NVDAObject tree. Window NVDAObject: don't ban the desktop window class from using a higher API, which means it will no use IAccessible., and therefore on newer Windows 10 builds, the virtual desktop name will be reflected in the Desktop NVDAObject's name.
    
    * Event handler: April 2019 -> May 2019 Update
    
    * Update what's new.

commit df6010f5cb21f0889d75ece624148f2752f8d81e
Author: Łukasz Golonka <wulfryk1@gmail.com>
Date:   Tue May 21 14:51:14 2019 +0200

    Shorten messages presented when profile is manually activated/deactivated (PR #9599)
    
    Fixes #9582

commit d5614ddc607486df536ba6865c6ab2bb35305a82
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue May 21 14:43:43 2019 +0200

    Update changes file for PR #9600

commit e5a362dffd0534b2a9a745247c2313e056d26e23
Author: Arnold Loubriat <arnold.loubriat@outlook.com>
Date:   Tue May 21 14:42:01 2019 +0200

    Added C# example for NVDA controller client DLL (PR #9600)
    
    C# example containing a PInvoke wrapper around nvdaControllerClient.dll and demonstration of how to use it.
    The example speaks a message and outputs a different braille message. It does this 4 times, each time is has a short time delay.

commit aa280b600af712209dd14fce38eb8230f406afa8
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue May 21 11:41:28 2019 +0200

    Update changes file for PR #8853

commit 327b2dde292a71d8123650a2515adeaa8aac5fb7
Author: Bram Duvigneau <bram@bramd.nl>
Date:   Tue May 21 11:36:57 2019 +0200

    Native driver for Freedom Scientific displays (PR #8853)
    
    Braille output and wizWheels are working. Tested on a Focus 40 blue
    
    Freedom Scientific braille displays are now supported by braille display auto detection (#7727)
    When an auto detected braille display is connected via Bluetooth, NVDA will keep searching for USB displays supported by the same driver and switch to a USB connection if it becomes available
    
    The bumper keys now work correctly on Freedom Scientific braille displays (#8849)
    
    Co-Authored-By: Leonard de Ruijter <leonardder@users.noreply.github.com>
    
    fixes #7727
    fixes #4464
    fixes #8849
    fixes #8729

commit f6f9d041c357fde2395413fc51f2824e3afca606
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Tue May 21 16:58:54 2019 +1000

    IAccessible NVDAObject: refactor presentationalRowNumber/columnNumber/rowCount/columnCount to correctly handle None and not log an error. (#9601)

commit ba1c46cef4460e1dbd40f0c3189bf44ab70562e3
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Mon May 20 11:31:07 2019 +0200

    Fix overlooked rename of ID to id in synthDriverHandler.LanguageInfo (PR #9587)
    
    * Fix overlooked rename of ID to id in synthDriverHandler.LanguageInfo
    * Original PR #8214

commit a9aca98412e5c963b53a7058dfe096ad642515f3
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Mon May 20 17:39:27 2019 +1000

    Only clear curWordChars on focus / caret movement (#9597)
    
    * No longer clear curWordChars in speech.speak, rather clear it on focus and caret movement.
    
    * Break up docstring.

commit 7ecb8de388cc0bfde91a37669f159e8bc9c7bc7b
Merge: 3e18bc3d6 4c62b5fd6
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon May 20 12:52:13 2019 +1000

    Merge branch 'master' into beta

commit 21fe09084f671916a1ad956600e3c7cd208fbc41
Merge: 299daa1dd 4c62b5fd6
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon May 20 12:51:37 2019 +1000

    Merge branch 'master' into threshold

commit 4c62b5fd6784f5ae7edb8128cd0ad2182d733683
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Mon May 20 04:38:04 2019 +0200

    Fix OneCore rateboost always initialized at 50% rate and SSML converter issues (#9560)
    
    * Fix failing Rate, Pitch and Volume commands
    
    * Always cache rate, pitch and volume. Rate is used when enabling rate boost
    
    * Fix typo, add comments

commit 89ec919fe9be863bd74ffafa7ca53b4ea5b01bf5
Author: Łukasz Golonka <wulfryk1@gmail.com>
Date:   Mon May 20 04:29:07 2019 +0200

    Fix failing system tests on AppVeyor (#9592)
    
    * Install pyGetWindow 0.0.4 as latest version cannot be installed on Python 2.7
    
    * Try to no longer use older version of pyAutogui

commit 44fe83162175db4ab5f940f3bc62e87c7ee3bd5d
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Mon May 20 12:27:33 2019 +1000

    Revert "appveyor: manually install pygetwindow 0.0.4 as 0.0.5 is broken. Required by pyautogui. (#9593)" (#9594)
    
    This reverts commit ed8c52f03069a48ebcaf752f0f231db4f656f3d2.

commit 299daa1dd9963414a25f2de733290cd1bd2ea99c
Merge: 304d00f1d ed8c52f03
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon May 20 10:48:41 2019 +1000

    Merge branch 'master' into threshold

commit ed8c52f03069a48ebcaf752f0f231db4f656f3d2
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Mon May 20 09:09:04 2019 +1000

    appveyor: manually install pygetwindow 0.0.4 as 0.0.5 is broken. Required by pyautogui. (#9593)

commit e7c5cea118749bf491fcf78bc1294d44f407bd7e
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Sun May 19 15:16:49 2019 -0700

    What's new: content edits. (#9588)
    
    What's new edits:
    * Eclipse: intro edits.
    * Excel/browse mode: vise versa -> vice versa.
    * Volum buttons: Windows Explorer -> File Explorer.
    * Liblouis 3.9.0: add missing full stop.
    * Log viewer/no dev info: Control+F1 -> NvDA+F1, dev info -> developer info.
    * Add-ons Manager/disabled add-ons: wording.

commit 7e26d8745ee4d5a5fc968c193f699ac367a86a11
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Thu May 16 17:05:43 2019 +0200

    Update changes file for PR #8214

commit 4832a8ed4b819f3b4eee732d3ea3c78fe4c36c12
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Thu May 16 17:02:48 2019 +0200

    Allow setting braille display specific settings in the GUI (PR #8214)
    
    Introduces an abstract driver class and allow the use of braille specific settings in the GUI
    
    - Add HID input setting to ALVA and eurobraille drivers
    - Add dot firmness setting to the handy tech driver
    - Renamed availableInSynthSettingsRing to availableInSettingsRing. The old, deprecated classes from the synthDriverHandler still use availableInSynthSettingsRing for backwards compatibility
    
    Closes #7452

commit 3e18bc3d607d329b618f5a6ff22928e475078bdf
Merge: b46be6eb7 c16c22e33
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 17 00:06:03 2019 +1000

    Update translations.
    
    From translation svn revision: 48839

commit c16c22e3314cde7a06fcac4a25472f0b1eff3536
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 17 00:05:43 2019 +1000

    L10n updates for: nl
    From translation svn revision: 48839
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    2       2       source/locale/nl/LC_MESSAGES/nvda.po
     1 file changed, 2 insertions(+), 2 deletions(-)

commit 5e79cb97c5ee5a6545917a3bf4cc0f6a25f7c695
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 17 00:05:36 2019 +1000

    L10n updates for: ko
    From translation svn revision: 48839
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    11      14      source/locale/ko/LC_MESSAGES/nvda.po
     1 file changed, 11 insertions(+), 14 deletions(-)

commit 76c0bd4cc93b6e9179916a608037fd04ff5f459f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 17 00:05:24 2019 +1000

    L10n updates for: fr
    From translation svn revision: 48839
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess33.net>
    
    Stats:
    6       6       source/locale/fr/LC_MESSAGES/nvda.po
     1 file changed, 6 insertions(+), 6 deletions(-)

commit 45a6acf3931ae639d96e4bfc78a27494f6969fe0
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 17 00:05:16 2019 +1000

    L10n updates for: de
    From translation svn revision: 48839
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    3       3       source/locale/de/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 3 deletions(-)

commit 69297e222496c153ba6ec5f36bfa9bcd28bf36a3
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 17 00:05:07 2019 +1000

    L10n updates for: ar
    From translation svn revision: 48839
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>, Omar Alojaimi <amrahmad1995@gmail.com>
    
    Stats:
    49      50      source/locale/ar/LC_MESSAGES/nvda.po
    311     228     user_docs/ar/userGuide.t2t
     2 files changed, 360 insertions(+), 278 deletions(-)

commit 304d00f1d5acd65f29e3705cf8eea1acb28fb634
Merge: 6ea783997 7ffc65fef
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu May 16 09:34:44 2019 +1000

    Merge branch 'master' into threshold

commit 7ffc65fef57889bb1a8a47ae40d6d06e35861397
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Thu May 16 01:28:16 2019 +0200

    Allow disabling automatic focus of focusable elements in browse mode (#9511)
    
    * Fast browse mode - system focus doesn't follow browse mode focus
    
    * Fix bug when checkboxes and radio button new state is not announced when checked or unchecked
    
    * Renaming configuration setting name to camel case
    
    * Refactoring definitions of passthrough methods
    
    * Refactoring sync focus function
    
    * Always call .scrollIntoView()
    
    * Fixing fast browse mode in Outlook emails
    
    * Fixing Tab behavior
    
    * Fixing bug - some edit boxes in IE impossible to enter
    
    * Refactoring
    
    * Refactoring - better tracking of async gainFocus events
    
    * Fixing exception in event pump
    
    * Rename browse modes
    
    * Set fast browse mode to be default
    
    * Updated bogfixes section
    
    * Add more keystrokes with focus sync
    
    * Renaming legacy browse mode back to traditional browse mode since we won't remove it in the nearby future
    
    * Update user documentation
    
    * Change toggle messages
    
    * Use .uniqueID attribute
    
    * Revert back to IA2UniqueID
    
    * Refactoring
    
    * Refactoring
    
    * Refactoring
    
    * Refactoring
    
    * Adding .uniqueID attribute to NVDAObject implementations
    
    * Adding passthrough gestures with numpadEnter
    
    * Lazy evaluation of uniqueID
    
    * Refactoring
    
    * Adding debug information - to be removed later
    
    * Implement uniqueID on NVDAObject
    
    * Use processID in the uniqueID "of windows, as windowHandles might eventually get reused
    
    * Remove everything reffering to async logic, except for the uniqueID properties
    
    * Make the code somewhat more compact
    
    * Fix issue with checkboxes
    
    * Remove references to uniqueId
    
    * Remove debug logging
    
    * Improve pass through gestures, added some more
    
    * Renames and restructuring code
    
    * Fix some unneeded changes
    
    * Only use lastFocusableObj when applicable
    
    * Update user guide
    
    * Move the auto focus focusable elements checkbox from browseMode settings to Advanced settings.
    
    * Update what's new.

commit 6ea783997fd5e43aee6287467d2382447194f033
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu May 16 06:44:53 2019 +1000

    OneCore synthDriver: fix up merge conflicts.

commit 129f7a6c4d574762022d3757cebc59e895fa8e9f
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed May 15 22:56:06 2019 +1000

    Bump commit to test nvda-commits list.

commit de6a0d96cba07252bb327c09a4a48cc34b10f66e
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed May 15 19:30:00 2019 +1000

    appveyor: build snapshots for threshold

commit 56cd4c66dad4e9581257dc2b80cdefd7c32704f1
Merge: 899528849 c20a50322
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed May 15 19:28:57 2019 +1000

    Merge branch 'master' into threshold

commit c20a503220b00bcce07252bf345692204b9165b4
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed May 15 19:17:43 2019 +1000

    Fix table navigation commands in Google Docs (#9562)
    
    * Allow table navigation in Google Docs.
    Specifically:
    * Expose the real IAccessible2 table coordinates for navigation via rowNumber, columnNumber, rowCount and columnCount NvDAObject properties, and controlField attributes, rather than IA2-specific table properties.
    Add new optional properties to NVDAObjects: presentationalRowNumber, presentationalColumnNumber, presentationalRowCount and presentationColumnCount.
    * Provide implementations of the presentational* properties for tables on NVDAObjects for IAccessible2 that uses rowindex and colindex IA2 aria attributes, allowing web authors to override how table coordinates are presented without confusing actual table navigation logic.
    * Similarly for controlFields, expose table-* and table-*-presentational attributes allowing for overriding of table coordinate presentation when the web author has specified it.
    * IA2TextInfo's updateSelection method: If the requested start and end offsets are the same (I.e. the caller wants a collapsed selection) call setCaretOffset instead. This gets around strange bugs in Google Ghrome / Google Docs where making collapsed selections in table cells selects the entire cell.
    
    * Address review comments.
    
    * Address review comments.
    
    * Update what's new.

commit 5cb7713a3259f5651bd7996b2627d11cc67a7895
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Wed May 15 11:09:03 2019 +0200

    Fix errors when profile name contains unicode characters (#9556)
    
    * Fix errors when profile name contains unicode characters
    
    * mbcs > utf-8

commit 899528849792e79b97d67de179f7473cee06b849
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed May 15 18:54:53 2019 +1000

    Bump NVDA version for threshold to 2019.3.0 and also set backwards compat to the same.
    We already know there will be 2019.2 before threshold, but this may need to be bumpt to 2019.4.0 if we end up doing a 2019.3 off master as well.

commit 367fc48d3aaf8b8e96f60823cedb57cb825586a3
Merge: 940ab5de9 1fcc2d3d5
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed May 15 18:50:06 2019 +1000

    Merge branch 'master' into threshold

commit 940ab5de90de9da832ed4726e486e3e204eb753c
Author: James Teh <jamie@jantrid.net>
Date:   Wed May 15 18:34:42 2019 +1000

    New speech framework including callbacks, beeps, sounds, profile switches and prioritized queuing (#7599)
    
    * Enhance nvwave to simplify accurate indexing for speech synthesizers.
    
    1. Add an onDone argument to WavePlayer.feed which accepts a function to be called when the provided chunk of audio has finished playing. Speech synths can simply feed audio up to an index and use the onDone callback to be accurately notified when the index is reached.
    2. Add a buffered argument to the WavePlayer constructor. If True, small chunks of audio will be buffered to prevent audio glitches. This avoids the need for tricky buffering across calls in the synth driver if the synth provides fixed size chunks and an index lands near the end of a previous chunk. It is also useful for synths which always provide very small chunks.
    
    * Enhancements to config profile triggers needed for profile switching within speech sequences.
    
    1. Allow triggers to specify that handlers watching for config profile switches should not be notified. In the case of profile switches during speech sequences, we only want to apply speech settings, not switch braille displays.
    2. Add some debug logging for when profiles are activated and deactivated.
    
    * Add support for callbacks, beeps, sounds, profile switches and utterance splits during speech sequences, as well as prioritized queuing.
    
    Changes for synth drivers:
    
    - SynthDrivers must now accurately notify when the synth reaches an index or finishes speaking using the new `synthIndexReached` and `synthDoneSpeaking` extension points in the `synthDriverHandler` module. The `lastIndex` property is deprecated. See below regarding backwards compatibility for SynthDrivers which do not support these notifications.
    - SynthDrivers must now support `PitchCommand` if they which to support capital pitch change.
    - SynthDrivers now have `supportedCommands` and `supportedNotifications` attributes which specify what they support.
    - Because there are some speech commands which trigger behaviour unrelated to synthesizers (e.g. beeps, callbacks and profile switches), commands which are passed to synthesizers are now subclasses of `speech.SynthCommand`.
    
    Central speech manager:
    
    - The core of this new functionality is the `speech._SpeechManager` class. It is intended for internal use only. It is called by higher level functions such as `speech.speak`.
    - It manages queuing of speech utterances, calling callbacks at desired points in the speech, profile switching, prioritization, etc. It relies heavily on index reached and done speaking notifications from synths. These notifications alone trigger the next task in the flow.
    - It maintains separate queues (`speech._ManagerPriorityQueue`) for each priority. As well as holding the pending speech sequences for that priority, each queue holds other information necessary to restore state (profiles, etc.) when that queue is preempted by a higher priority queue.
    - See the docstring for the `speech._SpeechManager` class for a high level summary of the flow of control.
    
    New/enhanced speech commands:
    
    - `EndUtteranceCommand` ends the current utterance at this point in the speech. This allows you to have two utterances in a single speech sequence.
    - `CallbackCommand` calls a function when speech reaches the command.
    - `BeepCommand` produces a beep when speech reaches the command.
    - `WaveFileCommand` plays a wave file when speech reaches the command.
    - The above three commands are all subclasses of `BaseCallbackCommand`. You can subclass this to implement other commands which run a pre-defined function.
    - `ConfigProfileTriggerCommand` applies (or stops applying) a configuration profile trigger to subsequent speech. This is the basis for switching profiles (and thus synthesizers, speech rates, etc.) for specific languages, math, etc.
    - `PitchCommand`, `RateCommand` and `VolumeCommand` can now take either a multiplier or an offset. In addition, they can convert between the two on demand, which makes it easier to handle these commands in synth drivers based on the synth's requirements. They also have an `isDefault` attribute which specifies whether this is returning to the default value (as configured by the user).
    
    Speech priorities:
    
    `speech.speak` now accepts a `priority` argument specifying one of three priorities: `SPRI_NORMAL` (normal priority), `SPRI_NEXT` (speak after next utterance of lower priority)or `SPRI_NOW` (speech is very important and should be spoken right now, interrupting lower priority speech). Interrupted lower priority speech resumes after any higher priority speech is complete.
    
    Refactored functionality to use the new framework:
    
    - Rather than using a polling generator, spelling is now sent as a single speech sequence, including `EndUtteranceCommand`s, `BeepCommand`s and `PitchCommand`s as appropriate. This can be created and incorporated elsewhere using the `speech.getSpeechForSpelling` function.
    - Say all has been completely rewritten to use `CallbackCommand`s instead of a polling generator. The code should also be a lot more readable now, as it is now classes with methods for the various stages in the process.
    
    Backwards compatibility for old synths:
    
    - For synths that don't support index and done speaking notifications, we don't use the speech manager at all. This means none of the new functionality (callbacks, profile switching, etc.) will work.
    - This means we must fall back to the old code for speak spelling, say all, etc. This code is in the `speechCompat` module.
    - This compatibility fallback is considered deprecated and will be removed eventually. Synth drivers should be updated ASAP.
    
    Deprecated/removed:
    
    - `speech.getLastIndex` is deprecated and will simply return None.
    - `IndexCommand` should no longer be used in speech sequences passed to `speech.speak`. Use a subclass of `speech.BaseCallbackCommand` instead.
    - In the `speech` module, `speakMessage`, `speakText`, `speakTextInfo`, `speakObjectProperties` and `speakObject` no longer take an `index` argument. No add-ons in the official repository use this, so I figured it was safe to just remove it rather than having it do nothing.
    - `speech.SpeakWithoutPausesBreakCommand` has been removed. Use `speech.EndUtteranceCommand` instead. No add-ons in the official repository use this.
    - `speech.speakWithoutPauses.lastSentIndex` has been removed. Use a subclass of `speech.BaseCallbackCommand` instead. No add-ons in the official repository use this.
    
    * Update the espeak synth driver to support the new speech framework.
    
    * Update the oneCore synth driver to support the new speech framework.
    
    * Update comtypes to version 1.1.3.
    
    This is necessary to handle events from SAPI 5, as one of the parameters is a decimal which is not supported by our existing (very outdated) version of comtypes .
    comtypes has now been added as a separate git submodule.
    
    * Update the sapi5 synth driver to support the new speech framework.
    
    * Fix submodule URL for comtypes. Oops!
    
    * Ensure eSpeak emits index callbacks even if the espeak event chunk containing the index is  0 samples in length. This allows sayAll to function with eSpeak. this may have broken due to a recent change in eSpeak I'm guessing.
    
    * Remove some debug print statements
    
    * Ensure eSpeak sets its speech parameters back to user-configured values if interupted while speaking ssml that changes those parameters.
    
    * Add a 'priority' keyword argument to  all speech.speak* functions allowing  the caller to provide a speech priority.
    
    * Alerts in Chrome and Firefox now are spoken with a higher speech priority, and no longer cancel speech beforehand. This means that the alert text will be spoken straight away, but will not interrupt  other speech such as the new focus.
    
    * Unit tests: fake speech functions now must take a 'priority' keyword argument to match the real functions.
    
    * Remove speech compat
    
    * synthDriverHandler.handleConfigProfileSwitch was renamed to handlePostConfigProfileSwitch. Ensure that speech  uses this name now.
    
    * synthDriverHandler.handlePostConfigProfileSwitch: reset speech queues if switching synths, so that the new synth has entirely new speech state.
    This behaviour can however be disabled by providing resetSpeechIfNeeded to false on this function. Speechmanager internally does this when dealing with configProfileSwitch commands in speech sequences.
    
     # Please enter the commit message for your changes. Lines starting
    
    * Remove the audioLogic synthesizer due to its extremely low usage.  If someone does require this, it could be updated and provided as an add-on.
    
    * Speech: correct indentation, which allows  profile switching in a speech eequence to work again.
    
    * Sapi4 synthDriver: very basic conversion to speechRefactor supporting synthIndexReached and synthDoneSpeaking, though for some sapi4 synths, indexing could be slightly early.
    
    * Convert system test synthDriver to speechRefactor so that indexing and doneSpeaking notifications are fired.
    
    * sayAllhandler: move trigger handling into _readText as recommended.
    
    * Remove some more speech compat stuff.
    
    * Speech: BaseCallbackCommand's run method is now abstract. Note that CallbackCommand now has been changed slightly so it implements its own run method which executes the callback passed to the command rather than run being overridden directly. BeepCommand also now calls playWaveFile with async set to True, not False so that it does not block. finally, BaseCallbackCommand's run method docstring notes that the main thread is blocked.
    
    * Speech: fix up some docstrings.

commit 1fcc2d3d5b764a8f45e0b87ea8b23b160e73c89d
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Mon May 13 16:57:32 2019 +0200

    Update changes file for PR #9297

commit cffe362ecbe98519073b6a5feee0b19356c863a1
Author: Francisco R. Del Roio <francipvb@users.noreply.github.com>
Date:   Mon May 13 11:54:01 2019 -0300

    Eclipse autocompletion support (PR #9297)
    
    Autocompletion items are read from the code editor when selected.
    
    Previously when writing code in the editor you need to focus the popup to know what items are on it.
    Detect the autocompletion popup and read the selected item as it changes.
    This also includes a script to read javadoc right from the editor.

commit bbc3a586022d44213ecab328c8dadeb38eef17cb
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Mon May 13 12:10:13 2019 +0200

    Fix spelling error in changelog
    
    noteplad++ -> notepad

commit 8f9f07d9532d42e72a7064ec4d0ec28c354d7a31
Author: Francisco R. Del Roio <francipvb@users.noreply.github.com>
Date:   Mon May 13 07:08:08 2019 -0300

    Fix regression caused by PR #9415. (PR #9557)

commit 91472f980ac411e4aecd9beb80d2a4f81b41f8c0
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Fri May 10 14:44:46 2019 +0200

    Update changes file for PR #8614

commit cae0dd46f15f70480c2d8fae65da20f0b071d7f0
Author: André-Abush Clause <dev@andreabc.net>
Date:   Fri May 10 14:44:03 2019 +0200

    Display log viewer even there's no dev info for navigator object (#8614)
    
    Fixes #8613

commit 93ccd518a56b7ab51bf7a66fd8819309bb43bb68
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Fri May 10 13:56:39 2019 +0200

    Update changes file for PR #8927

commit 4b96ee3e0bc68aec9a499434449d30f88120d4e0
Author: Łukasz Golonka <wulfryk1@gmail.com>
Date:   Fri May 10 13:54:19 2019 +0200

    Report module info command presents information in a more efficient manner. (PR #8927)
    
    The command is triggered with `CTRL+NVDA+F1`.
    
    The module name is now presented first, then the executable name with the goal of hearing the relevant information as early as possible.
    
    Closes #7338

commit ff17db530c03a4330222b51569be15ed009eb878
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Fri May 10 12:58:32 2019 +0200

    Update changes file for PR #8844

commit 8d129b9f0a4e4b7a0b46e48e79dae8939d437874
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Fri May 10 12:54:28 2019 +0200

    Enable configuration profiles with gestures (PR #8844)
    
    Closes #4209
    
    Previously configuration profiles could only be activated:
    - automatically with triggers
    - by manual activation in the dialog for configuration profiles
    
    This commit adds support for activation with gestures.
    
    1. When NVDA is started, a script is added to the class for every profile.
    2. Adding a profile also adds a script
    3. Removing a profile deletes it's script along with gestures that have ever been bound to it.
    4. Renaming a profile removes the old script, and then adds a new one. The assigned gestures are moved from the old to the new script.
    
    Config profiles are bound to file naming restrictions, whereas script names are bound to python variable naming rules. The latter rules are stricter. This is now taken care of by changing any thing that is not either an alphanumeric or an underscore to its base16 encoding. Doing so meets the naming requirements and avoids a name collision when having a "Test profile" and "Test_profile" profile.

commit 5d56962f2002f6f5e07dcd20ce0f857a80db500c
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Fri May 10 10:47:17 2019 +0200

    Update changes file for PR #8842

commit 11effcde3585287551e65cc19e891f7cb7bdabc1
Author: Łukasz Golonka <wulfryk1@gmail.com>
Date:   Fri May 10 10:44:20 2019 +0200

    Fix accelerator conflicts in elements list
    
    Change shortcut for "Filter by" field in the elements list from ALT+E to ALT+Y to avoid conflicts with "Errors" when opened while using browse mode in Microsoft Word.
    
    Fixes #8842

commit 9ebb3564d80854932884942127caafaeeadbd913
Author: James Teh <jamie@jantrid.net>
Date:   Fri May 10 18:08:13 2019 +1000

    OneCore voices: Use new SpeechSynthesizerOptions properties to set pitch, volume and rate lengths (PR #8934)
    
    Fixes #7498.
    
    Issue summary for NVDA's OneCore voices support:
    - The rate setting is affected by the rate setting in Windows Speech Settings.
    - The pitch range is very limited (compared with Narrator).
    
    Previously, we used SSML in every utterance to set the base value of parameters, since there was no other way.
    However, Windows 10 Fall Creators Update introduced new properties in the SpeechSynthesizerOptions class to set these parameters.
    
    In addition to using these new properties, this commit adds rate boost to the synthesizer settings ring and added rate boost to the OneCore driver. This is disabled by default so speech should continue to be understandable. It is expected that for older versions of Windows 10 this driver should behave equally to how current master behaves.
    
    The only case where the rate will differ from before this commit will be when someone changed the rate in the Windows 10 speech settings. More information on this in the PR #8934

commit 2004bef81be3d8a1ffcfdd9478052dba6d2c7d66
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Thu May 9 18:57:10 2019 +0200

    Update changes file for PR #9334

commit 4df274c38e98a6edc39509512937c47d19b6bd02
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Thu May 9 18:57:03 2019 +0200

    Lower case addon name comparison (PR #9334)
    
    * Perform lower case comparison of add-on names when updating
    * Do not request removal of a possible previous add-on before it has been replaced by a new version

commit b46be6eb732fdf885d031dc980f7df6a85e96df0
Merge: 3bc67ae4f 545b99377
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 10 00:06:03 2019 +1000

    Update translations.
    
    From translation svn revision: 48730

commit 545b99377dd27da0863742d198652b1ec97a51cb
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 10 00:06:03 2019 +1000

    L10n updates for: zh_TW
    From translation svn revision: 48730
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    11      10      source/locale/zh_TW/LC_MESSAGES/nvda.po
    54      54      source/locale/zh_TW/characterDescriptions.dic
     2 files changed, 65 insertions(+), 64 deletions(-)

commit f3454d58ff9b1f88f69f2b9f3822d5ee78f89897
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 10 00:06:01 2019 +1000

    L10n updates for: zh_CN
    From translation svn revision: 48730
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    
    Stats:
    12      6       source/locale/zh_CN/LC_MESSAGES/nvda.po
    1       1       source/locale/zh_CN/characterDescriptions.dic
     2 files changed, 13 insertions(+), 7 deletions(-)

commit ab1287092ccee7e4df603f635188b5ff8873583c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 10 00:05:48 2019 +1000

    L10n updates for: ro
    From translation svn revision: 48730
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <contact@florian-ionascu.ro>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    
    Stats:
    3       3       source/locale/ro/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 3 deletions(-)

commit c647e58bd4dea5caafdec800f241ff6a89a68fb0
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 10 00:05:33 2019 +1000

    L10n updates for: ja
    From translation svn revision: 48730
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    2       2       source/locale/ja/LC_MESSAGES/nvda.po
    40      3       source/locale/ja/symbols.dic
    7       7       user_docs/ja/changes.t2t
    5       5       user_docs/ja/userGuide.t2t
     4 files changed, 54 insertions(+), 17 deletions(-)

commit 636d28c46d4db27b91f92aa0bfed6c94893343cd
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 10 00:05:07 2019 +1000

    L10n updates for: ar
    From translation svn revision: 48730
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>, Omar Alojaimi <amrahmad1995@gmail.com>
    
    Stats:
    15      15      user_docs/ar/userGuide.t2t
     1 file changed, 15 insertions(+), 15 deletions(-)

commit 2f60bc16225921abc37e80253d7c59a40e8cb28c
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue May 7 15:32:00 2019 +0200

    Update changes file for PR #9441

commit 0be486a79e1f7110164c3a52dd9ba9d13166186f
Author: Francisco R. Del Roio <francipvb@users.noreply.github.com>
Date:   Tue May 7 10:30:13 2019 -0300

    Upgraded comtypes to 1.1.7 (PR #9441)
    
    Closes #9440
    Closes #8522

commit 09d311793fef0aaedf86cdb2cad0496e208d9614
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Mon May 6 20:03:48 2019 +0200

    Update changes file for PR #9415

commit 2239a76f1c3a48ebd705d3f4f36697b2f9929328
Author: Francisco R. Del Roio <francipvb@users.noreply.github.com>
Date:   Mon May 6 15:01:33 2019 -0300

    Correct focus in Objects Explorer (vs2017 and vs2019) (PR #9415)
    
    Enforced UIA implementation of all UI elements in Visual Studio 15.3 and up.
    
    This adds an overlay class for the tree view items in object explorer. It takes a `focusRedirect` event and checks for its states
    If `STATE_FOCUSED` is not in the states set, it redirects the event to the real focused object.
    I'm not really sure if it is the right way of doing this.
    
    Closes #9311

commit 029c0e315bf96b537943d2d2c9449fd988e3e879
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Mon May 6 15:32:29 2019 +0200

    Update changes file for PR #9057
    
    A command has been added to change the mouse text unit resolution (how much text will be spoken when the mouse moves), it has not been assigned a default gesture. (#9056)

commit 87b02c227cc5f5caf257c47c1c3a399a3cb25489
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Mon May 6 15:29:46 2019 +0200

    Add mouse text resolution input gesture (PR #9057)
    
    It was only possible to change the mouse text unit resolution using NVDA's mouse settings panel. A new script in globalCommands has been added, it has not been assigned a default gesture.
    
    Closes #9056

commit 363af94b716754c08784dbdac3aaa414ff522995
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Thu May 2 18:21:58 2019 +0200

    Update changes file for PR #9497
    
    In Microsoft Excel, the cell location is announced after it changes due to the shift+enter or shift+numpadEnter gestures. (Issue #9499)

commit 203ee7f7c1a68abd992de9e23733936e949dd236
Author: abdel792 <abdelkrim.bensaid@gmail.com>
Date:   Thu May 2 18:15:49 2019 +0200

    shift+enter and shift+numpadEnter keys now announce the previous cell in the same column in Excel (PR #9497)
    
    Fixes #9499

commit f37dde167362a37008aaca28d2c25b2be407d598
Author: Arnold Loubriat <arnold.loubriat@outlook.com>
Date:   Thu May 2 18:06:10 2019 +0200

    Fixed Say all in Scintilla controls when word wrapping is on (PR #9522)
    
    Fixes #9521.

commit 8cbd3bb68baba6aea140ad09a51b16976e2859df
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Thu May 2 07:22:48 2019 -0700

    Python 3 imports: additional work on builtins, relative imports, importlib (PR #8727)
    
    Fixes #8712
    Fixes #8724
    Fixes #8768
    
    Support Python 3 style imports. Python 3 wants a dot (.) when importing modules from the same folder. When using __import__ function, the level argument specifies search level (default is 0). Thus allow other IAccessible modules to be loaded by specifying level of 1 (relative import from the same folder).
    
    Changes made:
    
    - Use importlib to import modules at runtime, including for IAccessible modules #8712
    - GUI and IAccessible objects: relative imports (from . import ...) #8724
    - Import builtin -> builtins (Python Console, language handler)  #8768
      - Python 2.7 includes a base implementation of importlib which powers __import__ function, with Python 3 providing more features such as importers. Thus use importlib.import_module in app module handler and others, specifying appropriate package names in the process. Because importlib.import_module complains about module names, spell the module name (NVDAObjects.IAccessible.mod).
    - HRESULT no longer exists in ctypes.wintypes in Python 3. The new location is ctypes.HRESULT. Even in Python 2, ctypes.wintypes.HRESULT points to ctypes.HRESULT.

commit 3bc67ae4ffd1adc2e529e54be897967080fa800e
Merge: d8373e722 bb7a9a674
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 3 00:06:03 2019 +1000

    Update translations.
    
    From translation svn revision: 48672

commit bb7a9a674265988f60ad06702a8231e37e8f54d5
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 3 00:05:51 2019 +1000

    L10n updates for: ru
    From translation svn revision: 48672
    
    Authors:
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    30      30      source/locale/ru/LC_MESSAGES/nvda.po
     1 file changed, 30 insertions(+), 30 deletions(-)

commit a31ac8f5e60d199a78f0dfbd52bdba346f6b159d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 3 00:05:43 2019 +1000

    L10n updates for: nl
    From translation svn revision: 48672
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    2       2       source/locale/nl/LC_MESSAGES/nvda.po
     1 file changed, 2 insertions(+), 2 deletions(-)

commit 11c23ecde48c1566ecc493175a295b4fb42a2b0e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 3 00:05:36 2019 +1000

    L10n updates for: ko
    From translation svn revision: 48672
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    2       2       source/locale/ko/symbols.dic
     1 file changed, 2 insertions(+), 2 deletions(-)

commit 861e155b6f26e4b9ab53fc79ace269a378c7d69a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 3 00:05:31 2019 +1000

    L10n updates for: it
    From translation svn revision: 48672
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    3       3       source/locale/it/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 3 deletions(-)

commit 55366ba2ff3a2b1fb2b7bee008c43429c3a3dc82
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 3 00:05:21 2019 +1000

    L10n updates for: fa
    From translation svn revision: 48672
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    92      16      user_docs/fa/userGuide.t2t
     1 file changed, 92 insertions(+), 16 deletions(-)

commit 6d4b11212272decc99cdf60e9177eb8c84269ff3
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Apr 26 13:59:48 2019 +1000

    Update major version to 2019.2 and change copyright year.

commit bd02b489cc14dd46a824cea40482ccf87e45336c
Merge: f1c1c2382 7f41aed39
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Apr 26 13:57:05 2019 +1000

    Merge branch 'master' of https://github.com/nvaccess/nvda

commit 7f41aed39223f1db2bb39d93c870e22db6d9ecc4
Author: Arnold Loubriat <datatriny@gmail.com>
Date:   Thu Apr 25 23:39:15 2019 +0200

    Fixing incorrect line reporting in Scintilla controls when line wrapping is on. (#9427)
    
    * Fixing incorrect line reporting in Scintilla controls when line wrapping is on.
    
    * Addressed review comments.
    
    * Fixed move mouse to navigator object.
    
    * Excel: use LresultFromObject and objectFromLResult to marshal cell range objects between NvDA and nvdaHelper inproc code, rather than letting Windows do it, as the previous implementation was failing on Office 2007 because CoInitialize was never called on the RPC worker thread.
    
    * use null for wParam.
    
    * Marshal Excel cell ranges by using the Excel cell address.
    
    * Addressed review comments.
    
    * Code cleanup.
    
    * Addressed review feedback.
    
    * Update what's new.

commit d8373e722bd8c1970230c7d4b9547ad8c98c7a4e
Merge: 1bcb24061 4d18430e5
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 26 00:06:03 2019 +1000

    Update translations.
    
    From translation svn revision: 48641

commit 4d18430e5d66791be0d9e3c122c6ce015464a794
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 26 00:05:50 2019 +1000

    L10n updates for: ru
    From translation svn revision: 48641
    
    Authors:
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    11      11      source/locale/ru/LC_MESSAGES/nvda.po
    4       3       source/locale/ru/symbols.dic
     2 files changed, 15 insertions(+), 14 deletions(-)

commit 950db5d89ecbec0192104be6fabbb4b3b68019cf
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 26 00:05:48 2019 +1000

    L10n updates for: ro
    From translation svn revision: 48641
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <contact@florian-ionascu.ro>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    
    Stats:
    5       5       source/locale/ro/LC_MESSAGES/nvda.po
    5       5       user_docs/ro/userGuide.t2t
     2 files changed, 10 insertions(+), 10 deletions(-)

commit 2ca9847009ed72f3121ffcd608dee7deca6a850d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 26 00:05:23 2019 +1000

    L10n updates for: fr
    From translation svn revision: 48641
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>
    Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    Cyrille Bougot <cyrille.bougot2@laposte.net>
    Corentin Bacqu&-Cazenave <corentin@progaccess33.net>
    
    Stats:
    3       3       source/locale/fr/symbols.dic
     1 file changed, 3 insertions(+), 3 deletions(-)

commit f1c1c238240df3c8c4c1a031da16227a1ec5b69c
Merge: cd27ce9ac 0d2a1525d
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Apr 24 15:33:04 2019 +1000

    Merge branch 'master' of https://github.com/nvaccess/nvda

commit 0d2a1525ddfd0f60963478f1b0f5e281badb07fb
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue Apr 23 20:07:09 2019 +0200

    Update changes file for PR #8790
    
    New features:
    - You can now filter symbols in the punctuation/symbol pronunciation dialog, similar to how filtering works in the elements list and input gestures dialog. (#5761)
    Bug fixes:
    - Loading the punctuation/symbol pronunciation dialog is now much faster when using symbol dictionaries containing over 1000 entries. (#8790)

commit 07e48a9ef333279d2bacf291beb1d875384d0328
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Tue Apr 23 20:00:58 2019 +0200

    Add filtering functionality to the symbols list (#8790)
    
    - Added a filter edit box to the speech symbols dialog.
    - Converted the list control to a list control with the `wx.LC_VIRTUAL` style. This provides a major performance boost this gives when loading the dialog for the first time, as well as when filtering.
    - Added some functionality to `gui.nvdaControls.AutoWidthColumnListCtrl` to support getting item text from a data storage without the requirement of subclassing the list control. It is now also possible to forcefully send a `wx.EVT_LIST_ITEM_FOCUSED` to the control

commit 1bcb2406109c3493b726384631f569432827f75e
Merge: d7f9d51df c2f9af4be
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 19 00:06:03 2019 +1000

    Update translations.
    
    From translation svn revision: 48623

commit c2f9af4bef694b076bfc03ec350e2b3cc8c6b07b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 19 00:06:03 2019 +1000

    L10n updates for: zh_TW
    From translation svn revision: 48623
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    87      87      source/locale/zh_TW/characterDescriptions.dic
     1 file changed, 87 insertions(+), 87 deletions(-)

commit 3c2097d988d8caf6a19a8e2b2372ed63dd56dd35
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 19 00:05:45 2019 +1000

    L10n updates for: pl
    From translation svn revision: 48623
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <hubert.meyer@wp.pl>
    
    Stats:
    3       3       source/locale/pl/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 3 deletions(-)

commit fcc16c60d62ea6ee255a45bb1a27d094516a5793
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 19 00:05:36 2019 +1000

    L10n updates for: ko
    From translation svn revision: 48623
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    29      29      source/locale/ko/LC_MESSAGES/nvda.po
     1 file changed, 29 insertions(+), 29 deletions(-)

commit 1b4212f6a2b20bc493f6a95b399255b78790ff27
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 19 00:05:15 2019 +1000

    L10n updates for: de
    From translation svn revision: 48623
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    2       2       source/locale/de/LC_MESSAGES/nvda.po
     1 file changed, 2 insertions(+), 2 deletions(-)

commit 7f274ecaa3f9b257354aaf19c8fe12e20a3e8d72
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Fri Apr 12 11:25:38 2019 +0200

    Update changes file for PR #9346
    
    Updated liblouis braille translator to version 3.9.0 (Issue #9439)

commit 92d8487ac3b2d425814eccbf6444148c2bdae320
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Fri Apr 12 11:24:17 2019 +0200

    Update liblouis to version 3.9 (PR #9346)
    
    Closes #9439
    
    This updates liblouis to version 3.9 by simply updating the submodule. Liblouis 3.9 contains updates to several braille tables, including the German 8 dot table. It contains neither new nor removed tables.
    
    This will require testing by alpha users with braille displays.

commit df60991c207a0602fe8778ac68c8e0d013ee9d24
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Fri Apr 12 11:14:31 2019 +0200

    Update changes file for PR #9466
    
    In the Windows 10 May 2019 update, NVDA no longer speaks many volume notifications if changing the volume with hardware buttons when Windows Explorer has focus. (#9466)

commit a1e59aa9ccc128062da5150c105fcae66b22cc66
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Fri Apr 12 11:12:36 2019 +0200

    Respect UIA Notification processing flag (PR #9466)
    
    In the Windows 10 may 2019 update, Microsoft decided to announce volume changes using UIA notifications. This means that these volume notifications are announced when the keyboard focus is in Explorer. However, due to the way NVDA handled UIA notifications before this pr, these volume change notifications were queued one after another, resulting into lots of notifications being announced, including duplicates.
    
    Now UIA notifications have a notificationProcessing parameter. When this parameter is set to one of the most recent NotificationProcessing constants, speech is cancelled before announcing the new notification.
    
    Tested with volume changes in Windows 10 1903.

commit b235634463939b693dbd5ef1a9f4614e7cf9563e
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Fri Apr 12 11:02:28 2019 +0200

    Update changes file for PR #9452
    
    Updated Unicode Common Locale Data Repository emoji annotations to version 35.0. (Issue #9445)

commit 946aed0ddb9b776273fca34f25782364d3060a50
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Fri Apr 12 11:01:20 2019 +0200

    Update CLDR emoji annotations to version 35.0 (PR #9452)
    
    Fixes #9445
    This updates the CLDR emoji annotations from version 34.0 to 35.0. The new annotations include the new emoji 12 emoji, such as 🦮.
    Release notes - http://cldr.unicode.org/index/downloads/cldr-35

commit 412632178484989ce455c534c7d1408c4eca008b
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Fri Apr 12 10:13:40 2019 +0200

    Update changes file for PR #9477
    
    In Google Docs (and other web-based editors), braille no longer sometimes incorrectly shows "lst end" before the cursor in the middle of a list item. (#9477)

commit f876635252658326cce988354f5fcb5585c50a91
Author: James Teh <jamie@jantrid.net>
Date:   Fri Apr 12 18:11:53 2019 +1000

    MozillaCompoundTextInfo: Don't skip ignored objects when determining whether the range covers the end of any ancestors of endObj. (PR #9477)
    
    MozillaCompoundTextInfo: Don't skip ignored objects when determining whether the range covers the end of any ancestors of endObj.
    
    In order to display markers at the end of containers in braille (e.g. "lst end" at the end of lists), MozillaCompoundTextInfo needs to check the object at the end of the range (endObj) and its ancestors.
    If the range is at the end of any of these objects, we mark the associated control field as being at the end of its node.
    For example, if the range is at the end of a list, we mark the list's control field as being at end of node, which causes braille to display "lst end".
    However, if the range is *not* at the end of one of these objects, the range also can't be at the end of any of its ancestors.
    For example, if the range ends in the middle of a list item, it obviously doesn't cover the end of the list, even if the list item (as a whole) is the last item in the list.
    In this case, we don't check the remaining ancestors.
    
    Previously, this was failing where there was a single paragraph inside the last list item in a list.
    The list would be marked as end of node, even if the range ended in the middle of the paragraph, resulting in a spurious "lst end" indicator before the cursor in braille.
    
    This happened because we ignore paragraphs as irrelevant and thus don't generate control fields for them.
    However, the code which checks whether the range is at the end of endObj or its ancestors only ran if there was a control field.
    Because the paragraph had no control field, we'd skip it completely, not determining that the range ended in the middle of it and thus aborting the search.
    We'd then check the next ancestor, and since the paragraph was the last child of the list item which was in turn the last child of the list, we'd mark all of these as end of node, including the list.
    
    To fix this, we now run this check regardless of whether we generated a control field for an object; i.e. regardless of whether we ignored a paragraph.
    
    Further explanation:
    We choose to ignore paragraphs because they aren't useful; they're essentially presentational for our purposes. So, we don't generate a control field for them. This is where field will be None. However, just because we choose to ignore it in terms of control fields doesn't change the fact that there's an object for it. So, we still need to check whether we're at the end of that object. If we are, we won't do anything here because there's no field to annotate. However, if this is *not* the end, we will still break out of the loop, since we're not at the end of any of its ancestors. This is the key change here. Previously, we wouldn't break out of the ancestor loop for a paragraph (because no field), even if we were at the end of that paragraph. It's essential that we break out of the loop here if we're at the end of any object, regardless of whether we chose to generate a field for it.

commit 6e5e40558171cd6c61fa4e519430c6f376123072
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Fri Apr 12 10:06:23 2019 +0200

    Update changes file for PR #9474
    
    Clarification to the text in the add-on manager when NVDA is launched with the --disable-addons flag. (Issue #9473)

commit b46a44415c369db3a271dfb67e98d4f31437b2ab
Author: Arnold Loubriat <datatriny@gmail.com>
Date:   Fri Apr 12 10:04:07 2019 +0200

    Clarify the state of add-ons when disabled with --disable-addons flag (PR #9474)
    
    - Clarify that add-ons will be "enabled / disabled after restart"
    - Modify title if add-ons are globally disabled.
    - Expand explanation that all add-ons are disabled, and what can still be done in the dialog.

commit 1db78942dd613ed00edca5eb46b9eecc4b652dae
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Thu Apr 11 22:52:12 2019 +0200

    Update changes file for PR #9136
    
    The extended window style of a window is now exposed using the `extendedWindowStyle` property on Window objects and their derivatives. (PR #9136)

commit 8f54d22456dcd9b7a2a4a9a12b70aa80cb9fbdc0
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Thu Apr 11 22:50:32 2019 +0200

    Exposes the extended window style on Window objects (PR #9136)
    
    For application Windows, the window style can be fetched to find out whether the window has a title bar, is visible or unavailable. The extended window style wasn't yet available on Window objects. The "extended window style" (see msdn) provides information like:
    
    * Whether the window supports dragging and dropping of files
    * Whether the window is a window within an MDI interface
    * Whether the window text is displayed using right-to-left reading-order properties
    * Whether the window is a floating toolbar
    * Whether the window is transparent
    * The window is always on top

commit 4589915dda96dd9356f8ea55825debd475be980f
Author: Reef Turner <reef@nvaccess.org>
Date:   Thu Apr 11 22:07:47 2019 +0200

    Request for behavior of other NVDA versions
    
    In the bug report template, request that when trying other versions, the behavior observed is reported

commit d7f9d51dfc4d1769722a60ac635087786551bf36
Merge: b19031daf 005bba8ed
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 12 00:06:03 2019 +1000

    Update translations.
    
    From translation svn revision: 48598

commit 005bba8ed6fff90d7b168b88e377e6730dcbb8d8
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 12 00:05:36 2019 +1000

    L10n updates for: ko
    From translation svn revision: 48598
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    66      63      source/locale/ko/LC_MESSAGES/nvda.po
     1 file changed, 66 insertions(+), 63 deletions(-)

commit 959aa6ee922ffa2bb8e733a001567cb6aa51a473
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 12 00:05:16 2019 +1000

    L10n updates for: de
    From translation svn revision: 48598
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    2       2       source/locale/de/LC_MESSAGES/nvda.po
    2       2       user_docs/de/changes.t2t
     2 files changed, 4 insertions(+), 4 deletions(-)

commit 56e208d27c10af1adee5c428c797534b8c0fb565
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Wed Apr 10 14:47:56 2019 +0200

    Update changes file for PR #9469
    
    Synthesizer volume is now increased and decreased by 5 instead of 10 when using the settings ring. (Issue #6754)

commit 7a006c0fd478a7415a563bb50fa17fbf4a267b65
Author: Arnold Loubriat <datatriny@gmail.com>
Date:   Wed Apr 10 14:45:40 2019 +0200

    Reduce SynthSettingsRing volume step size (PR #9469)
    
    Fixes #6754.
    
    Summary of the issue:
    When changing synth volume setting using the settings ring, the value is increased and decreased by 10, which is too much for some users.
    
    Description of how this pull request fixes the issue:
    As suggested in #6754, the step has been decreased to 5, which is more acceptable.

commit db34329b8cc9d47de6d12109f16d57fcbec3d3d3
Merge: 4d2e7f2b0 c61165296
Author: Reef Turner <reef@nvaccess.org>
Date:   Wed Apr 10 12:34:56 2019 +0200

    Merge tag 'release-2019.1.1'
    
    Update master branch with changes from Release 2019.1.1

commit c61165296ee2c980a9b62a4284e4f871c5a20fd4
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Apr 10 11:42:15 2019 +1000

    Correct build version to 2019.1.1

commit 9028785bb7a578e8b9b97149dead3fa977b32bb4
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Apr 9 15:19:12 2019 +1000

    Update what's new.

commit 5fd020e369713d5b78ffe608c658eb4e0d3e814e
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Apr 9 15:13:24 2019 +1000

    Update what's new.

commit 0df2a494237d0364c1fa1fd51c95fdd3c93b4170
Author: Takuya Nishimoto <nishimotz@gmail.com>
Date:   Tue Apr 9 14:10:27 2019 +0900

    Excel cell range text should be translated. #9470 (#9471)

commit 4d2e7f2b0eec57740ca46a4b1940ac61c608cb30
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Tue Apr 9 06:31:43 2019 +0200

    Fix missing string include in displayModel.h (#9467)

commit 97a70f1b78d277e3eb4d38b2d84733295e439c80
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Mon Apr 8 01:59:41 2019 -0700

    Dev guide: mention field types for manifest, along with examples edited to the new format (PR #8594)
    
    Fixes #8593
    
    Dev guide: mention field types for manifest, along with examples edited to show proper value format.

commit 7c98cc9eaf93ce4df090f6a25ca5095db78d6ed9
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Mon Apr 8 01:24:46 2019 +0200

    Fix error when copying to system config (#9449)
    
    * Fix error when copying to system config
    
    Dont copy folders that previously allowed unpackaged addons to be run.
    These folders ('appModules','brailleDisplayDrivers','globalPlugins',
    'synthDrivers') are now only used if they are within the scratchpad
    directory and the advanced option is turned on.
    See commit: d1a8a710d37f5a376ebf9f32600d7cb857554b38
    
    Since we are not copying these folders, and the contents would not be run
    even if they were copied, we no longer warn about them.
    
    A log message is added if they are present and we skip over them.
    
    * Mutate subDirs to exclude unwanted files.
    
    Address review feedback in #9449
    
    * Update what's new.

commit 321fb3dc448f56c68ce7db18ea503ccebe29d1a3
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Mon Apr 8 09:08:55 2019 +1000

    Avoid crash in Chrome by no longer fetching currently selected item in listboxes (#9458)
    
    * Gecko vbufBackend: disable locating currently selected item in listboxes in Chrome. as this can cause Chrome to crash.
    
    * Update what's new.

commit e194b8986efc02a9d52f405307813fead21cd6f6
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Mon Apr 8 09:04:59 2019 +1000

    Address crash in Excel 2007 (#9456)
    
    * Excel: use LresultFromObject and objectFromLResult to marshal cell range objects between NvDA and nvdaHelper inproc code, rather than letting Windows do it, as the previous implementation was failing on Office 2007 because CoInitialize was never called on the RPC worker thread.
    
    * use null for wParam.
    
    * Marshal Excel cell ranges by using the Excel cell address.
    
    * Update what's new.

commit f3b9c3cee66cfe456603b30e5ae1edbaaf475d54
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Fri Apr 5 09:33:26 2019 +1000

    Revert "Avoid crash in Chrome by no longer fetching selected item of listboxes (#9430)" (#9457)
    
    This reverts commit bb807257a71efd13dc32756eb34bd23cb1e9f28e.

commit b19031dafc03878007e742d19b5696fe0a2308c4
Merge: f4fc4a705 e44cbd3d1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 5 00:06:08 2019 +1000

    Update translations.
    
    From translation svn revision: 48507

commit e44cbd3d16cf167e51600f7ebf7a6dc6e3a92e34
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 5 00:05:54 2019 +1000

    L10n updates for: ru
    From translation svn revision: 48507
    
    Authors:
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    15      15      source/locale/ru/LC_MESSAGES/nvda.po
    19      19      user_docs/ru/userGuide.t2t
     2 files changed, 34 insertions(+), 34 deletions(-)

commit e6053a22ffaddac00ea3710c0e9b6b6f1c387fae
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 5 00:05:49 2019 +1000

    L10n updates for: pt_BR
    From translation svn revision: 48507
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    3       3       source/locale/pt_BR/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 3 deletions(-)

commit a7f942245818fc6b80ddeba0c6af6d3c9f3a3ed2
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 5 00:05:47 2019 +1000

    L10n updates for: pl
    From translation svn revision: 48507
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <hubert.meyer@wp.pl>
    
    Stats:
    3       2       user_docs/pl/userGuide.t2t
     1 file changed, 3 insertions(+), 2 deletions(-)

commit c52ea4febfeadc77d3ddde577b8d25b5efcf7ef9
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 5 00:05:34 2019 +1000

    L10n updates for: kmr
    From translation svn revision: 48507
    
    Authors:
    Imam Kahraman <imam.kahraman@googlemail.com>
    
    Stats:
    43      43      source/locale/kmr/symbols.dic
     1 file changed, 43 insertions(+), 43 deletions(-)

commit bf15a6e5d2c8c067fc8a17e183d3d465aeb9c7c9
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 5 00:05:34 2019 +1000

    L10n updates for: ja
    From translation svn revision: 48507
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    1732    150     source/locale/ja/characterDescriptions.dic
    1       0       source/locale/ja/symbols.dic
     2 files changed, 1733 insertions(+), 150 deletions(-)

commit 662802afbed17d178736778978704199d4b86b20
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 5 00:05:28 2019 +1000

    L10n updates for: hr
    From translation svn revision: 48507
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Tea Turkovic <tturkovi@gmail.com>
    Dejana Rakic <dejana.rakic.2@gmail.com>
    
    Stats:
    1       1       user_docs/hr/changes.t2t
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 3552c04c22a7eae317057a4c5a462c82190e6cb7
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 5 00:05:07 2019 +1000

    L10n updates for: ar
    From translation svn revision: 48507
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>, Omar Alojaimi <amrahmad1995@gmail.com>
    
    Stats:
    69      0       user_docs/ar/changes.t2t
     1 file changed, 69 insertions(+)

commit cd27ce9acca8770d27cc0b7d5dde8ae88486f8e2
Merge: 520933f8c bb807257a
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Apr 4 13:59:10 2019 +1000

    Merge branch 'master' into restoreExcel2007

commit 520933f8cc7027bc012b50a44de83fa48a693064
Merge: e5d2bb248 166e98de3
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Apr 4 13:58:28 2019 +1000

    Merge branch 'master' into restoreExcel2007

commit bb807257a71efd13dc32756eb34bd23cb1e9f28e
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Thu Apr 4 13:58:01 2019 +1000

    Avoid crash in Chrome by no longer fetching selected item of listboxes (#9430)
    
    * Gecko vbufBackend: disable locating currently selected item in listboxes in Chrome. as this can cause Chrome to crash.
    
    * Update what's new.

commit 166e98de3eb483e61efdc5eba1471520374f1b0a
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Wed Apr 3 20:38:30 2019 -0700

    Windows Store edition: disable developer scratch user interface (#9450)
    
    * GUI/Settings: update copyright year
    
    * GUI/Settings/scratchpad: disable scratchpad checkbox and associated controls if running as a Windows Store app. Re #9438.
    
    Because NVDA.AppX does not support add-ons at this tie, disable developer scratchpad controls from Settings/Advanced panel.
    
    * AppX/Advanced panel: address review comments. Re #9438.
    
    Reviewed by Mick Curran (NV Access):
    * Removed comment.
    * Add dev group but disabled controls within it.

commit a7b7e0cafd7d4026bb4ca3f3f092393d01892033
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Thu Apr 4 01:52:49 2019 +0200

    Revert removal of Skype 7 appModule (#9432)

commit ce3529caab5234273327633213f24b8cba039966
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Wed Apr 3 16:47:36 2019 -0700

    Windows Store edition: do not include ARM64 libraries (#9437)
    
    * Appx/sconscript: add proper copyright header
    
    * AppX: exclude ARM64 library files. Re #9436.
    
    Just like x64 libs, exclude ARM64 libs for security and policy reasons (mostly to make this consistent).
    
    * AppX/manifest: update last testeed version to April 2019 Update (build 18362).

commit e5d2bb24810c84364662357e3cb37aa415b84767
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Apr 3 17:58:32 2019 +1000

    Marshal Excel cell ranges by using the Excel cell address.

commit 060173e646de8c286f2567aa366a46149856eb7d
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Apr 3 15:15:12 2019 +1000

    use null for wParam.

commit d25b2299211e302d101debdb0fdcf37062ea239b
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Apr 3 15:04:28 2019 +1000

    Excel: use LresultFromObject and objectFromLResult to marshal cell range objects between NvDA and nvdaHelper inproc code, rather than letting Windows do it, as the previous implementation was failing on Office 2007 because CoInitialize was never called on the RPC worker thread.

commit 01118965fa1f1dd3bfb962c55d7756a91d6e0da2
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Mon Apr 1 00:55:35 2019 +0200

    Fix regression causing browse mode to be unavailable in Word (#9423)

commit 7fc6c71fe3166364cd173c2b488edd7cef705630
Author: Arnold Loubriat <datatriny@gmail.com>
Date:   Fri Mar 29 02:38:02 2019 +0100

    Fixing incorrect text reporting when hovering mouse over Scintilla controls. (#9233)
    
    * Fixing incorrect text reporting when hovering mouse over Scintilla controls.
    
    * Addressed review comments.
    
    * Update what's new.

commit 29c9377a61ba60fd1b1056103f56e70a148b2d68
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Fri Mar 29 02:15:08 2019 +0100

    Allow users to disable browse mode by default (#8846)
    
    * Convert browse mode panel to guihelper and add option to disable activating browse mode on page load.
    
    * Add disableBrowseModeByDefault property support for appModules, move doc string
    
    * Removed redundant colon at the end of the 'Enable browse mode on page load' option
    
    * Update documentation
    
    * Remove legacy skype appModule and create a new one that disables browse mode by default
    
    * Update what's new.

commit f4fc4a705f8b578884c9463658d7dc9156c31945
Merge: 266d4d6cb 75fd93484
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 29 00:06:06 2019 +1000

    Update translations.
    
    From translation svn revision: 48290

commit 75fd934848a30bcfb9427227065d505b581d0cee
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 29 00:05:34 2019 +1000

    L10n updates for: it
    From translation svn revision: 48290
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    1       1       user_docs/it/changes.t2t
    1       1       user_docs/it/userGuide.t2t
     2 files changed, 2 insertions(+), 2 deletions(-)

commit 2814d94d646d88060a78b4abc61c8c20e68b35e4
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 29 00:05:32 2019 +1000

    L10n updates for: hu
    From translation svn revision: 48290
    
    Authors:
    Aron OcsvAri <oaron@nvda.hu>
    
    Stats:
    410     126     source/locale/hu/LC_MESSAGES/nvda.po
    63      0       user_docs/hu/changes.t2t
     2 files changed, 473 insertions(+), 126 deletions(-)

commit 1af7031502bf9556cc6c329e0024c1422393ebc0
Author: Bill Dengler <codeofdusk@gmail.com>
Date:   Thu Mar 28 05:31:59 2019 +0000

    Miranda NG: update autoread implementation for new versions of the client (#9367)
    
    * Fix #9053 for now.
    
    * Review actions.
    
    Co-Authored-By: codeofdusk <codeofdusk@gmail.com>
    
    * Update what's new.

commit 37dfca6575edf5bcf5c71cd9fb83520be77de03e
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Thu Mar 28 04:37:35 2019 +0100

    No longer call setlocale from nvda launcher, rely on languageHandler instead (#9323)
    
    * No longer call setlocale at NVDA start, rather rely on the languageHandler setting the locale
    
    * Update what's new.

commit b85d4b00c8cb2799b0f40142e93e2c35df5b2e3d
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Wed Mar 27 18:01:36 2019 -0700

             Windows 10 Mail: catch COM error thrown when Mail app dies and tree interceptor/alive method is attempted (#9392)
    
    * Windows 10 Mail: catch COM error thrown when Mail app dies and tree interceptor alive method is attempted. Re #9341.
    
    Consider the following: a Windows 10 user opens Mail app (hxoutlook), opens a message, then exits Mail app. At that point, tree interceptor/alive method is attempted, but because parent is gone, it raises COM error. Without catching this, NVDA goes silent, so catch this error if possible.
    
    * Update what's new.

commit d414e2808144ec4b5ebbecb0d21b5b9612afbda9
Author: Arnold Loubriat <datatriny@gmail.com>
Date:   Thu Mar 28 01:26:55 2019 +0100

    Fixing browse mode not reporting the whole content of a form field if it's not an editable text (#9401)
    
    * Fixing browse mode not reporting the whole content of a form field that is not an editable text.
    
    * Added a comment.
    
    * Update What's new.

commit fd3a232b41f3856533e63ea3a1706ff851d53fd4
Merge: 89f0702ad 266d4d6cb
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Mar 28 07:59:54 2019 +1000

    Merge branch 'beta'

commit 266d4d6cba68e6ca8763619a261f5ed083186927
Merge: 87f893131 11d97d28f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Mar 28 07:58:22 2019 +1000

    Update translations.
    
    From translation svn revision: 48276

commit 11d97d28f9ccb51e58012d1f9f8e08fdd760c0bd
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Mar 28 07:58:22 2019 +1000

    L10n updates for: zh_TW
    From translation svn revision: 48276
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    60      52      source/locale/zh_TW/LC_MESSAGES/nvda.po
    1       1       user_docs/zh_TW/userGuide.t2t
     2 files changed, 61 insertions(+), 53 deletions(-)

commit 3eb01bc155298e46c2ec90a8a08af31d0b4a55cc
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Mar 28 07:58:15 2019 +1000

    L10n updates for: ta
    From translation svn revision: 48276
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    166     6       source/locale/ta/LC_MESSAGES/nvda.po
     1 file changed, 166 insertions(+), 6 deletions(-)

commit 054bd4afde625acab93863c0f5d268bb59a3eefb
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Mar 28 07:58:09 2019 +1000

    L10n updates for: ru
    From translation svn revision: 48276
    
    Authors:
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    15      15      source/locale/ru/LC_MESSAGES/nvda.po
     1 file changed, 15 insertions(+), 15 deletions(-)

commit ea55404fe00ebfb29af3017371942f56b9074616
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Mar 28 07:58:07 2019 +1000

    L10n updates for: ro
    From translation svn revision: 48276
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <contact@florian-ionascu.ro>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    
    Stats:
    6       6       source/locale/ro/LC_MESSAGES/nvda.po
     1 file changed, 6 insertions(+), 6 deletions(-)

commit 513a3a27bf4ce474917f7fe0b04473a1b97e3204
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Mar 28 07:58:03 2019 +1000

    L10n updates for: pl
    From translation svn revision: 48276
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <hubert.meyer@wp.pl>
    
    Stats:
    55      55      source/locale/pl/LC_MESSAGES/nvda.po
    3       3       user_docs/pl/changes.t2t
    68      69      user_docs/pl/userGuide.t2t
     3 files changed, 126 insertions(+), 127 deletions(-)

commit 3aa2c33dcf8134d7746b3237c50204b575ba91b9
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Mar 28 07:57:52 2019 +1000

    L10n updates for: ja
    From translation svn revision: 48276
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    2       2       user_docs/ja/changes.t2t
     1 file changed, 2 insertions(+), 2 deletions(-)

commit c24a78d82f4ad886de0cd3be1d326b18877dab17
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Mar 28 07:57:42 2019 +1000

    L10n updates for: fr
    From translation svn revision: 48276
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    9       9       source/locale/fr/LC_MESSAGES/nvda.po
     1 file changed, 9 insertions(+), 9 deletions(-)

commit 64ed2df6839ed6fc0a5146ef1fd5670525a4648c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Mar 28 07:57:34 2019 +1000

    L10n updates for: de
    From translation svn revision: 48276
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    33      36      source/locale/de/LC_MESSAGES/nvda.po
    28      28      user_docs/de/changes.t2t
    21      21      user_docs/de/userGuide.t2t
     3 files changed, 82 insertions(+), 85 deletions(-)

commit 89f0702ad2c695fc033875540b0f06534e4a3a9c
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Wed Mar 27 14:59:47 2019 +0100

    Update changes file for PR #8643

commit 32a0f2298a3db572139492af1f6036b6190e53bb
Author: Łukasz Golonka <wulfryk1@gmail.com>
Date:   Wed Mar 27 14:55:44 2019 +0100

    Filter text direction marks from task bar clock text and from edit boxes in a properties window (PR #8643)
    
    Fixes #8361
    
    Filter out RTL and LTR marks from various places:
    - Clock name and value
    - Read-only edit boxes in the properties window
    
    Add an app module for dllhost, which is used to remove those characters from properties window on older Windows 10 builds.
    Change role of the clock icon to clock only when the word 'clock' is not present in the name.

commit d9dde223cb019f2da4bed9acf1b40852e0f6b9a1
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Wed Mar 27 12:03:16 2019 +0100

    Update changes file for PR #9372
    
    No longer crash when an addon directory is empty.

commit d04614ac64468ff35ba199b0f72f7fcdca4c4a3d
Author: Vishesh <35740094+Awalvie@users.noreply.github.com>
Date:   Wed Mar 27 16:31:16 2019 +0530

    Avoid crash if addon directory is empty. (PR #9372)
    
    Fixes #7686
    
    Added a condition that gives an error in the log file if the Directory is empty.
    Now writes to the log file in case of failing the condition check

commit 00a63f0a2ad8180ab97fe79b1a011020a4bd3c8a
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Sat Mar 23 21:40:05 2019 +0100

    Fix shortcut
    
    Fix find text shortcut in the userguide.
    Add link from browse mode to the search for text section.

commit e3b2e797cbcdada8522bb872d55b92a265a041f0
Author: Marlon Brandão de Sousa <marlon.bsousa@gmail.com>
Date:   Fri Mar 22 14:25:31 2019 -0300

    History in search dialog (PR #8921)
    
    Adds history to the Search list in find dialog
    - Limit size of search history to 20 items
    - Search history is not saved between restarts of NVDA
    Closes #8482

commit 87f893131da632ffe1340eacd23e7e9c9a791cf2
Merge: bdb2c6842 560dac430
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 22 00:06:04 2019 +1000

    Update translations.
    
    From translation svn revision: 48204

commit 560dac430760e56d1cbfc2d548af1d38ff354897
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 22 00:06:02 2019 +1000

    L10n updates for: zh_CN
    From translation svn revision: 48204
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    
    Stats:
    8       8       source/locale/zh_CN/LC_MESSAGES/nvda.po
    3       3       user_docs/zh_CN/changes.t2t
    16      16      user_docs/zh_CN/userGuide.t2t
     3 files changed, 27 insertions(+), 27 deletions(-)

commit ea0e898351403d1da62ae8d8130abf81bfa29737
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 22 00:06:00 2019 +1000

    L10n updates for: vi
    From translation svn revision: 48204
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    4       4       source/locale/vi/LC_MESSAGES/nvda.po
    1       1       user_docs/vi/changes.t2t
    4       4       user_docs/vi/userGuide.t2t
     3 files changed, 9 insertions(+), 9 deletions(-)

commit df9c3f57dad4ad7d18168ce62d88923919f89399
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 22 00:05:53 2019 +1000

    L10n updates for: sl
    From translation svn revision: 48204
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    16      0       user_docs/sl/userGuide.t2t
     1 file changed, 16 insertions(+)

commit 7165ee546beb3c11b018cb251d008e750fdebb59
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 22 00:05:51 2019 +1000

    L10n updates for: ru
    From translation svn revision: 48204
    
    Authors:
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    11      12      source/locale/ru/LC_MESSAGES/nvda.po
     1 file changed, 11 insertions(+), 12 deletions(-)

commit c06218ed73fbf86408a922c47e4f334b5a3faf18
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 22 00:05:25 2019 +1000

    L10n updates for: fr
    From translation svn revision: 48204
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    15      16      source/locale/fr/LC_MESSAGES/nvda.po
    6       6       source/locale/fr/symbols.dic
     2 files changed, 21 insertions(+), 22 deletions(-)

commit a19aaa377946c4c05e5e64ea59f2c81cc22d663f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 22 00:05:16 2019 +1000

    L10n updates for: de
    From translation svn revision: 48204
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    1       1       user_docs/de/changes.t2t
     1 file changed, 1 insertion(+), 1 deletion(-)

commit bae84ed6fe732cba05c260999faa5bbbc9c6c6d5
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Mar 20 17:03:46 2019 +1000

    Update readme.md to mention new NVDA development list.

commit 11a5fd57ff748df7e1f752c8a492222e98a967f1
Merge: 2ed7dbaec bdb2c6842
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Mar 18 17:10:55 2019 +1000

    Merge branch 'beta'

commit bdb2c6842458bff4ce88c5a81ed999d6fab955f6
Merge: 29e901b6f d6134696a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Mar 18 16:51:36 2019 +1000

    Update translations.
    
    From translation svn revision: 48153

commit d6134696a008bb31219e4d9a15225a6c63780006
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Mar 18 16:51:35 2019 +1000

    L10n updates for: zh_TW
    From translation svn revision: 48153
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    63      63      source/locale/zh_TW/characterDescriptions.dic
    83      0       user_docs/zh_TW/changes.t2t
     2 files changed, 146 insertions(+), 63 deletions(-)

commit edd1398ad1f796961b9b6311dadd4c173f185029
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Mar 18 16:51:34 2019 +1000

    L10n updates for: zh_HK
    From translation svn revision: 48153
    
    Authors:
    Eric Yip <ericycy@gmail.com>
    
    Stats:
    388     125     source/locale/zh_HK/LC_MESSAGES/nvda.po
     1 file changed, 388 insertions(+), 125 deletions(-)

commit 0ee9a08105b232ea05dcdc2a3ac62886e86f3a4c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Mar 18 16:51:33 2019 +1000

    L10n updates for: zh_CN
    From translation svn revision: 48153
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    
    Stats:
    29      28      user_docs/zh_CN/userGuide.t2t
     1 file changed, 29 insertions(+), 28 deletions(-)

commit c6d287b7dd126740387183252c2e9ba2d22abdda
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Mar 18 16:51:31 2019 +1000

    L10n updates for: vi
    From translation svn revision: 48153
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    69      69      user_docs/vi/userGuide.t2t
     1 file changed, 69 insertions(+), 69 deletions(-)

commit df56aac782529f9210abeeb07f782d433c778994
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Mar 18 16:51:30 2019 +1000

    L10n updates for: uk
    From translation svn revision: 48153
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    7       7       source/locale/uk/LC_MESSAGES/nvda.po
    88      12      user_docs/uk/userGuide.t2t
     2 files changed, 95 insertions(+), 19 deletions(-)

commit 31ec960c955abb14be33fcdf97c808e8cea3016c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Mar 18 16:51:27 2019 +1000

    L10n updates for: ta
    From translation svn revision: 48153
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    3       3       source/locale/ta/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 3 deletions(-)

commit 91c4d7d976ae20da155622f3abfb59918d9fbbd4
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Mar 18 16:51:24 2019 +1000

    L10n updates for: sl
    From translation svn revision: 48153
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    68      14      user_docs/sl/userGuide.t2t
     1 file changed, 68 insertions(+), 14 deletions(-)

commit dd13ed0f1847441dd835f9ad17b212ecd90c52bd
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Mar 18 16:51:23 2019 +1000

    L10n updates for: sk
    From translation svn revision: 48153
    
    Authors:
    Ondrej Rosik <ondrej.rosik@gmail.com>
    Peter Vagner <peter.v@datagate.sk>
    Jan Kulik <jan.kulik.szsle@outlook.sk>
    
    Stats:
    17      2       source/locale/sk/LC_MESSAGES/nvda.po
     1 file changed, 17 insertions(+), 2 deletions(-)

commit b4b0f4421685136da6c6c5d8748a2efeaa0c0f91
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Mar 18 16:51:21 2019 +1000

    L10n updates for: ru
    From translation svn revision: 48153
    
    Authors:
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    8       33      source/locale/ru/LC_MESSAGES/nvda.po
    8       0       source/locale/ru/characterDescriptions.dic
    14      10      source/locale/ru/symbols.dic
    4       4       user_docs/ru/changes.t2t
    213     213     user_docs/ru/userGuide.t2t
     5 files changed, 247 insertions(+), 260 deletions(-)

commit 5e7907f3bcade83e12e4eae0fbf1ff945079acbc
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Mar 18 16:51:19 2019 +1000

    L10n updates for: ro
    From translation svn revision: 48153
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <contact@florian-ionascu.ro>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    
    Stats:
    81      8       user_docs/ro/userGuide.t2t
     1 file changed, 81 insertions(+), 8 deletions(-)

commit 156036a86f90caee640c59f61c1d87c6d404aa41
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Mar 18 16:51:18 2019 +1000

    L10n updates for: pt_PT
    From translation svn revision: 48153
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    3       3       source/locale/pt_PT/LC_MESSAGES/nvda.po
    83      11      user_docs/pt_PT/userGuide.t2t
     2 files changed, 86 insertions(+), 14 deletions(-)

commit 313ca3ba24837d977de0c4261f96b8d366095a63
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Mar 18 16:51:16 2019 +1000

    L10n updates for: pt_BR
    From translation svn revision: 48153
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    23      20      user_docs/pt_BR/changes.t2t
    88      12      user_docs/pt_BR/userGuide.t2t
     2 files changed, 111 insertions(+), 32 deletions(-)

commit 757a3aa1f228053bef8cf95f64b4f83ee0a5bc3e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Mar 18 16:51:15 2019 +1000

    L10n updates for: pl
    From translation svn revision: 48153
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <hubert.meyer@wp.pl>
    
    Stats:
    87      11      user_docs/pl/userGuide.t2t
     1 file changed, 87 insertions(+), 11 deletions(-)

commit b233eba7deadf55dcee3110e69ae05afe35bb6d8
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Mar 18 16:51:06 2019 +1000

    L10n updates for: ko
    From translation svn revision: 48153
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    147     160     source/locale/ko/LC_MESSAGES/nvda.po
     1 file changed, 147 insertions(+), 160 deletions(-)

commit c487b07696383a239596f7a01ad768eacabf517b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Mar 18 16:51:04 2019 +1000

    L10n updates for: ja
    From translation svn revision: 48153
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    3       3       user_docs/ja/changes.t2t
     1 file changed, 3 insertions(+), 3 deletions(-)

commit 05f22b8c43f76cf2006e0bf9fb467fc82b89f40a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Mar 18 16:50:51 2019 +1000

    L10n updates for: fa
    From translation svn revision: 48153
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    70      62      source/locale/fa/LC_MESSAGES/nvda.po
    19      16      user_docs/fa/changes.t2t
     2 files changed, 89 insertions(+), 78 deletions(-)

commit 5265bbeaa83ec2404e7a60a895609cf14adb9752
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Mar 18 16:50:47 2019 +1000

    L10n updates for: el
    From translation svn revision: 48153
    
    Authors:
    Irene Nakas <irnakas@gmail.com>
    Nikos Demetriou <nikosdemetriou@googlemail.com>
    access@e-rhetor.com
    
    Stats:
    413     128     source/locale/el/LC_MESSAGES/nvda.po
     1 file changed, 413 insertions(+), 128 deletions(-)

commit a365377d2fef4c09f0e140b22187e82706f1802d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Mar 18 16:50:46 2019 +1000

    L10n updates for: de
    From translation svn revision: 48153
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    3       3       source/locale/de/LC_MESSAGES/nvda.po
    2       2       user_docs/de/changes.t2t
     2 files changed, 5 insertions(+), 5 deletions(-)

commit a64e81f9b7a2b12b9c0cd686cfb851bc474926c8
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Mar 18 16:50:43 2019 +1000

    L10n updates for: da
    From translation svn revision: 48153
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    4       4       source/locale/da/LC_MESSAGES/nvda.po
    2       2       user_docs/da/userGuide.t2t
     2 files changed, 6 insertions(+), 6 deletions(-)

commit 79246697cae9b8f84d1e3e09747d489907ef2c3b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Mar 18 16:50:42 2019 +1000

    L10n updates for: cs
    From translation svn revision: 48153
    
    Authors:
    Martina Letochova <letochova@seznam.cz>
    
    Stats:
    373     276     source/locale/cs/LC_MESSAGES/nvda.po
     1 file changed, 373 insertions(+), 276 deletions(-)

commit 900bf0eb87110337c930a56735d2420fafe46971
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Mar 18 16:50:34 2019 +1000

    L10n updates for: an
    From translation svn revision: 48153
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    
    Stats:
    110     34      user_docs/an/userGuide.t2t
     1 file changed, 110 insertions(+), 34 deletions(-)

commit 29e901b6f62223654c7d2f10b09870c4d85f7c04
Author: Łukasz Golonka <wulfryk1@gmail.com>
Date:   Mon Mar 18 07:47:43 2019 +0100

    Fix failing system tests on Appveyor (#9358)
    
    * Fix failing system tests on Appveyor
    
    * Fix capitalization
    
    * Review actions

commit fefedd430c3fff26d11ddf4b942f3b4999b2063a
Merge: f873f8346 02fc19b42
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 15 00:06:09 2019 +1000

    Update translations.
    
    From translation svn revision: 47931

commit 02fc19b42cdd3757e4c2529a161b9520c6f2a097
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 15 00:06:08 2019 +1000

    L10n updates for: zh_TW
    From translation svn revision: 47931
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    89      89      source/locale/zh_TW/characterDescriptions.dic
    3       2       source/locale/zh_TW/symbols.dic
    119     43      user_docs/zh_TW/userGuide.t2t
     3 files changed, 211 insertions(+), 134 deletions(-)

commit c68d4552a0b34d87ff14c575b420ac08442eb824
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 15 00:06:06 2019 +1000

    L10n updates for: zh_CN
    From translation svn revision: 47931
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    
    Stats:
    4       4       source/locale/zh_CN/LC_MESSAGES/nvda.po
     1 file changed, 4 insertions(+), 4 deletions(-)

commit 8d9d926a1cf5be7691c86d5effe490a91cac5d91
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 15 00:06:04 2019 +1000

    L10n updates for: vi
    From translation svn revision: 47931
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    26      26      user_docs/vi/userGuide.t2t
     1 file changed, 26 insertions(+), 26 deletions(-)

commit fe1156a2e359dde5b7691abccd8e0984bddead88
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 15 00:06:03 2019 +1000

    L10n updates for: uk
    From translation svn revision: 47931
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    403     126     source/locale/uk/LC_MESSAGES/nvda.po
     1 file changed, 403 insertions(+), 126 deletions(-)

commit bdac542f799dc3d863ea5a8d1f41eb03ecb6a24f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 15 00:06:00 2019 +1000

    L10n updates for: ta
    From translation svn revision: 47931
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    69      60      source/locale/ta/LC_MESSAGES/nvda.po
    100     23      user_docs/ta/userGuide.t2t
     2 files changed, 169 insertions(+), 83 deletions(-)

commit cdc6fdbc38901199d28008f9390000f23dc43d2b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 15 00:05:58 2019 +1000

    L10n updates for: sr
    From translation svn revision: 47931
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    62      52      source/locale/sr/LC_MESSAGES/nvda.po
    71      0       user_docs/sr/changes.t2t
    86      10      user_docs/sr/userGuide.t2t
     3 files changed, 219 insertions(+), 62 deletions(-)

commit b411dcdc7e819a3d1e49f9113d227e0aa11d08cf
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 15 00:05:55 2019 +1000

    L10n updates for: sk
    From translation svn revision: 47931
    
    Authors:
    Ondrej Rosik <ondrej.rosik@gmail.com>
    Peter Vagner <peter.v@datagate.sk>
    Jan Kulik <jan.kulik.szsle@outlook.sk>
    
    Stats:
    102     112     source/locale/sk/LC_MESSAGES/nvda.po
    71      0       user_docs/sk/changes.t2t
    88      12      user_docs/sk/userGuide.t2t
     3 files changed, 261 insertions(+), 124 deletions(-)

commit 60642f56017db2a99fcb8aad137f2037f3a945e8
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 15 00:05:54 2019 +1000

    L10n updates for: ru
    From translation svn revision: 47931
    
    Authors:
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    11      9       source/locale/ru/LC_MESSAGES/nvda.po
    59      13      user_docs/ru/changes.t2t
    150     74      user_docs/ru/userGuide.t2t
     3 files changed, 220 insertions(+), 96 deletions(-)

commit e2f22d0d0f70452e59adb1235a11b268b84de73e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 15 00:05:51 2019 +1000

    L10n updates for: ro
    From translation svn revision: 47931
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <contact@florian-ionascu.ro>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    
    Stats:
    64      54      source/locale/ro/LC_MESSAGES/nvda.po
    78      0       user_docs/ro/changes.t2t
     2 files changed, 142 insertions(+), 54 deletions(-)

commit df863457fb4cce2c3068dd5dae0173826dfe0a21
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 15 00:05:50 2019 +1000

    L10n updates for: pt_PT
    From translation svn revision: 47931
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    62      52      source/locale/pt_PT/LC_MESSAGES/nvda.po
    44      34      user_docs/pt_PT/changes.t2t
     2 files changed, 106 insertions(+), 86 deletions(-)

commit 7a8027f644680d1d95ed3a9399a74c0fe4074953
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 15 00:05:47 2019 +1000

    L10n updates for: pl
    From translation svn revision: 47931
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <hubert.meyer@wp.pl>
    
    Stats:
    21      21      source/locale/pl/LC_MESSAGES/nvda.po
    75      0       user_docs/pl/changes.t2t
     2 files changed, 96 insertions(+), 21 deletions(-)

commit 301d79809abb75dc742437323ebafe9e2f694558
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 15 00:05:38 2019 +1000

    L10n updates for: ko
    From translation svn revision: 47931
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    442     177     source/locale/ko/LC_MESSAGES/nvda.po
    4       0       user_docs/ko/changes.t2t
     2 files changed, 446 insertions(+), 177 deletions(-)

commit 079e09cd13fc0bd5d42c5a7f2ef6b62f192df618
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 15 00:05:36 2019 +1000

    L10n updates for: ja
    From translation svn revision: 47931
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    90      11      user_docs/ja/changes.t2t
     1 file changed, 90 insertions(+), 11 deletions(-)

commit 6c6fa452eb161cd220fc7f67b7bcecae3067fa45
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 15 00:05:34 2019 +1000

    L10n updates for: it
    From translation svn revision: 47931
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    88      13      user_docs/it/userGuide.t2t
     1 file changed, 88 insertions(+), 13 deletions(-)

commit 720c2d2a603ce443b24afe83a608aba1c24cf691
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 15 00:05:31 2019 +1000

    L10n updates for: hr
    From translation svn revision: 47931
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Tea Turkovic <tturkovi@gmail.com>
    
    Stats:
    40      40      user_docs/hr/changes.t2t
    87      11      user_docs/hr/userGuide.t2t
     2 files changed, 127 insertions(+), 51 deletions(-)

commit fca3ca13d68242ed91db84cbfc83bc68c67e3214
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 15 00:05:29 2019 +1000

    L10n updates for: he
    From translation svn revision: 47931
    
    Authors:
    Shmuel Naaman <shmuel_naaman@yahoo.com>
    Afik Sofir <afik.sofer@gmail.com>
    
    Stats:
    386     124     source/locale/he/LC_MESSAGES/nvda.po
     1 file changed, 386 insertions(+), 124 deletions(-)

commit c7f8bd6dc8ab9fda1850323228996b6da66f8823
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 15 00:05:26 2019 +1000

    L10n updates for: fr
    From translation svn revision: 47931
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    3       3       source/locale/fr/LC_MESSAGES/nvda.po
    3       2       source/locale/fr/symbols.dic
    1       1       user_docs/fr/changes.t2t
    1       1       user_docs/fr/userGuide.t2t
     4 files changed, 8 insertions(+), 7 deletions(-)

commit 1d1e4782918632d4ab0458f1c110dc9ae8e58589
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 15 00:05:24 2019 +1000

    L10n updates for: fi
    From translation svn revision: 47931
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    9       8       source/locale/fi/LC_MESSAGES/nvda.po
    1       1       user_docs/fi/changes.t2t
    278     278     user_docs/fi/userGuide.t2t
     3 files changed, 288 insertions(+), 287 deletions(-)

commit a4084494923e5f4997885a3f54c7045eb8d58803
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 15 00:05:17 2019 +1000

    L10n updates for: de
    From translation svn revision: 47931
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    13      13      source/locale/de/LC_MESSAGES/nvda.po
     1 file changed, 13 insertions(+), 13 deletions(-)

commit 5b050cdedc423d56be3aea30caedd7fdebe4c563
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 15 00:05:14 2019 +1000

    L10n updates for: da
    From translation svn revision: 47931
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    61      51      source/locale/da/LC_MESSAGES/nvda.po
    14      11      user_docs/da/changes.t2t
    11      10      user_docs/da/userGuide.t2t
     3 files changed, 86 insertions(+), 72 deletions(-)

commit 03d04d7dfa4c0115e8698ee712ff77417bbe438a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 15 00:05:11 2019 +1000

    L10n updates for: bg
    From translation svn revision: 47931
    
    Authors:
    Zahari Yurukov <zahari.yurukov@gmail.com>
    Kostadin Kolev <k_kolev1985@mail.bg>
    
    Stats:
    410     127     source/locale/bg/LC_MESSAGES/nvda.po
    79      0       user_docs/bg/changes.t2t
    89      13      user_docs/bg/userGuide.t2t
     3 files changed, 578 insertions(+), 140 deletions(-)

commit 6eb1d3ed8c01503aa66b0fac3faecfeb068909a8
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 15 00:05:06 2019 +1000

    L10n updates for: an
    From translation svn revision: 47931
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    
    Stats:
    337     955     source/locale/an/LC_MESSAGES/nvda.po
    20      17      user_docs/an/changes.t2t
    21      13      user_docs/an/userGuide.t2t
     3 files changed, 378 insertions(+), 985 deletions(-)

commit f873f83462b2175e5ead5d15e21c852bdc884d3f
Merge: 06f38c051 9f709c0d5
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 8 00:06:03 2019 +1000

    Update translations.
    
    From translation svn revision: 47683

commit 9f709c0d59e44d0f412a041e650f51dc271d621b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 8 00:05:59 2019 +1000

    L10n updates for: vi
    From translation svn revision: 47683
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    61      51      source/locale/vi/LC_MESSAGES/nvda.po
     1 file changed, 61 insertions(+), 51 deletions(-)

commit 273617dd815322804c7ea1f76e8b31380443d2eb
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 8 00:05:53 2019 +1000

    L10n updates for: sl
    From translation svn revision: 47683
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    97      65      source/locale/sl/LC_MESSAGES/nvda.po
    9       3       user_docs/sl/userGuide.t2t
     2 files changed, 106 insertions(+), 68 deletions(-)

commit 50755a2281a08ba739addddde102da435434f551
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 8 00:05:50 2019 +1000

    L10n updates for: ru
    From translation svn revision: 47683
    
    Authors:
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    20      11      source/locale/ru/LC_MESSAGES/nvda.po
    33      0       user_docs/ru/changes.t2t
     2 files changed, 53 insertions(+), 11 deletions(-)

commit 3538b16d446faf8739f6c52fe4e50e6b9a1038e3
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 8 00:05:44 2019 +1000

    L10n updates for: pl
    From translation svn revision: 47683
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <hubert.meyer@wp.pl>
    
    Stats:
    3       3       source/locale/pl/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 3 deletions(-)

commit 0ffe9a38f467151f9ffa3e46c4628f68afee6ed0
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 8 00:05:42 2019 +1000

    L10n updates for: nl
    From translation svn revision: 47683
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    38      27      user_docs/nl/changes.t2t
    87      11      user_docs/nl/userGuide.t2t
     2 files changed, 125 insertions(+), 38 deletions(-)

commit 2f500633755d1429e556357dfd6b5ea3512beb36
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 8 00:05:32 2019 +1000

    L10n updates for: it
    From translation svn revision: 47683
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    71      64      source/locale/it/LC_MESSAGES/nvda.po
    79      0       user_docs/it/changes.t2t
     2 files changed, 150 insertions(+), 64 deletions(-)

commit 04db7fcd2ddc8119ee2ee341fab76d46d4259c0a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 8 00:05:28 2019 +1000

    L10n updates for: hr
    From translation svn revision: 47683
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Tea Turkovic <tturkovi@gmail.com>
    
    Stats:
    55      55      source/locale/hr/LC_MESSAGES/nvda.po
    32      29      user_docs/hr/changes.t2t
     2 files changed, 87 insertions(+), 84 deletions(-)

commit ce9b76baf92603cc65a0e1bbd2381acd9121705b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 8 00:05:24 2019 +1000

    L10n updates for: fr
    From translation svn revision: 47683
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    8       8       source/locale/fr/LC_MESSAGES/nvda.po
     1 file changed, 8 insertions(+), 8 deletions(-)

commit 4e572b4159281085a8d404f6bad76777f7a82202
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 8 00:05:22 2019 +1000

    L10n updates for: fi
    From translation svn revision: 47683
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    13      12      source/locale/fi/LC_MESSAGES/nvda.po
     1 file changed, 13 insertions(+), 12 deletions(-)

commit 06f38c051c99502a413da413f62a3a90bc362739
Merge: 4e582d1d8 c4bd014d4
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Mar 6 08:27:04 2019 +1000

    Update translations.
    
    From translation svn revision: 47655

commit c4bd014d427cd0d3dfaafc692eec470afe0b9921
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Mar 6 08:27:01 2019 +1000

    L10n updates for: zh_CN
    From translation svn revision: 47655
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    
    Stats:
    58      50      source/locale/zh_CN/LC_MESSAGES/nvda.po
    2       2       source/locale/zh_CN/symbols.dic
    15      5       user_docs/zh_CN/changes.t2t
     3 files changed, 75 insertions(+), 57 deletions(-)

commit 5f96a6461ffe6ec303dd8697cacf3dca1cce78c9
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Mar 6 08:26:59 2019 +1000

    L10n updates for: vi
    From translation svn revision: 47655
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    14      13      source/locale/vi/LC_MESSAGES/nvda.po
    21      18      user_docs/vi/changes.t2t
    15      14      user_docs/vi/userGuide.t2t
     3 files changed, 50 insertions(+), 45 deletions(-)

commit 958150ee301255f2fcd203883b9bcbcc671addcc
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Mar 6 08:26:56 2019 +1000

    L10n updates for: tr
    From translation svn revision: 47655
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    63      52      source/locale/tr/LC_MESSAGES/nvda.po
    23      20      user_docs/tr/changes.t2t
    0       7       user_docs/tr/userGuide.t2t
     3 files changed, 86 insertions(+), 79 deletions(-)

commit 1508e83b24ae8fa621936338dcb4c68f0377e041
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Mar 6 08:26:54 2019 +1000

    L10n updates for: ta
    From translation svn revision: 47655
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    29      17      source/locale/ta/LC_MESSAGES/nvda.po
     1 file changed, 29 insertions(+), 17 deletions(-)

commit 2e9309c2bd6ab2eea7b6657f19902d4811b7979f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Mar 6 08:26:48 2019 +1000

    L10n updates for: ru
    From translation svn revision: 47655
    
    Authors:
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    390     124     source/locale/ru/LC_MESSAGES/nvda.po
     1 file changed, 390 insertions(+), 124 deletions(-)

commit 0c76fb80538d37099de0ffb34dc7062385660ab3
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Mar 6 08:26:43 2019 +1000

    L10n updates for: pt_BR
    From translation svn revision: 47655
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    63      53      source/locale/pt_BR/LC_MESSAGES/nvda.po
     1 file changed, 63 insertions(+), 53 deletions(-)

commit 44f6d2c68b6805b680548ffe24757da63a14b5c5
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Mar 6 08:26:41 2019 +1000

    L10n updates for: pl
    From translation svn revision: 47655
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <hubert.meyer@wp.pl>
    
    Stats:
    63      54      source/locale/pl/LC_MESSAGES/nvda.po
     1 file changed, 63 insertions(+), 54 deletions(-)

commit 2436aa444536505858d6da0fddc88cff8bf2a252
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Mar 6 08:26:39 2019 +1000

    L10n updates for: nl
    From translation svn revision: 47655
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    64      51      source/locale/nl/LC_MESSAGES/nvda.po
    47      1       user_docs/nl/changes.t2t
     2 files changed, 111 insertions(+), 52 deletions(-)

commit 159d1714085a04f6bb1134af1346b9f85e484c8d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Mar 6 08:26:28 2019 +1000

    L10n updates for: ja
    From translation svn revision: 47655
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    52      66      source/locale/ja/LC_MESSAGES/nvda.po
    118     42      user_docs/ja/userGuide.t2t
     2 files changed, 170 insertions(+), 108 deletions(-)

commit 98feddc03352b5c80b3b4b6a0a518be369a70cba
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Mar 6 08:26:23 2019 +1000

    L10n updates for: hr
    From translation svn revision: 47655
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Tea Turkovic <tturkovi@gmail.com>
    
    Stats:
    64      53      source/locale/hr/LC_MESSAGES/nvda.po
     1 file changed, 64 insertions(+), 53 deletions(-)

commit c006e2c2ef9de53dd5431386062636a7a956da66
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Mar 6 08:26:20 2019 +1000

    L10n updates for: gl
    From translation svn revision: 47655
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    
    Stats:
    62      53      source/locale/gl/LC_MESSAGES/nvda.po
    13      10      user_docs/gl/changes.t2t
    14      13      user_docs/gl/userGuide.t2t
     3 files changed, 89 insertions(+), 76 deletions(-)

commit d7fdca8b551196fda1a9011d66b073a4e1b8cced
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Mar 6 08:26:18 2019 +1000

    L10n updates for: fr
    From translation svn revision: 47655
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    48      62      source/locale/fr/LC_MESSAGES/nvda.po
    26      23      user_docs/fr/changes.t2t
    14      13      user_docs/fr/userGuide.t2t
     3 files changed, 88 insertions(+), 98 deletions(-)

commit 9a12323162d9db21a942faa1e7e0dfdd11f8b3ec
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Mar 6 08:26:16 2019 +1000

    L10n updates for: fi
    From translation svn revision: 47655
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    64      55      source/locale/fi/LC_MESSAGES/nvda.po
    19      16      user_docs/fi/changes.t2t
    21      20      user_docs/fi/userGuide.t2t
     3 files changed, 104 insertions(+), 91 deletions(-)

commit 2cea44de5dafabf0d50e8a419fb116e5c831c668
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Mar 6 08:26:12 2019 +1000

    L10n updates for: es
    From translation svn revision: 47655
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    64      53      source/locale/es/LC_MESSAGES/nvda.po
    13      10      user_docs/es/changes.t2t
    14      13      user_docs/es/userGuide.t2t
     3 files changed, 91 insertions(+), 76 deletions(-)

commit 030098adaab32de319b5d7be4756c9cfd545a9f2
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Mar 6 08:26:08 2019 +1000

    L10n updates for: de
    From translation svn revision: 47655
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    72      62      source/locale/de/LC_MESSAGES/nvda.po
    38      36      user_docs/de/changes.t2t
    27      26      user_docs/de/userGuide.t2t
     3 files changed, 137 insertions(+), 124 deletions(-)

commit a4f5de60c512c91d6cc6f58a375406a277582e1a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Mar 6 08:26:01 2019 +1000

    L10n updates for: bg
    From translation svn revision: 47655
    
    Authors:
    Zahari Yurukov <zahari.yurukov@gmail.com>
    Kostadin Kolev <k_kolev1985@mail.bg>
    
    Stats:
    4       0       user_docs/bg/changes.t2t
     1 file changed, 4 insertions(+)

commit 3eb1de292b42679967d311767314a6789aa415cb
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Mar 6 08:25:59 2019 +1000

    L10n updates for: ar
    From translation svn revision: 47655
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>, Omar Alojaimi <amrahmad1995@gmail.com>
    
    Stats:
    84      75      source/locale/ar/LC_MESSAGES/nvda.po
     1 file changed, 84 insertions(+), 75 deletions(-)

commit 4e582d1d80455348c404652eebe6013186e19b69
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Tue Mar 5 12:10:18 2019 +0100

    Fix UnicodeEncodeError for advanced panel warning translation (PR #9344)
    
    Use unicode literal on SettingsPanel.panelDescription

commit 2ed7dbaec8a464857154fa0e892bfd9c04fa0dd5
Merge: 8573a05be 55db81dbb
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Mar 4 10:45:01 2019 +1000

    Merge branch 'beta'

commit 55db81dbb4b416ca3b0d7dd754b8ecadfacabfe3
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Mar 4 09:25:51 2019 +1000

    Update what's new.

commit c66f29ae75fe8b6b983d9040536b629177fa23cd
Merge: 505cfdebc 1489e0685
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Mar 4 08:55:18 2019 +1000

    Update translations.
    
    From translation svn revision: 47513

commit 1489e0685b383f0ef22d4993e443fa177eb97c13
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Mar 4 08:55:14 2019 +1000

    L10n updates for: vi
    From translation svn revision: 47513
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    1       1       user_docs/vi/userGuide.t2t
     1 file changed, 1 insertion(+), 1 deletion(-)

commit c0b4e825c72c76e479b055acfa0707dfb519fa7c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Mar 4 08:55:05 2019 +1000

    L10n updates for: ru
    From translation svn revision: 47513
    
    Authors:
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    16      2       source/locale/ru/symbols.dic
     1 file changed, 16 insertions(+), 2 deletions(-)

commit 1ea75771b6d62dbc0688e802d76ff9707a7b42b7
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Mar 4 08:54:39 2019 +1000

    L10n updates for: fr
    From translation svn revision: 47513
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    1       1       source/locale/fr/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit c937e5645c1965223ff83312a65578c4a81c7eeb
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Mar 4 08:54:28 2019 +1000

    L10n updates for: da
    From translation svn revision: 47513
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    3       3       source/locale/da/LC_MESSAGES/nvda.po
    1       1       user_docs/da/userGuide.t2t
     2 files changed, 4 insertions(+), 4 deletions(-)

commit 2c86565b4295cb693eccddd62ca9f7f70b73323c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Mar 4 08:54:22 2019 +1000

    L10n updates for: ar
    From translation svn revision: 47513
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>, Omar Alojaimi <amrahmad1995@gmail.com>
    
    Stats:
    784     449     source/locale/ar/LC_MESSAGES/nvda.po
     1 file changed, 784 insertions(+), 449 deletions(-)

commit 2e45199c8b04a653e7d0fda020da87ffe85366a7
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Mar 4 08:54:19 2019 +1000

    L10n updates for: an
    From translation svn revision: 47513
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    
    Stats:
    48      17      source/locale/an/LC_MESSAGES/nvda.po
    76      0       user_docs/an/changes.t2t
     2 files changed, 124 insertions(+), 17 deletions(-)

commit 505cfdebc0accc415231d3da6073ef41103f92e9
Merge: ad4270afa 8573a05be
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Mar 1 16:35:26 2019 +1000

    Merge branch 'master' into beta

commit 8573a05bedce7f0700e40f9ff08c073cfde4eb06
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Fri Mar 1 06:49:31 2019 +0100

    Do not report UIA menu item description if equal to name (#9259)

commit 75c8867ae9b8c71a5509b6ea9dbddea4d00712a3
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Mar 1 14:55:52 2019 +1000

    Update what's new (correcting the --enable-start-on-logon argument).

commit ad4270afa5cfcc339118771e38c830b77e51780a
Merge: 42f39708b 80d051642
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 1 00:06:10 2019 +1000

    Update translations.
    
    From translation svn revision: 47400

commit 80d0516420476f02f8aaef87968558d02a68ed9b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 1 00:06:09 2019 +1000

    L10n updates for: zh_TW
    From translation svn revision: 47400
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    380     116     source/locale/zh_TW/LC_MESSAGES/nvda.po
    11      11      source/locale/zh_TW/characterDescriptions.dic
     2 files changed, 391 insertions(+), 127 deletions(-)

commit 3e06cb6ad2914e95c02296294656e2fb6bcba1a2
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 1 00:06:07 2019 +1000

    L10n updates for: zh_CN
    From translation svn revision: 47400
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    
    Stats:
    11      11      source/locale/zh_CN/LC_MESSAGES/nvda.po
    127     0       user_docs/zh_CN/changes.t2t
    89      14      user_docs/zh_CN/userGuide.t2t
     3 files changed, 227 insertions(+), 25 deletions(-)

commit 2a2ecfd44b895b024748e521fa50c46962b35b0b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 1 00:06:05 2019 +1000

    L10n updates for: vi
    From translation svn revision: 47400
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    573     298     source/locale/vi/LC_MESSAGES/nvda.po
    149     2       user_docs/vi/changes.t2t
    121     46      user_docs/vi/userGuide.t2t
     3 files changed, 843 insertions(+), 346 deletions(-)

commit 2165aa1da2407d9ea36a9e03f0c6adb300578e4b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 1 00:06:01 2019 +1000

    L10n updates for: ta
    From translation svn revision: 47400
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    1023    696     source/locale/ta/LC_MESSAGES/nvda.po
     1 file changed, 1023 insertions(+), 696 deletions(-)

commit c2a0b1132165c0a4474e7ef6079406533b8fa12b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 1 00:05:59 2019 +1000

    L10n updates for: sr
    From translation svn revision: 47400
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    395     118     source/locale/sr/LC_MESSAGES/nvda.po
     1 file changed, 395 insertions(+), 118 deletions(-)

commit 3929162d5b8905eeeac451c9efbfc852c67c76c8
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 1 00:05:57 2019 +1000

    L10n updates for: sl
    From translation svn revision: 47400
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    368     272     source/locale/sl/LC_MESSAGES/nvda.po
     1 file changed, 368 insertions(+), 272 deletions(-)

commit 9df810f343697369bb881b97677a15b66ac3dfe2
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 1 00:05:55 2019 +1000

    L10n updates for: ru
    From translation svn revision: 47400
    
    Authors:
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    29      17      source/locale/ru/symbols.dic
     1 file changed, 29 insertions(+), 17 deletions(-)

commit 74977a19e3c3edb01a55a9592d1009d533ebe66d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 1 00:05:52 2019 +1000

    L10n updates for: ro
    From translation svn revision: 47400
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <contact@florian-ionascu.ro>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    
    Stats:
    403     118     source/locale/ro/LC_MESSAGES/nvda.po
     1 file changed, 403 insertions(+), 118 deletions(-)

commit a246d60228f9bd374c5b2e7343f52d5ea14ad29c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 1 00:05:51 2019 +1000

    L10n updates for: pt_PT
    From translation svn revision: 47400
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    405     124     source/locale/pt_PT/LC_MESSAGES/nvda.po
    81      0       user_docs/pt_PT/changes.t2t
     2 files changed, 486 insertions(+), 124 deletions(-)

commit 099aa80ea0ad3e0cb3b7251e432127694ec26419
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 1 00:05:49 2019 +1000

    L10n updates for: pt_BR
    From translation svn revision: 47400
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    396     117     source/locale/pt_BR/LC_MESSAGES/nvda.po
     1 file changed, 396 insertions(+), 117 deletions(-)

commit 0e3101913a7f3e07f419f30472684ab6da7c8096
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 1 00:05:48 2019 +1000

    L10n updates for: pl
    From translation svn revision: 47400
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <killer@tyflonet.com>
    
    Stats:
    513     236     source/locale/pl/LC_MESSAGES/nvda.po
     1 file changed, 513 insertions(+), 236 deletions(-)

commit ee19ed58d9f21479a630fefaecddcead59d1c9fe
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 1 00:05:46 2019 +1000

    L10n updates for: nl
    From translation svn revision: 47400
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    404     129     source/locale/nl/LC_MESSAGES/nvda.po
    4       3       source/locale/nl/symbols.dic
     2 files changed, 408 insertions(+), 132 deletions(-)

commit 48f1595fdcdf2b42c95fd5a5a0374acf3cd74b49
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 1 00:05:36 2019 +1000

    L10n updates for: ja
    From translation svn revision: 47400
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    2       14      source/locale/ja/LC_MESSAGES/nvda.po
     1 file changed, 2 insertions(+), 14 deletions(-)

commit 871a2c7542f8d5e592d6a09fc0478574172ed649
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 1 00:05:31 2019 +1000

    L10n updates for: hr
    From translation svn revision: 47400
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Tea Turkovic <tturkovi@gmail.com>
    
    Stats:
    396     120     source/locale/hr/LC_MESSAGES/nvda.po
    74      2       user_docs/hr/changes.t2t
     2 files changed, 470 insertions(+), 122 deletions(-)

commit a6c38352b70e010c94fea6ef12501c102990d251
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 1 00:05:28 2019 +1000

    L10n updates for: gl
    From translation svn revision: 47400
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    
    Stats:
    400     119     source/locale/gl/LC_MESSAGES/nvda.po
    76      0       user_docs/gl/changes.t2t
    86      11      user_docs/gl/userGuide.t2t
     3 files changed, 562 insertions(+), 130 deletions(-)

commit df235a3aa0dc40200daedfd920923e6f8b48a570
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 1 00:05:26 2019 +1000

    L10n updates for: fr
    From translation svn revision: 47400
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    83      86      source/locale/fr/LC_MESSAGES/nvda.po
    76      0       user_docs/fr/changes.t2t
    126     51      user_docs/fr/userGuide.t2t
     3 files changed, 285 insertions(+), 137 deletions(-)

commit 6b8d333cd397c5268e5519fc76d2843475b3f69c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 1 00:05:24 2019 +1000

    L10n updates for: fi
    From translation svn revision: 47400
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    421     143     source/locale/fi/LC_MESSAGES/nvda.po
    9       7       source/locale/fi/symbols.dic
    226     158     user_docs/fi/changes.t2t
    139     64      user_docs/fi/userGuide.t2t
     4 files changed, 795 insertions(+), 372 deletions(-)

commit 980065ae4a180711d99f6cb2880e0bdcaaaaacde
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 1 00:05:23 2019 +1000

    L10n updates for: fa
    From translation svn revision: 47400
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    924     558     source/locale/fa/LC_MESSAGES/nvda.po
    64      0       user_docs/fa/changes.t2t
     2 files changed, 988 insertions(+), 558 deletions(-)

commit 16c0ed9e1733f2c1bb4c7a378c072f6cd5907b69
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 1 00:05:21 2019 +1000

    L10n updates for: es
    From translation svn revision: 47400
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    401     119     source/locale/es/LC_MESSAGES/nvda.po
    76      0       user_docs/es/changes.t2t
    86      11      user_docs/es/userGuide.t2t
     3 files changed, 563 insertions(+), 130 deletions(-)

commit dfdb128bb304ea0c87e721af6f317cd2cbfa0210
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 1 00:05:17 2019 +1000

    L10n updates for: de
    From translation svn revision: 47400
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    39      35      source/locale/de/LC_MESSAGES/nvda.po
    3       3       user_docs/de/changes.t2t
     2 files changed, 42 insertions(+), 38 deletions(-)

commit 01b5c9c4a61cdfa74ffd1e7f981f5168b696f90e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 1 00:05:14 2019 +1000

    L10n updates for: da
    From translation svn revision: 47400
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    394     116     source/locale/da/LC_MESSAGES/nvda.po
    54      32      user_docs/da/changes.t2t
    131     56      user_docs/da/userGuide.t2t
     3 files changed, 579 insertions(+), 204 deletions(-)

commit 80a3c716e622fdd4ac8830fff74a476cbdf16689
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 1 00:05:06 2019 +1000

    L10n updates for: an
    From translation svn revision: 47400
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    
    Stats:
    370     118     source/locale/an/LC_MESSAGES/nvda.po
     1 file changed, 370 insertions(+), 118 deletions(-)

commit 5fbd648a077713d3e4aaf973c4a170a9ad75a43e
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Thu Feb 28 19:21:16 2019 +1000

    Allow add-on API version strings to exclude Minor, defaulting to 0.  (#9331)
    
    * The Minor part of an Addon's minimumNVDAVersion or lastTestedNVDAVersion is now optional and defaults to 0. E.g. It is now valid to write 2019.1 rather than having to write 2019.1.0.
    
    * Update what's new.
    
    * Fix unit tests to handle the fact that add-on API versions can omit their Minor part.
    
    * Apply suggestions from code review
    
    Co-Authored-By: michaelDCurran <michaelDCurran@users.noreply.github.com>
    
    * Fix typo
    
    Co-Authored-By: michaelDCurran <michaelDCurran@users.noreply.github.com>

commit 87e09a13a91b1cd61ee6482d572d1498d85382a5
Author: James Teh <jamie@jantrid.net>
Date:   Thu Feb 28 15:16:59 2019 +1000

    VirtualBuffer._isNVDAObjectInApplication_noWalk: Gracefully handle rare exception from getIdentifierFromNVDAObject. (#9332)
    
    Rarely, _isNVDAObjectInApplication can walk to the desktop object.
    This probably happens if the object dies while we're walking ancestors, in which case accParent will fail and NVDA will fall back to the window parent, which is the desktop.
    When that happens, getIdentifierFromNVDAObject will fail.
    There's not much we can do about this, so just catch the exception and return early.

commit ad8e3916419082a9377536ceec56316f1fa7d18e
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Wed Feb 27 15:05:42 2019 +0100

    Tidy advanced gui panel (PR #9239)
    
    * Make the warning bigger, and wrap the long text explaining the dialog.
    * Add checkbox to enable the advanced controls
      - This helps to ensure that users are aware of what they are changing.
      - api.processPendingEvents is used before calling enable on the panel containing the controls, otherwise NVDA had a mismatch
        with the reported and actual state of the checkbox.
    * Add a restore defaults button to the advanced panel.
      - This allows users who have previously changed settings, restore them to recommended settings.
    * Change settings panels to use role "property page"
      - Now when they get focus they are announced as "general property page"
    * Speak extra info on advanced and document formatting categories.
      - This is essentially a property page description. It is the static text at the start of the panel.
    * Created a simplified, reusable acc prop server
      - Takes a mapping of the prop and value to override.
    * Fix multi-instance error for settings dialog.
      - No longer stop a user from accessing settings when there is a destroyed but not deleted window. Instead
     raise an error. Also check for this error on when terminating the GUI.
    * Override the description property for the NVDA settings dialog
      - Overriding with an empty description so that panel descriptions are not
    reported twice (when getDialogText runs). The panel descriptions are still
    reported when the panel gets focus.

commit 0841dae2753b12694f42b4caf6c5539182b72c80
Author: Bill Dengler <codeofdusk@gmail.com>
Date:   Tue Feb 26 17:20:53 2019 +0000

    Developer guide: Fix error in example (PR #9326)
    
    Change `scriptHandler.script` to `script` to resolve a namespace error.

commit b980d53e8a3c8cc40b55cf9f7f40327c82155564
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Tue Feb 26 10:29:49 2019 +1000

    Revert "Fast browse mode - "browse mode moves system focus off" mode (#9114)" (#9327)
    
    This reverts commit 73db4aa5543e2a54012b5eff60d9499280013f53.

commit 40385fb3db82a255373c571757bf32e45987ea28
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Mon Feb 25 01:11:15 2019 +0100

    Log a warning instead of error when disabling Word screen updating fails (#9282)

commit 1415fb7084f81902eff5fb2a91452a7821d419f3
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Sun Feb 24 15:01:20 2019 -0800

    NVDA 2019.1 what's new: spelling fixes, issue numbering, clarifications (#9314)
    
    * What's new: issue number corrections, speelling corrections, clarifications.
    
    Specific changes:
    * Spelling error fixes: Qualcom -> Qualcomm, mainwindow -> main window, virtualbox -> VitualBox.
    * Clarified that VirtualBox is an Oracle product.
    * Improved restart confirmation: interface -> NVDA's interface.
    * Corrected issue numbers for emoji panel fixes.
    * Combined two braille table addition entries into one.
    * Reformatted OneCore/no more pauses entry.
    
    * What's new: extendedAria -> Enhanced Aria

commit 42f39708b69f87616b4be66330f30ed7b7548657
Merge: 2510ade91 9c82be81c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 22 00:06:05 2019 +1000

    Update translations.
    
    From translation svn revision: 47141

commit 9c82be81cbb9bfcfc2872960f3c577c0a1f777c4
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 22 00:06:03 2019 +1000

    L10n updates for: zh_CN
    From translation svn revision: 47141
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    
    Stats:
    380     117     source/locale/zh_CN/LC_MESSAGES/nvda.po
     1 file changed, 380 insertions(+), 117 deletions(-)

commit 45bb371f50b87ce22e9d01559bbeef8d9ca755f6
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 22 00:06:01 2019 +1000

    L10n updates for: vi
    From translation svn revision: 47141
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    15      0       user_docs/vi/changes.t2t
     1 file changed, 15 insertions(+)

commit 1980cf6eeefa27eb10144e3b2362a73fd50d64f5
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 22 00:05:58 2019 +1000

    L10n updates for: tr
    From translation svn revision: 47141
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    399     122     source/locale/tr/LC_MESSAGES/nvda.po
    76      0       user_docs/tr/changes.t2t
    86      10      user_docs/tr/userGuide.t2t
     3 files changed, 561 insertions(+), 132 deletions(-)

commit 76adb1f863cb636268aee0ce9b1d9e9aed1db273
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 22 00:05:53 2019 +1000

    L10n updates for: sk
    From translation svn revision: 47141
    
    Authors:
    Ondrej Rosik <ondrej.rosik@gmail.com>
    Peter Vagner <peter.v@datagate.sk>
    Jan Kulik <jan.kulik.szsle@outlook.sk>
    
    Stats:
    384     116     source/locale/sk/LC_MESSAGES/nvda.po
     1 file changed, 384 insertions(+), 116 deletions(-)

commit 3ab88db60c7a5a98e928f2257315d1db8ea9170a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 22 00:05:47 2019 +1000

    L10n updates for: pt_BR
    From translation svn revision: 47141
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    76      0       user_docs/pt_BR/changes.t2t
     1 file changed, 76 insertions(+)

commit 28076891adf51ea6ff00b49f0afd083e77e4796b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 22 00:05:34 2019 +1000

    L10n updates for: ja
    From translation svn revision: 47141
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    398     117     source/locale/ja/LC_MESSAGES/nvda.po
     1 file changed, 398 insertions(+), 117 deletions(-)

commit a8161f62f57f3e4fa859ee85f2eafb5ee7365a42
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 22 00:05:32 2019 +1000

    L10n updates for: it
    From translation svn revision: 47141
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    408     119     source/locale/it/LC_MESSAGES/nvda.po
     1 file changed, 408 insertions(+), 119 deletions(-)

commit ebc1fb92600ee0263b99120b6d4bd1f1ecca5bb8
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 22 00:05:24 2019 +1000

    L10n updates for: fr
    From translation svn revision: 47141
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    389     121     source/locale/fr/LC_MESSAGES/nvda.po
     1 file changed, 389 insertions(+), 121 deletions(-)

commit e1ac58cb653b0647fa1432ca637e048d5becf5a7
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 22 00:05:16 2019 +1000

    L10n updates for: de
    From translation svn revision: 47141
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    407     120     source/locale/de/LC_MESSAGES/nvda.po
    81      5       user_docs/de/changes.t2t
    95      21      user_docs/de/userGuide.t2t
     3 files changed, 583 insertions(+), 146 deletions(-)

commit a0b991af322d05ae448d057594667eea36d06f0c
Author: James Teh <jamie@jantrid.net>
Date:   Thu Feb 21 16:27:54 2019 +1000

    Speed up _isNVDAObjectInApplication in virtual buffers by using the buffer. (#9303)
    
    _isNVDAObjectInApplication is called by various TreeInterceptor implementations whenever we need to determine whether an object is contained within the document.
    It needs to walk ancestors in order to make a determination and often ends up walking to the root object.
    We cache results for an object and its ancestors, but this only really helps focus, since that's the only place where we reuse cached ancestors.
    Thus, object navigation and events for anything other than the focus don't benefit.
    
    Virtual buffers only know about objects that should be considered part of the document.
    Therefore, if an object is in the buffer (a relatively fast check), we can immediately conclude that it is not within an application.
    This avoids the need to walk the remaining ancestors.
    
    To facilitate this, part of _isNVDAObjectInApplication has been split into a separate method, _isNVDAObjectInApplication_noWalk.
    This method can return a definite answer if possible  or it can return None, in which case we walk to the next ancestor.
    
    The Gecko vbuf's __contains__ method also had to be tweaked to return early for dead objects.
    Otherwise, _isNVDAObjectInApplication walks ancestors and ends up hitting the desktop object.

commit ff9dccaff82493f2cf2e50b7c22fcfff87a32524
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Thu Feb 21 12:35:13 2019 +1000

    Stop regex_error exception when quick navigating to article landmarks (#9299)
    
    * VBufStorage: limit the length of attribute values to 100 chracters when using them in regular expressions when finding nodes. Also catch regex_error thrown by regex_match.
    
    * VBufStorage: log a debug warning if an attribute is truncated when matching.
    
    * VBufStorage: clarify log call.
    
    * Fix typo in comment.
    
    * Update what's new.

commit 2510ade91329ab4f7260467344a377d216070183
Merge: c6bd164c2 31692c6c9
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Feb 21 04:34:34 2019 +1000

    Merge branch 'master' into beta

commit 31692c6c99ca6012fa93a77f1c6b320ed173ffdb
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Feb 20 08:45:39 2019 +1000

    Support in-cell editing in Excel 2016/365 (#9290)
    
    * UIAHandler: remember the last UIA element to receive a UIA focus event.
    
    * Support in-cell editing in Excel 2016/365
    
    * UIA: catch a COMError when trying to make a cache request.
    
    * Excel: address review comments: cache focusRedirect, comment why parent must be set. also increase search count, and only set parent if previous focus was an ExcelCell.
    
    * Update what's new.

commit 73db4aa5543e2a54012b5eff60d9499280013f53
Author: mltony <34804124+mltony@users.noreply.github.com>
Date:   Mon Feb 18 17:28:02 2019 -0800

    Fast browse mode - "browse mode moves system focus off" mode (#9114)
    
    * Fast browse mode - system focus doesn't follow browse mode focus
    
    * Fix bug when checkboxes and radio button new state is not announced when checked or unchecked
    
    * Renaming configuration setting name to camel case
    
    * Refactoring definitions of passthrough methods
    
    * Refactoring sync focus function
    
    * Always call .scrollIntoView()
    
    * Fixing fast browse mode in Outlook emails
    
    * Fixing Tab behavior
    
    * Fixing bug - some edit boxes in IE impossible to enter
    
    * Refactoring
    
    * Refactoring - better tracking of async gainFocus events
    
    * Fixing exception in event pump
    
    * Rename browse modes
    
    * Set fast browse mode to be default
    
    * Updated bogfixes section
    
    * Add more keystrokes with focus sync
    
    * Renaming legacy browse mode back to traditional browse mode since we won't remove it in the nearby future
    
    * Update user documentation
    
    * Change toggle messages
    
    * Use .uniqueID attribute
    
    * Revert back to IA2UniqueID
    
    * Refactoring
    
    * Refactoring
    
    * Refactoring
    
    * Refactoring
    
    * Adding .uniqueID attribute to NVDAObject implementations
    
    * Adding passthrough gestures with numpadEnter
    
    * Lazy evaluation of uniqueID
    
    * Refactoring

commit 4e899259b5abf780564fa514cb8c39b1d1b5e677
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Mon Feb 18 05:49:37 2019 +1000

    Speed ups for navigating Microsoft Excel spreadsheets, especially for those containing comments / dropdowns  (#9257)
    
    * Initial stub for excel_getCellTextWidth in nvdaHelper
    
    * Implement all of getCellTextWidth in-process and call it from the Excel cell NVDAObject.
    
    * Excel: move all states calculation in-process.
    
    * Excel: fetch text, address, states, input title, input message, row/column coordinates and outline level all via one in-process call.
    
    * Excel: fix up handling of merged cells.
    
    * Excel: no need to call cell.currentRegion in fetchAssociatedHeaderCells. It just slows things down and the variable was never used!
    
    * Excel inProc: getCellInfo now uses a struct, rather than everything as separate arguments. Will be easier once eventually fetching multiple cells at once.
    
    * Excel: If NvDA cannot inject in-process, such as when in Protected  View, fall back to fetching some very basic info for cells, such as address and text.
    
    * Excel: move the fetching of comments and formulas for Elements list in-process.
    
    * Excel: remove an unneeded method.
    
    * Excel nvdaHelper: move constants into their own file.
    
    * nvdaHelper: make use of InterfaceMarshaller in outlook.cpp.
    
    * Excel: mark ExcelCellInfoQuicknavIterator as an abstract class requiring QuicknavItemClass and collectionFromWorksheet to be implemented.
    
    * Excel: address review comments.
    
    * Address review comments.
    
    * Address review comments.
    
    * Excel nvdaHelper support: check more errors and remove a redundant fetch of range.address.
    
    * Excel nvdaHelper:: Excel's range.item is 1-based not 0-based. Listing formulas was 1 cell off.
    
    * Excel NVDAHelper: fetching all cells from a filtered range must use IEnumVariant, not range.item otherwise cells in the gaps will also be fetched.
    
    * Update what's new.

commit c6bd164c2244893b375939f3b97c1443a590ffcc
Merge: 03e52951b db2dbb171
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 15 00:06:07 2019 +1000

    Update translations.
    
    From translation svn revision: 47017

commit db2dbb171f448062068bbca88df332d45f0292ce
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 15 00:06:07 2019 +1000

    L10n updates for: zh_TW
    From translation svn revision: 47017
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    63      55      source/locale/zh_TW/characterDescriptions.dic
     1 file changed, 63 insertions(+), 55 deletions(-)

commit c5bb5491ea7d331abf1eaa073751284988086722
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 15 00:05:07 2019 +1000

    L10n updates for: ar
    From translation svn revision: 47017
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    4       0       user_docs/ar/changes.t2t
     1 file changed, 4 insertions(+)

commit a6f7fb4008e282275cce1e48997e8651597bcbfd
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Thu Feb 14 10:28:04 2019 +0100

    Add a script to start the wx inspection tool. (#9246)
    
    * Add a script to start the wx inspection tool.
    
    This is handy when working on the NVDA GUI.
    Note: The Inspection tool has a few accessibility issues such as tab getting stuck in the details edit field. Plus that edit field is not accessible and NVDA falls back to displayModel, sometimes producing some garbled text at the end of each line.

commit 2c81a69b187b07f4fcfd07b0dbff8759356d4357
Author: James Teh <jamie@jantrid.net>
Date:   Thu Feb 14 07:30:23 2019 +1000

    Don't report IAccessible alert events if there's no content. (#9266)
    
    * Don't report IAccessible alert events if there's no content.
    
    As well as the childCount, we also check name and description, as these might be set using ARIA even on an alert with no children.
    
    * Update what's new.

commit e4a7998eb18cac27668d6b684f44c13590eabc1f
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Feb 13 16:34:43 2019 +1000

    Developer scratchpad setting is now a global setting, not connected to specific config profiles. (#9265)

commit 9509c256f2bc174c3822fcded99c8b2597799260
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Mon Feb 11 09:32:18 2019 +0100

    Fix spelling mistake in default issue template.

commit 2b08ac879d9ecafdb3fcd3c46be21a62d402961e
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Mon Feb 11 09:21:14 2019 +0100

    Ensure some issue template is always shown
    
    When visiting GitHub via the `nvda/issues/new` URL no template is presented, now the bug report template is shown by default. There is a message at the beginning that explains that the `nvda/issues/new/choose` URL should be used instead. There is also URLs to jump directly to the creation of bug reports and feature requests.
    The header is not included in the HTML comment, this allows the the links to become clickable by swapping to the preview page. It will also make it easier for us to tell when someone has used this template (if they do not delete this header).

commit d1a8a710d37f5a376ebf9f32600d7cb857554b38
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Mon Feb 11 17:30:03 2019 +1000

    Provide configurable developer scratchpad dir rather than automatic loading of custom code (#9238)
    
    * NVDA no longer automatically loads custom code from package directories in the NVDA user configuration directory. Rather it will load tem from subdirectories in a new 'scratchpad' directory in the NVDA user configuration directory, but only if the open in the advanced category is enabled.
    
    * System tests use Developer scratchpad directory for the Robot globalPlugin.
    
    * Don't load from the developer scratchpad dir if NVDA is running in secure mode.
    
    * Update more system test paths to scratchpad.
    
    * Remove spaces at start of line.
    
    * Update what's new.

commit 960983e41a4321411e54bd5a7b2f205a70ae7600
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Mon Feb 11 16:48:58 2019 +1000

    Speed ups to ms word object model (#9217)
    
    * winword support in nvdaHelper: speed things up a bit by optimizing for only one layout column, remove some debugging code, and turn off screenUpdating while collecting text formatting.
    
    * Winword support in nvdaHelper: fetch editor revision information much more efficiently, similarly to how we fetch comments and spelling errors.
    
    * MS Word object model support: rather than disabling screen updating specifically from within each in-process call, disable it from Python the first time it is required in a core cycle, re-enabling it at the end of the core cycle.
    
    * speech.speakTextInfo: if the unit is paragraph, cell or story, don't fetch costly formatting info such as spelling errors and editor revisions, even if the user has these turned on.
    
    * NVDAHelper MS Word support: add more debug warning log statements.
    
    * Revert "speech.speakTextInfo: if the unit is paragraph, cell or story, don't fetch costly formatting info such as spelling errors and editor revisions, even if the user has these turned on."
    
    This reverts commit 6ea9d0f613dc168ac33a859c475e3d455badee74.
    
    * When navigating by table cell in MS Word, only speak the first line of the next cell, otherwise it may take a very long time to collect all content for the cell.
    
    * When navigating by paragraph, spelling errors and editor revisions will not be announced. It is important that navigating by paragraph is performant as it is used for quick skimming.
    
    * MS Word: Optimize collapse so that end is only fetched if needed.
    
    * Navigating by table cell in MS Word again speaks the entire cell, but editor revisions and spelling errors (like when navigating by paragraph) are no longer spoken for navigating by table cell.
    
    * Only disable spelling errors when speaking paragraphs and table cells. Editor revisions are okay.
    
    * MS Word nvdaHelper support: remove unneeded fetching of application object.
    
    * MS Word support: remove old comment.
    
    * MS Word support: go back to disabling screen updating in-process for now, but do it from a RAAI class so that it can be re-enabled automatically at the end of scope.
    
    * Address review comments.
    
    * Update what's new.

commit 1a45aebb5e7a51e5e57c7b84e4a918ae674d2bdf
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Fri Feb 8 08:48:33 2019 +0100

    restore prompt for restart after installing an addon from shell (PR #9251)
    
    Fixes #9226
    
    * restore prompt for restart after installing an addon from shell
    * fix typo in incompatible addon message
    * add an accelerator to the close button in incompat addons dialog

commit 03977ad47c1ab3449b14a244eba2cbe8521be6ca
Author: FelixGruetzmacher <constantlyvariable@gmail.com>
Date:   Fri Feb 8 01:39:43 2019 +0100

    Added support for Connect Braille and Basic Braille 84. (#9249)
    
    * Added support for Connect Braille and Basic Braille 84.
    
    * Update what's new.

commit 03e52951bb70073846c0f60454ccc0d485af6c1a
Merge: e6b837e90 55623b408
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 8 00:06:11 2019 +1000

    Update translations.
    
    From translation svn revision: 46970

commit 55623b40891fa3dfb2e2e4aded538643e5344469
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 8 00:06:08 2019 +1000

    L10n updates for: zh_CN
    From translation svn revision: 46970
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    
    Stats:
    4       4       source/locale/zh_CN/LC_MESSAGES/nvda.po
     1 file changed, 4 insertions(+), 4 deletions(-)

commit 4d9df912c776bfaf7ea79fea2ff53e52415e89b8
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 8 00:05:59 2019 +1000

    L10n updates for: so
    From translation svn revision: 46970
    
    Authors:
    Othmanothman <othman82@hotmail.com>
    
    Stats:
    15      11      source/locale/so/LC_MESSAGES/nvda.po
     1 file changed, 15 insertions(+), 11 deletions(-)

commit 44f2ae2557376ef5450ded2390522954ec524ebc
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 8 00:05:54 2019 +1000

    L10n updates for: ro
    From translation svn revision: 46970
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    Daniela Popovici <vlajna95@gmail.com>
    
    Stats:
    5       5       source/locale/ro/LC_MESSAGES/nvda.po
     1 file changed, 5 insertions(+), 5 deletions(-)

commit a32c0492a7bf91bd25faac5d937787f0f2feb7ee
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 8 00:05:51 2019 +1000

    L10n updates for: pt_BR
    From translation svn revision: 46970
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    1       1       source/locale/pt_BR/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 2f72ce9326abb2fed9dd3ca9d406caf8b3ce815c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 8 00:05:48 2019 +1000

    L10n updates for: nl
    From translation svn revision: 46970
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    1       1       user_docs/nl/userGuide.t2t
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 540a92c88647cff32c0ad5b21c50f7aea2b9f8d3
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 8 00:05:37 2019 +1000

    L10n updates for: ja
    From translation svn revision: 46970
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    5       5       source/locale/ja/LC_MESSAGES/nvda.po
    7       3       user_docs/ja/changes.t2t
    8       8       user_docs/ja/userGuide.t2t
     3 files changed, 20 insertions(+), 16 deletions(-)

commit a99059a84bffb565a3acc6c8371d8f632b8dc984
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 8 00:05:30 2019 +1000

    L10n updates for: hi
    From translation svn revision: 46970
    
    Authors:
    dipendra.lists@gmail.com
    Doc Mehta <joyofinspiring@gmail.com>
    
    Stats:
    537     206     source/locale/hi/LC_MESSAGES/nvda.po
     1 file changed, 537 insertions(+), 206 deletions(-)

commit 7b569fc52e08e5d6eb928a6768b70e655d7ae045
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 8 00:05:26 2019 +1000

    L10n updates for: fr
    From translation svn revision: 46970
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    2       2       source/locale/fr/LC_MESSAGES/nvda.po
     1 file changed, 2 insertions(+), 2 deletions(-)

commit 4a7dcdd525b2d7b3950208ecf2c154d2c68ad722
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 8 00:05:21 2019 +1000

    L10n updates for: es
    From translation svn revision: 46970
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    7       7       source/locale/es/LC_MESSAGES/nvda.po
    1       1       user_docs/es/userGuide.t2t
     2 files changed, 8 insertions(+), 8 deletions(-)

commit e51645d01f0dbd398841ae0db0310ada776b2d1b
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Tue Feb 5 03:17:27 2019 +0100

    Stop the Virtualbox>=5.2 main window from freezing (#9211)
    
    * Improve qt container child fetching
    
    * Update what's new.

commit 8f677240890891e3147d9fe5a06242cd8b2128d3
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Tue Feb 5 00:02:07 2019 +0100

    Fix wrong brackets in DisplayModelTextInfo.boundingRects property (#9237)

commit 10590c87b304123458d524a3b03f2248440553d4
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Fri Feb 1 14:02:54 2019 +0100

    Fix possible freeze related to custom checklistboxes (PR #9224)
    
    * Fix possible freeze related to custom checklistboxes
    
    `gui.nvdaControls.CustomCheckListBox` uses a custom `AccPropServer` for accessibility. However, when destroying the control, the `AccPropServer` wasn't properly unregistered. This leads to unexpected behavior, sometimes even to system freezes.
    
    While this was fixed for `AutoWidthColumnCheckListCtrl` it was not for `CustomListBox`. Now the AccPropServer instance itself is responsible for registration and unregistration. This cleanup is triggered by binding to the the control's window destroyed wx event.

commit b65f5bb70f65e78b268094049cd753b0eb32f0f0
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Thu Jan 31 18:18:05 2019 +0100

    New addon api versioning approach (PR #9151)
    
    Closes #9055
    
    * The incompatible addons dialog is no longer shown on startup. Since there is no saved state, this would warn about any installed incompatible addons every time NVDA was started.
    * Replace compatibility checks
       - NVDA now uses two (internal) values to determine addon compatibility, in addition to the `lastTestedNVDAVersion` and `minimumNVDAVersion` from the addonManifest. These new values are `CURRENT` and `BACK_COMPAT_TO`, in the addonAPIVersion module.
      - An addon is considered compatible if there is an overlap of the two ranges formed by the addon manifest values and the internal NVDA values.
      - Renamed `_showAddonUntestedDialog`
        - Clarified the name of the function to report that an addon is no longer supported by NVDA. The addon is considered "too old". As opposed to NVDA being "too old" for a newly developed addon.
    * Introduce a new method of stopping incompatible addons from "running".
      - No longer "disable" them to stop them from running.
      - When being set to disabled, the state was being saved. This meant the launcher could interfere with an installed version of NVDA, even if the installation was aborted.
      - We rely on `_getAvailableAddonsFromPath` to be setting the blocked state.
      - Improve comment in `addToPackagePath`, which is currently the end point for "enabling" an addon.
    * Addon API version values are now used as tuples throughout code.
      - Read from addon manifest and validate and convert to tuple.
      - Validate manifest condition: `minRequiredVersion <= lastTested`
        - It's not sensible to have a minRequiredVersion later than the version
    tested against.
    * Update info for NVDA now keeps `APIVersion` and `backCompatibleToVersion` as tuples rather than strings.
      - When an update is postponed it is saved as a tuple.
      - This saves confusion about whether its a string or a tuple.
    * Fix freeze on exit when destroy not called manually for `AutoWidthColumnCheckListCtrl`
       - Removes need to manually call destroy on `IncompatibleAddonsDialog`
       - `accPropServices` needs to be cleaned up when the control is destroyed. The `Destroy` method is not called by the wx framework, but we can register to receive the event see https://github.com/wxWidgets/Phoenix/issues/630
    * Allow the possibility of using a parent window other than the addon manager when installing an addon. Useful in the case of installing via a shell extension, where gui.mainframe should be the parent.
      - Removed coupling between the `installAddon` function and `AddonManager` class
      - Reduced nesting of the `installAddon` function
      - Moved methods to module level. These had no dependence on instance, or class level members.
    * Use windows sounds for addon install warning / error dialogs.
    * Use context manager for writing to file in `_download` of class `UpdateDownloader` in `updateCheck.py`
      - There were several ways that the file could fail to be closed.
    * Unified the way that NVDA versions / API versions are formatted to a string, added tests
      - One function is for outputting a full version string (including build part).
      - The other is for formatting a version string for the GUI (which will remove the minor part when it is zero).
    * Moved the regex used to convert addon manifest API versions from strings to tuples into the `addonAPIVersion` module.
    * No longer raise error for failed audio ducking when it failed due to "access denied"
      - Ensure that a warning is put in the log for access denied errors when setting audio ducking.

commit e6b837e907ce10aa1b4905c92934ee8c17b9176e
Merge: 01922c0c8 985636487
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 1 00:06:06 2019 +1000

    Update translations.
    
    From translation svn revision: 46816

commit 985636487b3dee08cf8e81b7b01ef69db0482644
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 1 00:06:04 2019 +1000

    L10n updates for: zh_CN
    From translation svn revision: 46816
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    
    Stats:
    181     25      user_docs/zh_CN/changes.t2t
     1 file changed, 181 insertions(+), 25 deletions(-)

commit ed3edb5e857c732e8ef1ec34fcff6402ee8e9e86
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 1 00:05:56 2019 +1000

    L10n updates for: so
    From translation svn revision: 46816
    
    Authors:
    Othmanothman <othman82@hotmail.com>
    
    Stats:
    10      6       source/locale/so/LC_MESSAGES/nvda.po
     1 file changed, 10 insertions(+), 6 deletions(-)

commit 51e787c8afc258d78d79bd35d06b6d40db5ea478
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 1 00:05:48 2019 +1000

    L10n updates for: pt_BR
    From translation svn revision: 46816
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    16      16      source/locale/pt_BR/LC_MESSAGES/nvda.po
     1 file changed, 16 insertions(+), 16 deletions(-)

commit e778b439ee63656b13bfcf355e7d664dace1776d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 1 00:05:45 2019 +1000

    L10n updates for: nl
    From translation svn revision: 46816
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    296     292     user_docs/nl/userGuide.t2t
     1 file changed, 296 insertions(+), 292 deletions(-)

commit 790abc1ffe1ad94aae55d932499d9d7c415a84a0
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 1 00:05:33 2019 +1000

    L10n updates for: it
    From translation svn revision: 46816
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    3       0       user_docs/it/changes.t2t
     1 file changed, 3 insertions(+)

commit 6ad12b5a137629aae01c4109fc8cd720cb104726
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 1 00:05:06 2019 +1000

    L10n updates for: an
    From translation svn revision: 46816
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    
    Stats:
    4       0       user_docs/an/changes.t2t
     1 file changed, 4 insertions(+)

commit 6a6808517614ed74e4a38b55be82c69289494244
Author: Bill Dengler <codeofdusk@gmail.com>
Date:   Thu Jan 31 07:35:11 2019 +0000

    MMC app module (#9118)
    
    * Fixed #1486.
    
    This commit fixes #1486 by adding a custom app module for the Microsoft Management Console.
    
    * Review actions.
    
    * Review items.
    
    * New implementation based on focus redirect and gainFocus events
    
    * Use an overlay for table cells
    
    * Style.
    
    * Style.
    
    * Cosmetics
    
    * Update what's new.

commit 1cb5300ac30de6124fb918ac7edae41adced16b4
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Wed Jan 30 23:02:35 2019 -0800

    Emoji panel: emoji search results, automation ID based event handler, catch attribute error exception when closing the panel (#9112)
    
    * Modern keyboard: update app module description text to include cloud clipboard paste functionality.
    
    * Composable Shell/window open event: use automation ID's to look up which input panel technology should be handled. Re #9104.
    
    Previously NVDA assumed that emoji panel is the only thing to be handled, thus looked up build number and child count. However, it was later discovered that different input panel features expose different automation ID's for various features. Thus use this (along with build number if appropriate) when dealing with different aspects of modern input panel.
    
    * Composable Shell/various events: catch attribute error for several parents and objects, especially when closing emoji panel. Re #9106.
    
    * Composable Shell/emoji panel: handle sking tone modifiers.
    
    In Windows 10 Version 1809 and later, people emoji includes skin tone modifiers. Thus detect this and move to the appropriate emoji when searching for people emoji.
    
    * Composable Shell/emoji panel: announce top emoji when searching for one. Re #9105.
    
    While searching for emojis in Version 1809 and later, name change event is fired by search block text. However, item selection event is also fired, which means only the results count will be announced, not the moji itself. Thus return from name change event if emoji search is under way.
    
    * Update what's new.

commit 69b6fed38f130aac3c0718171071001682ef5b83
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Jan 31 17:00:41 2019 +1000

    What's new: fix typo in an entry.

commit fcbce7fe701cd7be2314b1db62eea7e4dab26663
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Jan 31 16:58:32 2019 +1000

    What's new: remove entry from bug fixes mentioning MS Word performance improvements due to UIA support. This was disabled by default in #9200.

commit 9983e3f43cec2f6d1b625f2c28c1bc6395b820ea
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Thu Jan 31 16:44:39 2019 +1000

    Make UIA in MS Word optional again, through an Advanced Settings category (#9200)
    
    * _UIAHandler: don't use UIA in MS Word by default as it is still not ready. Rather, still allow it to be used byased on the useInMSwordWhenAvailable config option.
    
    * Add an Advanced settings category to NVDA's Settings dialog.  This contains all config options that were previously not accessible from the GUI. this includes:
    Use UIA in MS Word, caret movement timeout, and the debug log categories.
    
    * Address review comments. Debug log categories are now a checkListBox, and fixed typo in userGuide.
    
    * Fix typos in userGuide.
    
    * Update what's new.

commit ec49fa71b1fce97e0e84c47ab91d475a2e538007
Author: James Teh <jamie@jantrid.net>
Date:   Thu Jan 31 15:44:37 2019 +1000

    In-process components on ARM64 (#9216)
    
    * Upgrade SCons to version 3.0.4.
    
    This required some tweaks to the sconscripts for ISimpleDOM and MathPlayer.
    We copy the idl file into the build directory ourselves, but it depends on other files.
    It seems SCons no longer scans for dependencies in files we copy ourselves.
    Thus, we must explicitly declare those dependencies.
    
    * Build and install in-process components for ARM64.
    
    These are placed in a new libArm64 directory (alongside lib and lib64).
    MinHook doesn't support ARM64, so disable MinHook and everything that depends on it (notably displayModel).
    
    * Start nvdaHelperRemoteLoader appropriately on ARM64.
    
    * Fix AppModule.is64BitProcess for ARM64.
    
    Previously, it always returned True, even for 32 bit processes.
    On ARM64, isWow64Process always returns False.
    We must instead use IsWow64Process2 where supported.
    
    * Update readme to list the additional Visual Studio components we now require.
    
    * Update what's new.

commit 504da10d24ea2cd4b89ec4015a4736d43e4c839a
Author: zstanecic <zvonimirek222@yandex.com>
Date:   Tue Jan 29 01:17:59 2019 +0100

    renamed Norwegian braille table to a new one as requested and adds afrikaans table (#9186)
    
    * added czech eight dots computer table
    
    * added hungarrian braille table
    
    * update braille tables file
    
    * review actions
    
    * review actions,
    note, if the unit tests pass, this can be merged into master
    
    * review action, change k to K in Central Kurdish
    
    * added norwegian new 8-dots braille table, added Afrikaans table present before
    
    * updated copiright headers,
    fixed dictionary declarations for the norwegian table
    
    * Update source/brailleTables.py
    
    covering new braille table rename.
    
    Co-Authored-By: zstanecic <zvonimirek222@yandex.com>
    
    * oops, we don't have no-no.ctb table, and it errored with heck.
    
    * Revert "oops, we don't have no-no.ctb table, and it errored with heck."
    
    This reverts commit 2da5d5298784a9868e545fd440ac13e0fa964634.
    
    * Update what's new.

commit 2a20e4f60845c2ed6d9c758deeb91f18c3e08a27
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Tue Jan 29 01:17:23 2019 +0100

    Work around frozen keyboard input while the NVDA core is frozen (#9208)
    
    * Try to work around frozen keyboard input while the NVDA core is frozen
    
    * Update what's new.

commit 01922c0c87a8ec27ce0f6bdcc16c2888666745d8
Merge: db5deabc5 f11cd2d6f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Jan 28 09:03:02 2019 +1000

    Update translations.
    
    From translation svn revision: 46794

commit f11cd2d6f8666c4a2fb895d503896e1c9a645690
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Jan 28 09:02:54 2019 +1000

    L10n updates for: sr
    From translation svn revision: 46794
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    4       0       user_docs/sr/changes.t2t
     1 file changed, 4 insertions(+)

commit daf3c22eb142a3700f2876857e6b5e60fbf953d0
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Jan 28 09:02:43 2019 +1000

    L10n updates for: nl
    From translation svn revision: 46794
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    21      18      user_docs/nl/changes.t2t
     1 file changed, 21 insertions(+), 18 deletions(-)

commit 9b3e012a721c75e853062c6fa46e61549a61e467
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Jan 28 09:02:25 2019 +1000

    L10n updates for: fr
    From translation svn revision: 46794
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    4       0       user_docs/fr/changes.t2t
     1 file changed, 4 insertions(+)

commit c8c70b6eab6d1e4da7233dd9aa57ff58cb66a199
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Jan 28 09:02:22 2019 +1000

    L10n updates for: fa
    From translation svn revision: 46794
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    5       1       user_docs/fa/changes.t2t
     1 file changed, 5 insertions(+), 1 deletion(-)

commit bc80f9a1cec359312bdd4a1aaabbf240f7315c4f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Jan 28 09:02:16 2019 +1000

    L10n updates for: de
    From translation svn revision: 46794
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    1       1       source/locale/de/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 2aa0971d6f3671254e7b725683c1dda70344e143
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Jan 28 09:02:14 2019 +1000

    L10n updates for: da
    From translation svn revision: 46794
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    4       4       user_docs/da/userGuide.t2t
     1 file changed, 4 insertions(+), 4 deletions(-)

commit db5deabc5a39b84d842b16b5636ed1464136ec83
Merge: d711e4fb3 e0dc954d1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 25 00:06:06 2019 +1000

    Update translations.
    
    From translation svn revision: 46768

commit e0dc954d1a6a857b2f88a24625d3248de2a389ff
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 25 00:06:06 2019 +1000

    L10n updates for: zh_TW
    From translation svn revision: 46768
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    2       2       source/locale/zh_TW/LC_MESSAGES/nvda.po
     1 file changed, 2 insertions(+), 2 deletions(-)

commit 473b650a4e4009832a6062c81df1093d59470f25
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 25 00:06:04 2019 +1000

    L10n updates for: zh_CN
    From translation svn revision: 46768
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    
    Stats:
    5       5       source/locale/zh_CN/characterDescriptions.dic
    2084    1901    user_docs/zh_CN/changes.t2t
     2 files changed, 2089 insertions(+), 1906 deletions(-)

commit 35ea0f647b79f4a6b82c272360afcc1d120289ad
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 25 00:06:02 2019 +1000

    L10n updates for: vi
    From translation svn revision: 46768
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    74      0       user_docs/vi/changes.t2t
     1 file changed, 74 insertions(+)

commit 6b89aa7354e0e9d34fe60e00eb271eee0fcbbc70
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 25 00:06:00 2019 +1000

    L10n updates for: tr
    From translation svn revision: 46768
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    4       0       user_docs/tr/changes.t2t
     1 file changed, 4 insertions(+)

commit 949836c6496c08126e133498ed5603f714f6fea6
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 25 00:05:53 2019 +1000

    L10n updates for: ru
    From translation svn revision: 46768
    
    Authors:
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    4       0       user_docs/ru/changes.t2t
     1 file changed, 4 insertions(+)

commit 26052f88f6c19b1b34fcde36946243649d11d057
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 25 00:05:51 2019 +1000

    L10n updates for: ro
    From translation svn revision: 46768
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    
    Stats:
    4       0       user_docs/ro/changes.t2t
     1 file changed, 4 insertions(+)

commit 5bedb906286d130000c1c2b93dcfb8f40fde13c0
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 25 00:05:48 2019 +1000

    L10n updates for: pt_BR
    From translation svn revision: 46768
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    4       0       user_docs/pt_BR/changes.t2t
     1 file changed, 4 insertions(+)

commit f4f1a992a301a6b1ed81a8e419392c18d299aa35
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 25 00:05:27 2019 +1000

    L10n updates for: gl
    From translation svn revision: 46768
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    
    Stats:
    4       0       user_docs/gl/changes.t2t
     1 file changed, 4 insertions(+)

commit e048862928454e4866a629f3fdcc0ddfa92dbb1b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 25 00:05:25 2019 +1000

    L10n updates for: fr
    From translation svn revision: 46768
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    4       2       source/locale/fr/symbols.dic
     1 file changed, 4 insertions(+), 2 deletions(-)

commit f55a4830c9a2c6cfb297ec3e3f7a567e81e885c7
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 25 00:05:24 2019 +1000

    L10n updates for: fi
    From translation svn revision: 46768
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    4       0       user_docs/fi/changes.t2t
     1 file changed, 4 insertions(+)

commit 721ed698aae9b4f824813ddd61008d4ed29a673d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 25 00:05:20 2019 +1000

    L10n updates for: es
    From translation svn revision: 46768
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    4       0       user_docs/es/changes.t2t
     1 file changed, 4 insertions(+)

commit 1400b3240e88ac5bef09917d48c80810740a4eea
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 25 00:05:17 2019 +1000

    L10n updates for: de
    From translation svn revision: 46768
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    Astrid Waldschmetterling <a.r.waldschmetterling@gmx.de>
    
    Stats:
    18      18      source/locale/de/LC_MESSAGES/nvda.po
    4       0       user_docs/de/changes.t2t
     2 files changed, 22 insertions(+), 18 deletions(-)

commit 3b98f720de5559efe27b4fb546b7acfc0b54ed08
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 25 00:05:14 2019 +1000

    L10n updates for: da
    From translation svn revision: 46768
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    4       0       user_docs/da/changes.t2t
     1 file changed, 4 insertions(+)

commit dac598057db3da3bee9e9e2de0553c850e07b735
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Thu Jan 24 15:45:28 2019 +1000

    Ensure browse mode is used when reading Outlook messages with UI automation enabled  (#9188)
    
    * When UIA is used to access messages in Outlook, ensure that browseMode is turned on by default when reading messages.
    Also handle the case where Outlook causes UIA to return mixedAttributes when searching for headings.
    
    * Update comments.
    
    * Update what's new.

commit 6fcf06aae2ab396de947701e036de5c9b85f4d9f
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Thu Jan 24 14:25:41 2019 +1000

    Announce context menus in Outlook 2016 and existance of submenus (#9189)
    
    * Don't suppress collapsed / expanded states on menu items if the menu item does not have the hasPopup state, as these states could be denoting it is a sub menu.
    
    * Handle special placeholder menu items in NetUI (such as MS Office context menus) when the menu appears but nothing real is focused. Bounce focus up to the menu itself for better presentation.

commit 821e63bc2af719071fb317cbe7327a38db49b6f2
Author: James Teh <jamie@jantrid.net>
Date:   Wed Jan 23 12:27:14 2019 +1000

    Gecko vbuf: Render the selected item in list boxes and trees. (#9166)
    
    * Gecko vbuf: Render the selected item in list boxes and trees.
    
    If there is no selected item, render the first child.
    This allows the user to see the selected item without having to switch to focus mode.
    It also allows focus to move into list boxes and trees where the container itself isn't focusable but the selected item is, as permitted by the ARIA spec.
    
    This required changing speech.getControlFieldSpeech so that the content of lists and trees is spoken after the control field info for REASON_FOCUS.
    Otherwise, moving to a list box or tree with quick navigation would speak the selected item first.
    List item also had to be added to the roles which always enable pass through, as this change means that a list item can now be under the cursor when enter is pressed. (Read only list items are still excluded by an earlier check.)
    
    This is currently disabled for HTML select size>1 controls in Chrome.
    These list items get the focusable state but setting focus programmatically does nothing.
    Therefore, we don't want to render these in Chrome because a user wouldn't be able to focus these list boxes in browse mode if we did.
    
    * Update what's new.

commit b0d7e704e239d0dc250f329305d99047da1e66ba
Author: mltony <34804124+mltony@users.noreply.github.com>
Date:   Tue Jan 22 17:03:31 2019 -0800

    Fix table navigation in threaded view in Mozilla Thunderbird (#9185)
    
    * Fix table navigation in threaded view in Mozilla Thunderbird
    
    * Update what's new.

commit 423c1a781869c5c464314b30a8b31ac67093b9b3
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Jan 23 10:28:08 2019 +1000

    Ensure that spelling errors, gramma errors, and other annotations are still reported in UI Automation documents when IUIAutomationTextRange3 is not available. (#9180)

commit 3b498cc5c925929f6ee29792e8d3986bd71555db
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Mon Jan 21 07:17:34 2019 +0100

    Fix functionality of the last 16 routing keys on 80 cell eurobraille displays (#9160)
    
    * Fix functionality of the last 16 routing keys on a 80 cell eurobraille display
    
    * Update what's new.

commit a33f71cbbd1a5311659d86c254bb0a2848c5a9fc
Author: James Teh <jamie@jantrid.net>
Date:   Mon Jan 21 11:15:55 2019 +1000

    Optional logging of time since input when speaking. (#9167)
    
    * Optional logging of time since input when speaking.
    
    This allows for easy measurement of perceived responsiveness.
    It can be enabled in the debugLog section of the config using the timeSinceInput setting.
    It is logged at level IO if this setting is enabled.
    
    * Move the time to the start of the log message to make it faster to read.
    
    * Update what's new.

commit d711e4fb361b0436892e21f4b8e90efa4111b229
Merge: 6fac5429a 71b0e71e2
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 18 00:06:51 2019 +1000

    Update translations.
    
    From translation svn revision: 46645

commit 71b0e71e2e74598afe1f2660ab8687e117215866
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 18 00:06:47 2019 +1000

    L10n updates for: zh_CN
    From translation svn revision: 46645
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    
    Stats:
    12      12      source/locale/zh_CN/characterDescriptions.dic
    46      45      source/locale/zh_CN/symbols.dic
     2 files changed, 58 insertions(+), 57 deletions(-)

commit e8a76105be6b5256d0cfe949e92c1fd050a49df2
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 18 00:06:40 2019 +1000

    L10n updates for: tr
    From translation svn revision: 46645
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    5       1       source/locale/tr/gestures.ini
     1 file changed, 5 insertions(+), 1 deletion(-)

commit e73d4d968346d370e3826c6072f4abed5905f1cc
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 18 00:06:32 2019 +1000

    L10n updates for: so
    From translation svn revision: 46645
    
    Authors:
    Othmanothman <othman82@hotmail.com>
    
    Stats:
    15      10      source/locale/so/LC_MESSAGES/nvda.po
     1 file changed, 15 insertions(+), 10 deletions(-)

commit 59e487a12a5d2cee2690ec2244c6099cd496e12f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 18 00:06:14 2019 +1000

    L10n updates for: nl
    From translation svn revision: 46645
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    5       6       source/locale/nl/LC_MESSAGES/nvda.po
    69      0       user_docs/nl/changes.t2t
     2 files changed, 74 insertions(+), 6 deletions(-)

commit a372ffc69dda2de3d3fcc5713b210a4cbb8e3928
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 18 00:05:46 2019 +1000

    L10n updates for: hi
    From translation svn revision: 46645
    
    Authors:
    dipendra.lists@gmail.com
    Doc Mehta <joyofinspiring@gmail.com>
    
    Stats:
    226     470     source/locale/hi/LC_MESSAGES/nvda.po
     1 file changed, 226 insertions(+), 470 deletions(-)

commit 11d539556f60695e7dc59d43616d798f5ad5c6ac
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 18 00:05:40 2019 +1000

    L10n updates for: fr
    From translation svn revision: 46645
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    7       7       source/locale/fr/symbols.dic
     1 file changed, 7 insertions(+), 7 deletions(-)

commit 83e45bd192258250f116a6f72e9dcc04817f7b36
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 18 00:05:22 2019 +1000

    L10n updates for: da
    From translation svn revision: 46645
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    7       7       source/locale/da/LC_MESSAGES/nvda.po
     1 file changed, 7 insertions(+), 7 deletions(-)

commit 318aaa5b5e2706c0420bd677e6738d6f4754326f
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Tue Jan 15 19:45:08 2019 +1000

    Uia in ms word by default (#8919)
    
    * UIAHandler: Use UIA in MS Word documents by default for MS Office for  version 16.0.9000 and above.
    
    * Stop refusing to use UIA for MS Office Ribbons, rather fix  specific problems directly: Office 2010 options dialog comboboxes have no name, and Outlook pre 2016 autoComplete list should use MSAA.
    
    * UIA WordDocumentTextInfo: remove custom implementation of isCollapsed property. It is no longer needed in recent versions of MS Word, and in fact it was causing tables to not be reported when positioned on a blank cell.
    
    * UIATextInfo.UIAElementAtStart: catch a COMError when fetching children. Seen at the bottom of MS Word documents.
    
    * Address review actions.
    
    * Fix typo in _UIAHandler: MS Office build number should be 9000 not 90000.
    
    * Work around bug in MS Word where a table cell could appear outside of a table in the UIA tree, causing a 10 second freeze and infinite recursion error.
    
    * Update what's new.

commit 5fc060b2bdc0f674a9e00d07f48c2f5663a85183
Author: Łukasz Golonka <wulfryk1@gmail.com>
Date:   Mon Jan 14 22:19:11 2019 +0100

    Check, that SCons is started with Python 2.7 32-bit and warn the user if not. (#8926)
    
    * Ensure, that SCons is started with Python 2.7 32-bit fail otherwise. Fix for https://github.com/nvaccess/nvda/issues/7095
    
    * Improve readability of the displayed message.
    
    * Review actions
    
    * Review actions.

commit 2a637108a1904f866eaf1fa650f6729d88082bf7
Author: James Teh <jamie@jantrid.net>
Date:   Mon Jan 14 17:28:54 2019 +1000

    ia2utils HyperlinkGetter: Switch to CComPtr (#9152)
    
    * ia2utils HyperlinkGetter: Switch to CComPtr (instead of _com_ptr_t) so C++ exceptions don't get thrown for COM errors.
    
    Newer code uses CComPtr already, so it made sense to switch rather than catching the exceptions.
    
    * Update what's new.

commit 5d32b42d531761f7000bfd167217bc408b3bf19c
Author: Łukasz Golonka <wulfryk1@gmail.com>
Date:   Mon Jan 14 02:09:36 2019 +0100

    Fix regression when reading and deleting text in MS Excel edit fields. (#9063)
    
    * Make cursor tracking and announcement of deleted characters working again in Microsoft Excel edit fields. Fix for https://github.com/nvaccess/nvda/issues/9042
    
    * Revert "Make cursor tracking and announcement of deleted characters working again in Microsoft Excel edit fields. Fix for https://github.com/nvaccess/nvda/issues/9042"
    
    This reverts commit c360ddfc6f19dfe070ad536b04c85de250b1a857.
    
    * Add app module for Excel. This simply uses displayModel for edit fields.
    
    * Review actions.
    
    * Update What's new.

commit 536492ec68e271961737a8455869bf8e8c5128ee
Merge: d5120846a 6fac5429a
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Jan 14 10:33:54 2019 +1000

    Merge branch 'beta'

commit 6fac5429adb67c5b9234daa380a4f98b1b6ea62e
Merge: afbc07207 79a05e32f
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Jan 14 10:30:52 2019 +1000

    Merge branch 'rc' into beta

commit afbc07207fdce9f34ec85030a0c44b235e5e58e1
Merge: f28bfaffa f8e2fad1a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 11 00:06:53 2019 +1000

    Update translations.
    
    From translation svn revision: 46598

commit f8e2fad1ae507ad6ea3cbead871be714aad33050
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 11 00:06:52 2019 +1000

    L10n updates for: zh_TW
    From translation svn revision: 46598
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    32      19      source/locale/zh_TW/characterDescriptions.dic
     1 file changed, 32 insertions(+), 19 deletions(-)

commit fee5fcd88094add2242047907d2f3f4a1a316f77
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 11 00:06:49 2019 +1000

    L10n updates for: zh_CN
    From translation svn revision: 46598
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    
    Stats:
    2       2       source/locale/zh_CN/LC_MESSAGES/nvda.po
    54      65      source/locale/zh_CN/characterDescriptions.dic
     2 files changed, 56 insertions(+), 67 deletions(-)

commit 8921f5b419b7345e13332d59f975b25d755581f3
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 11 00:06:35 2019 +1000

    L10n updates for: so
    From translation svn revision: 46598
    
    Authors:
    Othmanothman <othman82@hotmail.com>
    
    Stats:
    17      7       source/locale/so/LC_MESSAGES/nvda.po
     1 file changed, 17 insertions(+), 7 deletions(-)

commit 29ce178f49f6e02809111ed5cabbcb3a45d23078
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 11 00:06:31 2019 +1000

    L10n updates for: ru
    From translation svn revision: 46598
    
    Authors:
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    3       3       source/locale/ru/LC_MESSAGES/nvda.po
    64      64      user_docs/ru/userGuide.t2t
     2 files changed, 67 insertions(+), 67 deletions(-)

commit a81b925e5c2766bb4e645bffd38ef47a20417c3d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 11 00:06:00 2019 +1000

    L10n updates for: ja
    From translation svn revision: 46598
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    4       4       source/locale/ja/symbols.dic
    1       1       user_docs/ja/userGuide.t2t
     2 files changed, 5 insertions(+), 5 deletions(-)

commit 118f0536d09b8cdc1e3932dc66f6a8614633a1cd
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 11 00:05:50 2019 +1000

    L10n updates for: hi
    From translation svn revision: 46598
    
    Authors:
    dipendra.lists@gmail.com
    Doc Mehta <joyofinspiring@gmail.com>
    
    Stats:
    8       15      source/locale/hi/LC_MESSAGES/nvda.po
     1 file changed, 8 insertions(+), 15 deletions(-)

commit 558743ec9665cc50608e9d3b7a281fd5e66d712c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 11 00:05:44 2019 +1000

    L10n updates for: fr
    From translation svn revision: 46598
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    9       9       source/locale/fr/LC_MESSAGES/nvda.po
    1       1       user_docs/fr/userGuide.t2t
     2 files changed, 10 insertions(+), 10 deletions(-)

commit 79a05e32f2774a29ef38d143baaaeaab4bb1502b
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Jan 9 08:47:11 2019 +1000

    Update the URL to Mozilla's dump_syms utility. Also stop enabling rdp for builds as we do not needed at the moment.

commit a6cd0c5f279eab015e6f8115fff9b7fa4ec7c957
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Jan 10 11:32:53 2019 +1000

    Update What's new.

commit eaab1ec6149b826b42fe6e4e390cc414bd07811d
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Wed Jan 9 17:26:31 2019 -0800

    wxLang: only load language data if the given UI language has language info. Re #9089. (#9092)
    
    2018.4 regression: wxLang.Language fails in Aragonese because wxLang itself is None. There might be other languages where this might be the case. Thus only obtain wxLang.Language if and only if wxLang is indeed not None.

commit d5120846a54282ca9f6e03987a6ee218dd92bb1f
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Thu Jan 10 01:58:19 2019 +0100

    OffsetsTextInfo.boundingRects property: make sure there is a location to work with when calculating intersections (#9100)
    
    * OffsetsTextInfo.boundingRects property: make sure there is a location to work with when calculating intersections
    
    * Review action

commit aee76d10a50aaa275c7e1313eec3d409fc793ef3
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Wed Jan 9 16:52:06 2019 -0800

    Windows 10/Action Center: announce item status messages for brightness, focus assist and others, as well as reclassify brightness control as a button (#8954)
    
    * UIA handler: add item status property change event. Re #8845.
    
    Some controls raise UIA item status property change event, allowing clients to announce status changes. This is most noticeable in Windows 10's Action Center where one can change brightness and Focus Assist (quiet hours) where toggling these controls will cause them to raise this event.
    
    * App modules/Shell Experience Host: copyright header edits, add top-level docstring.
    
    * Shell Experience Host: announce status changes for various Action Center controls. Re #8845.
    
    Thanks to UIA's item status property change event, status for the following will be announced when toggling them:
    * Brightness
    * Focus Assist/quiet hours
    
    Because item status property change is raised multiple times (or rather, NVDA announces status messages multiple times), have a string to hold last announced status.
    
    * Shell Experience Host: Brightness button is now a plain button, not a toggle button. Re #8845.
    
    Brightness button is now a plain button, not a toggle button. Note that this control is now a slider in Windows 10 19H1 build 18277 and later.
    
    * Shell Experience Host/item status: clarify comment.
    
    * UIA item status: address review comments. Re #8845.
    
    Comment: make it more professional.
    _itemStatusMessage -> _itemStatusMessageCache for readability.
    
    * Update copyright years
    
    * Action Center/toggle button: address review comments. Re #8845.
    
    Reviewed by Mick Curran (NV Access): tweaks and changes:
    * An overlay class will be used to handle toggle button value change state.
    * Current item status cache will now be part of the new toggle button overlay class.
    
    * Action Center toggle button object: address review comment - assign cache no matter what the new value is. Re #8845.
    
    * Update what's new.

commit 1d5b38e4dc2f49e4f89462439758a14acb258c2f
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Jan 9 08:47:11 2019 +1000

    Update the URL to Mozilla's dump_syms utility. Also stop enabling rdp for builds as we do not needed at the moment.

commit 027b7f170da22237aa8c80f2c8fef0edd18717f7
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Mon Jan 7 18:13:31 2019 -0800

    NVDAObjects/UIA: treat looping selectors as combo boxes without value pattern (#9113)
    
    * UIA objects: import changes.
    
    Remove duplicated 'import time'.
    When importing Edge, use relative import to make it Python 3 compliant.
    
    * NVDAObjects/UIA: treat looping selectors without value pattern as combo boxes without value pattern. Re #5231.
    
    Looping selectors are used to select an item from values that wraps around, especially employed in time pickers 9SEttings, Alarms and Clock and others). Becasue they do not expose values, treat them as combo box without value pattern objects. This then allows NVDA to ask UIA to fetch the selected value by querying the selected element.
    
    * Update what's new.

commit d7359b94625569b16d84094cb1e09c22f916d504
Author: Bill Dengler <codeofdusk@gmail.com>
Date:   Mon Jan 7 06:43:43 2019 +0000

    Report the presence of formulae in Lotus Symphony-based spreadsheets (#9115)
    
    * Fixed #860
    
    This commit fixes #860 by checking the "Formula" IAccessible2 attribute exposed by Lotus Symphany based spreadsheet applications and adding the STATE_HASFORMULA where needed.
    
    * App modules/Lotus Symphoniy suite: updated copyright headers
    
    * Update source/appModules/soffice.py
    
    Co-Authored-By: codeofdusk <codeofdusk@gmail.com>
    
    * Update what's new.

commit f20b694041c993eae018628a32c93204851da6f8
Author: Bill Dengler <codeofdusk@gmail.com>
Date:   Mon Jan 7 06:23:29 2019 +0000

    Report legends on tab pages when tabbing or using quick navigation (#9116)
    
    * Fixed #709.
    
    This commit fixes #709 by expanding the check introduced in #3321 for property pages.
    
    * Update what's new.

commit f28bfaffad1343fd5705481b1521158d9fa56f24
Merge: 83a56ed9e 1eb057de8
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 4 00:07:24 2019 +1000

    Update translations.
    
    From translation svn revision: 46460

commit 1eb057de83eb75c76b669dd2fa0a78ce764ecfdd
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 4 00:07:23 2019 +1000

    L10n updates for: zh_TW
    From translation svn revision: 46460
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    3       226     source/locale/zh_TW/LC_MESSAGES/nvda.po
    98      95      source/locale/zh_TW/characterDescriptions.dic
     2 files changed, 101 insertions(+), 321 deletions(-)

commit ec2abd118e2f026e960ba1e88001af13337ad32c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 4 00:07:21 2019 +1000

    L10n updates for: zh_HK
    From translation svn revision: 46460
    
    Authors:
    Eric Yip <ericycy@gmail.com>
    
    Stats:
    3       221     source/locale/zh_HK/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 221 deletions(-)

commit 83e2c54a57fdd817078c125d55171a7801a72f24
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 4 00:07:19 2019 +1000

    L10n updates for: zh_CN
    From translation svn revision: 46460
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    
    Stats:
    4       225     source/locale/zh_CN/LC_MESSAGES/nvda.po
    3       3       source/locale/zh_CN/characterDescriptions.dic
     2 files changed, 7 insertions(+), 228 deletions(-)

commit 736f5e21e5b095cfb4f552d2a64d2e8c25de02a8
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 4 00:07:16 2019 +1000

    L10n updates for: vi
    From translation svn revision: 46460
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    3       228     source/locale/vi/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 228 deletions(-)

commit 9cb10d78a9252e69705992070d42e17af7824110
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 4 00:07:13 2019 +1000

    L10n updates for: uk
    From translation svn revision: 46460
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    3       228     source/locale/uk/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 228 deletions(-)

commit cf920d0df509184c71fb8a54a9d14a1aca52f60e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 4 00:07:10 2019 +1000

    L10n updates for: tr
    From translation svn revision: 46460
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    9       237     source/locale/tr/LC_MESSAGES/nvda.po
     1 file changed, 9 insertions(+), 237 deletions(-)

commit feec947cc2a2c7bb8789c2b69ea57f9e646caf66
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 4 00:07:07 2019 +1000

    L10n updates for: ta
    From translation svn revision: 46460
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    446     898     source/locale/ta/LC_MESSAGES/nvda.po
     1 file changed, 446 insertions(+), 898 deletions(-)

commit 8bcf2525768fd55d75104c1ef5346cd89ef66d60
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 4 00:07:04 2019 +1000

    L10n updates for: sv
    From translation svn revision: 46460
    
    Authors:
    Daniel Johansson <daniel.johansson@coeptus.se>
    Niklas Johansson <sleeping.pillow@gmail.com>
    
    Stats:
    48      213     source/locale/sv/LC_MESSAGES/nvda.po
     1 file changed, 48 insertions(+), 213 deletions(-)

commit f83e9bb5cb465e4976fc058e1f27a9fa94b0ac9f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 4 00:07:02 2019 +1000

    L10n updates for: sr
    From translation svn revision: 46460
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    2       225     source/locale/sr/LC_MESSAGES/nvda.po
     1 file changed, 2 insertions(+), 225 deletions(-)

commit 3ef0d3e78ef5b3da81883ac2adad973b9b69d2f8
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 4 00:07:00 2019 +1000

    L10n updates for: so
    From translation svn revision: 46460
    
    Authors:
    Othmanothman <othman82@hotmail.com>
    
    Stats:
    3       6       source/locale/so/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 6 deletions(-)

commit 9f9211dfd6ba26dccc1e1fdb41083986ae5b4796
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 4 00:06:59 2019 +1000

    L10n updates for: sl
    From translation svn revision: 46460
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    159     170     source/locale/sl/LC_MESSAGES/nvda.po
     1 file changed, 159 insertions(+), 170 deletions(-)

commit 89f4703e42eccec0205bba5e1b2807a52f6d556b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 4 00:06:57 2019 +1000

    L10n updates for: sk
    From translation svn revision: 46460
    
    Authors:
    Ondrej Rosik <ondrej.rosik@gmail.com>
    Peter Vagner <peter.v@datagate.sk>
    Jan Kulik <jan.kulik.szsle@outlook.sk>
    
    Stats:
    3       228     source/locale/sk/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 228 deletions(-)

commit 2ac29b26676bd3f9d22bcfc735cb0d6fc1c64b17
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 4 00:06:50 2019 +1000

    L10n updates for: ro
    From translation svn revision: 46460
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    
    Stats:
    3       64      source/locale/ro/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 64 deletions(-)

commit b38413c374f6150c5613607a72963f9f6fefa3ac
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 4 00:06:47 2019 +1000

    L10n updates for: pt_PT
    From translation svn revision: 46460
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    2       232     source/locale/pt_PT/LC_MESSAGES/nvda.po
     1 file changed, 2 insertions(+), 232 deletions(-)

commit a2ca572cc034d3bc0c19de6799542dd4ae716c52
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 4 00:06:44 2019 +1000

    L10n updates for: pt_BR
    From translation svn revision: 46460
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    3       226     source/locale/pt_BR/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 226 deletions(-)

commit a0c63e4489a6faf6971901d6b5ff1d93d00721a7
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 4 00:06:42 2019 +1000

    L10n updates for: pl
    From translation svn revision: 46460
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <killer@tyflonet.com>
    
    Stats:
    94      320     source/locale/pl/LC_MESSAGES/nvda.po
     1 file changed, 94 insertions(+), 320 deletions(-)

commit 62da9a0360009fc8013d15bd5fd81ae951164047
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 4 00:06:38 2019 +1000

    L10n updates for: pa
    From translation svn revision: 46460
    
    Authors:
    Maheshinder Singh Khosla <mahesh.khosla@gmail.com>
    Dinesh Mittal <punjabimaster259@gmail.com>
    
    Stats:
    251     453     source/locale/pa/LC_MESSAGES/nvda.po
     1 file changed, 251 insertions(+), 453 deletions(-)

commit 07a608d32c9300e488fde174f9168bb75ab20ecd
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 4 00:06:37 2019 +1000

    L10n updates for: nl
    From translation svn revision: 46460
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    5       228     source/locale/nl/LC_MESSAGES/nvda.po
     1 file changed, 5 insertions(+), 228 deletions(-)

commit d9bd8a0a5162c4cb02b5885500173303cc3d8e09
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 4 00:06:35 2019 +1000

    L10n updates for: ne
    From translation svn revision: 46460
    
    Authors:
    him Prasad Gautam <drishtibachak@gmail.com>
    
    Stats:
    337     683     source/locale/ne/LC_MESSAGES/nvda.po
     1 file changed, 337 insertions(+), 683 deletions(-)

commit e67b7d990493425a0cd4d7e27108086a1b5e99e5
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 4 00:06:33 2019 +1000

    L10n updates for: nb_NO
    From translation svn revision: 46460
    
    Authors:
    David Hole <balubathebrave@gmail.com>
    Bjornar Seppola <bjornar@seppola.net>
    
    Stats:
    5       212     source/locale/nb_NO/LC_MESSAGES/nvda.po
     1 file changed, 5 insertions(+), 212 deletions(-)

commit 532d271bd34e01087f1067b27f2052267406bec1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 4 00:06:31 2019 +1000

    L10n updates for: my
    From translation svn revision: 46460
    
    Authors:
    Benedict La hkun <lkbenedict@gmail.com>
    
    Stats:
    259     751     source/locale/my/LC_MESSAGES/nvda.po
     1 file changed, 259 insertions(+), 751 deletions(-)

commit 39ddd8524a6d512448d9e5b5407979cf432a9783
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 4 00:06:28 2019 +1000

    L10n updates for: mn
    From translation svn revision: 46460
    
    Authors:
    Mongol NVDA-Translation <mongoliannvdatranslation@gmail.com>
    
    Stats:
    3       231     source/locale/mn/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 231 deletions(-)

commit d41bd668ae7b866ae9d9f55368dcc64a91616340
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 4 00:06:24 2019 +1000

    L10n updates for: mk
    From translation svn revision: 46460
    
    Authors:
    zvonimir stanecic <9a5dsz@gozaltech.org>
    Kiko Lazarev <kristijan.lazarev@gmail.com>
    
    Stats:
    3       230     source/locale/mk/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 230 deletions(-)

commit 85abd670700502e95e33c84de12534240cd5eae6
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 4 00:06:22 2019 +1000

    L10n updates for: lt
    From translation svn revision: 46460
    
    Authors:
    Paulius Leveris <paulius.leveris@gmail.com>
    Rimas Kudelis <rq@akl.lt>
    
    Stats:
    47      235     source/locale/lt/LC_MESSAGES/nvda.po
     1 file changed, 47 insertions(+), 235 deletions(-)

commit b32dde4dc23505772f312e74e282cdb723e3f606
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 4 00:06:19 2019 +1000

    L10n updates for: ko
    From translation svn revision: 46460
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    3       176     source/locale/ko/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 176 deletions(-)

commit 922da3ca4d0795bec7afb1a8df63d693251dc8b4
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 4 00:06:16 2019 +1000

    L10n updates for: kn
    From translation svn revision: 46460
    
    Authors:
    Siddalingeshwar Ingalagi <ingalagisiddu@gmail.com>
    
    Stats:
    452     562     source/locale/kn/LC_MESSAGES/nvda.po
     1 file changed, 452 insertions(+), 562 deletions(-)

commit ad9e7c4ae943e33189ba880704dfe9a301e2dcc1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 4 00:06:15 2019 +1000

    L10n updates for: kmr
    From translation svn revision: 46460
    
    Authors:
    Imam Kahraman <imam.kahraman@googlemail.com>
    
    Stats:
    4       10      source/locale/kmr/LC_MESSAGES/nvda.po
     1 file changed, 4 insertions(+), 10 deletions(-)

commit 9470212885cba8041a7312baa71326ea4e183dc3
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 4 00:06:13 2019 +1000

    L10n updates for: ka
    From translation svn revision: 46460
    
    Authors:
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Goderdzi Gogoladze <goderdzigogoladze@gmail.com>
    
    Stats:
    48      223     source/locale/ka/LC_MESSAGES/nvda.po
     1 file changed, 48 insertions(+), 223 deletions(-)

commit aace1c6259843de23dea1e5a4b73c32dd61f6ce1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 4 00:06:09 2019 +1000

    L10n updates for: it
    From translation svn revision: 46460
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    3       228     source/locale/it/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 228 deletions(-)

commit e2b3907891ddf5bbcddb1dadb9b06e0a30c4f6a7
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 4 00:06:06 2019 +1000

    L10n updates for: is
    From translation svn revision: 46460
    
    Authors:
    Birkir R. Gunnarsson <birkir.gunnarsson@gmail.com>
    Hlynur Hreinsson <hm.hreinsson@gmail.com>
    
    Stats:
    45      192     source/locale/is/LC_MESSAGES/nvda.po
     1 file changed, 45 insertions(+), 192 deletions(-)

commit f8a69379b19ad1522a786bf790d0db27d61f6e93
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 4 00:06:04 2019 +1000

    L10n updates for: hu
    From translation svn revision: 46460
    
    Authors:
    Aron OcsvAri <oaron@nvda.hu>
    
    Stats:
    3       111     source/locale/hu/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 111 deletions(-)

commit fc9397209b399e709e178a30f5fee24d710765a9
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 4 00:06:01 2019 +1000

    L10n updates for: hr
    From translation svn revision: 46460
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Tea Turkovic <tturkovi@gmail.com>
    
    Stats:
    3       231     source/locale/hr/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 231 deletions(-)

commit 3c005a83f9d0f1a6d00a2271118f3fbe50360614
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 4 00:05:59 2019 +1000

    L10n updates for: hi
    From translation svn revision: 46460
    
    Authors:
    dipendra.lists@gmail.com
    Doc Mehta <joyofinspiring@gmail.com>
    
    Stats:
    348     645     source/locale/hi/LC_MESSAGES/nvda.po
     1 file changed, 348 insertions(+), 645 deletions(-)

commit de70cb793f1c99a3cd21b6b302627e3ef4393ee4
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 4 00:05:57 2019 +1000

    L10n updates for: he
    From translation svn revision: 46460
    
    Authors:
    Shmuel Naaman <shmuel_naaman@yahoo.com>
    Afik Sofir <afik.sofer@gmail.com>
    
    Stats:
    3       222     source/locale/he/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 222 deletions(-)

commit c21849f23d09b93f5caa1465b007673f7a01b13f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 4 00:05:55 2019 +1000

    L10n updates for: gl
    From translation svn revision: 46460
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    
    Stats:
    3       231     source/locale/gl/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 231 deletions(-)

commit d1717ca9201db363bdc7fadb9f7e3640688c21a2
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 4 00:05:52 2019 +1000

    L10n updates for: ga
    From translation svn revision: 46460
    
    Authors:
    Cearbhall OMeadhra <cearbhall.omeadhra@blbc.ie>
    Ronan McGuirk <ronan.p.mcguirk@gmail.com>
    Kevin Scannell <kscanne@gmail.com>
    
    Stats:
    3       226     source/locale/ga/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 226 deletions(-)

commit ce28af553621c307690e96e44249a362cf51cb8f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 4 00:05:51 2019 +1000

    L10n updates for: fr
    From translation svn revision: 46460
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    3       36      source/locale/fr/LC_MESSAGES/nvda.po
    8       8       source/locale/fr/symbols.dic
     2 files changed, 11 insertions(+), 44 deletions(-)

commit 678af860503b0b65002aeb4ae611c1fc06a9a5e6
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 4 00:05:47 2019 +1000

    L10n updates for: fi
    From translation svn revision: 46460
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    3       233     source/locale/fi/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 233 deletions(-)

commit 34fc46494caefe001257c85f1fc65707fb4024c2
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 4 00:05:44 2019 +1000

    L10n updates for: fa
    From translation svn revision: 46460
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    448     797     source/locale/fa/LC_MESSAGES/nvda.po
     1 file changed, 448 insertions(+), 797 deletions(-)

commit 427b858c3e15f77f1d7afd450626ecdd0b735202
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 4 00:05:40 2019 +1000

    L10n updates for: es
    From translation svn revision: 46460
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    3       231     source/locale/es/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 231 deletions(-)

commit 7da605d058123ab0ceea00bec7bad7f576e6724e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 4 00:05:36 2019 +1000

    L10n updates for: es_CO
    From translation svn revision: 46460
    
    Authors:
    Jorge Zarache <reydelasmaquinas@outlook.com>
    
    Stats:
    46      219     source/locale/es_CO/LC_MESSAGES/nvda.po
     1 file changed, 46 insertions(+), 219 deletions(-)

commit dd4910795849a7f6971a6872a9c20dd267e7e8d0
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 4 00:05:33 2019 +1000

    L10n updates for: el
    From translation svn revision: 46460
    
    Authors:
    Irene Nakas <irnakas@gmail.com>
    Nikos Demetriou <nikosdemetriou@googlemail.com>
    access@e-rhetor.com
    
    Stats:
    3       230     source/locale/el/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 230 deletions(-)

commit e73401632077a6619a98a5c93b9e97532f4a541a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 4 00:05:31 2019 +1000

    L10n updates for: de
    From translation svn revision: 46460
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    
    Stats:
    2       5       source/locale/de/LC_MESSAGES/nvda.po
    6       6       user_docs/de/userGuide.t2t
     2 files changed, 8 insertions(+), 11 deletions(-)

commit 8b46f17bfe584a28ab07e1ce0bfb726997f84c08
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 4 00:05:27 2019 +1000

    L10n updates for: de_CH
    From translation svn revision: 46460
    
    Authors:
    Robert Hänggi <aarjay.robert@gmail.com>
    
    Stats:
    47      239     source/locale/de_CH/LC_MESSAGES/nvda.po
     1 file changed, 47 insertions(+), 239 deletions(-)

commit c91df6b0882431f3042596cd2f95ed1a993deaa8
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 4 00:05:24 2019 +1000

    L10n updates for: da
    From translation svn revision: 46460
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    2       228     source/locale/da/LC_MESSAGES/nvda.po
     1 file changed, 2 insertions(+), 228 deletions(-)

commit 4388c9d0cda855ec408bfc7e7fe37252d7a6152c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 4 00:05:22 2019 +1000

    L10n updates for: cs
    From translation svn revision: 46460
    
    Authors:
    Martina Letochova <letochova@seznam.cz>
    
    Stats:
    159     225     source/locale/cs/LC_MESSAGES/nvda.po
     1 file changed, 159 insertions(+), 225 deletions(-)

commit f8bb7b9932f22a30994c93db1d04e88063847de1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 4 00:05:19 2019 +1000

    L10n updates for: ca
    From translation svn revision: 46460
    
    Authors:
    Ruben Alcaraz <ruben.hangar1.8@gmail.com>
    Dr. Mireia Ribera <mireia.ribera@gmail.com>
    Santi Moese <santispock@gmail.com>
    Marina Salse Rovira <salse@ub.edu>
    
    Stats:
    2       231     source/locale/ca/LC_MESSAGES/nvda.po
     1 file changed, 2 insertions(+), 231 deletions(-)

commit 64268710e9a6473bc078599bee049e5f2605cbef
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 4 00:05:16 2019 +1000

    L10n updates for: bg
    From translation svn revision: 46460
    
    Authors:
    Zahari Yurukov <zahari.yurukov@gmail.com>
    Kostadin Kolev <k_kolev1985@mail.bg>
    
    Stats:
    5       230     source/locale/bg/LC_MESSAGES/nvda.po
     1 file changed, 5 insertions(+), 230 deletions(-)

commit 2c7f85cc1f7b9f9c22da63b483b021656cd33cba
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 4 00:05:12 2019 +1000

    L10n updates for: ar
    From translation svn revision: 46460
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    346     630     source/locale/ar/LC_MESSAGES/nvda.po
     1 file changed, 346 insertions(+), 630 deletions(-)

commit 5bdb297d938d9454c201007766fc4c1b39bdd102
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 4 00:05:07 2019 +1000

    L10n updates for: an
    From translation svn revision: 46460
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    
    Stats:
    2       227     source/locale/an/LC_MESSAGES/nvda.po
     1 file changed, 2 insertions(+), 227 deletions(-)

commit cf65c841aeb46ba30081181215a16e4a4c6363cd
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 4 00:05:05 2019 +1000

    L10n updates for: am
    From translation svn revision: 46460
    
    Authors:
    KETEMA ZEREGAW <kzeregaw@msn.com>
    Dr. Tamru E. Belay <g.braille@sympatico.ca>
    
    Stats:
    44      76      source/locale/am/LC_MESSAGES/nvda.po
     1 file changed, 44 insertions(+), 76 deletions(-)

commit 83a56ed9ed41246118996a285e2c6e262919597f
Merge: 06bb86739 9e70feea4
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 28 00:06:47 2018 +1000

    Update translations.
    
    From translation svn revision: 46393

commit 9e70feea483c22d3c4600e8b9b0269e867ad5809
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 28 00:06:25 2018 +1000

    L10n updates for: ru
    From translation svn revision: 46393
    
    Authors:
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    7       7       source/locale/ru/LC_MESSAGES/nvda.po
     1 file changed, 7 insertions(+), 7 deletions(-)

commit ce1051b313ff9c3ff7c064ea0867d77d9ad54582
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 28 00:05:57 2018 +1000

    L10n updates for: kmr
    From translation svn revision: 46393
    
    Authors:
    Imam Kahraman <imam.kahraman@googlemail.com>
    
    Stats:
    254     83      source/locale/kmr/LC_MESSAGES/nvda.po
     1 file changed, 254 insertions(+), 83 deletions(-)

commit 15d3640ba81eda14d45665fcb054a84a74d52e40
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 28 00:05:41 2018 +1000

    L10n updates for: ga
    From translation svn revision: 46393
    
    Authors:
    Cearbhall OMeadhra <cearbhall.omeadhra@blbc.ie>
    Ronan McGuirk <ronan.p.mcguirk@gmail.com>
    Kevin Scannell <kscanne@gmail.com>
    
    Stats:
    61      32      source/locale/ga/LC_MESSAGES/nvda.po
     1 file changed, 61 insertions(+), 32 deletions(-)

commit 5a3cd11d0521c7f38d9e35832b6527c0ce3bae5a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 28 00:05:37 2018 +1000

    L10n updates for: fi
    From translation svn revision: 46393
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    11      12      source/locale/fi/LC_MESSAGES/nvda.po
    2       2       user_docs/fi/changes.t2t
    14      14      user_docs/fi/userGuide.t2t
     3 files changed, 27 insertions(+), 28 deletions(-)

commit f6cd02d2e9e824832aa229fb846d06774f74b6ea
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Fri Dec 21 10:55:21 2018 +0100

    Fix module of dynamic NVDAObject classes (PR #9097)

commit 06bb867393bfb9e3621b9e5095c76c4f8c1d526f
Merge: 888e85c0c 66d074825
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 21 00:06:52 2018 +1000

    Update translations.
    
    From translation svn revision: 46280

commit 66d074825316ed4c5b174c41d4b676842dd77cf7
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 21 00:06:45 2018 +1000

    L10n updates for: vi
    From translation svn revision: 46280
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    2       2       source/locale/vi/LC_MESSAGES/nvda.po
    40      0       user_docs/vi/changes.t2t
     2 files changed, 42 insertions(+), 2 deletions(-)

commit f4625a63056e9fb89ffd9ab9029a4b3f7fb0a1f8
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 21 00:06:33 2018 +1000

    L10n updates for: so
    From translation svn revision: 46280
    
    Authors:
    Othmanothman <othman82@hotmail.com>
    
    Stats:
    22      9       source/locale/so/LC_MESSAGES/nvda.po
     1 file changed, 22 insertions(+), 9 deletions(-)

commit 9e5e2ce3f35ec7a83d4e041867bb6944f82e6566
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 21 00:06:22 2018 +1000

    L10n updates for: pt_PT
    From translation svn revision: 46280
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    4       4       source/locale/pt_PT/LC_MESSAGES/nvda.po
     1 file changed, 4 insertions(+), 4 deletions(-)

commit a16a87686bdaafc5defd2a1df8b92df0cbb711ea
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 21 00:05:26 2018 +1000

    L10n updates for: de
    From translation svn revision: 46280
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    
    Stats:
    146     143     source/locale/de/LC_MESSAGES/nvda.po
     1 file changed, 146 insertions(+), 143 deletions(-)

commit d7e98c05833b28bb2641fa938ed1b6f32ff2eca2
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Thu Dec 20 12:12:49 2018 +0100

    Provide api level and compat to build (PR #9095)
    
    * Introduce API versions
    * Send APIVersion and APICompatTo to exbi
    Data is sent with other JSON data in build variables.

commit 7e54d8bc34942aaeadd3edd5065821084bd97616
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Wed Dec 19 12:59:37 2018 -0800

    Pending update installation: obtain version tuple from update tuple instead of going through version info module (PR #9076)
    
    Fixes #9075
    
    Possible oversight from add-on compatibility checks: 'instlal pending update' fails becasue version tuple is derived from version info module when in fact version tuple can be retrieved from update check/pending update state. Thus use the latter so confirmation dialog can work.

commit 5e710dac01142bbbf68d12fe9ea92fdd5a816f3e
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Mon Dec 17 04:48:36 2018 -0800

    Logging: add an option to turn logging off altogether (PR #8596)
    
    Closes #8516
    
    - Log level 100 can be used to switch to null logger if no logging flag is turned on via command-line switches.
    - Add a new command-line switch (--no-logging) that'll completely turn off logging functionality.

commit 54a0054512e27d71cefe26bd7c221371ee2e38c2
Author: André-Abush Clause <dev@andreabc.net>
Date:   Fri Dec 14 12:34:23 2018 +0100

    Disable Welcome Dialog entry in the NVDA menu on secure screens (PR #8536)
    
    Fixes #8520
    * Disable Welcome Dialog entry in the NVDA menu on secure screens
    * Update changes file for PR #8536

commit c25104b5da1c5bbc6225f1bfb25be335ccc6c1a2
Merge: 2d8f08a18 888e85c0c
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Dec 14 13:57:40 2018 +1000

    Merge branch 'beta'

commit 888e85c0c5eac7b17b5816e4d3ce2a6b2d3b4cd7
Merge: f4b3ccc64 036e80d77
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Dec 14 13:56:38 2018 +1000

    Merge branch 'rc' into beta

commit 036e80d7727f7984b8ccac840f19f46f5d543228
Merge: cfe70c416 f4b3ccc64
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Dec 14 08:34:17 2018 +1000

    Merge branch 'beta' into rc

commit 2d8f08a184e8d2b803a8941e964faee830baffce
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Thu Dec 13 15:11:41 2018 +0100

    AutoPropertyObject: support abstract and class properties (PR #8393)
    
    Closes #8294
    Fixes #8652
    Closes #8658
    
    Properties and methods within classes can now be marked as abstract in NVDA. These classes will raise an error if instantiated.
    See PR #8393 for full description.

commit f4b3ccc6499f2be9b7ef5756d963f575c751c3a4
Merge: 5f03eed41 00ae24ed1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 14 00:07:03 2018 +1000

    Update translations.
    
    From translation svn revision: 46134

commit 00ae24ed1a83ca9b31903dd8b550771d92b4cde5
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 14 00:07:02 2018 +1000

    L10n updates for: zh_TW
    From translation svn revision: 46134
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    37      34      source/locale/zh_TW/characterDescriptions.dic
     1 file changed, 37 insertions(+), 34 deletions(-)

commit 6ddff57e32021c332ef0c13f6eac086b2d456525
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 14 00:06:55 2018 +1000

    L10n updates for: vi
    From translation svn revision: 46134
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    34      2       source/locale/vi/LC_MESSAGES/nvda.po
     1 file changed, 34 insertions(+), 2 deletions(-)

commit 439760d1e292771059a75c8691c8ff7dbf0b3bf3
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 14 00:06:40 2018 +1000

    L10n updates for: so
    From translation svn revision: 46134
    
    Authors:
    Othmanothman <othman82@hotmail.com>
    
    Stats:
    31      13      source/locale/so/LC_MESSAGES/nvda.po
     1 file changed, 31 insertions(+), 13 deletions(-)

commit 1d29ea5569a4cfcb36450b3731352b33f10b89a6
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 14 00:06:35 2018 +1000

    L10n updates for: ru
    From translation svn revision: 46134
    
    Authors:
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    4       4       source/locale/ru/LC_MESSAGES/nvda.po
     1 file changed, 4 insertions(+), 4 deletions(-)

commit 387a2507f5874d7954abe89dae8e905d6d598a52
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 14 00:05:48 2018 +1000

    L10n updates for: gl
    From translation svn revision: 46134
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    
    Stats:
    1       1       user_docs/gl/userGuide.t2t
     1 file changed, 1 insertion(+), 1 deletion(-)

commit e2e71b64bd9173aa4b8890e1b007f17df910944e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 14 00:05:36 2018 +1000

    L10n updates for: es
    From translation svn revision: 46134
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    1       1       user_docs/es/userGuide.t2t
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 7274f9ba75d1805a2d154ae2df4d3a860072430f
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Thu Dec 13 14:45:43 2018 +0100

    Add command line parameter for silent installations to disable NVDA at the logon screen and enhance portable-path command line behavior (PR #8623)
    
    Fixes #8574
    
    ### Summary of the issue:
    1. In the current situation, it is not possible to specify the start at logon behaviour from the command line. This issue is relevant for system administrators who want to install NVDA silently on a multi user system.
    2. When starting NVDA with the `--portable-path` command line parameter and creating a portable copy from the GUI, the provided portable path isn't shown in the gui as one might expect.
    
    ### Description of how this pull request fixes the issue:
    1. Added a `--enable-start-on-logon` command line parameter. It should be specified as `--enable-start-on-logon=True` or `--enable-start-on-logon=False`, just `--enable-start-on-logon` will show an error message. Alternative supported values are `yes/no`, `on/off`, `1/0` (i.e.  this option behaves as `configobj boolean`). NVDA's behaviour is to default this to `True`
    2. When the `--portable-path` parameter is provided at NVDA start, the provided path is now pre-filled in in the portable copy creation dialog.

commit cfe70c416c7a28dccb1b184b3df38eac19d0ef47
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Wed Dec 12 23:44:41 2018 +0100

    Catch exceptions in initial focus after braille display load (#9054)
    
    * Catch exceptions in initial focus after braille display load
    
    * Log a debugWarning instead of an error
    
    * Revert accidental change of liblouis dependency

commit 12fc30a2a9eeedacde1c66313456d37f51fcc87d
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Thu Dec 13 08:25:13 2018 +1000

    Stop crashing hh.exe when passing strings to MSHTML (#9052)
    
    * MSHTML vbufBackend: when accessing attributes on HTML DOM nodes, make sure to pass in the attribute name as a bstr as the COM method expects, otherwise the document host process can crash.
    
    * appveyor: build branches with prefix of try-release- as optimized (release) builds.

commit 757780410641ee941f5740491bc5fb728ab13247
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Tue Dec 11 13:33:43 2018 +0100

    Improved text location information for UIA, Word and compound text infos (PR #8572)
    
    Builds upon locationHelper and is the predecessor of another huge pr that will implement focus and browse mode caret highlighting in the core of NVDA. It will also add a framework that lays the foundation to implement support for third party magnifier software or APIs in the future. See the PR description for more information.
    * Update changes file for PR #8572

commit c3b061bd10ab3f4a0fea56ffd66edf3489369980
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue Dec 11 13:00:28 2018 +0100

    Fix line endings of changes file. (PR #9048)
    
    Merge commit 3e8d27e6b714cae9e516fd466250ed1f2223fe27 introduced linux line endings (LF) to the changes.t2t file.
    This commit restores them to windows line endings (CRLF).

commit e3be11152c56736e2987e4e5555870aa23658bc3
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Mon Dec 10 22:23:47 2018 -0800

    Incompatible add-ons dialog: center the screen, hot keys for Yes/No buttons, python 3 compatible imports (PR #9033)
    
    Incompatible add-ons:
    * center the dialog window. Re #9030.
    * add hot keys for Yes and No buttons. Re #9030
    * proper relative imports for DPI scaling helper, GUI Helper and NvDA Controls.
    
    Python 3 transition notes: use relative import to import modules from the same GUI directory.

commit 19bb21c2e1e4d6cc15f2d4223d1fc5380ad88370
Merge: 83b3e839e 5f03eed41
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Dec 10 10:29:42 2018 +1000

    Merge branch 'beta'

commit 5f03eed416d9c457ced4d5a8851168afa89cea9e
Merge: 3d039ba45 0e0079f4a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Dec 10 10:06:09 2018 +1000

    Update translations.
    
    From translation svn revision: 46053

commit 0e0079f4a5d060d35453c4a0d4706ddfaf78c897
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Dec 10 10:06:04 2018 +1000

    L10n updates for: zh_CN
    From translation svn revision: 46053
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    
    Stats:
    1       1       source/locale/zh_CN/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 429811aaff68b8bdf1f9c139a398f9bf515ccd14
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Dec 10 10:06:00 2018 +1000

    L10n updates for: vi
    From translation svn revision: 46053
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    22      22      source/locale/vi/LC_MESSAGES/nvda.po
    574     0       user_docs/vi/changes.t2t
     2 files changed, 596 insertions(+), 22 deletions(-)

commit 24d5f82e437f6e25b5c36a26f7fcfb9f75f6a662
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Dec 10 10:05:57 2018 +1000

    L10n updates for: uk
    From translation svn revision: 46053
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    2       1       source/locale/uk/symbols.dic
     1 file changed, 2 insertions(+), 1 deletion(-)

commit b815e09abccdaed155c874587aa5df01b6c80d8d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Dec 10 10:05:46 2018 +1000

    L10n updates for: so
    From translation svn revision: 46053
    
    Authors:
    Othmanothman <othman82@hotmail.com>
    
    Stats:
    18      3       source/locale/so/LC_MESSAGES/nvda.po
     1 file changed, 18 insertions(+), 3 deletions(-)

commit a6a475765e29622058e3b4799b819cc7af8cb0e5
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Dec 10 10:05:44 2018 +1000

    L10n updates for: sk
    From translation svn revision: 46053
    
    Authors:
    Ondrej Rosik <ondrej.rosik@gmail.com>
    Peter Vagner <peter.v@datagate.sk>
    Jan Kulik <jan.kulik.szsle@outlook.sk>
    
    Stats:
    47      1       user_docs/sk/changes.t2t
     1 file changed, 47 insertions(+), 1 deletion(-)

commit 1062b740bd3899df61714cf86b528ef41dd7869d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Dec 10 10:05:41 2018 +1000

    L10n updates for: ru
    From translation svn revision: 46053
    
    Authors:
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    70      103     source/locale/ru/LC_MESSAGES/nvda.po
     1 file changed, 70 insertions(+), 103 deletions(-)

commit c909e84b9d1cbdabbe53193837b7cb43b7758016
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Dec 10 10:05:31 2018 +1000

    L10n updates for: pt_BR
    From translation svn revision: 46053
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    22      22      source/locale/pt_BR/LC_MESSAGES/nvda.po
    4       4       user_docs/pt_BR/userGuide.t2t
     2 files changed, 26 insertions(+), 26 deletions(-)

commit 98c0d9596541d8ba55a1661b32fdddf01b5e282a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Dec 10 10:05:18 2018 +1000

    L10n updates for: mn
    From translation svn revision: 46053
    
    Authors:
    Mongol NVDA-Translation <mongoliannvdatranslation@gmail.com>
    
    Stats:
    17      17      user_docs/mn/changes.t2t
     1 file changed, 17 insertions(+), 17 deletions(-)

commit bd7a881e4ebb267f2cd9d9966fe8db8e1fc14118
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Dec 10 10:05:11 2018 +1000

    L10n updates for: ko
    From translation svn revision: 46053
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    6       6       source/locale/ko/LC_MESSAGES/nvda.po
    11      7       user_docs/ko/changes.t2t
     2 files changed, 17 insertions(+), 13 deletions(-)

commit 36183caf823a862b2cc396c00f0cacd3424cad6d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Dec 10 10:05:03 2018 +1000

    L10n updates for: it
    From translation svn revision: 46053
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    15      8       user_docs/it/userGuide.t2t
     1 file changed, 15 insertions(+), 8 deletions(-)

commit ee4e1a946f30c81fa6457814507b87527917add3
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Dec 10 10:04:48 2018 +1000

    L10n updates for: fr
    From translation svn revision: 46053
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    2       2       source/locale/fr/LC_MESSAGES/nvda.po
     1 file changed, 2 insertions(+), 2 deletions(-)

commit 4bc78b82bc245cfeaafaca0f3d43245491c6a8cf
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Dec 10 10:04:42 2018 +1000

    L10n updates for: fa
    From translation svn revision: 46053
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    7       7       source/locale/fa/LC_MESSAGES/nvda.po
    8       8       user_docs/fa/changes.t2t
    20      20      user_docs/fa/userGuide.t2t
     3 files changed, 35 insertions(+), 35 deletions(-)

commit ccb869a6b59f1321dabcd1c7ee7f5b9e6ef9653a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Dec 10 10:04:33 2018 +1000

    L10n updates for: el
    From translation svn revision: 46053
    
    Authors:
    Irene Nakas <irnakas@gmail.com>
    Nikos Demetriou <nikosdemetriou@googlemail.com>
    access@e-rhetor.com
    
    Stats:
    61      34      source/locale/el/LC_MESSAGES/nvda.po
     1 file changed, 61 insertions(+), 34 deletions(-)

commit 74c83564bf8c88e481bba399b542fe4f6262ba31
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Dec 10 10:04:25 2018 +1000

    L10n updates for: da
    From translation svn revision: 46053
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    2       2       source/locale/da/LC_MESSAGES/nvda.po
    11      11      user_docs/da/userGuide.t2t
     2 files changed, 13 insertions(+), 13 deletions(-)

commit 411c62bb5ffa0b07ec34895d69149477ef3b6860
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Dec 10 10:04:14 2018 +1000

    L10n updates for: ar
    From translation svn revision: 46053
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    7       2       user_docs/ar/changes.t2t
     1 file changed, 7 insertions(+), 2 deletions(-)

commit 83b3e839e13a7d9afba595deaba888a5690698b7
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Sat Dec 8 13:21:32 2018 +1000

    Fall back to OneCore synth on Windows 10 if a 3rd party synth fails to load (#9025)
    
    * synthDriverHandler.setSynth: If a 3rd party synth fails to load, OneCore should be tried as one of the default synthesizers to fall back to on Windows 10.
    
    * Update what's new.

commit f663c30acdc9c665b004c8dab84c59f56f63a9fc
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Sat Dec 8 03:39:56 2018 +0100

    Fix ValueError on update (#9027)
    
    * Fix ValueError on update
    
    * Fix small typo in comment

commit 4f780c037501dd7daf1ce76342aa44978a1569d8
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Sat Dec 8 03:33:28 2018 +0100

    Fix small bug in IA2TextInfo.getTextRange when retrieving an empty range (#9029)
    
    * Fix small bug in IA2TextInfo.getTextRange when retrieving an empty range
    
    * Return early when expanding to a mouse unit and there is no text

commit 45e03f474a38eaddb958f653ec16da7029f03e1d
Author: André-Abush Clause <dev@andreabc.net>
Date:   Fri Dec 7 13:47:00 2018 +0100

    Improve restart confirmation dialog after changing interface language (PR #8537)
    
    Fixes for #6416
    
    Improve restart confirmation dialog after changing interface language

commit 0a5c7678c8a1854345e1a1398a0c2f4601d814a2
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Fri Dec 7 05:59:51 2018 +0100

    Process injected mouse events (#8459)
    
    * Handle mouse control from other applications
    
    * Update user guide
    
    * Make ignoreInjection context managers thread safe
    
    * Review actions, rewording of ignore mouse option
    
    * Add clarifying comment to KeyboardInputGesture.send
    
    * Add a new executeMouseEvent wrapper function within mouseHandler
    
    * Fix bad find/replace with an undesired uppercase n in the word injection
    
    * Use the new mouseHandler.executeMouseEvent wrapper
    
    * Update what's new.

commit 3d039ba4535acce80b9deccefd806572f65b6b50
Merge: 2640fdaa7 09d25d470
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 7 00:07:16 2018 +1000

    Update translations.
    
    From translation svn revision: 45923

commit 09d25d470a1ed18baab27b83f62581cf6be8399a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 7 00:07:14 2018 +1000

    L10n updates for: zh_TW
    From translation svn revision: 45923
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    11      6       source/locale/zh_TW/symbols.dic
    60      3       user_docs/zh_TW/changes.t2t
     2 files changed, 71 insertions(+), 9 deletions(-)

commit 8a06a8082a540c66131a0a4e94242ea4138f67fa
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 7 00:07:11 2018 +1000

    L10n updates for: zh_CN
    From translation svn revision: 45923
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    
    Stats:
    4       4       source/locale/zh_CN/LC_MESSAGES/nvda.po
    25      19      source/locale/zh_CN/characterDescriptions.dic
     2 files changed, 29 insertions(+), 23 deletions(-)

commit 5a07f779b2f48092f0735e2924deff73eb3b2429
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 7 00:07:07 2018 +1000

    L10n updates for: vi
    From translation svn revision: 45923
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    1       1       user_docs/vi/changes.t2t
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 5fff8bf4265f123e46241379dc5ba2449af8e96c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 7 00:06:53 2018 +1000

    L10n updates for: so
    From translation svn revision: 45923
    
    Authors:
    Othmanothman <othman82@hotmail.com>
    
    Stats:
    142     105     source/locale/so/LC_MESSAGES/nvda.po
     1 file changed, 142 insertions(+), 105 deletions(-)

commit 87f12cfb7748a37f86c57b0c8f26cd45f5f0e416
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 7 00:06:50 2018 +1000

    L10n updates for: sk
    From translation svn revision: 45923
    
    Authors:
    Ondrej Rosik <ondrej.rosik@gmail.com>
    Peter Vagner <peter.v@datagate.sk>
    
    Stats:
    50      25      source/locale/sk/LC_MESSAGES/nvda.po
    16      8       user_docs/sk/userGuide.t2t
     2 files changed, 66 insertions(+), 33 deletions(-)

commit 84d9215c50791e13886015f33473507ed1c0a51c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 7 00:06:43 2018 +1000

    L10n updates for: ro
    From translation svn revision: 45923
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    
    Stats:
    7       2       user_docs/ro/changes.t2t
    19      14      user_docs/ro/userGuide.t2t
     2 files changed, 26 insertions(+), 16 deletions(-)

commit 439ca917a6eee9f25a5dfb73b83e451befe35587
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 7 00:06:34 2018 +1000

    L10n updates for: pl
    From translation svn revision: 45923
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <killer@tyflonet.com>
    
    Stats:
    17      9       user_docs/pl/userGuide.t2t
     1 file changed, 17 insertions(+), 9 deletions(-)

commit 436a4cebc5ca2a9836f5afd6a376f34d0851e0f2
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 7 00:06:19 2018 +1000

    L10n updates for: mk
    From translation svn revision: 45923
    
    Authors:
    zvonimir stanecic <9a5dsz@gozaltech.org>
    Kiko Lazarev <kristijan.lazarev@gmail.com>
    
    Stats:
    172     158     source/locale/mk/LC_MESSAGES/nvda.po
     1 file changed, 172 insertions(+), 158 deletions(-)

commit 53af4225387f942f90e2b4e555da8320c5e38e78
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 7 00:06:15 2018 +1000

    L10n updates for: ko
    From translation svn revision: 45923
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    7       7       user_docs/ko/changes.t2t
     1 file changed, 7 insertions(+), 7 deletions(-)

commit b31ae2844e897f94c4aa52577d9c3acbd173bc82
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 7 00:06:11 2018 +1000

    L10n updates for: ja
    From translation svn revision: 45923
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    2       54      source/locale/ja/LC_MESSAGES/nvda.po
     1 file changed, 2 insertions(+), 54 deletions(-)

commit 78d7c8ccb3ef83df9489946ab2307c0979d8c9ae
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 7 00:06:06 2018 +1000

    L10n updates for: it
    From translation svn revision: 45923
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    48      0       user_docs/it/changes.t2t
     1 file changed, 48 insertions(+)

commit cdbdea66f3a975bdecaa39860216b7f9100737ff
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 7 00:05:56 2018 +1000

    L10n updates for: he
    From translation svn revision: 45923
    
    Authors:
    Shmuel Naaman <shmuel_naaman@yahoo.com>
    Afik Sofir <afik.sofer@gmail.com>
    
    Stats:
    58      35      source/locale/he/LC_MESSAGES/nvda.po
     1 file changed, 58 insertions(+), 35 deletions(-)

commit 8bfa1ec6ae09c3d64e7e40de00b776a28b29e4d9
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 7 00:05:48 2018 +1000

    L10n updates for: fi
    From translation svn revision: 45923
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    4       4       source/locale/fi/LC_MESSAGES/nvda.po
    2       2       user_docs/fi/changes.t2t
    5       5       user_docs/fi/userGuide.t2t
     3 files changed, 11 insertions(+), 11 deletions(-)

commit 7c92077c94e2846a710410eec650c86a2741834b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 7 00:05:41 2018 +1000

    L10n updates for: es
    From translation svn revision: 45923
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    39      38      source/locale/es/LC_MESSAGES/nvda.po
     1 file changed, 39 insertions(+), 38 deletions(-)

commit 9fefa2db56da4fbf6105c25972a98c5a764619d1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 7 00:05:33 2018 +1000

    L10n updates for: de
    From translation svn revision: 45923
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    
    Stats:
    4       2       user_docs/de/changes.t2t
     1 file changed, 4 insertions(+), 2 deletions(-)

commit ce108701cb7fb0cbeecb117f21a9303370248cd7
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 7 00:05:27 2018 +1000

    L10n updates for: da
    From translation svn revision: 45923
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    2       2       source/locale/da/LC_MESSAGES/nvda.po
     1 file changed, 2 insertions(+), 2 deletions(-)

commit 7d2315dfc525f5d5d5f3adaf9489afc92cb390b2
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 7 00:05:24 2018 +1000

    L10n updates for: cs
    From translation svn revision: 45923
    
    Authors:
    Martina Letochova <letochova@seznam.cz>
    
    Stats:
    30      2       source/locale/cs/LC_MESSAGES/nvda.po
     1 file changed, 30 insertions(+), 2 deletions(-)

commit c2f676e69b20b40ad6862e86d2aa6802df8e79f8
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 7 00:05:14 2018 +1000

    L10n updates for: ar
    From translation svn revision: 45923
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    61      33      source/locale/ar/LC_MESSAGES/nvda.po
     1 file changed, 61 insertions(+), 33 deletions(-)

commit 19bfb86266f1b7045f37430d7cd0d1b8eb3de2d2
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 7 00:05:08 2018 +1000

    L10n updates for: an
    From translation svn revision: 45923
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    
    Stats:
    33      1       source/locale/an/LC_MESSAGES/nvda.po
    56      0       user_docs/an/changes.t2t
     2 files changed, 89 insertions(+), 1 deletion(-)

commit a25455119699a45b0adc911130d0f7ae4164d42a
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Thu Dec 6 12:11:02 2018 +0100

    Allow add-ons to supply version compatibility information in manifests, and use this information to disable incompatible add-ons (PR #8006)
    
    Closes #6275
    
    * Allow setting minimum required NVDA version and last tested NVDA version in an add-on manifest, and use them to block add-ons from loading if desired.
    * Move the version info retrieval code from appModuleHandler to fileUtils
    * moved addonHandler into a package
    * Fix scaling issues in the addon gui
    * GUI additions:
       * Show unknown compatibility addons dialog on startup if there are addons already installed that are untested.
       * When attempting to install an incompatible / untested addon, a prompt is shown to block / confirm the installation.
       * When attempting to install a new version of NVDA with untested addons present, the user is warned that these addons will be disabled after installation. The untested addons can be listed, and any that should not be disabled can be flagged.
    * During install of NVDA the user must check a box to confirm that they understand that their nvda installation contains addons that may not have been tested and will be disabled after the installation of NVDA.
    * Addon manager GUI changes:
      * Buttons that relate to the currently selected add-on are arranged vertically to the right of the add-on list
      * Buttons that relate to the addon manager more generally are arranged horizontally at the bottom of the dialog.
    * Fixed a bug in AutoWidthColumnCheckListCtrl which was stopping NVDA from being able to exit
    * Update userguide and developerGuide
    * Update changes file for #8006

commit 7411874ea47cdabbd44e59473c9bd65087e46b04
Merge: ec877feab 2640fdaa7
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Dec 6 18:43:00 2018 +1000

    Merge branch 'beta'

commit 2640fdaa7b97b7cc580223670a2a3c2b8382acdd
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Thu Dec 6 18:18:29 2018 +1000

    UIA in MS Word: don't ignore tables with blank cells (#9022)
    
    * UIA WordDocumentTextInfo: remove custom implementation of isCollapsed property. It is no longer needed in recent versions of MS Word, and in fact it was causing tables to not be reported when positioned on a blank cell.
    
    * UIATextInfo.UIAElementAtStart: catch a COMError when fetching children. Seen at the bottom of MS Word documents.

commit ec877feab252a8de7ebf4634562d7ba75fd3a9c1
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Thu Dec 6 03:48:12 2018 +0100

    Update liblouis to version 3.8, add debug logging functionality and cleanup old workarounds that are no longer necessary (#9015)
    
    * Update liblouis to 3.8
    
    * New and updated braille tables
    
    * Sign liblouis with the NV Access certificate, so NVDA builds of liblouis can be identified as such
    
    * Update to commit 90a808bf which fixes a bug in the python wrapper
    
    * Add a louis helper module
    
    * Typo in logHandler
    
    * Update configSpec
    
    * Integrate louisHelper into the braille module
    
    * Move some logic from braille to louisHelper
    
    * Revert commit 79940e474786a0bfe417528138abf7ef7a2eace5 as testing reveals that this issue does no longer exist
    
    * Remove another workaround for bugs that are fixed upstream
    
    * louisHelper review action: log at level debug
    
    * Update what's new and correct comment.

commit ddab676f800a72f7b9d54b870b95e30fc79e11ea
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Wed Dec 5 12:51:54 2018 +0100

    Update issue templates (#9000)
    
    * Update issue templates
    
    Update github issue templates so that feature requests can be provided.

commit f52d2728332620c26d9946b28472400046dd9c4f
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Wed Dec 5 05:39:07 2018 +0100

    Allow building with other Visual Studio 2017 editions (eg. Professional) (#8940)
    
    * Allow building with other Visual Studio 2017 editions (eg. Professional) (#8939)
    
    * Use SCons to determine MSVC installation path (#8939)
    
    * Fetch VC version from `env` (#8939)
    
    * Update what's new.

commit d8c65fb3654e36a3ec5540d34c5f81737a120f4c
Merge: db3a65962 0a852bdea
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Dec 3 18:40:11 2018 +1000

    Merge branch 'beta'

commit 0a852bdeab5556c9c0adb7e4146ebbc68542b58b
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Mon Dec 3 08:18:54 2018 +0100

    Fix redundant not selected announcements for Libre Office Calc (#8989)
    
    * Fix redundant not selected announcements for Libre Office Calc
    
    * Revert change to base NVDAObject
    
    * Override getSelectedItemsCount on Symphony tables

commit 39c700428d051d9ac4da00fea025cddfc2663d02
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Mon Dec 3 16:08:29 2018 +1000

    WordDocumentTextInfo.locationText: MS Word can only give accurate distances (taking paragraph indenting into account) when directly querying the selection object. (#9008)
    
    Therefore, only support this property when the range is equal to the selection, and query the selection object directly.

commit db3a65962ea5733988887401a607c5207764c8c3
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Fri Nov 30 10:16:41 2018 +0100

    Speak ordinal and hex value of 32 bit unicode characters (#8995)

commit fb6807598f15942ba4fe50d6c22d177b718b341d
Merge: 8f77dc978 296b0c3db
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Nov 30 09:25:21 2018 +1000

    Merge branch 'beta'

commit 296b0c3db47b026855091cbacd38dbefc21a55f0
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Fri Nov 30 00:14:07 2018 +0100

    Make sure that user symbols without a replacement are properly ignored (#8932)

commit 8f77dc9783acc2a2f824755765844e0820954d7d
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Thu Nov 29 23:55:56 2018 +0100

    Offsets textInfos: treat 32 bit unicode characters consuming two UTF-16 code units as one character instead of two (#8953)
    
    * OffsetsTextInfo: When retrieving characters, support Unicode code points beyond 16 bits.
    
    * Use constants for surrogates
    
    * Review actions based on code snippet by @jcsteh
    
    * Unit tests
    
    * UTF-8 without BOM for tests
    
    * Move range comments
    
    * Update changes

commit cebd17455adffac54d04b61604589114ee806414
Author: Łukasz Golonka <wulfryk1@gmail.com>
Date:   Thu Nov 29 23:41:56 2018 +0100

    Add Somali to the languageHandler manually, because it is not recognized on Windows 7. Fix for https://github.com/nvaccess/nvda/issues/8984 (#8986)

commit a114de41a9e692a5dfee02282bd55b74ece06db5
Merge: 27d100d8c 4d0caa579
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 30 00:07:05 2018 +1000

    Update translations.
    
    From translation svn revision: 45668

commit 4d0caa5797aed2ba1cdfefa3c53869b9268fdd10
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 30 00:07:03 2018 +1000

    L10n updates for: zh_TW
    From translation svn revision: 45668
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    12      9       source/locale/zh_TW/LC_MESSAGES/nvda.po
    78      70      source/locale/zh_TW/characterDescriptions.dic
    2       2       user_docs/zh_TW/userGuide.t2t
     3 files changed, 92 insertions(+), 81 deletions(-)

commit fe596d0d6c59a282b22f0c09bfe3b69688a8c897
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 30 00:06:59 2018 +1000

    L10n updates for: zh_HK
    From translation svn revision: 45668
    
    Authors:
    Eric Yip <ericycy@gmail.com>
    
    Stats:
    58      32      source/locale/zh_HK/LC_MESSAGES/nvda.po
     1 file changed, 58 insertions(+), 32 deletions(-)

commit 67e3b52950baf2696524506050a0a1e2439ce7d6
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 30 00:06:58 2018 +1000

    L10n updates for: zh_CN
    From translation svn revision: 45668
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    
    Stats:
    3       3       source/locale/zh_CN/characterDescriptions.dic
    2       1       user_docs/zh_CN/changes.t2t
    1       1       user_docs/zh_CN/userGuide.t2t
     3 files changed, 6 insertions(+), 5 deletions(-)

commit 70d8c00884b7a64c4f10e1bba1feeb55a85896bb
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 30 00:06:55 2018 +1000

    L10n updates for: vi
    From translation svn revision: 45668
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    2       3       source/locale/vi/symbols.dic
    4       296     user_docs/vi/changes.t2t
    2       2       user_docs/vi/userGuide.t2t
     3 files changed, 8 insertions(+), 301 deletions(-)

commit f578a9d4d44a57b6e323d01770f660fb822895c8
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 30 00:06:51 2018 +1000

    L10n updates for: tr
    From translation svn revision: 45668
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    2       2       user_docs/tr/changes.t2t
     1 file changed, 2 insertions(+), 2 deletions(-)

commit 87e0973d82d804a8a776b309450f32305774aaf8
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 30 00:06:45 2018 +1000

    L10n updates for: sr
    From translation svn revision: 45668
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    2       3       user_docs/sr/changes.t2t
     1 file changed, 2 insertions(+), 3 deletions(-)

commit 44a89c3927fcb025ec0643d5a8bc691f0a113c9b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 30 00:06:39 2018 +1000

    L10n updates for: ru
    From translation svn revision: 45668
    
    Authors:
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    2       2       user_docs/ru/changes.t2t
     1 file changed, 2 insertions(+), 2 deletions(-)

commit 3b9389a028790780591890150f597877c01b843f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 30 00:06:33 2018 +1000

    L10n updates for: pt_PT
    From translation svn revision: 45668
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    1       1       user_docs/pt_PT/changes.t2t
     1 file changed, 1 insertion(+), 1 deletion(-)

commit a4645a88d104133726ecb6fc2cb5a3f97b5f8a9d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 30 00:06:30 2018 +1000

    L10n updates for: pt_BR
    From translation svn revision: 45668
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    7       4       source/locale/pt_BR/LC_MESSAGES/nvda.po
    2       2       user_docs/pt_BR/changes.t2t
     2 files changed, 9 insertions(+), 6 deletions(-)

commit 9c73df1ae78862475dba618cd536bef74e55e69e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 30 00:06:27 2018 +1000

    L10n updates for: pl
    From translation svn revision: 45668
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <killer@tyflonet.com>
    
    Stats:
    50      0       user_docs/pl/changes.t2t
     1 file changed, 50 insertions(+)

commit 6fa695cbc1a9a7b814fe8eeec777825c21cd704f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 30 00:06:16 2018 +1000

    L10n updates for: mn
    From translation svn revision: 45668
    
    Authors:
    Mongol NVDA-Translation <mongoliannvdatranslation@gmail.com>
    
    Stats:
    347     161     user_docs/mn/userGuide.t2t
     1 file changed, 347 insertions(+), 161 deletions(-)

commit b9ded759dbf4e3d28257838c53814d868a19d944
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 30 00:06:11 2018 +1000

    L10n updates for: ko
    From translation svn revision: 45668
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    47      0       user_docs/ko/changes.t2t
    19      11      user_docs/ko/userGuide.t2t
     2 files changed, 66 insertions(+), 11 deletions(-)

commit d80da9e53058fff215d1fa448384c0f238dde39a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 30 00:06:06 2018 +1000

    L10n updates for: ja
    From translation svn revision: 45668
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    19      0       user_docs/ja/changes.t2t
     1 file changed, 19 insertions(+)

commit 736759a54e0a2843bba54823a36eb358a00ca0ae
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 30 00:05:57 2018 +1000

    L10n updates for: hr
    From translation svn revision: 45668
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Mario Percinic <mario.percinic@gmail.com>
    Tea Turkovic <tturkovi@gmail.com>
    
    Stats:
    1       1       user_docs/hr/changes.t2t
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 6870a56e256cddb6ac2bc099a82499b00e416c1a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 30 00:05:52 2018 +1000

    L10n updates for: gl
    From translation svn revision: 45668
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    
    Stats:
    1       1       user_docs/gl/changes.t2t
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 37b9fccbf549d881444c9536b57e4425dd77a4b6
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 30 00:05:49 2018 +1000

    L10n updates for: fr
    From translation svn revision: 45668
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    5       5       source/locale/fr/LC_MESSAGES/nvda.po
    7       7       user_docs/fr/changes.t2t
     2 files changed, 12 insertions(+), 12 deletions(-)

commit 0f69b834315260f95a75ad7847dc3da33b6a7616
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 30 00:05:46 2018 +1000

    L10n updates for: fi
    From translation svn revision: 45668
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    25      25      source/locale/fi/LC_MESSAGES/nvda.po
    1       1       user_docs/fi/changes.t2t
    9       9       user_docs/fi/userGuide.t2t
     3 files changed, 35 insertions(+), 35 deletions(-)

commit 0baa58b69e237f7278fac568e713a858c68cda25
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 30 00:05:42 2018 +1000

    L10n updates for: fa
    From translation svn revision: 45668
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    38      6       source/locale/fa/LC_MESSAGES/nvda.po
    20      2       user_docs/fa/changes.t2t
    13      3       user_docs/fa/userGuide.t2t
     3 files changed, 71 insertions(+), 11 deletions(-)

commit b1b4e322d69f06171198b386724fbe784b419778
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 30 00:05:38 2018 +1000

    L10n updates for: es
    From translation svn revision: 45668
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    4       4       source/locale/es/LC_MESSAGES/nvda.po
    1       1       user_docs/es/changes.t2t
     2 files changed, 5 insertions(+), 5 deletions(-)

commit 812e154085bffe6cf8ef8c165822542e721ffde3
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 30 00:05:31 2018 +1000

    L10n updates for: de
    From translation svn revision: 45668
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    
    Stats:
    19      17      source/locale/de/LC_MESSAGES/nvda.po
    3       3       user_docs/de/changes.t2t
    1       1       user_docs/de/userGuide.t2t
     3 files changed, 23 insertions(+), 21 deletions(-)

commit 06f3017f5a7eba2196d6d6c96038d950d4b7a5f2
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 30 00:05:25 2018 +1000

    L10n updates for: da
    From translation svn revision: 45668
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    2       2       user_docs/da/changes.t2t
     1 file changed, 2 insertions(+), 2 deletions(-)

commit 8407e491bcb6f79f160a9d70bbb317260a3b485a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 30 00:05:22 2018 +1000

    L10n updates for: ca
    From translation svn revision: 45668
    
    Authors:
    Ruben Alcaraz <ruben.hangar1.8@gmail.com>
    Dr. Mireia Ribera <mireia.ribera@gmail.com>
    Santi Moese <santispock@gmail.com>
    Marina Salse Rovira <salse@ub.edu>
    
    Stats:
    67      82      source/locale/ca/LC_MESSAGES/nvda.po
     1 file changed, 67 insertions(+), 82 deletions(-)

commit b5931eda5d8cbceb63ceb8435fc367b65ca5bd4e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 30 00:05:18 2018 +1000

    L10n updates for: bg
    From translation svn revision: 45668
    
    Authors:
    Zahari Yurukov <zahari.yurukov@gmail.com>
    Kostadin Kolev <k_kolev1985@mail.bg>
    
    Stats:
    56      28      source/locale/bg/LC_MESSAGES/nvda.po
    57      1       user_docs/bg/changes.t2t
    18      9       user_docs/bg/userGuide.t2t
     3 files changed, 131 insertions(+), 38 deletions(-)

commit 9e5f410b90b82fc9bf486f2e52c3fa74e4e6dbc3
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Nov 28 12:31:22 2018 +1000

    OneCore speech: do not append silence at the end of every speech utterance (#8985)
    
    * OneCore speech: where supported, disable onecore from appending silence at the end of each speech utterance.
    
    * OneCore speech: we can disable appendSilence from contract 6, not 7.
    
    * Update what's new.

commit b2e8b0131a0ecdb802091213db49c44b6cbd51fc
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Nov 28 10:48:54 2018 +1000

    Bump version to 2019.1 dev

commit 0cb9d5c64b73e01a47f97b099c7e0388603f594c
Merge: e4be53cc4 27d100d8c
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Nov 27 15:53:18 2018 +1000

    Merge branch 'beta'

commit e4be53cc496e15c1230f0d55747eaf222afbee5c
Author: Darío Hereñú <magallania@gmail.com>
Date:   Mon Nov 26 19:42:01 2018 -0300

    Various typos fixed in readme.md  (#8852)
    
    * Typo on paragraph #101
    * Plus minor fixes (proposals)

commit 27d100d8c1bc3545f2bb7d2bd7e0a034fa176202
Merge: ca464fbaa b804d5594
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 23 00:07:06 2018 +1000

    Update translations.
    
    From translation svn revision: 45333

commit b804d5594fe987d10984bd978f6c4d69d9ba605e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 23 00:07:05 2018 +1000

    L10n updates for: zh_TW
    From translation svn revision: 45333
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    24      14      user_docs/zh_TW/userGuide.t2t
     1 file changed, 24 insertions(+), 14 deletions(-)

commit 55ff2a776790deef7eedbc8bdd721d32427f0fde
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 23 00:07:02 2018 +1000

    L10n updates for: zh_CN
    From translation svn revision: 45333
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    
    Stats:
    4       4       user_docs/zh_CN/changes.t2t
     1 file changed, 4 insertions(+), 4 deletions(-)

commit 277ddfd56f96312f18812d9ff55783010709e255
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 23 00:06:59 2018 +1000

    L10n updates for: vi
    From translation svn revision: 45333
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    6       6       user_docs/vi/changes.t2t
     1 file changed, 6 insertions(+), 6 deletions(-)

commit 8ac3e71d939be3b7bf6931bbdb10fe9565598db1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 23 00:06:55 2018 +1000

    L10n updates for: tr
    From translation svn revision: 45333
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    7       4       source/locale/tr/LC_MESSAGES/nvda.po
    10      4       user_docs/tr/changes.t2t
     2 files changed, 17 insertions(+), 8 deletions(-)

commit eeaafd8e40f5ec487a26aa610a2ce143a87f6f80
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 23 00:06:48 2018 +1000

    L10n updates for: sr
    From translation svn revision: 45333
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    2       1       user_docs/sr/changes.t2t
     1 file changed, 2 insertions(+), 1 deletion(-)

commit 3c34bbadbee65cac622d5c17e1096b747076418d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 23 00:06:46 2018 +1000

    L10n updates for: so
    From translation svn revision: 45333
    
    Authors:
    Othmanothman <othman82@hotmail.com>
    
    Stats:
    58      37      source/locale/so/LC_MESSAGES/nvda.po
     1 file changed, 58 insertions(+), 37 deletions(-)

commit c34519cd3f6758670036752b90a8cbac25f55d59
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 23 00:06:44 2018 +1000

    L10n updates for: sl
    From translation svn revision: 45333
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    32      2       source/locale/sl/LC_MESSAGES/nvda.po
    12      2       user_docs/sl/userGuide.t2t
     2 files changed, 44 insertions(+), 4 deletions(-)

commit 29f50940f6130358377abca0ef45e707e3cc814b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 23 00:06:39 2018 +1000

    L10n updates for: ru
    From translation svn revision: 45333
    
    Authors:
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    6       3       source/locale/ru/LC_MESSAGES/nvda.po
    13      8       user_docs/ru/changes.t2t
    10      0       user_docs/ru/userGuide.t2t
     3 files changed, 29 insertions(+), 11 deletions(-)

commit 7fc138e543449cc4813ff98543b4edc8ebc2ca2a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 23 00:06:30 2018 +1000

    L10n updates for: pt_BR
    From translation svn revision: 45333
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    9       4       user_docs/pt_BR/changes.t2t
     1 file changed, 9 insertions(+), 4 deletions(-)

commit d5668671814440bee14d744248a8c1ca1169d8a4
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 23 00:06:17 2018 +1000

    L10n updates for: mn
    From translation svn revision: 45333
    
    Authors:
    Mongol NVDA-Translation <mongoliannvdatranslation@gmail.com>
    
    Stats:
    35      3       source/locale/mn/LC_MESSAGES/nvda.po
    3       0       source/locale/mn/symbols.dic
    49      29      user_docs/mn/changes.t2t
    12      2       user_docs/mn/userGuide.t2t
     4 files changed, 99 insertions(+), 34 deletions(-)

commit ae92668071c8e2fc209999cb59fec5e678424524
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 23 00:06:10 2018 +1000

    L10n updates for: ko
    From translation svn revision: 45333
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    53      27      source/locale/ko/LC_MESSAGES/nvda.po
    31      31      user_docs/ko/changes.t2t
     2 files changed, 84 insertions(+), 58 deletions(-)

commit 12edb22283a31ac926b5e15875349667422ea3f2
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 23 00:06:06 2018 +1000

    L10n updates for: kmr
    From translation svn revision: 45333
    
    Authors:
    Imam Kahraman <imam.kahraman@googlemail.com>
    
    Stats:
    101     108     source/locale/kmr/LC_MESSAGES/nvda.po
     1 file changed, 101 insertions(+), 108 deletions(-)

commit 9ee5a4e057d196c489a70b0d1c47387aa2271baf
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 23 00:06:04 2018 +1000

    L10n updates for: ja
    From translation svn revision: 45333
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    6       3       source/locale/ja/LC_MESSAGES/nvda.po
     1 file changed, 6 insertions(+), 3 deletions(-)

commit a259e0218258af76f734f4af64138247d51e4818
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 23 00:06:00 2018 +1000

    L10n updates for: it
    From translation svn revision: 45333
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    34      2       source/locale/it/LC_MESSAGES/nvda.po
     1 file changed, 34 insertions(+), 2 deletions(-)

commit 737c80014a45362710cdd05f54396fc7f3729899
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 23 00:05:56 2018 +1000

    L10n updates for: hu
    From translation svn revision: 45333
    
    Authors:
    Aron OcsvAri <oaron@nvda.hu>
    
    Stats:
    46      20      source/locale/hu/LC_MESSAGES/nvda.po
    46      0       user_docs/hu/changes.t2t
     2 files changed, 92 insertions(+), 20 deletions(-)

commit bf962fe79430cac85bb0a08021a1834d33d14120
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 23 00:05:48 2018 +1000

    L10n updates for: gl
    From translation svn revision: 45333
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    
    Stats:
    9       9       source/locale/gl/LC_MESSAGES/nvda.po
    3       3       user_docs/gl/changes.t2t
     2 files changed, 12 insertions(+), 12 deletions(-)

commit 7d01fc59cf5e96dad6e8b9bcec9897d690e69cc2
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 23 00:05:41 2018 +1000

    L10n updates for: fi
    From translation svn revision: 45333
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    1       1       user_docs/fi/changes.t2t
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 962cb36014d0828625eea037227ad517bd103312
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 23 00:05:35 2018 +1000

    L10n updates for: es
    From translation svn revision: 45333
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    8       8       source/locale/es/LC_MESSAGES/nvda.po
    4       4       user_docs/es/changes.t2t
     2 files changed, 12 insertions(+), 12 deletions(-)

commit e76d66deab4b0a06b02c126273518809479bcef9
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 23 00:05:28 2018 +1000

    L10n updates for: de
    From translation svn revision: 45333
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    
    Stats:
    27      27      source/locale/de/LC_MESSAGES/nvda.po
    11      11      user_docs/de/changes.t2t
     2 files changed, 38 insertions(+), 38 deletions(-)

commit c651588e3ee4300f6dd56dc0aa7f8d201f6d35c3
Merge: 2b96213a6 ca464fbaa
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Nov 21 14:35:50 2018 +1000

    Merge branch 'beta'

commit ca464fbaa65c183a2ff711c5ec5485b3614a37d1
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Nov 21 14:33:26 2018 +1000

    Support the custom aria-goog-editable attribute to improve support for Google Slides  (#8964)
    
    * Support the custom aria-goog-editable attribute in focus mode to force the editable state off in contenteditable nodes.
    
    * Update what's new.

commit 073762644edfad57eb42c0d5af9d887c6bc5a7dc
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Nov 21 08:23:59 2018 +1000

    Bump commit for appveyor.

commit d19b38329b18c94f6bbc38ce33aa65e56e511947
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Nov 21 08:07:40 2018 +1000

    Revert "BrowseMode: don't refuse to report focus changes for replaced controls or focused ancestors (#8869)"
    
    This reverts commit ceafcdd337d89ac1f276db784e015bd6e1a3d937.

commit 54c88a37b5eccddda995464a8280e0b727c19970
Author: Łukasz Golonka <wulfryk1@gmail.com>
Date:   Tue Nov 20 22:41:28 2018 +0100

    What's new: fixed capitalization problem in the word 'in' (#8958)

commit f20d1a0dfead7c0d88b90ba7f6d2b0f8a9e3a8e5
Merge: 07b4ae81a a95ce443c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Tue Nov 20 10:56:39 2018 +1000

    Update translations.
    
    From translation svn revision: 45221

commit a95ce443ca21c0b9c80916846b02b4ee1c5b06f1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Tue Nov 20 10:56:35 2018 +1000

    L10n updates for: zh_CN
    From translation svn revision: 45221
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    
    Stats:
    14      11      source/locale/zh_CN/LC_MESSAGES/nvda.po
    2       2       source/locale/zh_CN/symbols.dic
    5       0       user_docs/zh_CN/changes.t2t
     3 files changed, 21 insertions(+), 13 deletions(-)

commit eec4e52bf52b9f508a1bab59e0bdc74d2d7b4f10
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Tue Nov 20 10:56:31 2018 +1000

    L10n updates for: vi
    From translation svn revision: 45221
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    14      9       user_docs/vi/changes.t2t
     1 file changed, 14 insertions(+), 9 deletions(-)

commit 22d6166206139ff10f933a34199e1e3995c8518c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Tue Nov 20 10:56:29 2018 +1000

    L10n updates for: uk
    From translation svn revision: 45221
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    61      33      source/locale/uk/LC_MESSAGES/nvda.po
    18      10      user_docs/uk/userGuide.t2t
     2 files changed, 79 insertions(+), 43 deletions(-)

commit e580481a479fa23c8bf8d2582e71de512f1ccec7
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Tue Nov 20 10:56:23 2018 +1000

    L10n updates for: ta
    From translation svn revision: 45221
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    165     7       source/locale/ta/LC_MESSAGES/nvda.po
    12      2       user_docs/ta/userGuide.t2t
     2 files changed, 177 insertions(+), 9 deletions(-)

commit a911da4b386839a9d9fcb9d702dcc0338dba176a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Tue Nov 20 10:56:18 2018 +1000

    L10n updates for: sr
    From translation svn revision: 45221
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    42      10      source/locale/sr/LC_MESSAGES/nvda.po
    26      1       user_docs/sr/changes.t2t
    286     150     user_docs/sr/userGuide.t2t
     3 files changed, 354 insertions(+), 161 deletions(-)

commit f60343b15517c95444b003ad86c317489dccf3dd
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Tue Nov 20 10:56:07 2018 +1000

    L10n updates for: ro
    From translation svn revision: 45221
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    
    Stats:
    34      2       source/locale/ro/LC_MESSAGES/nvda.po
    14      0       user_docs/ro/changes.t2t
    11      1       user_docs/ro/userGuide.t2t
     3 files changed, 59 insertions(+), 3 deletions(-)

commit d5dbefe28f6bbdc111b5bfe881b6a0e0ed8d486f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Tue Nov 20 10:56:04 2018 +1000

    L10n updates for: pt_PT
    From translation svn revision: 45221
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    5       2       source/locale/pt_PT/LC_MESSAGES/nvda.po
    11      0       user_docs/pt_PT/changes.t2t
     2 files changed, 16 insertions(+), 2 deletions(-)

commit cac14083acbc0862aec58a2feeb3cbed28fb3dac
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Tue Nov 20 10:55:58 2018 +1000

    L10n updates for: pl
    From translation svn revision: 45221
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <killer@tyflonet.com>
    
    Stats:
    7       4       source/locale/pl/LC_MESSAGES/nvda.po
     1 file changed, 7 insertions(+), 4 deletions(-)

commit b6693426fed45ef4e1305281698c7b75a769fb61
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Tue Nov 20 10:55:26 2018 +1000

    L10n updates for: hr
    From translation svn revision: 45221
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Mario Percinic <mario.percinic@gmail.com>
    Tea Turkovic <tturkovi@gmail.com>
    
    Stats:
    7       4       source/locale/hr/LC_MESSAGES/nvda.po
    18      0       user_docs/hr/changes.t2t
    11      1       user_docs/hr/userGuide.t2t
     3 files changed, 36 insertions(+), 5 deletions(-)

commit 5158c9823eafd3465a4c4bef8264dad656de1037
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Tue Nov 20 10:55:21 2018 +1000

    L10n updates for: gl
    From translation svn revision: 45221
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    
    Stats:
    7       4       source/locale/gl/LC_MESSAGES/nvda.po
    5       0       user_docs/gl/changes.t2t
     2 files changed, 12 insertions(+), 4 deletions(-)

commit 025a5fea0b4a533aef2cc59d64610a631ba11dad
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Tue Nov 20 10:55:16 2018 +1000

    L10n updates for: fr
    From translation svn revision: 45221
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    7       4       source/locale/fr/LC_MESSAGES/nvda.po
    2       0       source/locale/fr/symbols.dic
    5       0       user_docs/fr/changes.t2t
     3 files changed, 14 insertions(+), 4 deletions(-)

commit 4cd9ffca1a10c009c87688394a1b160fa1a425d2
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Tue Nov 20 10:55:13 2018 +1000

    L10n updates for: fi
    From translation svn revision: 45221
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    7       4       source/locale/fi/LC_MESSAGES/nvda.po
    5       0       user_docs/fi/changes.t2t
     2 files changed, 12 insertions(+), 4 deletions(-)

commit 584621365c9866a65d8fc18f06c2a6d34f93f95c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Tue Nov 20 10:55:06 2018 +1000

    L10n updates for: es
    From translation svn revision: 45221
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    10      7       source/locale/es/LC_MESSAGES/nvda.po
    3       3       source/locale/es/symbols.dic
    8       3       user_docs/es/changes.t2t
    1       1       user_docs/es/userGuide.t2t
     4 files changed, 22 insertions(+), 14 deletions(-)

commit 38141ac00650de64b3771346877960bdae025c71
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Tue Nov 20 10:54:58 2018 +1000

    L10n updates for: de
    From translation svn revision: 45221
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    
    Stats:
    8       5       source/locale/de/LC_MESSAGES/nvda.po
    6       1       user_docs/de/changes.t2t
     2 files changed, 14 insertions(+), 6 deletions(-)

commit 9f2a68510c530cc80a2452030802c297aa73eaca
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Tue Nov 20 10:54:52 2018 +1000

    L10n updates for: da
    From translation svn revision: 45221
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    7       4       source/locale/da/LC_MESSAGES/nvda.po
    5       0       user_docs/da/changes.t2t
     2 files changed, 12 insertions(+), 4 deletions(-)

commit 2b96213a686b6916e144535b6b1df4705462d72a
Merge: 9d70ba89b 07b4ae81a
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Nov 19 15:42:54 2018 +1000

    Merge branch 'beta'

commit 07b4ae81a1f679ecddf6c2a7673bc76a30190843
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Sun Nov 18 21:33:03 2018 -0800

    What's new: entry clarifications, fixed empty line problem at the start of bug fixes section for 2018.4. (#8957)
    
    Specifically:
    * Gmail entry: Gmail web interface.
    * Firefox performance entry: changed word order around.
    * Added missing periods.
    * Added an empty line between changes and bug fixes section in order to let txt2tags convert lists correctly.

commit 9d70ba89b17bfc5551f6473bf52af750a4056383
Merge: 498e42f89 346a5a0dc
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Nov 19 15:02:05 2018 +1000

    Merge branch 'beta'

commit 346a5a0dc9c5564437c264bb99a20353bc865778
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Nov 19 14:49:13 2018 +1000

    Added release blurb.

commit 471e39adea3489cef86bede695fc9a3f089e9366
Merge: 93fd9b679 498e42f89
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Nov 19 10:07:01 2018 +1000

    Merge branch 'master' into beta

commit 498e42f89533d90faec8a28dfddf56b6ed39aa04
Merge: d28b37fee 93fd9b679
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Nov 19 10:06:15 2018 +1000

    Merge branch 'beta'

commit d28b37fee8320a02ad8a239a1c51c9a758098a7c
Author: Julien Cochuyt <JulienCochuyt@users.noreply.github.com>
Date:   Mon Nov 19 00:53:15 2018 +0100

    Add `class` to MSHTML attributes (#8941) (#8942)

commit c5c0c95958cc099a5a59d012710b7437817f671d
Author: Josiel Santos <josiel.lkp@gmail.com>
Date:   Sun Nov 18 21:29:43 2018 -0200

    Added DBeaver AppModule (#8905)
    
    * Added DBeaver AppModule
    
    * fixup! Added DBeaver AppModule
    
    * Update what's new.

commit c4cbefdf227819ea78ce5818c821c53b6d5e2f22
Author: gauldoth <unigauldoth@gmail.com>
Date:   Mon Nov 19 07:11:57 2018 +0800

    Add support for Foxit Reader and Foxit PhantomPDF (#8944) (#8947)
    
    * Add support for Foxit Reader and Foxit PhantomPDF (#8944)
    
    * Address review comments.
    
    * Update what's new.

commit b2bb14dd80a9a7ccca8e8cc113909b6aa645cfa2
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Mon Nov 19 00:03:10 2018 +0100

    Baum braille displays: fix broken input when no model identifier is set for a display (#8951)
    
    * Baum braille displays: fix broken input when no model identifier is set for a display
    
    * Update what's new.

commit f11209739d98a651a9f8798d4778b942e3081c5e
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Mon Nov 19 08:58:23 2018 +1000

    Speech and Braille: don't report many clickables in a row in browse mode. (#8922)
    
    * Speech and Braille: don't report many clickables in a row.
    
    * Address review actions and also simplify logic and fix a corner case.
    Now we simply report clickable for the first clickable in a run of control starts. Hitting text, or control ends resets the run.
    
    * Update what's new.

commit 93fd9b679f5cfcc32f9ae3d4bc250146a8e11784
Merge: 44136d48c d0eaeb80c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 16 00:07:21 2018 +1000

    Update translations.
    
    From translation svn revision: 45102

commit d0eaeb80c5acf1ea6fdc67795dc1b71a862b2f40
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 16 00:07:18 2018 +1000

    L10n updates for: zh_TW
    From translation svn revision: 45102
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    36      17      source/locale/zh_TW/LC_MESSAGES/nvda.po
     1 file changed, 36 insertions(+), 17 deletions(-)

commit ce60778829ca42a62ee2f9afaf9e18a80b8d9929
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 16 00:07:14 2018 +1000

    L10n updates for: zh_CN
    From translation svn revision: 45102
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    
    Stats:
    42      12      source/locale/zh_CN/LC_MESSAGES/nvda.po
    114     49      source/locale/zh_CN/characterDescriptions.dic
    30      874     source/locale/zh_CN/symbols.dic
    16      4       user_docs/zh_CN/changes.t2t
    63      53      user_docs/zh_CN/userGuide.t2t
     5 files changed, 265 insertions(+), 992 deletions(-)

commit f439e2e9a705d9b11ea8a1c2653efa7ade99b276
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 16 00:07:09 2018 +1000

    L10n updates for: vi
    From translation svn revision: 45102
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    312     7       user_docs/vi/changes.t2t
    30      21      user_docs/vi/userGuide.t2t
     2 files changed, 342 insertions(+), 28 deletions(-)

commit 449aba52ad0ec0a47e24d28d2861925f00e5fbe6
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 16 00:07:04 2018 +1000

    L10n updates for: tr
    From translation svn revision: 45102
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    35      3       source/locale/tr/LC_MESSAGES/nvda.po
    14      1       user_docs/tr/changes.t2t
    13      3       user_docs/tr/userGuide.t2t
     3 files changed, 62 insertions(+), 7 deletions(-)

commit 9f388b35def878ec5725a2df4049b4f0b6635e6b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 16 00:07:01 2018 +1000

    L10n updates for: ta
    From translation svn revision: 45102
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    42      12      source/locale/ta/LC_MESSAGES/nvda.po
     1 file changed, 42 insertions(+), 12 deletions(-)

commit 878322ebb8f564da6cd56d552a4aa0b9a0467ee6
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 16 00:06:54 2018 +1000

    L10n updates for: so
    From translation svn revision: 45102
    
    Authors:
    Othmanothman <othman82@hotmail.com>
    
    Stats:
    150     113     source/locale/so/LC_MESSAGES/nvda.po
    0       11      source/locale/so/characterDescriptions.dic
     2 files changed, 150 insertions(+), 124 deletions(-)

commit 489dd7c9f22c6d62f42f3c89eef9af85d74dc9ea
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 16 00:06:48 2018 +1000

    L10n updates for: ru
    From translation svn revision: 45102
    
    Authors:
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    48      16      source/locale/ru/LC_MESSAGES/nvda.po
    14      0       user_docs/ru/changes.t2t
     2 files changed, 62 insertions(+), 16 deletions(-)

commit e88895d4f93fe5a1f8be7278e934486af17cc289
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 16 00:06:42 2018 +1000

    L10n updates for: pt_PT
    From translation svn revision: 45102
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    34      2       source/locale/pt_PT/LC_MESSAGES/nvda.po
    2       1       source/locale/pt_PT/symbols.dic
    13      0       user_docs/pt_PT/changes.t2t
    10      0       user_docs/pt_PT/userGuide.t2t
     4 files changed, 59 insertions(+), 3 deletions(-)

commit 89a20ce28b0afc95d29f85286b9b18dc93d8b1c1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 16 00:06:38 2018 +1000

    L10n updates for: pt_BR
    From translation svn revision: 45102
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    34      2       source/locale/pt_BR/LC_MESSAGES/nvda.po
    14      0       user_docs/pt_BR/changes.t2t
    11      1       user_docs/pt_BR/userGuide.t2t
     3 files changed, 59 insertions(+), 3 deletions(-)

commit 7dc4815fa64f7f77cd77f30a10b09c0497bdc5ea
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 16 00:06:34 2018 +1000

    L10n updates for: pl
    From translation svn revision: 45102
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <killer@tyflonet.com>
    
    Stats:
    34      2       source/locale/pl/LC_MESSAGES/nvda.po
     1 file changed, 34 insertions(+), 2 deletions(-)

commit f05f9fc358a6a2436d02d6fa7311e4e5c15a6023
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 16 00:06:30 2018 +1000

    L10n updates for: nl
    From translation svn revision: 45102
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    61      33      source/locale/nl/LC_MESSAGES/nvda.po
    10      0       user_docs/nl/userGuide.t2t
     2 files changed, 71 insertions(+), 33 deletions(-)

commit c09390ffcaa2393b336595813c8b2b4cc8f4cc7b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 16 00:06:26 2018 +1000

    L10n updates for: nb_NO
    From translation svn revision: 45102
    
    Authors:
    David Hole <balubathebrave@gmail.com>
    Bjornar Seppola <bjornar@seppola.net>
    
    Stats:
    692     379     source/locale/nb_NO/LC_MESSAGES/nvda.po
     1 file changed, 692 insertions(+), 379 deletions(-)

commit bfc015c7b8da39398913c7b88a9e34c5255f734a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 16 00:06:21 2018 +1000

    L10n updates for: mn
    From translation svn revision: 45102
    
    Authors:
    Mongol NVDA-Translation <mongoliannvdatranslation@gmail.com>
    
    Stats:
    971     972     user_docs/mn/userGuide.t2t
     1 file changed, 971 insertions(+), 972 deletions(-)

commit a1969514d61331608b6d6578d9356ac7b2cfa438
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 16 00:06:10 2018 +1000

    L10n updates for: ja
    From translation svn revision: 45102
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    33      3       source/locale/ja/LC_MESSAGES/nvda.po
    10      0       user_docs/ja/userGuide.t2t
     2 files changed, 43 insertions(+), 3 deletions(-)

commit aa981ef7ce12625ff2f2fdcba2735735911d3b61
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 16 00:05:59 2018 +1000

    L10n updates for: hr
    From translation svn revision: 45102
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Mario Percinic <mario.percinic@gmail.com>
    Tea Turkovic <tturkovi@gmail.com>
    
    Stats:
    35      3       source/locale/hr/LC_MESSAGES/nvda.po
     1 file changed, 35 insertions(+), 3 deletions(-)

commit 364b6ac96c20241c63adc3c50bd54dccf08e254a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 16 00:05:53 2018 +1000

    L10n updates for: gl
    From translation svn revision: 45102
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Ivan Novegil <ivan.novegil@nvda.es>
    
    Stats:
    34      2       source/locale/gl/LC_MESSAGES/nvda.po
    15      0       user_docs/gl/changes.t2t
    11      1       user_docs/gl/userGuide.t2t
     3 files changed, 60 insertions(+), 3 deletions(-)

commit efc0b336ec084e400e302935ac54529c4eb48951
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 16 00:05:48 2018 +1000

    L10n updates for: fr
    From translation svn revision: 45102
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    36      4       source/locale/fr/LC_MESSAGES/nvda.po
    14      0       user_docs/fr/changes.t2t
    10      0       user_docs/fr/userGuide.t2t
     3 files changed, 60 insertions(+), 4 deletions(-)

commit 526c0a430013a11f7eda2e913325c78e6c1693e9
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 16 00:05:44 2018 +1000

    L10n updates for: fi
    From translation svn revision: 45102
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    34      2       source/locale/fi/LC_MESSAGES/nvda.po
    14      1       user_docs/fi/changes.t2t
    10      0       user_docs/fi/userGuide.t2t
     3 files changed, 58 insertions(+), 3 deletions(-)

commit 13460ad5960c78c6c0ab70e82731cafc456e1528
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 16 00:05:38 2018 +1000

    L10n updates for: es
    From translation svn revision: 45102
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    54      22      source/locale/es/LC_MESSAGES/nvda.po
    1       1       source/locale/es/symbols.dic
    15      0       user_docs/es/changes.t2t
    12      2       user_docs/es/userGuide.t2t
     4 files changed, 82 insertions(+), 25 deletions(-)

commit 0a3a1945a4f7b6dacd56f25c1d803b715afd6721
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 16 00:05:29 2018 +1000

    L10n updates for: de
    From translation svn revision: 45102
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    
    Stats:
    34      2       source/locale/de/LC_MESSAGES/nvda.po
    1       1       source/locale/de/symbols.dic
    15      1       user_docs/de/changes.t2t
    11      1       user_docs/de/userGuide.t2t
     4 files changed, 61 insertions(+), 5 deletions(-)

commit 04ef307d9ca4196c730b5005aeba154ec7344043
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 16 00:05:23 2018 +1000

    L10n updates for: da
    From translation svn revision: 45102
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    39      10      source/locale/da/LC_MESSAGES/nvda.po
    14      1       user_docs/da/changes.t2t
    10      0       user_docs/da/userGuide.t2t
     3 files changed, 63 insertions(+), 11 deletions(-)

commit afe77c14211f82b14566ab9ec9e4025efd0986a4
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 16 00:05:12 2018 +1000

    L10n updates for: ar
    From translation svn revision: 45102
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    47      1       user_docs/ar/changes.t2t
     1 file changed, 47 insertions(+), 1 deletion(-)

commit fbae6b0b324c46a4ab1d2c5aebfa98a5c9a9ccc0
Merge: 244ed4ec0 44136d48c
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Nov 12 08:12:26 2018 +1000

    Merge branch 'beta'

commit 44136d48cb536b29f2936af8c47b4ea2ce460189
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Sun Nov 11 22:51:55 2018 +0100

    Fix case for outlook replied all status (#8933)

commit 244ed4ec042493a1477facf44346ac11cad3a698
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Fri Nov 9 15:53:05 2018 +1000

    VBufStorage: Fix crash by not allowing the reusing of nodes with differing parents. (#8930)
    
    * VBufStorage: don't allow reusing nodes with differing parents.
    
    * Clarify code comment.

commit 84eb4cfbd27dc4a78adfc77f068b9a20375de4eb
Merge: 1776ab98c 1ab7df905
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 9 00:07:11 2018 +1000

    Update translations.
    
    From translation svn revision: 44842

commit 1ab7df90534840e88ca27029980c47d430ccc541
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 9 00:07:10 2018 +1000

    L10n updates for: zh_TW
    From translation svn revision: 44842
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    36      36      source/locale/zh_TW/characterDescriptions.dic
     1 file changed, 36 insertions(+), 36 deletions(-)

commit 2c2eccbf39b1a23d99589e45df96dc1ad49c014b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 9 00:07:07 2018 +1000

    L10n updates for: zh_CN
    From translation svn revision: 44842
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    
    Stats:
    9       4       source/locale/zh_CN/characterDescriptions.dic
     1 file changed, 9 insertions(+), 4 deletions(-)

commit bb9a187f402005706b1908f96ba2aa70c6a57088
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 9 00:07:03 2018 +1000

    L10n updates for: vi
    From translation svn revision: 44842
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    12      19      user_docs/vi/changes.t2t
    96      96      user_docs/vi/userGuide.t2t
     2 files changed, 108 insertions(+), 115 deletions(-)

commit e01eff5a4d4e5d60900d56a3a71be6c11807a443
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 9 00:06:49 2018 +1000

    L10n updates for: so
    From translation svn revision: 44842
    
    Authors:
    Othmanothman <othman82@hotmail.com>
    
    Stats:
    29      29      source/locale/so/LC_MESSAGES/nvda.po
     1 file changed, 29 insertions(+), 29 deletions(-)

commit 5d724843c785b8f13b8b441762bb32eab4a64e44
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 9 00:06:37 2018 +1000

    L10n updates for: pt_PT
    From translation svn revision: 44842
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    3       3       source/locale/pt_PT/LC_MESSAGES/nvda.po
    1       1       user_docs/pt_PT/changes.t2t
    7       9       user_docs/pt_PT/userGuide.t2t
     3 files changed, 11 insertions(+), 13 deletions(-)

commit cba51e18e56fe84f696045af6ae4a46bda84b199
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 9 00:06:20 2018 +1000

    L10n updates for: mn
    From translation svn revision: 44842
    
    Authors:
    Mongol NVDA-Translation <mongoliannvdatranslation@gmail.com>
    
    Stats:
    6       6       user_docs/mn/changes.t2t
    737     731     user_docs/mn/userGuide.t2t
     2 files changed, 743 insertions(+), 737 deletions(-)

commit 33a4e843ce2d51f241e2d65b985021f86fbd924b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 9 00:05:48 2018 +1000

    L10n updates for: fr
    From translation svn revision: 44842
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    4       4       source/locale/fr/LC_MESSAGES/nvda.po
    6       8       user_docs/fr/userGuide.t2t
     2 files changed, 10 insertions(+), 12 deletions(-)

commit 202fe892961581fd2b88e6f7b1e234db3ca5ca48
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 9 00:05:31 2018 +1000

    L10n updates for: de
    From translation svn revision: 44842
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    
    Stats:
    3       3       user_docs/de/changes.t2t
     1 file changed, 3 insertions(+), 3 deletions(-)

commit 5cff759f9bf6c33f1faa9fea58e939185ae9deaa
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 9 00:05:25 2018 +1000

    L10n updates for: da
    From translation svn revision: 44842
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    3       3       source/locale/da/LC_MESSAGES/nvda.po
    2       2       user_docs/da/userGuide.t2t
     2 files changed, 5 insertions(+), 5 deletions(-)

commit 1776ab98cfec4f90db2ef73c2486de48263c169a
Merge: 0def9374b 153b12dfb
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Nov 8 16:28:54 2018 +1000

    Merge branch 'master' into beta

commit 153b12dfbf218d3bd762554601d8a45278f26d43
Merge: 87eb36f85 0def9374b
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Nov 8 16:27:23 2018 +1000

    Merge branch 'beta'

commit 87eb36f859a8562f0dc601306527f5d720eeaeb7
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Fri Nov 2 11:21:51 2018 +1000

    Fix crash in VBufStorage_buffer_t::getTextInRange when at the end of a buffer. (#8907)

commit 753d08787386af3d70b944271cbae5f90e77e4a4
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Fri Nov 2 00:14:30 2018 +0100

    Update CLDR annotations to version 34.0 (#8901)

commit 8c4557b4fc5b3a90f54219a35d046b7c14604046
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Fri Nov 2 07:32:51 2018 +1000

    speech.speakObjectProperties: if removing the 'selected' state, make sure to copy the states set first as to not mutate the cache for future state change announcements. (#8900)

commit 0def9374b8faefc98c2c8d90c993aae67db7fa2b
Merge: 311489721 c561ba372
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 2 00:07:08 2018 +1000

    Update translations.
    
    From translation svn revision: 44731

commit c561ba3720b1482c32d54e8153bc28cbd35408ef
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 2 00:07:07 2018 +1000

    L10n updates for: zh_TW
    From translation svn revision: 44731
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    37      22      source/locale/zh_TW/characterDescriptions.dic
     1 file changed, 37 insertions(+), 22 deletions(-)

commit ac3d5ea17511ce9891acbfb0c4c3da38fc404a97
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 2 00:07:02 2018 +1000

    L10n updates for: zh_CN
    From translation svn revision: 44731
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    
    Stats:
    7       7       source/locale/zh_CN/characterDescriptions.dic
     1 file changed, 7 insertions(+), 7 deletions(-)

commit d4e34195e8e78d660667615a72cab64e4db9bc3a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 2 00:06:42 2018 +1000

    L10n updates for: so
    From translation svn revision: 44731
    
    Authors:
    Othmanothman <othman82@hotmail.com>
    
    Stats:
    49      49      source/locale/so/LC_MESSAGES/nvda.po
     1 file changed, 49 insertions(+), 49 deletions(-)

commit f052c59f4363e118615d27b99fcecfdce72dbc47
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 2 00:06:41 2018 +1000

    L10n updates for: sl
    From translation svn revision: 44731
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    27      178     source/locale/sl/LC_MESSAGES/nvda.po
     1 file changed, 27 insertions(+), 178 deletions(-)

commit c5b8e457d53ed87caf98521528c73a8bdfbd477a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 2 00:05:39 2018 +1000

    L10n updates for: fa
    From translation svn revision: 44731
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    4       0       user_docs/fa/changes.t2t
     1 file changed, 4 insertions(+)

commit 6574b6cb83df2d0bdf0203c556a4e9ffe8ca2f09
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 2 00:05:36 2018 +1000

    L10n updates for: es
    From translation svn revision: 44731
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    Jose M. Delicado <jm.delicado@nvda.es>
    
    Stats:
    4       4       source/locale/es/LC_MESSAGES/nvda.po
     1 file changed, 4 insertions(+), 4 deletions(-)

commit 4ce25189d75bd751f4ab26463b4888d614ef639f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 2 00:05:23 2018 +1000

    L10n updates for: da
    From translation svn revision: 44731
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    15      15      source/locale/da/LC_MESSAGES/nvda.po
    4       4       user_docs/da/userGuide.t2t
     2 files changed, 19 insertions(+), 19 deletions(-)

commit b02ed2de682ec2b323282b8e4f67d60a825dd8e2
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Oct 31 16:56:51 2018 +1000

    Fix up of: Don't announce 'selected' when the focus moves in Google sheets if the focused cell is the only cell selected (#8898)
    
    * Don't announce 'selected' when the focus moves in Google sheets if the focused cell is the only cell selected.
    
    * Address review comments.
    
    * Address review comments.
    
    * Update what's new
    
    * Limit logic that stops announcing selected for a single selected item, and announces 'not selected' for not selected items, to controls that have the focusable state.
    
    * IAccessible NVDAObject's getSelectedItemsCount_accSelection: handle a childID coming from accSelection, as found in QT tree tables like in Mumble

commit 4cfeb449e4e147dd4de3326961e5006a6b4d0089
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Oct 31 15:56:27 2018 +1000

    Revert "Ensure that  labels explicitly set on divs and spans are reported in braille and speech" (#8899)
    
    * Revert "Revert "Don't announce 'selected' when the focus moves in Google sheets if the focused cell is the only cell selected (#8879)" (#8893)"
    
    This reverts commit b4e9e83242f90d18d2be51395f3f11e4da3f7756.
    
    * Revert "Don't announce 'selected' when the focus moves in Google sheets if the focused cell is the only cell selected (#8879)"
    
    This reverts commit 51f5b2fdcd1b480c79c379eb2f83b8fb44372c61.
    
    * Revert "Merge all vbufBackend dlls into nvdaHelperRemote.dll (#8866)"
    
    This reverts commit 24f5123748015daee35af2ea8e5921008843087b.
    
    * Revert "Fix handling of table cells without a containing table in browse mode. (#8887)"
    
    This reverts commit 5fe34c52a33000e7319e91bf3918f5a4c5bdbaef.
    
    * Revert "Ensure that  labels explicitly set on divs and spans are reported in braille and speech (#8886)"
    
    This reverts commit fd24d8186d296ac7eb782a4784fa257ed071dea7.

commit b4e9e83242f90d18d2be51395f3f11e4da3f7756
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Tue Oct 30 16:47:28 2018 +1000

    Revert "Don't announce 'selected' when the focus moves in Google sheets if the focused cell is the only cell selected (#8879)" (#8893)
    
    This reverts commit 51f5b2fdcd1b480c79c379eb2f83b8fb44372c61.
    The pr was causing 'not selected' to be announced when navigating by table cell in browse mdoe.

commit 51f5b2fdcd1b480c79c379eb2f83b8fb44372c61
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Tue Oct 30 16:16:17 2018 +1000

    Don't announce 'selected' when the focus moves in Google sheets if the focused cell is the only cell selected (#8879)
    
    * Don't announce 'selected' when the focus moves in Google sheets if the focused cell is the only cell selected.
    
    * Address review comments.
    
    * Address review comments.
    
    * Update what's new

commit 24f5123748015daee35af2ea8e5921008843087b
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Tue Oct 30 16:02:26 2018 +1000

    Merge all vbufBackend dlls into nvdaHelperRemote.dll (#8866)
    
    * All vbufBackend dlls have been merged into nvdaHelperRemote.dll.
    
    * Address review comments.
    
    * Update what's new.

commit 5fe34c52a33000e7319e91bf3918f5a4c5bdbaef
Author: James Teh <jamie@jantrid.net>
Date:   Mon Oct 29 14:13:08 2018 +1000

    Fix handling of table cells without a containing table in browse mode. (#8887)
    
    * Fix handling of table cells without a containing table in browse mode.
    
    In the new Gmail, message bodies are contained within a "gridcell" which does not have a containing grid.
    The gridcell's name is the entire body of the message.
    When using quick navigation to move to anything inside these "cells", NVDA reports information about the cell, including its name, after the element to which you just navigated.
    This results in a huge amount of spurious (and confusing) verbosity in Gmail when using quick navigation.
    To fix this, cells outside of tables are now treated as layout.
    
    * Update what's new.

commit fd24d8186d296ac7eb782a4784fa257ed071dea7
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Mon Oct 29 13:48:35 2018 +1000

    Ensure that  labels explicitly set on divs and spans are reported in braille and speech (#8886)
    
    * Ensure that labels explicitly set by the web author on nodes such as divs and spans (that don't usually get reported) are shown in browseMode in both speech and braille.
    
    * Update what's new.

commit 311489721e4d26022d82509ae9eed5e2aee8b8ec
Merge: 81294ccbb 9d56f5411
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 26 00:07:03 2018 +1000

    Update translations.
    
    From translation svn revision: 44617

commit 9d56f54115781976a1f3562f9e2da75e6496927d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 26 00:07:02 2018 +1000

    L10n updates for: zh_TW
    From translation svn revision: 44617
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    7       6       source/locale/zh_TW/LC_MESSAGES/nvda.po
     1 file changed, 7 insertions(+), 6 deletions(-)

commit 9c7765aa73cb6b44337958777403f571889844ca
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 26 00:06:44 2018 +1000

    L10n updates for: so
    From translation svn revision: 44617
    
    Authors:
    Othmanothman <othman82@hotmail.com>
    
    Stats:
    10      10      source/locale/so/LC_MESSAGES/nvda.po
     1 file changed, 10 insertions(+), 10 deletions(-)

commit 4277fa18c2834821fafe5ad9b3140d05c20e831d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 26 00:06:17 2018 +1000

    L10n updates for: mn
    From translation svn revision: 44617
    
    Authors:
    Mongol NVDA-Translation <mongoliannvdatranslation@gmail.com>
    
    Stats:
    25      18      source/locale/mn/LC_MESSAGES/nvda.po
    184     3       user_docs/mn/changes.t2t
    3       3       user_docs/mn/userGuide.t2t
     3 files changed, 212 insertions(+), 24 deletions(-)

commit 5379e918ee23b0f000f915f551fcbb7f54c2451d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 26 00:06:02 2018 +1000

    L10n updates for: it
    From translation svn revision: 44617
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    16      20      source/locale/it/LC_MESSAGES/nvda.po
     1 file changed, 16 insertions(+), 20 deletions(-)

commit 92c631e3c8e657ce10717695722c6a691064eec9
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 26 00:05:54 2018 +1000

    L10n updates for: hr
    From translation svn revision: 44617
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Mario Percinic <mario.percinic@gmail.com>
    Tea Turkovic <tturkovi@gmail.com>
    
    Stats:
    64      64      source/locale/hr/LC_MESSAGES/nvda.po
     1 file changed, 64 insertions(+), 64 deletions(-)

commit 197d7cda697a580d3896afd26e6d0bc041dc5b0d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 26 00:05:30 2018 +1000

    L10n updates for: de
    From translation svn revision: 44617
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    
    Stats:
    23      23      source/locale/de/LC_MESSAGES/nvda.po
     1 file changed, 23 insertions(+), 23 deletions(-)

commit 9dc26b47820fd2f49138304afe94e34aab6322d6
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 26 00:05:24 2018 +1000

    L10n updates for: da
    From translation svn revision: 44617
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    11      47      user_docs/da/changes.t2t
    6       8       user_docs/da/userGuide.t2t
     2 files changed, 17 insertions(+), 55 deletions(-)

commit ceafcdd337d89ac1f276db784e015bd6e1a3d937
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Thu Oct 25 10:40:03 2018 +1000

    BrowseMode: don't refuse to report focus changes for replaced controls or focused ancestors (#8869)
    
    * BrowseMode: don't refuse to report focus changes for cases such as when the focus is replaced with a new focus at the same offsets, or when focus moves to an ancestor.
    
    * browseMode: Another try at not ignoreing focus as much.
    
    * Address review comments.
    
    * Update what's new.

commit c3ce6a386cf380e8f3909edb7f72eaba81127045
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Oct 24 08:41:36 2018 +1000

    Update eSpeak-ng to latest master (commit 919f3240cbb). (#8827)
    
    * Update eSpeak-ng to latest master (commit 348e7ecbd6274).
    
    * Update espeak-ng to commit 919f3240cbb
    
    * Update What's new.

commit 81294ccbb4f13082ddd3a91f9fd1f4f44959b043
Merge: 79bebe9f3 3b16afa0c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 19 00:07:03 2018 +1000

    Update translations.
    
    From translation svn revision: 44552

commit 3b16afa0c10e2dced99481de508326fd37598fb4
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 19 00:07:02 2018 +1000

    L10n updates for: zh_TW
    From translation svn revision: 44552
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    50      40      source/locale/zh_TW/LC_MESSAGES/nvda.po
    28      16      source/locale/zh_TW/characterDescriptions.dic
     2 files changed, 78 insertions(+), 56 deletions(-)

commit 2df8fe392cf6cf55b750d07a044e5ad288fc1df7
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 19 00:06:58 2018 +1000

    L10n updates for: zh_CN
    From translation svn revision: 44552
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    
    Stats:
    1       1       source/locale/zh_CN/characterDescriptions.dic
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 1d36a1d9026e413b4cbf80598f3f7eedb7222243
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 19 00:06:42 2018 +1000

    L10n updates for: so
    From translation svn revision: 44552
    
    Authors:
    Othmanothman <othman82@hotmail.com>
    
    Stats:
    503     525     source/locale/so/LC_MESSAGES/nvda.po
     1 file changed, 503 insertions(+), 525 deletions(-)

commit 91ad59da3ae603766b1ac447917dd82d2c1cbc2d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 19 00:06:29 2018 +1000

    L10n updates for: pt_BR
    From translation svn revision: 44552
    
    Authors:
    Cleverson Casarin Uliana <clul@mm.st>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    17      21      source/locale/pt_BR/LC_MESSAGES/nvda.po
     1 file changed, 17 insertions(+), 21 deletions(-)

commit 9ceb164498e0f9d0a88d72217482b5e36b5b6577
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 19 00:06:18 2018 +1000

    L10n updates for: nb_NO
    From translation svn revision: 44552
    
    Authors:
    David Hole <balubathebrave@gmail.com>
    Bjornar Seppola <bjornar@seppola.net>
    
    Stats:
    232     250     source/locale/nb_NO/LC_MESSAGES/nvda.po
     1 file changed, 232 insertions(+), 250 deletions(-)

commit 608db94cd71b5d1fec642f100a33893032caada9
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 19 00:06:04 2018 +1000

    L10n updates for: kmr
    From translation svn revision: 44552
    
    Authors:
    Imam Kahraman <imam.kahraman@googlemail.com>
    
    Stats:
    282     234     source/locale/kmr/LC_MESSAGES/nvda.po
     1 file changed, 282 insertions(+), 234 deletions(-)

commit 64d8f0cac4654ed25482c978666f154b9695ab19
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 19 00:05:48 2018 +1000

    L10n updates for: gl
    From translation svn revision: 44552
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    
    Stats:
    185     184     source/locale/gl/LC_MESSAGES/nvda.po
     1 file changed, 185 insertions(+), 184 deletions(-)

commit ee35e062979bad80b7edb2a80525eb65e1dc3f7e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 19 00:05:28 2018 +1000

    L10n updates for: de
    From translation svn revision: 44552
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    
    Stats:
    5       5       user_docs/de/userGuide.t2t
     1 file changed, 5 insertions(+), 5 deletions(-)

commit 8a7da1d483621b1789374d85b4bf1ff8db780918
Author: Marco Zehe <MarcoZehe@users.noreply.github.com>
Date:   Fri Oct 12 02:02:50 2018 +0200

    Allow pass through in ARIA menus, fixes #3215. (#8835)
    
    * Allow pass through in ARIA menus, fixes #3215.
    
    In addition to the existing elements like TableCell, column and row headers, allow menu items, menu item radio button and menu item checkbox roles to pass keys such Escape through as well. This should make the interaction in mega menus and other menu types on the web much more intuitive and eliminate the need to press Escape twice to back up a menu level or close a menu alltogether.
    
    * Fix bug for real this time.
    
    The previous commit was total bogus and in the wrong position. The script for the Escape key needs to handle these exceptions all by itself so it no longer almost unconditionally invokes browse mode. Tested and it works. :)
    
    * Make the roles a frozen set
    
    * Address review comments
    
    * Update what's new.

commit 79bebe9f394560806c0c5186941c1a314cab5131
Merge: ce57849e3 7d6f7ca49
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 12 00:07:15 2018 +1000

    Update translations.
    
    From translation svn revision: 44511

commit 7d6f7ca49fbe0163a5d9509f09493e58b3e37f6f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 12 00:07:14 2018 +1000

    L10n updates for: zh_TW
    From translation svn revision: 44511
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    132     125     source/locale/zh_TW/LC_MESSAGES/nvda.po
    20      22      user_docs/zh_TW/userGuide.t2t
     2 files changed, 152 insertions(+), 147 deletions(-)

commit 422ddbcc9af6e80a37a86696cc0defc118e6aa1d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 12 00:06:43 2018 +1000

    L10n updates for: ro
    From translation svn revision: 44511
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    
    Stats:
    1       0       source/locale/ro/symbols.dic
     1 file changed, 1 insertion(+)

commit 4e8100366cf3cce42b32e69344b7b311a141f15d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 12 00:06:35 2018 +1000

    L10n updates for: pl
    From translation svn revision: 44511
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <killer@tyflonet.com>
    
    Stats:
    15      19      source/locale/pl/LC_MESSAGES/nvda.po
     1 file changed, 15 insertions(+), 19 deletions(-)

commit 8646a05601609667a4bb5cd20d3695a6c12c2f1d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 12 00:06:24 2018 +1000

    L10n updates for: mn
    From translation svn revision: 44511
    
    Authors:
    Mongol NVDA-Translation <mongoliannvdatranslation@gmail.com>
    
    Stats:
    86      95      user_docs/mn/userGuide.t2t
     1 file changed, 86 insertions(+), 95 deletions(-)

commit d1a0e1d9b92c39ba8ef5c7ba76f899b90fdacbe6
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 12 00:06:00 2018 +1000

    L10n updates for: hr
    From translation svn revision: 44511
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Mario Percinic <mario.percinic@gmail.com>
    Tea Turkovic <tturkovi@gmail.com>
    
    Stats:
    14      14      user_docs/hr/changes.t2t
    7       9       user_docs/hr/userGuide.t2t
     2 files changed, 21 insertions(+), 23 deletions(-)

commit c1ae6810a7dde5f66257f3c18841ea80ae876521
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 12 00:05:46 2018 +1000

    L10n updates for: fa
    From translation svn revision: 44511
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    11      11      source/locale/fa/LC_MESSAGES/nvda.po
     1 file changed, 11 insertions(+), 11 deletions(-)

commit 777b9edf678a0e28081c8ed6df3a557b17fec5c4
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 12 00:05:41 2018 +1000

    L10n updates for: es
    From translation svn revision: 44511
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    
    Stats:
    275     275     source/locale/es/LC_MESSAGES/nvda.po
     1 file changed, 275 insertions(+), 275 deletions(-)

commit 526d6fca226d252c32e281eef96e7ee147a5869b
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Oct 10 12:46:40 2018 +1000

    Gecko vbufBackend: If a table row is invalidated, it should not require its parent to be updated (#8833)
    
    * Gecko vbufBackend: If a table row is invalidated, it should not require its parent to be updated. this is not logically needed, and caused a major performance hit on gmail.
    
    * Fix typo in comment.

commit e713f614604fb4fa151b4d3eca1132f30b576626
Author: Davy Kager <dkager@users.noreply.github.com>
Date:   Fri Oct 5 08:51:09 2018 +0200

    Don't throw an error when doing ui.message(None). (#8645)
    
    In particular, gracefully handle sending None to braille.BrailleHandler.message().

commit 6e0b3469e591047ad8b833417d0e79b17dd86a7d
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Thu Oct 4 23:47:42 2018 -0700

    Emojis: build data for Vietnamese and Chinese variants. re #8799. (#8803)

commit ce57849e3f8408fbde5516855cd8274085d2fee8
Merge: 64e3f6f98 c651f0b64
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 5 00:07:21 2018 +1000

    Update translations.
    
    From translation svn revision: 44484

commit c651f0b640d34b6768c40dd52a49485cbece5883
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 5 00:07:19 2018 +1000

    L10n updates for: zh_TW
    From translation svn revision: 44484
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    37      29      source/locale/zh_TW/characterDescriptions.dic
     1 file changed, 37 insertions(+), 29 deletions(-)

commit f1f56b2ea99f30ac68587ce4c8d18cf63aa34be9
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 5 00:07:16 2018 +1000

    L10n updates for: zh_CN
    From translation svn revision: 44484
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    
    Stats:
    12      12      source/locale/zh_CN/LC_MESSAGES/nvda.po
    4       0       user_docs/zh_CN/changes.t2t
     2 files changed, 16 insertions(+), 12 deletions(-)

commit dd8ced528536f31ecc4002a3dc420d4314e8f7f3
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 5 00:07:11 2018 +1000

    L10n updates for: vi
    From translation svn revision: 44484
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    25      24      source/locale/vi/LC_MESSAGES/nvda.po
    5       1       user_docs/vi/changes.t2t
     2 files changed, 30 insertions(+), 25 deletions(-)

commit d1479c47b76148446753ef6d70d99193372cced7
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 5 00:07:06 2018 +1000

    L10n updates for: tr
    From translation svn revision: 44484
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    11      11      source/locale/tr/LC_MESSAGES/nvda.po
    7       3       user_docs/tr/changes.t2t
     2 files changed, 18 insertions(+), 14 deletions(-)

commit 42f5bef0fc6f3864a2f6273857b91c6f770bf9cb
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 5 00:06:51 2018 +1000

    L10n updates for: ru
    From translation svn revision: 44484
    
    Authors:
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    11      11      source/locale/ru/LC_MESSAGES/nvda.po
    2       0       source/locale/ru/symbols.dic
    5       1       user_docs/ru/changes.t2t
     3 files changed, 18 insertions(+), 12 deletions(-)

commit 7f0188f76b6962dd3ca05225c1dae6bc6175bf40
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 5 00:06:46 2018 +1000

    L10n updates for: ro
    From translation svn revision: 44484
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    
    Stats:
    98      99      source/locale/ro/LC_MESSAGES/nvda.po
    2       1       source/locale/ro/symbols.dic
    4       0       user_docs/ro/changes.t2t
     3 files changed, 104 insertions(+), 100 deletions(-)

commit 1730faf900ff2d42471000ff69a74eaaeb1cef29
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 5 00:06:43 2018 +1000

    L10n updates for: pt_PT
    From translation svn revision: 44484
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    16      20      source/locale/pt_PT/LC_MESSAGES/nvda.po
    37      0       user_docs/pt_PT/changes.t2t
     2 files changed, 53 insertions(+), 20 deletions(-)

commit ab61f905bb88bccf3eff0a183c04f4faf7486edb
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 5 00:06:39 2018 +1000

    L10n updates for: pt_BR
    From translation svn revision: 44484
    
    Authors:
    Cleverson Casarin Uliana <clever97@gmail.com>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    4       0       user_docs/pt_BR/changes.t2t
     1 file changed, 4 insertions(+)

commit ba547589c319a5041f7f94814446d4fa89f7e520
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 5 00:06:28 2018 +1000

    L10n updates for: nb_NO
    From translation svn revision: 44484
    
    Authors:
    David Hole <balubathebrave@gmail.com>
    Bjornar Seppola <bjornar@seppola.net>
    
    Stats:
    502     644     source/locale/nb_NO/LC_MESSAGES/nvda.po
     1 file changed, 502 insertions(+), 644 deletions(-)

commit eb8387f1a00d9bb9a947f1b63edc460169d7d53a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 5 00:06:13 2018 +1000

    L10n updates for: ja
    From translation svn revision: 44484
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    11      11      source/locale/ja/LC_MESSAGES/nvda.po
    58      1       source/locale/ja/symbols.dic
    4       0       user_docs/ja/changes.t2t
    2       2       user_docs/ja/userGuide.t2t
     4 files changed, 75 insertions(+), 14 deletions(-)

commit e06d885e29a6375445073307d6413856d6a7789e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 5 00:06:00 2018 +1000

    L10n updates for: hr
    From translation svn revision: 44484
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Mario Percinic <mario.percinic@gmail.com>
    Tea Turkovic <tturkovi@gmail.com>
    
    Stats:
    25      26      source/locale/hr/LC_MESSAGES/nvda.po
    33      1       user_docs/hr/changes.t2t
     2 files changed, 58 insertions(+), 27 deletions(-)

commit 8105b4c22d3825e0fd5a6d13c789f3dfe31e2ffa
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 5 00:05:54 2018 +1000

    L10n updates for: gl
    From translation svn revision: 44484
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    
    Stats:
    11      11      source/locale/gl/LC_MESSAGES/nvda.po
    4       0       user_docs/gl/changes.t2t
     2 files changed, 15 insertions(+), 11 deletions(-)

commit 8720a9f9a88b05e93d312d2e9a1f2e3426939fad
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 5 00:05:50 2018 +1000

    L10n updates for: fr
    From translation svn revision: 44484
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    12      12      source/locale/fr/LC_MESSAGES/nvda.po
    4       0       user_docs/fr/changes.t2t
     2 files changed, 16 insertions(+), 12 deletions(-)

commit 93864f7a8a0b2d7598c800005c50e828aca7b024
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 5 00:05:47 2018 +1000

    L10n updates for: fi
    From translation svn revision: 44484
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    14      14      source/locale/fi/LC_MESSAGES/nvda.po
    4       0       user_docs/fi/changes.t2t
     2 files changed, 18 insertions(+), 14 deletions(-)

commit 45a7c16868236318a5db227819e9be915728e755
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 5 00:05:40 2018 +1000

    L10n updates for: es
    From translation svn revision: 44484
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    
    Stats:
    14      14      source/locale/es/LC_MESSAGES/nvda.po
    4       0       user_docs/es/changes.t2t
     2 files changed, 18 insertions(+), 14 deletions(-)

commit 252df9983fc7e7e2c26b2980776e8fb8619c4610
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 5 00:05:32 2018 +1000

    L10n updates for: de
    From translation svn revision: 44484
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    
    Stats:
    15      15      source/locale/de/LC_MESSAGES/nvda.po
    6       2       user_docs/de/changes.t2t
    11      11      user_docs/de/userGuide.t2t
     3 files changed, 32 insertions(+), 28 deletions(-)

commit dc3142f4e06f4a41f4fa1fbe5973abc71809c367
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 5 00:05:24 2018 +1000

    L10n updates for: cs
    From translation svn revision: 44484
    
    Authors:
    Martina Letochova <letochova@seznam.cz>
    
    Stats:
    16      173     source/locale/cs/LC_MESSAGES/nvda.po
     1 file changed, 16 insertions(+), 173 deletions(-)

commit 4ed5d990d04dc463c08870b76ae9418406f4078e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 5 00:05:09 2018 +1000

    L10n updates for: an
    From translation svn revision: 44484
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    
    Stats:
    24      28      source/locale/an/LC_MESSAGES/nvda.po
     1 file changed, 24 insertions(+), 28 deletions(-)

commit 1feead43e70d95eea3810e477f63075b78a2de2b
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Thu Oct 4 16:16:50 2018 +1000

    Use core.callLater in place of wx.CallLater when executing callbacks for browseMode to ensure that code is executed within NVDA's core pump, stopping the possibilities of recursion through wx.Yield. (#8818)

commit 850e10acb98fc956013d36c7d5cc92ab341ec302
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Thu Oct 4 16:16:12 2018 +1000

    MS Word: allow reporting distance from left and top edges of page with report location of review cursor command (#8814)
    
    * MS Word: allow reporting distance from left and top edges of page with report location of review cursor command: NVDA+numpadDelete.
    
    * Remove unneeded space from string
    
    * Address review comments.
    
    * Address review comments.

commit 64e3f6f98730222d48abb70b4b0722682b9072c9
Merge: c72a4c797 b7ddac940
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 28 00:08:06 2018 +1000

    Update translations.
    
    From translation svn revision: 44308

commit b7ddac940f23488ca956bd750b48fdc182d03c48
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 28 00:08:04 2018 +1000

    L10n updates for: zh_TW
    From translation svn revision: 44308
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    60      56      source/locale/zh_TW/LC_MESSAGES/nvda.po
    3       3       user_docs/zh_TW/changes.t2t
    25      25      user_docs/zh_TW/userGuide.t2t
     3 files changed, 88 insertions(+), 84 deletions(-)

commit f13ca53840f01faf67d0eeb8d9bb9229a5a84d64
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 28 00:07:59 2018 +1000

    L10n updates for: zh_HK
    From translation svn revision: 44308
    
    Authors:
    Eric Yip <ericycy@gmail.com>
    
    Stats:
    61      57      source/locale/zh_HK/LC_MESSAGES/nvda.po
    2       2       source/locale/zh_HK/characterDescriptions.dic
     2 files changed, 63 insertions(+), 59 deletions(-)

commit 736a256b6ac7540d6bb7e1946f39848d3a7de54b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 28 00:07:58 2018 +1000

    L10n updates for: zh_CN
    From translation svn revision: 44308
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    
    Stats:
    13      13      source/locale/zh_CN/LC_MESSAGES/nvda.po
    7       3       user_docs/zh_CN/changes.t2t
    28      28      user_docs/zh_CN/userGuide.t2t
     3 files changed, 48 insertions(+), 44 deletions(-)

commit 16930d2322542cadb2beb5abb01939add70c9561
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 28 00:07:53 2018 +1000

    L10n updates for: vi
    From translation svn revision: 44308
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    11      11      source/locale/vi/LC_MESSAGES/nvda.po
    1       1       source/locale/vi/characterDescriptions.dic
    6       3       user_docs/vi/changes.t2t
    25      25      user_docs/vi/userGuide.t2t
     4 files changed, 43 insertions(+), 40 deletions(-)

commit 13614db7b89097d6f34775fd3b3238dd05cde2db
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 28 00:07:50 2018 +1000

    L10n updates for: uk
    From translation svn revision: 44308
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    62      57      source/locale/uk/LC_MESSAGES/nvda.po
    24      24      user_docs/uk/userGuide.t2t
     2 files changed, 86 insertions(+), 81 deletions(-)

commit ac43389a9d27f51009bcaa7e8511f31613ad07ca
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 28 00:07:47 2018 +1000

    L10n updates for: tr
    From translation svn revision: 44308
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    11      11      source/locale/tr/LC_MESSAGES/nvda.po
    1       1       source/locale/tr/characterDescriptions.dic
    7       6       user_docs/tr/changes.t2t
    24      24      user_docs/tr/userGuide.t2t
     4 files changed, 43 insertions(+), 42 deletions(-)

commit aa2a10502318d2e611ba4a36cf7ce0682d24ad54
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 28 00:07:42 2018 +1000

    L10n updates for: ta
    From translation svn revision: 44308
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    737     662     source/locale/ta/LC_MESSAGES/nvda.po
    1       1       source/locale/ta/characterDescriptions.dic
    1       1       source/locale/ta/symbols.dic
    7       9       user_docs/ta/userGuide.t2t
     4 files changed, 746 insertions(+), 673 deletions(-)

commit 2f818a8ec8d7bb72fc572f4d6171ecfe94e0ce9a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 28 00:07:39 2018 +1000

    L10n updates for: sv
    From translation svn revision: 44308
    
    Authors:
    Daniel Johansson <daniel.johansson@coeptus.se>
    Niklas Johansson <sleeping.pillow@gmail.com>
    
    Stats:
    178     105     source/locale/sv/LC_MESSAGES/nvda.po
    1       1       source/locale/sv/characterDescriptions.dic
    31      31      user_docs/sv/userGuide.t2t
     3 files changed, 210 insertions(+), 137 deletions(-)

commit 0dab7013f1d061aa6fd24569026fb9f4cc5e9c3b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 28 00:07:37 2018 +1000

    L10n updates for: sr
    From translation svn revision: 44308
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    12      12      source/locale/sr/LC_MESSAGES/nvda.po
    1       1       source/locale/sr/characterDescriptions.dic
    24      24      user_docs/sr/userGuide.t2t
     3 files changed, 37 insertions(+), 37 deletions(-)

commit b63ea9f504e5c8506480c49c61e784d67e2a4e07
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 28 00:07:34 2018 +1000

    L10n updates for: so
    From translation svn revision: 44308
    
    Authors:
    Othmanothman <othman82@hotmail.com>
    
    Stats:
    1       1       source/locale/so/characterDescriptions.dic
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 8caffe5db35152eb8d9f61bea3d9260a620f573d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 28 00:07:33 2018 +1000

    L10n updates for: sl
    From translation svn revision: 44308
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    165     12      source/locale/sl/LC_MESSAGES/nvda.po
    1       1       source/locale/sl/characterDescriptions.dic
    23      23      user_docs/sl/userGuide.t2t
     3 files changed, 189 insertions(+), 36 deletions(-)

commit 720a037c3deb3fd33855e7c2838a16e759e7cfdd
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 28 00:07:31 2018 +1000

    L10n updates for: sk
    From translation svn revision: 44308
    
    Authors:
    Ondrej Rosik <ondrej.rosik@gmail.com>
    Peter Vagner <peter.v@datagate.sk>
    
    Stats:
    61      57      source/locale/sk/LC_MESSAGES/nvda.po
    1       1       source/locale/sk/characterDescriptions.dic
    2       2       user_docs/sk/changes.t2t
    23      23      user_docs/sk/userGuide.t2t
     4 files changed, 87 insertions(+), 83 deletions(-)

commit 9f88299cc220cf20d93993e7ed75194cd5f1143b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 28 00:07:28 2018 +1000

    L10n updates for: ru
    From translation svn revision: 44308
    
    Authors:
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    11      11      source/locale/ru/LC_MESSAGES/nvda.po
    1       1       source/locale/ru/characterDescriptions.dic
    11      7       user_docs/ru/changes.t2t
    21      21      user_docs/ru/userGuide.t2t
     4 files changed, 44 insertions(+), 40 deletions(-)

commit e0653d26abd10ba1449f54b4e7c00d70a2d40e92
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 28 00:07:23 2018 +1000

    L10n updates for: ro
    From translation svn revision: 44308
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    
    Stats:
    11      11      source/locale/ro/LC_MESSAGES/nvda.po
    1       1       source/locale/ro/characterDescriptions.dic
    4       3       user_docs/ro/changes.t2t
    24      24      user_docs/ro/userGuide.t2t
     4 files changed, 40 insertions(+), 39 deletions(-)

commit 61331aa21bbfacaf4d6577395ab1754b4c20a015
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 28 00:07:20 2018 +1000

    L10n updates for: pt_PT
    From translation svn revision: 44308
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    63      58      source/locale/pt_PT/LC_MESSAGES/nvda.po
    1       1       source/locale/pt_PT/characterDescriptions.dic
    3       3       user_docs/pt_PT/changes.t2t
    23      23      user_docs/pt_PT/userGuide.t2t
     4 files changed, 90 insertions(+), 85 deletions(-)

commit 95b4a3a1d6d43c658ea8f47a17f7e6f6bd9d595e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 28 00:07:16 2018 +1000

    L10n updates for: pt_BR
    From translation svn revision: 44308
    
    Authors:
    Cleverson Casarin Uliana <clever97@gmail.com>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    61      57      source/locale/pt_BR/LC_MESSAGES/nvda.po
    1       1       source/locale/pt_BR/characterDescriptions.dic
    6       5       user_docs/pt_BR/changes.t2t
    23      23      user_docs/pt_BR/userGuide.t2t
     4 files changed, 91 insertions(+), 86 deletions(-)

commit b2552bdc553a92710cdb8325f1556566bad50aac
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 28 00:07:12 2018 +1000

    L10n updates for: pl
    From translation svn revision: 44308
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <killer@tyflonet.com>
    
    Stats:
    60      56      source/locale/pl/LC_MESSAGES/nvda.po
    1       1       source/locale/pl/characterDescriptions.dic
    23      23      user_docs/pl/userGuide.t2t
     3 files changed, 84 insertions(+), 80 deletions(-)

commit 546a4e9ada3e6945412aeb14795345064f90c9ff
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 28 00:07:09 2018 +1000

    L10n updates for: pa
    From translation svn revision: 44308
    
    Authors:
    Maheshinder Singh Khosla <mahesh.khosla@gmail.com>
    Dinesh Mittal <punjabimaster259@gmail.com>
    
    Stats:
    1995    1362    source/locale/pa/LC_MESSAGES/nvda.po
    1       1       source/locale/pa/characterDescriptions.dic
     2 files changed, 1996 insertions(+), 1363 deletions(-)

commit ac3ad1591e2d41d9710879a6854eb02e2128da8a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 28 00:07:07 2018 +1000

    L10n updates for: nl
    From translation svn revision: 44308
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    61      57      source/locale/nl/LC_MESSAGES/nvda.po
    2       2       source/locale/nl/characterDescriptions.dic
    29      31      user_docs/nl/userGuide.t2t
     3 files changed, 92 insertions(+), 90 deletions(-)

commit 905306b6bc0fbb41b5cd1de4215ca236af7874d7
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 28 00:07:02 2018 +1000

    L10n updates for: ne
    From translation svn revision: 44308
    
    Authors:
    him Prasad Gautam <drishtibachak@gmail.com>
    
    Stats:
    2388    1585    source/locale/ne/LC_MESSAGES/nvda.po
    1       1       source/locale/ne/characterDescriptions.dic
    32      32      user_docs/ne/userGuide.t2t
     3 files changed, 2421 insertions(+), 1618 deletions(-)

commit 665dfc5c93952f1c1072eb1627bf5744ac934a97
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 28 00:06:59 2018 +1000

    L10n updates for: nb_NO
    From translation svn revision: 44308
    
    Authors:
    David Hole <balubathebrave@gmail.com>
    Bjornar Seppola <bjornar@seppola.net>
    
    Stats:
    686     788     source/locale/nb_NO/LC_MESSAGES/nvda.po
    1       1       source/locale/nb_NO/characterDescriptions.dic
     2 files changed, 687 insertions(+), 789 deletions(-)

commit 89fe2083bd987c929d6aec9615eefb2321cf15ed
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 28 00:06:57 2018 +1000

    L10n updates for: my
    From translation svn revision: 44308
    
    Authors:
    Benedict La hkun <lkbenedict@gmail.com>
    
    Stats:
    61      57      source/locale/my/LC_MESSAGES/nvda.po
    1       1       source/locale/my/characterDescriptions.dic
    28      28      user_docs/my/userGuide.t2t
     3 files changed, 90 insertions(+), 86 deletions(-)

commit 627dd5519b421f17be8ab65b907c4ea99f0b245c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 28 00:06:54 2018 +1000

    L10n updates for: mn
    From translation svn revision: 44308
    
    Authors:
    Mongol NVDA-Translation <mongoliannvdatranslation@gmail.com>
    
    Stats:
    66      59      source/locale/mn/LC_MESSAGES/nvda.po
    1       1       source/locale/mn/characterDescriptions.dic
    3       3       user_docs/mn/changes.t2t
    23      23      user_docs/mn/userGuide.t2t
     4 files changed, 93 insertions(+), 86 deletions(-)

commit 944bcf9cab5d713ab29ee9ecc7c78640c92883bd
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 28 00:06:50 2018 +1000

    L10n updates for: mk
    From translation svn revision: 44308
    
    Authors:
    zvonimir stanecic <9a5dsz@gozaltech.org>
    Kiko Lazarev <kristijan.lazarev@gmail.com>
    
    Stats:
    61      57      source/locale/mk/LC_MESSAGES/nvda.po
    1       1       source/locale/mk/characterDescriptions.dic
    27      27      user_docs/mk/userGuide.t2t
     3 files changed, 89 insertions(+), 85 deletions(-)

commit 0c8977df7edc423f9a12e737cd3b732f4a22870c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 28 00:06:46 2018 +1000

    L10n updates for: lt
    From translation svn revision: 44308
    
    Authors:
    Paulius Leveris <paulius.leveris@gmail.com>
    Rimas Kudelis <rq@akl.lt>
    
    Stats:
    2054    1397    source/locale/lt/LC_MESSAGES/nvda.po
    1       1       source/locale/lt/characterDescriptions.dic
     2 files changed, 2055 insertions(+), 1398 deletions(-)

commit b7d6eac67009e8e191a441f0172a0613a0e7933d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 28 00:06:45 2018 +1000

    L10n updates for: ky
    From translation svn revision: 44308
    
    Authors:
    Bermet Zhakypbekova <bermet.zhakypbekova@gmail.com>
    
    Stats:
    1       1       source/locale/ky/characterDescriptions.dic
    1       1       user_docs/ky/userGuide.t2t
     2 files changed, 2 insertions(+), 2 deletions(-)

commit 0befc38008c6a71862351e259a00f001c9b31b36
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 28 00:06:43 2018 +1000

    L10n updates for: ko
    From translation svn revision: 44308
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    Stanley Chung <stanley@mail.com>
    
    Stats:
    60      56      source/locale/ko/LC_MESSAGES/nvda.po
    1       1       source/locale/ko/characterDescriptions.dic
    24      24      user_docs/ko/userGuide.t2t
     3 files changed, 85 insertions(+), 81 deletions(-)

commit 18a497fdf61557da0ecdd6617d0c59b91d1d61b8
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 28 00:06:40 2018 +1000

    L10n updates for: kn
    From translation svn revision: 44308
    
    Authors:
    Siddalingeshwar Ingalagi <ingalagisiddu@gmail.com>
    
    Stats:
    579     463     source/locale/kn/LC_MESSAGES/nvda.po
    1       1       source/locale/kn/characterDescriptions.dic
     2 files changed, 580 insertions(+), 464 deletions(-)

commit 7b0a151cec6157904c61d2657ab35bb5795a77f6
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 28 00:06:38 2018 +1000

    L10n updates for: kmr
    From translation svn revision: 44308
    
    Authors:
    Imam Kahraman <imam.kahraman@googlemail.com>
    
    Stats:
    436     374     source/locale/kmr/LC_MESSAGES/nvda.po
    1       1       source/locale/kmr/characterDescriptions.dic
     2 files changed, 437 insertions(+), 375 deletions(-)

commit aa7a9a4d5e653d353870a722065aacac60ad8e86
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 28 00:06:37 2018 +1000

    L10n updates for: ka
    From translation svn revision: 44308
    
    Authors:
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Goderdzi Gogoladze <goderdzigogoladze@gmail.com>
    
    Stats:
    2010    1368    source/locale/ka/LC_MESSAGES/nvda.po
    1       1       source/locale/ka/characterDescriptions.dic
     2 files changed, 2011 insertions(+), 1369 deletions(-)

commit 5b061d633367b1e01a26297706259bead90d70e3
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 28 00:06:35 2018 +1000

    L10n updates for: ja
    From translation svn revision: 44308
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    59      59      source/locale/ja/LC_MESSAGES/nvda.po
    37      3       user_docs/ja/changes.t2t
    29      31      user_docs/ja/userGuide.t2t
     3 files changed, 125 insertions(+), 93 deletions(-)

commit ed2df958c72d34f1330599f7d1875e9d3bf497fa
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 28 00:06:31 2018 +1000

    L10n updates for: it
    From translation svn revision: 44308
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    61      57      source/locale/it/LC_MESSAGES/nvda.po
    1       1       source/locale/it/characterDescriptions.dic
    3       3       user_docs/it/changes.t2t
    24      24      user_docs/it/userGuide.t2t
     4 files changed, 89 insertions(+), 85 deletions(-)

commit 317ba864302ca1db354a899e8bb02937aebc0f22
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 28 00:06:27 2018 +1000

    L10n updates for: is
    From translation svn revision: 44308
    
    Authors:
    Birkir R. Gunnarsson <birkir.gunnarsson@gmail.com>
    Hlynur Hreinsson <hm.hreinsson@gmail.com>
    
    Stats:
    1832    1238    source/locale/is/LC_MESSAGES/nvda.po
    1       1       source/locale/is/characterDescriptions.dic
    26      26      user_docs/is/userGuide.t2t
     3 files changed, 1859 insertions(+), 1265 deletions(-)

commit 7b9df8e85a520b6e61a9ea360fc4fec3e5bbe4d8
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 28 00:06:25 2018 +1000

    L10n updates for: hu
    From translation svn revision: 44308
    
    Authors:
    Aron OcsvAri <oaron@nvda.hu>
    
    Stats:
    62      58      source/locale/hu/LC_MESSAGES/nvda.po
    1       1       source/locale/hu/characterDescriptions.dic
    1       1       user_docs/hu/changes.t2t
    28      28      user_docs/hu/userGuide.t2t
     4 files changed, 92 insertions(+), 88 deletions(-)

commit 42434248332d7111ed7ad65467099e6c1bd73310
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 28 00:06:21 2018 +1000

    L10n updates for: hr
    From translation svn revision: 44308
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Mario Percinic <mario.percinic@gmail.com>
    Tea Turkovic <tturkovi@gmail.com>
    
    Stats:
    59      59      source/locale/hr/LC_MESSAGES/nvda.po
    1       1       source/locale/hr/characterDescriptions.dic
    25      25      user_docs/hr/userGuide.t2t
     3 files changed, 85 insertions(+), 85 deletions(-)

commit b6ec22f737ba82d3f5adc02c81debabcc47adcfc
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 28 00:06:19 2018 +1000

    L10n updates for: hi
    From translation svn revision: 44308
    
    Authors:
    dipendra.lists@gmail.com
    
    Stats:
    2228    1489    source/locale/hi/LC_MESSAGES/nvda.po
    1       1       source/locale/hi/characterDescriptions.dic
    10      10      user_docs/hi/userGuide.t2t
     3 files changed, 2239 insertions(+), 1500 deletions(-)

commit 5ea6d353dc66d5904988594c03ab6eba7e53804b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 28 00:06:16 2018 +1000

    L10n updates for: he
    From translation svn revision: 44308
    
    Authors:
    Shmuel Naaman <shmuel_naaman@yahoo.com>
    Afik Sofir <afik.sofer@gmail.com>
    
    Stats:
    61      57      source/locale/he/LC_MESSAGES/nvda.po
    1       1       source/locale/he/characterDescriptions.dic
    28      28      user_docs/he/userGuide.t2t
     3 files changed, 90 insertions(+), 86 deletions(-)

commit 00fe508d209a637c98190f3289d3194d0c5446f6
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 28 00:06:12 2018 +1000

    L10n updates for: gl
    From translation svn revision: 44308
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    
    Stats:
    11      11      source/locale/gl/LC_MESSAGES/nvda.po
    1       1       source/locale/gl/characterDescriptions.dic
    7       4       user_docs/gl/changes.t2t
    24      24      user_docs/gl/userGuide.t2t
     4 files changed, 43 insertions(+), 40 deletions(-)

commit 01aadf1ee651e468d60fd6bb0a314ca873d5c2f9
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 28 00:06:08 2018 +1000

    L10n updates for: ga
    From translation svn revision: 44308
    
    Authors:
    Cearbhall OMeadhra <cearbhall.omeadhra@blbc.ie>
    Ronan McGuirk <ronan.p.mcguirk@gmail.com>
    Kevin Scannell <kscanne@gmail.com>
    
    Stats:
    224     104     source/locale/ga/LC_MESSAGES/nvda.po
    1       1       source/locale/ga/characterDescriptions.dic
     2 files changed, 225 insertions(+), 105 deletions(-)

commit 9f97ec3445fe5bb0e7dda508b7b5edcf2eda8d63
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 28 00:06:07 2018 +1000

    L10n updates for: fr
    From translation svn revision: 44308
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    12      12      source/locale/fr/LC_MESSAGES/nvda.po
    1       1       source/locale/fr/characterDescriptions.dic
    38      4       user_docs/fr/changes.t2t
    24      24      user_docs/fr/userGuide.t2t
     4 files changed, 75 insertions(+), 41 deletions(-)

commit 2e6d6bfd8fc8bdbcdb593fbf947ec2106f698ad5
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 28 00:06:02 2018 +1000

    L10n updates for: fi
    From translation svn revision: 44308
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    12      12      source/locale/fi/LC_MESSAGES/nvda.po
    1       1       source/locale/fi/characterDescriptions.dic
    6       2       user_docs/fi/changes.t2t
    23      23      user_docs/fi/userGuide.t2t
     4 files changed, 42 insertions(+), 38 deletions(-)

commit 437de7d8e7f8f33fd9d084e8883acdd68780e7a5
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 28 00:05:58 2018 +1000

    L10n updates for: fa
    From translation svn revision: 44308
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    11      11      source/locale/fa/LC_MESSAGES/nvda.po
    1       1       source/locale/fa/characterDescriptions.dic
    4       0       user_docs/fa/changes.t2t
    23      23      user_docs/fa/userGuide.t2t
     4 files changed, 39 insertions(+), 35 deletions(-)

commit 8d2845ab65446dc4e71c9686c6d3a41ed016165d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 28 00:05:54 2018 +1000

    L10n updates for: es
    From translation svn revision: 44308
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    
    Stats:
    11      11      source/locale/es/LC_MESSAGES/nvda.po
    1       1       source/locale/es/characterDescriptions.dic
    7       4       user_docs/es/changes.t2t
    24      24      user_docs/es/userGuide.t2t
     4 files changed, 43 insertions(+), 40 deletions(-)

commit a1e0da428dc221b81b234623fe8bbf7bbcd3dbbf
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 28 00:05:49 2018 +1000

    L10n updates for: es_CO
    From translation svn revision: 44308
    
    Authors:
    Jorge Zarache <reydelasmaquinas@outlook.com>
    
    Stats:
    2019    1371    source/locale/es_CO/LC_MESSAGES/nvda.po
    1       1       source/locale/es_CO/characterDescriptions.dic
    3       3       user_docs/es_CO/changes.t2t
    31      31      user_docs/es_CO/userGuide.t2t
     4 files changed, 2054 insertions(+), 1406 deletions(-)

commit 18a9ce53aaa8497b9e3d9aba96ef6724af3e5df8
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 28 00:05:45 2018 +1000

    L10n updates for: el
    From translation svn revision: 44308
    
    Authors:
    Irene Nakas <irnakas@gmail.com>
    Nikos Demetriou <nikosdemetriou@googlemail.com>
    access@e-rhetor.com
    
    Stats:
    63      58      source/locale/el/LC_MESSAGES/nvda.po
    1       1       source/locale/el/characterDescriptions.dic
    30      30      user_docs/el/userGuide.t2t
     3 files changed, 94 insertions(+), 89 deletions(-)

commit 6bddb89f8bff2280ffde311b3f2a2ad70e0ede88
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 28 00:05:40 2018 +1000

    L10n updates for: de
    From translation svn revision: 44308
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    
    Stats:
    55      55      source/locale/de/LC_MESSAGES/nvda.po
    1       1       source/locale/de/characterDescriptions.dic
    24      20      user_docs/de/changes.t2t
    37      37      user_docs/de/userGuide.t2t
     4 files changed, 117 insertions(+), 113 deletions(-)

commit a6f40d750c5ac3415cd4d53b386cc5d46202b52d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 28 00:05:37 2018 +1000

    L10n updates for: de_CH
    From translation svn revision: 44308
    
    Authors:
    Robert Hänggi <aarjay.robert@gmail.com>
    
    Stats:
    228     104     source/locale/de_CH/LC_MESSAGES/nvda.po
    1       1       source/locale/de_CH/characterDescriptions.dic
    3       3       user_docs/de_CH/changes.t2t
     3 files changed, 232 insertions(+), 108 deletions(-)

commit 01be3f82ec27407ebaab8e284afd286faa0ea891
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 28 00:05:33 2018 +1000

    L10n updates for: da
    From translation svn revision: 44308
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    61      57      source/locale/da/LC_MESSAGES/nvda.po
    1       1       source/locale/da/characterDescriptions.dic
    23      23      user_docs/da/userGuide.t2t
     3 files changed, 85 insertions(+), 81 deletions(-)

commit 37c1702fa63978badaed585c4e4ef8508cd4b12f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 28 00:05:30 2018 +1000

    L10n updates for: cs
    From translation svn revision: 44308
    
    Authors:
    Martina Letochova <letochova@seznam.cz>
    
    Stats:
    216     59      source/locale/cs/LC_MESSAGES/nvda.po
    1       1       source/locale/cs/characterDescriptions.dic
    2       2       user_docs/cs/changes.t2t
    12      12      user_docs/cs/userGuide.t2t
     4 files changed, 231 insertions(+), 74 deletions(-)

commit 99c0d1f1808cb714a6bbf42db97f946a548ed7db
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 28 00:05:28 2018 +1000

    L10n updates for: ckb
    From translation svn revision: 44308
    
    Authors:
    Ali Ustek <aliustek@gmail.com>
    Patrick Galasso <Patrice.galasso@gmail.com>
    Jwanro Mustafa <jwanroabdula@hotmail.com>
    Kosrat D Ahmad <kosrat.d.ahmad@gmail.com>
    
    Stats:
    10563   10291   source/locale/ckb/LC_MESSAGES/nvda.po
    1       1       source/locale/ckb/characterDescriptions.dic
     2 files changed, 10564 insertions(+), 10292 deletions(-)

commit 725b7091e15fecf333a5b7b1c14b57ce376cccb8
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 28 00:05:26 2018 +1000

    L10n updates for: ca
    From translation svn revision: 44308
    
    Authors:
    Ruben Alcaraz <ruben.hangar1.8@gmail.com>
    Dr. Mireia Ribera <mireia.ribera@gmail.com>
    Santi Moese <santispock@gmail.com>
    Marina Salse Rovira <salse@ub.edu>
    
    Stats:
    65      61      source/locale/ca/LC_MESSAGES/nvda.po
    1       1       source/locale/ca/characterDescriptions.dic
    3       3       user_docs/ca/changes.t2t
    32      32      user_docs/ca/userGuide.t2t
     4 files changed, 101 insertions(+), 97 deletions(-)

commit f317f59dd4e01ca8b3d8e43eb2e972b128b14e1b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 28 00:05:22 2018 +1000

    L10n updates for: bg
    From translation svn revision: 44308
    
    Authors:
    Zahari Yurukov <zahari.yurukov@gmail.com>
    Kostadin Kolev <k_kolev1985@mail.bg>
    
    Stats:
    61      57      source/locale/bg/LC_MESSAGES/nvda.po
    1       1       source/locale/bg/characterDescriptions.dic
    3       3       user_docs/bg/changes.t2t
    23      23      user_docs/bg/userGuide.t2t
     4 files changed, 88 insertions(+), 84 deletions(-)

commit 9933f16faa677b9c01f4c8b6fbb47e0b4a193f22
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 28 00:05:16 2018 +1000

    L10n updates for: ar
    From translation svn revision: 44308
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    65      61      source/locale/ar/LC_MESSAGES/nvda.po
    1       1       source/locale/ar/characterDescriptions.dic
    1       1       user_docs/ar/changes.t2t
    28      28      user_docs/ar/userGuide.t2t
     4 files changed, 95 insertions(+), 91 deletions(-)

commit 5e153974a7068bea95d2a3613f42b6ca2b658571
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 28 00:05:10 2018 +1000

    L10n updates for: an
    From translation svn revision: 44308
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    
    Stats:
    64      59      source/locale/an/LC_MESSAGES/nvda.po
    1       1       source/locale/an/characterDescriptions.dic
    3       3       user_docs/an/changes.t2t
    23      23      user_docs/an/userGuide.t2t
     4 files changed, 91 insertions(+), 86 deletions(-)

commit 895287d2bb257b13076bf84298d509873d788e2f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 28 00:05:06 2018 +1000

    L10n updates for: am
    From translation svn revision: 44308
    
    Authors:
    KETEMA ZEREGAW <kzeregaw@msn.com>
    Dr. Tamru E. Belay <g.braille@sympatico.ca>
    
    Stats:
    1651    1192    source/locale/am/LC_MESSAGES/nvda.po
    3       3       user_docs/am/userGuide.t2t
     2 files changed, 1654 insertions(+), 1195 deletions(-)

commit 142e542a2d07c7bce51eafbb25ad786982c44798
Merge: d36ac204e c72a4c797
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Sep 26 17:17:30 2018 +1000

    Merge branch 'beta'

commit c72a4c797e340c9b107aaf54d5dab20614cc7103
Merge: dcb374e69 1d464fe9c
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Sep 26 17:16:39 2018 +1000

    Merge branch 'rc' into beta

commit d36ac204ecb53d66a01bdfe8440b49f3092ec22c
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Sep 26 16:30:30 2018 +1000

    UIAHandler: instruct UIA client library to never map winEvents to UIA propertyChange events. (#8785)
    
    * UIAHandler: instruct UIA client library to never map winEvents to UIA propertyChange events.
    
    * Update what's new

commit 1d464fe9c9ba53d0e84c16df6308e56c89d2f634
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Sep 26 13:40:06 2018 +1000

    Work around crash in Google Chrome when navigating tweets on twitter.com (#8779)
    
    * Gecko vbufBackend: work around bug in Google Chrome causing a crash on twitter.com due to IAccessible2_2::relationTargetsOfType buffer overrunning.
    
    * Update what's new
    
    * Address review comment.

commit d60ae4bdfe1c0a8ee74b0f18a0f157ae2eba03f3
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Wed Sep 26 00:22:29 2018 +0200

    Catch KeyError when creating a deep copy dictionary from an aggregated config section (#8780)

commit a04a4cebda3a2bf9b6ed1f40cd3c9e6006284269
Author: Davy Kager <dkager@users.noreply.github.com>
Date:   Tue Sep 25 04:27:46 2018 +0200

    Don't send font attributes to liblouis when disabled in preferences (#8655)
    
    * Don't send translation flags for font attributes to liblouis when reporting of font attributes is disabled in the document formatting preferences.
    
    * Review actions.
    
    * Update what's new

commit 837735043a3658e73c3860f8d323646e4bc2bdc6
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Tue Sep 25 12:06:39 2018 +1000

    Gecko VBufBackend: greatly speed up subtree re-renders when part of a document has changed (#8678)
    
    * VirtualBuffers: try re-using existing subtrees in renders.
    
    * MSHTML vbufBackend: don't do partial re-renders as strange things happen when moving nodes with javascript.
    
    * VBufStorage and VBufBackend: remove unneeded code changes and clarify comments.
    
    * VBufStorage: allow nodes to control when they can be reused in a re-render with requiresUparentUpdate and allowReuseInAncestorUpdate properties.
    
    * VBufStorage and backends: If a part of a table needs re-rendering, make sure to rerender any part of the table after that. E.g. If a row is added, then all rows after that also need to be re-rendered.
    
    * VBufStorage and backends: ensure that a node and its descendants are all re-rendered if a node has been given alternative text because the node had no useful descendants (E.g. an empty link).
    
    * VBufStorage and backends: remove some log calls, beeps, and also switch  gecko_ia2 virtualBuffer from AccessibleObjectFromEvent to accChild for getNVDAObjectFromIdentifier.
    
    * Gecko virtualBuffer: ensure that getNVDAObjectFromIdentifier still works with Google Chrome.
    
    * VBufStorage and backends: Ensure that reuse is denied when previous siblings have changed,  only  if a node's denyReuseIfPreviousSiblingsChanged property is actually set (woops). Also, remove ensureDescendantsRequireParentUpdate method and replace it with a alwaysRerenderDescendants property instead.
    
    * Mozilla NVDAObject's setFocus method: ensure this  blocks until a focus event is received by NVDA.
    
    * Address review comments:
    * Add suggested comments.
    * Gecko vbufBackend: move the setting of rerender control properties for parts of tables down to where the rest of the table code is, which means that the resetting of some of them on tabel cells is no longer necessary. The code remains at same scope, and  the function never returned or recursed between where the code was to where it is now, so this is safe.
    * Gecko vbufBackend: it is no longer necesary to update table counts if a cell is rerendered. If the cell was being rerendered because it was specifically invalidated, then the row/column counts would not have changed, and if the cell was re-rendered due to an ancestor row / row group being invalidated, then the table node would have been rerendered anyway due to requiresParentUpdate being true on the row or row group. However, we still need the tableID from the table to set as an attribute on table cell nodes. Therefore, rename and rewrite updateTableCounts to getTableIDFromCell.
    * VBufBackend_t::update: remove  the inUpdate check. This issue never actually seems to occur, and no code changes in this pr make it any more likely than it used to be.
    
    * Mozilla NVDAObject's _getPhysicalFocus method:  handle case where accParent is None. Probably happens when an IAccessible is removed from the tree after we have fetched it... Happens quite a bit on facebook.com/
    
    * Fix comments.
    
    * Update what's new

commit 21065faf54c043db4f887845c097e14f7f7a2561
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Tue Sep 25 03:32:22 2018 +0200

    Use Unicode CLDR to create speech symbol dictionaries with emojis (#8758)
    
    * Add emoji dictionaries as a git submodule
    
    * Scons implementation
    
    * Load emoji dictionaries in characterProcessing
    
    * Add speak emoji descriptions entry to settings
    
    * Support multiple emoji sources per locale
    
    * Update emojiDict_sconscript
    
    * Rename emoji dictionaries to cldr
    
    * Cache locales for which no symmbols are available
    
    * Clear CLDR data when saving the option is changed
    
    * Handle config profile switches properly for CLDR data
    
    * Update copyright
    
    * Revert unnecessary change to sconstruct
    
    * User guide
    
    * Remove all eSpeak emoji dictsource files before compiling eSpeak
    
    * Update what's new

commit 7b133e63e16cbc43fe60150d18d0c89b0ee2326b
Author: Takuya Nishimoto <nishimotz@gmail.com>
Date:   Tue Sep 25 10:06:20 2018 +0900

    If running on the Japanese version of Windows XP or Vista, NVDA should displays the alert of OS version requirements (#8771)
    
    * If running on the Japanese version of Windows XP or Vista, NVDA should display ERROR_OLD_WIN_VERSION message, rather than raising UnicodeDecodeError.
    
    * If running on the Japanese version of Windows XP or Vista, NVDA should display ERROR_OLD_WIN_VERSION message, rather than raising UnicodeDecodeError.
    
    * If running on the Japanese version of Windows XP or Vista, NVDA should display ERROR_OLD_WIN_VERSION message, rather than raising UnicodeDecodeError.
    
    * Update what's new

commit dcb374e69daed8f08d362010d9bcfb95bbf71a4b
Merge: b546db619 3b02c6ebd
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 21 00:07:10 2018 +1000

    Update translations.
    
    From translation svn revision: 43990

commit 3b02c6ebdb5b9a31ae5ab33c75045ee0288c2fe3
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 21 00:07:04 2018 +1000

    L10n updates for: zh_CN
    From translation svn revision: 43990
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    
    Stats:
    48      48      source/locale/zh_CN/LC_MESSAGES/nvda.po
    32      0       user_docs/zh_CN/changes.t2t
    553     558     user_docs/zh_CN/userGuide.t2t
     3 files changed, 633 insertions(+), 606 deletions(-)

commit 88677aaea5ff694a4589dcc6f70ead5faac498c1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 21 00:07:00 2018 +1000

    L10n updates for: vi
    From translation svn revision: 43990
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    48      48      source/locale/vi/LC_MESSAGES/nvda.po
    25      0       user_docs/vi/changes.t2t
    6       8       user_docs/vi/userGuide.t2t
     3 files changed, 79 insertions(+), 56 deletions(-)

commit 70fb23a3017fead8084f68fe05e96e46f01a71b2
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 21 00:06:55 2018 +1000

    L10n updates for: tr
    From translation svn revision: 43990
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    48      48      source/locale/tr/LC_MESSAGES/nvda.po
    33      0       user_docs/tr/changes.t2t
    7       9       user_docs/tr/userGuide.t2t
     3 files changed, 88 insertions(+), 57 deletions(-)

commit 9aaae4e09abdcabde17a86e0e421db6189f3f216
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 21 00:06:49 2018 +1000

    L10n updates for: sr
    From translation svn revision: 43990
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    47      47      source/locale/sr/LC_MESSAGES/nvda.po
    27      2       user_docs/sr/changes.t2t
     2 files changed, 74 insertions(+), 49 deletions(-)

commit 040813901525e24a95d47334c6bd16544c78272f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 21 00:06:45 2018 +1000

    L10n updates for: sl
    From translation svn revision: 43990
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    49      202     source/locale/sl/LC_MESSAGES/nvda.po
    6       8       user_docs/sl/userGuide.t2t
     2 files changed, 55 insertions(+), 210 deletions(-)

commit 25a8a82be180f60a042535c1aa763f2516902460
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 21 00:06:43 2018 +1000

    L10n updates for: sk
    From translation svn revision: 43990
    
    Authors:
    Ondrej Rosik <ondrej.rosik@gmail.com>
    Peter Vagner <peter.v@datagate.sk>
    
    Stats:
    6       6       source/locale/sk/symbols.dic
     1 file changed, 6 insertions(+), 6 deletions(-)

commit db1bd24b159a738d3be6903bf997ff8bc7e2273d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 21 00:06:40 2018 +1000

    L10n updates for: ru
    From translation svn revision: 43990
    
    Authors:
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    50      50      source/locale/ru/LC_MESSAGES/nvda.po
    30      0       user_docs/ru/changes.t2t
    10      12      user_docs/ru/userGuide.t2t
     3 files changed, 90 insertions(+), 62 deletions(-)

commit 199e414c80e80d28e5cd869dbd91636d675e5b5d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 21 00:06:35 2018 +1000

    L10n updates for: ro
    From translation svn revision: 43990
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    
    Stats:
    50      50      source/locale/ro/LC_MESSAGES/nvda.po
    36      3       user_docs/ro/changes.t2t
    9       11      user_docs/ro/userGuide.t2t
     3 files changed, 95 insertions(+), 64 deletions(-)

commit 1ca154c18dcf3f2c2ffbb0bce212f5deba0e2632
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 21 00:06:30 2018 +1000

    L10n updates for: pt_BR
    From translation svn revision: 43990
    
    Authors:
    Cleverson Casarin Uliana <clever97@gmail.com>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    33      0       user_docs/pt_BR/changes.t2t
    9       11      user_docs/pt_BR/userGuide.t2t
     2 files changed, 42 insertions(+), 11 deletions(-)

commit 7cbc039215003b9bcb0bfa0def8eed400b8d51ea
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 21 00:05:52 2018 +1000

    L10n updates for: gl
    From translation svn revision: 43990
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    
    Stats:
    50      48      source/locale/gl/LC_MESSAGES/nvda.po
    29      0       user_docs/gl/changes.t2t
    6       8       user_docs/gl/userGuide.t2t
     3 files changed, 85 insertions(+), 56 deletions(-)

commit 507c4c8524262f80f76d9375992d742bc907dc2d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 21 00:05:47 2018 +1000

    L10n updates for: fr
    From translation svn revision: 43990
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    48      48      source/locale/fr/LC_MESSAGES/nvda.po
     1 file changed, 48 insertions(+), 48 deletions(-)

commit ef584182d94b23356a643ea0c23bace2cdfa4683
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 21 00:05:44 2018 +1000

    L10n updates for: fi
    From translation svn revision: 43990
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    49      49      source/locale/fi/LC_MESSAGES/nvda.po
    25      0       user_docs/fi/changes.t2t
    10      12      user_docs/fi/userGuide.t2t
     3 files changed, 84 insertions(+), 61 deletions(-)

commit 855d358fea35f5c31f4c40c09ffd8debe487b769
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 21 00:05:40 2018 +1000

    L10n updates for: fa
    From translation svn revision: 43990
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    51      51      source/locale/fa/LC_MESSAGES/nvda.po
    22      1       user_docs/fa/changes.t2t
    8       10      user_docs/fa/userGuide.t2t
     3 files changed, 81 insertions(+), 62 deletions(-)

commit d0ad9059716b689aa29b5c90730361093b3fd9b2
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 21 00:05:36 2018 +1000

    L10n updates for: es
    From translation svn revision: 43990
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    
    Stats:
    50      49      source/locale/es/LC_MESSAGES/nvda.po
    29      0       user_docs/es/changes.t2t
    6       8       user_docs/es/userGuide.t2t
     3 files changed, 85 insertions(+), 57 deletions(-)

commit e2d80a00b652f5eccaefd052a552efc60ea6d790
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 21 00:05:28 2018 +1000

    L10n updates for: de
    From translation svn revision: 43990
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    
    Stats:
    37      67      source/locale/de/LC_MESSAGES/nvda.po
    31      1       user_docs/de/changes.t2t
    6       8       user_docs/de/userGuide.t2t
     3 files changed, 74 insertions(+), 76 deletions(-)

commit daf40dc1c173260916ee3810cd154c91f800eb69
Merge: 4eb7aa5bf b546db619
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Sep 20 09:57:14 2018 +1000

    Merge branch 'beta'

commit b546db6191a46cf1c10bbd55e86e3012bd617947
Merge: 57e63d4d8 4323a48c7
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Sep 20 09:56:31 2018 +1000

    Merge branch 'rc' into beta

commit 4323a48c7c1cfa798ae4320b23426072d667452b
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Sep 19 23:16:07 2018 +1000

    Fix crash in 32 bit Mozilla Firefox (#8767)
    
    * Gecko vbufBackend: make sure to pass relation type string to IAccessible2_2::get_relationTargetsOfType as a BSTR, otherwise crashes can occur due to COM failing to be able to marshal the string.
    
    * Update what's new

commit 4eb7aa5bf0d7ee7c3813458b64eed9b24df122da
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Sep 19 17:06:53 2018 +1000

    Outlook: inProcess implementation to report replied / replied all / forwarded status on mail items in the message list (#8756)
    
    * Outlook: report replied / replied all / forwarded status on mail items in the message list, by fetching info from the mail item's MAPI object in-process, bypassing security restrictions.
    
    * Add translator comments.
    
    * Fix typo in comment.
    
    * nvdaHelperRemote, outlook_getMAPIProperty:  return any error code from the inner lambda.
    
    * Fix case of path.
    
    * nvdaHelperRemote, outlook_getMAPIProperty: try HrGetOneProp before HrGetOneProp@12.
    
    * NVDAHelperRemote, outlook_getMAPIProperty: check result of IGlobalInterfaceTable::getInterfaceFromGlobal, and return on error.
    
    * outlook_getMAPIProperty: fix logging.
    
    * NvDAHelperRemote, inProcess_getMessageHook: wParam can have flags other than PM_REMOVE, so check for PM_REMOVE specifically rather than PM_NOREMOVE. This stops  messages being processed more than once if fetched with peakMessage with no PM_REMOVE but other flags.
    
    * Address review comments.
    
    * Address further review comments.
    
    * Update what's new

commit 57e63d4d87f8cf7fc35a1ecb2c4cbb6617553bad
Merge: 8e7233424 843b20b20
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Tue Sep 18 14:56:54 2018 +1000

    Update translations.
    
    From translation svn revision: 43832

commit 843b20b2064dfbd5e1e71af724d3aae0622434d7
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Tue Sep 18 14:56:53 2018 +1000

    L10n updates for: zh_TW
    From translation svn revision: 43832
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    20      18      source/locale/zh_TW/characterDescriptions.dic
     1 file changed, 20 insertions(+), 18 deletions(-)

commit 99b86d24e8c29548e7bf2caa0a9d6e070e0bb998
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Tue Sep 18 14:56:45 2018 +1000

    L10n updates for: ta
    From translation svn revision: 43832
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    606     681     source/locale/ta/LC_MESSAGES/nvda.po
     1 file changed, 606 insertions(+), 681 deletions(-)

commit be0dc4c513b1fdabed061b24c28a1226a840ee50
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Tue Sep 18 14:56:41 2018 +1000

    L10n updates for: so
    From translation svn revision: 43832
    
    Authors:
    Othmanothman <othman82@hotmail.com>
    
    Stats:
    10      10      source/locale/so/characterDescriptions.dic
     1 file changed, 10 insertions(+), 10 deletions(-)

commit 1ef775a06d312b1c20ed8ce1afd9f91d5a23dc6e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Tue Sep 18 14:56:27 2018 +1000

    L10n updates for: nb_NO
    From translation svn revision: 43832
    
    Authors:
    David Hole <balubathebrave@gmail.com>
    Bjornar Seppola <bjornar@seppola.net>
    
    Stats:
    589     477     source/locale/nb_NO/LC_MESSAGES/nvda.po
    211     88      user_docs/nb_NO/userGuide.t2t
     2 files changed, 800 insertions(+), 565 deletions(-)

commit b5c4e04cf433cf858dbdd739836234755cd2037b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Tue Sep 18 14:56:26 2018 +1000

    L10n updates for: my
    From translation svn revision: 43832
    
    Authors:
    Benedict La hkun <lkbenedict@gmail.com>
    
    Stats:
    530     221     source/locale/my/LC_MESSAGES/nvda.po
     1 file changed, 530 insertions(+), 221 deletions(-)

commit 30c0269076658d627bb2e109369cb13eae8b0ac7
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Tue Sep 18 14:56:18 2018 +1000

    L10n updates for: kn
    From translation svn revision: 43832
    
    Authors:
    Siddalingeshwar Ingalagi <ingalagisiddu@gmail.com>
    
    Stats:
    1780    1327    source/locale/kn/LC_MESSAGES/nvda.po
     1 file changed, 1780 insertions(+), 1327 deletions(-)

commit 344e56fc5e8e197dc022289685b68ac124477a34
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Tue Sep 18 14:55:46 2018 +1000

    L10n updates for: de
    From translation svn revision: 43832
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    
    Stats:
    12      13      source/locale/de/LC_MESSAGES/nvda.po
     1 file changed, 12 insertions(+), 13 deletions(-)

commit 8e7233424f969f2697f412f7d8919e30d8887580
Merge: 74740ee32 366fcf79e
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Sep 18 14:50:33 2018 +1000

    Merge branch 'master' into beta

commit 366fcf79e1167b72a0b7dcc704f703c3fb1f4b5c
Merge: b698fa2fc 74740ee32
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Sep 18 14:50:07 2018 +1000

    Merge branch 'beta'

commit 74740ee327557f0f3ff2a5084208298768f80142
Merge: 149fbb0f5 2bb49ee68
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Sep 18 14:49:43 2018 +1000

    Merge branch 'rc' into beta

commit 2bb49ee6843d23ea48293dea89bed51dc014d3b8
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Mon Sep 17 17:04:58 2018 -0700

    Elements list: catch wxPython::invalid item exception when text in the filter field yields no elements. Re #8753. (#8754)
    
    Regression: when a user enters text into the filter field and no elements are found, wxPython returns 'invalid item' when attempting to obtain selection from the search tree. Thus coerce this to default element (initial element).

commit 427af6a5d545fb44f023c827df84fae671ed8341
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Sep 17 16:25:39 2018 +1000

    ta, my and kn languages: don't translate the NVDA shortcut key.

commit b698fa2fc019925dd5591b7b0a94452963d1daec
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Mon Sep 17 16:08:24 2018 +1000

    Revert "Per foreground uia property change events (#8742)" (#8757)
    
    This reverts commit 4730a9f3624939e8fac800a51ca7548bd8e16c92.

commit 4730a9f3624939e8fac800a51ca7548bd8e16c92
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Fri Sep 14 16:12:29 2018 +1000

    Per foreground uia property change events (#8742)
    
    * UIAHandler: only register property change events per foreground window, rather than globally.
    
    * UIAHandler: queue event registration/unregistration to the MTA thread.
    
    * UIAHandler:  change an error into a debugWarning as it  will happen quite a lot.
    
    * UIAHandler:  don't diable event coalescing. this was only there for debugging purposes.
    
    * eventHandler: check UIAHandler.handler is not None before running UIAHandler's onForegroundChange as UIAHandler may be terminated.
    
    * UIAHandler: catch unexpected exceptions from functions queued to the MTA thread, and ensure that  propertyChange events are not unregistered from the same element multiple times if a new registration fails.
    
    * Update What's new

commit 1a24d67f196887ae54d63df4b76b1d40809c01bf
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Sep 14 09:33:44 2018 +1000

    Bump build version number to 2018.4 dev.

commit 8f8ebc24514a23ffbfc2c81e3e9f781e95a56b62
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Fri Sep 14 01:30:36 2018 +0200

    Work around iTunes 12.9 being completely broken with NVDA (#8746)
    
    * Work around iTunes 12.9 being completely broken with NVDA
    
    * Update what's new

commit 149fbb0f53fe076cd13a3b550b543006c1b98215
Merge: 7bda02885 d89076bce
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 14 00:06:37 2018 +1000

    Update translations.
    
    From translation svn revision: 43792

commit d89076bce81ec31f6afd80dd625b31e14d91ff27
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 14 00:06:35 2018 +1000

    L10n updates for: zh_CN
    From translation svn revision: 43792
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    
    Stats:
    3       2       source/locale/zh_CN/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 2 deletions(-)

commit bbad2fd21c20a08a73b2a4f5059a3facaeca7322
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 14 00:06:26 2018 +1000

    L10n updates for: so
    From translation svn revision: 43792
    
    Authors:
    Othmanothman <othman82@hotmail.com>
    
    Stats:
    10595   0       source/locale/so/LC_MESSAGES/nvda.po
    37      0       source/locale/so/characterDescriptions.dic
    186     0       source/locale/so/symbols.dic
     3 files changed, 10818 insertions(+)

commit acc86b26b987a40536ef58cdd947e4ac5da32dc1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 14 00:05:49 2018 +1000

    L10n updates for: hr
    From translation svn revision: 43792
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Mario Percinic <mario.percinic@gmail.com>
    Tea Turkovic <tturkovi@gmail.com>
    
    Stats:
    89      89      user_docs/hr/userGuide.t2t
     1 file changed, 89 insertions(+), 89 deletions(-)

commit d0b0af8e2cec1e7c9e43b16fc91bbf4dc892fbaa
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 14 00:05:41 2018 +1000

    L10n updates for: fr
    From translation svn revision: 43792
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    1       1       user_docs/fr/changes.t2t
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 89a0cb1cadaaf6ca239ce0bc00696e8a6caa37eb
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 14 00:05:27 2018 +1000

    L10n updates for: de
    From translation svn revision: 43792
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    
    Stats:
    110     111     source/locale/de/LC_MESSAGES/nvda.po
    1       1       user_docs/de/changes.t2t
    6       6       user_docs/de/userGuide.t2t
     3 files changed, 117 insertions(+), 118 deletions(-)

commit 23f0d7aedbd22ef29a627196615882adf2e9cf56
Merge: 2fde94415 7bda02885
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Sep 13 21:17:37 2018 +1000

    Merge branch 'beta'

commit 7bda0288581f2582da5f598ca74b0742b7a953c5
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Sep 13 16:49:36 2018 +1000

    Fix German shortcut key.

commit 2fde944159311758e19b697f18f9774497a98edf
Merge: 8d33d2387 2ecaec0b7
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Sep 10 10:56:53 2018 +1000

    Merge branch 'beta'

commit 2ecaec0b7b3035ac4ec9c0daba087472be8fb93f
Merge: 3fcbfbf79 65efdfcfa
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Sep 10 10:41:24 2018 +1000

    Update translations.
    
    From translation svn revision: 43769

commit 65efdfcfa434b83987b4895015fb0947406d9847
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Sep 10 10:41:22 2018 +1000

    L10n updates for: zh_CN
    From translation svn revision: 43769
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    
    Stats:
    5       5       source/locale/zh_CN/LC_MESSAGES/nvda.po
     1 file changed, 5 insertions(+), 5 deletions(-)

commit 90021a856a890682e871a8caabdf137d21c7092d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Sep 10 10:41:05 2018 +1000

    L10n updates for: pt_BR
    From translation svn revision: 43769
    
    Authors:
    Cleverson Casarin Uliana <clever97@gmail.com>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    6       6       source/locale/pt_BR/LC_MESSAGES/nvda.po
     1 file changed, 6 insertions(+), 6 deletions(-)

commit 8533b8eca125cd35c0d6690464777251bb4300fb
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Sep 10 10:40:57 2018 +1000

    L10n updates for: mn
    From translation svn revision: 43769
    
    Authors:
    Mongol NVDA-Translation <mongoliannvdatranslation@gmail.com>
    
    Stats:
    155     50      source/locale/mn/LC_MESSAGES/nvda.po
    6       6       user_docs/mn/userGuide.t2t
     2 files changed, 161 insertions(+), 56 deletions(-)

commit 8979bc5ea0c4ee8b27dae8b9e93aa3756c4776bb
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Sep 10 10:40:35 2018 +1000

    L10n updates for: es
    From translation svn revision: 43769
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    
    Stats:
    1       1       user_docs/es/changes.t2t
     1 file changed, 1 insertion(+), 1 deletion(-)

commit b67bb2298ab0ddcdd535fb554092683699115ca5
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Sep 10 10:40:31 2018 +1000

    L10n updates for: de
    From translation svn revision: 43769
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    
    Stats:
    338     340     source/locale/de/LC_MESSAGES/nvda.po
    2       2       user_docs/de/userGuide.t2t
     2 files changed, 340 insertions(+), 342 deletions(-)

commit 859c507f60671bc58b8c5cc771f4a36d457abcf3
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Sep 10 10:40:25 2018 +1000

    L10n updates for: ca
    From translation svn revision: 43769
    
    Authors:
    Ruben Alcaraz <ruben.hangar1.8@gmail.com>
    Dr. Mireia Ribera <mireia.ribera@gmail.com>
    Santi Moese <santispock@gmail.com>
    Marina Salse Rovira <salse@ub.edu>
    
    Stats:
    353     236     source/locale/ca/LC_MESSAGES/nvda.po
     1 file changed, 353 insertions(+), 236 deletions(-)

commit 3fcbfbf799a75fab04e7e23b15c6adab2f4f8849
Merge: b2c56d26b dcef8bb3e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 7 00:06:51 2018 +1000

    Update translations.
    
    From translation svn revision: 43726

commit dcef8bb3e53f8b7b75ae50d3b099860a905862f8
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 7 00:06:50 2018 +1000

    L10n updates for: zh_TW
    From translation svn revision: 43726
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    38      36      source/locale/zh_TW/characterDescriptions.dic
    5       0       source/locale/zh_TW/symbols.dic
     2 files changed, 43 insertions(+), 36 deletions(-)

commit aacd75d34de7af34c31b9bcbef5ad9b83a13d59f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 7 00:06:48 2018 +1000

    L10n updates for: zh_HK
    From translation svn revision: 43726
    
    Authors:
    Eric Yip <ericycy@gmail.com>
    
    Stats:
    77      77      source/locale/zh_HK/LC_MESSAGES/nvda.po
     1 file changed, 77 insertions(+), 77 deletions(-)

commit a37df2a35550501c422f31e66131b6b4d651b8c1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 7 00:06:36 2018 +1000

    L10n updates for: sk
    From translation svn revision: 43726
    
    Authors:
    Ondrej Rosik <ondrej.rosik@gmail.com>
    Peter Vagner <peter.v@datagate.sk>
    
    Stats:
    24      18      source/locale/sk/symbols.dic
     1 file changed, 24 insertions(+), 18 deletions(-)

commit 97ad486b44ba3555de99dc04965cf4f4189cf6d7
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 7 00:06:34 2018 +1000

    L10n updates for: ru
    From translation svn revision: 43726
    
    Authors:
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    2       2       source/locale/ru/LC_MESSAGES/nvda.po
    5       5       user_docs/ru/changes.t2t
    11      11      user_docs/ru/userGuide.t2t
     3 files changed, 18 insertions(+), 18 deletions(-)

commit bf97822a6029a2383f2b63fd0c420c6672807598
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 7 00:06:25 2018 +1000

    L10n updates for: pt_BR
    From translation svn revision: 43726
    
    Authors:
    Cleverson Casarin Uliana <clever97@gmail.com>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    35      30      source/locale/pt_BR/LC_MESSAGES/nvda.po
     1 file changed, 35 insertions(+), 30 deletions(-)

commit e23bbdfffca5990c0f944d588214d15271cdf9fc
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 7 00:06:15 2018 +1000

    L10n updates for: nb_NO
    From translation svn revision: 43726
    
    Authors:
    David Hole <balubathebrave@gmail.com>
    Bjornar Seppola <bjornar@seppola.net>
    
    Stats:
    656     773     source/locale/nb_NO/LC_MESSAGES/nvda.po
    474     40      user_docs/nb_NO/userGuide.t2t
     2 files changed, 1130 insertions(+), 813 deletions(-)

commit 16cb72fc91733b3fd15a5948b0077b8fb5b24f51
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 7 00:06:11 2018 +1000

    L10n updates for: mn
    From translation svn revision: 43726
    
    Authors:
    Mongol NVDA-Translation <mongoliannvdatranslation@gmail.com>
    
    Stats:
    1126    1141    user_docs/mn/userGuide.t2t
     1 file changed, 1126 insertions(+), 1141 deletions(-)

commit e62bd629d4a69dc9a795e9b5914a1097242e5140
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 7 00:06:08 2018 +1000

    L10n updates for: mk
    From translation svn revision: 43726
    
    Authors:
    zvonimir stanecic <9a5dsz@gozaltech.org>
    Kiko Lazarev <kristijan.lazarev@gmail.com>
    
    Stats:
    605     309     source/locale/mk/LC_MESSAGES/nvda.po
     1 file changed, 605 insertions(+), 309 deletions(-)

commit 240a9d9ce4854936430829760c56789e2638210f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 7 00:05:57 2018 +1000

    L10n updates for: it
    From translation svn revision: 43726
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    11      5       source/locale/it/symbols.dic
    38      47      user_docs/it/changes.t2t
     2 files changed, 49 insertions(+), 52 deletions(-)

commit 0bf58a6d32b18762b055d0ad5ff3af63dcd8bb35
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 7 00:05:17 2018 +1000

    L10n updates for: bg
    From translation svn revision: 43726
    
    Authors:
    Zahari Yurukov <zahari.yurukov@gmail.com>
    Kostadin Kolev <k_kolev1985@mail.bg>
    
    Stats:
    34      3       user_docs/bg/userGuide.t2t
     1 file changed, 34 insertions(+), 3 deletions(-)

commit 8d33d23875cadfc83f779285ecb97e3852105694
Merge: 3f239de33 b2c56d26b
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Sep 5 15:31:07 2018 +1000

    Merge branch 'beta'

commit b2c56d26b2ad0c951fa7e03a4ab5311f68df65b7
Merge: a55f4fc63 6c1092f9c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Sep 5 13:39:20 2018 +1000

    Update translations.
    
    From translation svn revision: 43690

commit 6c1092f9ca4bbcc3820a2d826017535ceed19235
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Sep 5 13:39:20 2018 +1000

    L10n updates for: zh_TW
    From translation svn revision: 43690
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    277     14      user_docs/zh_TW/changes.t2t
     1 file changed, 277 insertions(+), 14 deletions(-)

commit 227f69071c0891f41c62e283945430261b6d485d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Sep 5 13:39:18 2018 +1000

    L10n updates for: zh_CN
    From translation svn revision: 43690
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    
    Stats:
    13      11      user_docs/zh_CN/userGuide.t2t
     1 file changed, 13 insertions(+), 11 deletions(-)

commit db5f76023a1293d70b1e27378645f3a96d666cfd
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Sep 5 13:39:16 2018 +1000

    L10n updates for: vi
    From translation svn revision: 43690
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    2       2       user_docs/vi/changes.t2t
    14      14      user_docs/vi/userGuide.t2t
     2 files changed, 16 insertions(+), 16 deletions(-)

commit 68acadb5c6bed430e6b943cc01e840e5e5eed10d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Sep 5 13:39:15 2018 +1000

    L10n updates for: uk
    From translation svn revision: 43690
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    45      10      user_docs/uk/userGuide.t2t
     1 file changed, 45 insertions(+), 10 deletions(-)

commit aaacb5c6939fe57876c31be1289490f06c48719a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Sep 5 13:39:14 2018 +1000

    L10n updates for: tr
    From translation svn revision: 43690
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    1       0       user_docs/tr/changes.t2t
     1 file changed, 1 insertion(+)

commit 6a39dcdf09c5a40ac82e0a85b845a648fab51843
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Sep 5 13:39:08 2018 +1000

    L10n updates for: sk
    From translation svn revision: 43690
    
    Authors:
    Ondrej Rosik <ondrej.rosik@gmail.com>
    Peter Vagner <peter.v@datagate.sk>
    
    Stats:
    6       6       source/locale/sk/LC_MESSAGES/nvda.po
    57      0       user_docs/sk/changes.t2t
    113     13      user_docs/sk/userGuide.t2t
     3 files changed, 176 insertions(+), 19 deletions(-)

commit 03c39cf23ce790cfd7d1043c6bc7f36d3a691266
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Sep 5 13:39:06 2018 +1000

    L10n updates for: ru
    From translation svn revision: 43690
    
    Authors:
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    9       28      source/locale/ru/LC_MESSAGES/nvda.po
    62      9       user_docs/ru/changes.t2t
     2 files changed, 71 insertions(+), 37 deletions(-)

commit d66fe21895e2f549bf216f4fbefec7d91b12dc0a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Sep 5 13:38:49 2018 +1000

    L10n updates for: nl
    From translation svn revision: 43690
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    3       3       source/locale/nl/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 3 deletions(-)

commit 86f695136800471cc86afb0f8efcdffc3ae3f28a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Sep 5 13:38:37 2018 +1000

    L10n updates for: it
    From translation svn revision: 43690
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    3       0       source/locale/it/symbols.dic
    81      0       user_docs/it/changes.t2t
    52      21      user_docs/it/userGuide.t2t
     3 files changed, 136 insertions(+), 21 deletions(-)

commit 43838f78dd70b59dcc2457b2c4146b67af508b84
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Sep 5 13:38:31 2018 +1000

    L10n updates for: he
    From translation svn revision: 43690
    
    Authors:
    Shmuel Naaman <shmuel_naaman@yahoo.com>
    Afik Sofir <afik.sofer@gmail.com>
    
    Stats:
    157     50      source/locale/he/LC_MESSAGES/nvda.po
     1 file changed, 157 insertions(+), 50 deletions(-)

commit a55f4fc63ee6b1461480204759ecfe71e8384924
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Sep 5 13:00:41 2018 +1000

    If the user answers yes or no to the Usage stats collection question on NVDA start-up, save the config so that their choice is remembered, even if save on exit has been disabled by the user. (#8708)

commit 3f239de3337e69eaa640c606aa3bf1c4a61c6a2a
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Tue Sep 4 20:29:30 2018 +1000

    Improve support for combo boxes in all browsers (#8687)
    
    * Improve support for combo boxes in Firefox / Chrome / Internet Explorer.
    
    * UIABrowseModeDocument's __contains__ method: ensure that the given object is a descendant of the document by searching the ancestry for  the document's runtimeID with a treeWalker.
    
    * Powerpoint appModule: remove event_gainFocus from NVDAObject class that has a focusRedirect property as this is now handled in eventHandler.
    
    * browseMode's collapseOrExpand script: do not mark as allowed to run when in focus mode.
    
    * Update what's new

commit 10635ac279589a7c1e1dca69cfbe59d16b0f4db2
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Tue Sep 4 07:52:22 2018 +0200

    Catch LookupError when getting NVDAObject from offset in virtual buffers (#8665)

commit d1ba63ab8f94516fd1820cd38769a24bfc494cd1
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Tue Sep 4 07:46:41 2018 +0200

    Update liblouis to version 3.7, add new chinese tables (#8710)
    
    * Update liblouis to 3.7.0
    
    * Add Chinese (China, Mandarin) braille tables
    
    * Compile liblouis with metadata.c and without UNICODE defined
    
    * Update what's new

commit 9ab43b27a992d1b4b5b5a5e982d0898891767ba5
Merge: 871bcfc7a 465edb274
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Sep 3 13:42:36 2018 +1000

    Update translations.
    
    From translation svn revision: 43637

commit 465edb27463aadde0dcdc3bbc0e0d3fa4ea4b0f2
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Sep 3 13:42:30 2018 +1000

    L10n updates for: vi
    From translation svn revision: 43637
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    2       2       source/locale/vi/LC_MESSAGES/nvda.po
    12      12      source/locale/vi/symbols.dic
    1       1       user_docs/vi/changes.t2t
     3 files changed, 15 insertions(+), 15 deletions(-)

commit 56cd1df6eb0b12ba6ab703a41f09f88574e836c7
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Sep 3 13:42:26 2018 +1000

    L10n updates for: tr
    From translation svn revision: 43637
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    70      14      user_docs/tr/userGuide.t2t
     1 file changed, 70 insertions(+), 14 deletions(-)

commit bd5c7b88fac77436b775922c10ccfade0df351eb
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Sep 3 13:42:18 2018 +1000

    L10n updates for: sr
    From translation svn revision: 43637
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    9       2       source/locale/sr/symbols.dic
     1 file changed, 9 insertions(+), 2 deletions(-)

commit 68f5490468caf17835f1da57511ca45146df2e53
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Sep 3 13:42:15 2018 +1000

    L10n updates for: sk
    From translation svn revision: 43637
    
    Authors:
    Ondrej Rosik <ondrej.rosik@gmail.com>
    Peter Vagner <peter.v@datagate.sk>
    
    Stats:
    164     49      source/locale/sk/LC_MESSAGES/nvda.po
    9       2       source/locale/sk/symbols.dic
     2 files changed, 173 insertions(+), 51 deletions(-)

commit 5585f4ba411f14b98fcf86d35f2220d48ed06657
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Sep 3 13:41:54 2018 +1000

    L10n updates for: nb_NO
    From translation svn revision: 43637
    
    Authors:
    David Hole <balubathebrave@gmail.com>
    Bjornar Seppola <bjornar@seppola.net>
    
    Stats:
    125     57      source/locale/nb_NO/LC_MESSAGES/nvda.po
    198     174     user_docs/nb_NO/userGuide.t2t
     2 files changed, 323 insertions(+), 231 deletions(-)

commit 88291bf06c38fb73f57460449104d28df3e0cd72
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Sep 3 13:41:47 2018 +1000

    L10n updates for: kmr
    From translation svn revision: 43637
    
    Authors:
    unable to find language: kmr
    
    Stats:
    285     408     source/locale/kmr/LC_MESSAGES/nvda.po
    3       3       source/locale/kmr/characterDescriptions.dic
     2 files changed, 288 insertions(+), 411 deletions(-)

commit efe55f07a162a1f0a14739e867c670d1d57f878e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Sep 3 13:41:41 2018 +1000

    L10n updates for: hr
    From translation svn revision: 43637
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Mario Percinic <mario.percinic@gmail.com>
    Tea Turkovic <tturkovi@gmail.com>
    
    Stats:
    24      24      source/locale/hr/LC_MESSAGES/nvda.po
     1 file changed, 24 insertions(+), 24 deletions(-)

commit 4c0a2d89a578b70dcb9f8d611988e40713d89d67
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Sep 3 13:41:27 2018 +1000

    L10n updates for: el
    From translation svn revision: 43637
    
    Authors:
    Irene Nakas <irnakas@gmail.com>
    Nikos Demetriou <nikosdemetriou@googlemail.com>
    access@e-rhetor.com
    
    Stats:
    169     49      source/locale/el/LC_MESSAGES/nvda.po
     1 file changed, 169 insertions(+), 49 deletions(-)

commit 1889e82b5f88441e97bfc132ffdc402d6755920a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Sep 3 13:41:22 2018 +1000

    L10n updates for: da
    From translation svn revision: 43637
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    1       0       user_docs/da/changes.t2t
     1 file changed, 1 insertion(+)

commit 27edf3322bf651a774a3469a7011c388f29ad191
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Sep 3 13:41:16 2018 +1000

    L10n updates for: bg
    From translation svn revision: 43637
    
    Authors:
    Zahari Yurukov <zahari.yurukov@gmail.com>
    Kostadin Kolev <k_kolev1985@mail.bg>
    
    Stats:
    76      1       user_docs/bg/changes.t2t
     1 file changed, 76 insertions(+), 1 deletion(-)

commit 35f83c4592e2d08c603a2c8482d995de3d7b7eb6
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Sep 3 13:41:13 2018 +1000

    L10n updates for: ar
    From translation svn revision: 43637
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    36      2       user_docs/ar/changes.t2t
     1 file changed, 36 insertions(+), 2 deletions(-)

commit aa55b4564b7d521fb211fd16abf16f3786d00d94
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Sep 3 13:41:11 2018 +1000

    L10n updates for: an
    From translation svn revision: 43637
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    
    Stats:
    72      0       user_docs/an/changes.t2t
    14      13      user_docs/an/userGuide.t2t
     2 files changed, 86 insertions(+), 13 deletions(-)

commit 871bcfc7aa105325aec3f24b4e40bab4d030e8ee
Merge: 5e060a21a 54efb2dfa
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 31 00:07:29 2018 +1000

    Update translations.
    
    From translation svn revision: 43544

commit 54efb2dfad713ea41046e012108b91076b048002
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 31 00:07:27 2018 +1000

    L10n updates for: zh_TW
    From translation svn revision: 43544
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    57      56      source/locale/zh_TW/LC_MESSAGES/nvda.po
     1 file changed, 57 insertions(+), 56 deletions(-)

commit 2a1c587c9da7f8d774f76006d1b1235a632eb08b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 31 00:07:23 2018 +1000

    L10n updates for: zh_CN
    From translation svn revision: 43544
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    
    Stats:
    7       67      source/locale/zh_CN/characterDescriptions.dic
    4       3       user_docs/zh_CN/changes.t2t
    6       6       user_docs/zh_CN/userGuide.t2t
     3 files changed, 17 insertions(+), 76 deletions(-)

commit 5af2df74743da84c1f911233914a9671166b16d6
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 31 00:07:19 2018 +1000

    L10n updates for: vi
    From translation svn revision: 43544
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    1       0       user_docs/vi/changes.t2t
    91      91      user_docs/vi/userGuide.t2t
     2 files changed, 92 insertions(+), 91 deletions(-)

commit 2fe64db85c99aaaacf9738621f5df76aefa82f3a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 31 00:07:12 2018 +1000

    L10n updates for: ta
    From translation svn revision: 43544
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    20      1       source/locale/ta/symbols.dic
     1 file changed, 20 insertions(+), 1 deletion(-)

commit b72c610cbf872ed94b57322e46bcd31ef79f942e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 31 00:07:07 2018 +1000

    L10n updates for: sr
    From translation svn revision: 43544
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    168     48      source/locale/sr/LC_MESSAGES/nvda.po
    66      2       user_docs/sr/changes.t2t
    9       6       user_docs/sr/userGuide.t2t
     3 files changed, 243 insertions(+), 56 deletions(-)

commit 5f4542a099fdb68128f798098ebdb2fe5c5dd580
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 31 00:06:54 2018 +1000

    L10n updates for: ro
    From translation svn revision: 43544
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    
    Stats:
    3       3       source/locale/ro/LC_MESSAGES/nvda.po
    11      6       user_docs/ro/changes.t2t
    2       2       user_docs/ro/userGuide.t2t
     3 files changed, 16 insertions(+), 11 deletions(-)

commit e3b6dd4f3c411a289c42b5324ff4329138cc38fc
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 31 00:06:52 2018 +1000

    L10n updates for: pt_PT
    From translation svn revision: 43544
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    3       0       user_docs/pt_PT/changes.t2t
     1 file changed, 3 insertions(+)

commit 7d6b8a045cb4cebaf6de1d6619e640cad194f9ec
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 31 00:06:48 2018 +1000

    L10n updates for: pt_BR
    From translation svn revision: 43544
    
    Authors:
    Cleverson Casarin Uliana <clever97@gmail.com>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    43      43      source/locale/pt_BR/LC_MESSAGES/nvda.po
    7       7       user_docs/pt_BR/changes.t2t
    76      76      user_docs/pt_BR/userGuide.t2t
     3 files changed, 126 insertions(+), 126 deletions(-)

commit a3ee757efd921cc0025780aa0a9f9b811259c1cd
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 31 00:06:45 2018 +1000

    L10n updates for: pl
    From translation svn revision: 43544
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Piotr Rakowski <kontakt@piotrrakowski.net>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <killer@tyflonet.com>
    
    Stats:
    16      16      source/locale/pl/LC_MESSAGES/nvda.po
    9       2       source/locale/pl/symbols.dic
    72      10      user_docs/pl/changes.t2t
    112     12      user_docs/pl/userGuide.t2t
     4 files changed, 209 insertions(+), 40 deletions(-)

commit 7f49a84ba5b524a35a3b639aabe16a33dda9cad4
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 31 00:06:40 2018 +1000

    L10n updates for: nl
    From translation svn revision: 43544
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    4       5       user_docs/nl/userGuide.t2t
     1 file changed, 4 insertions(+), 5 deletions(-)

commit 164b9bee156f6525b9eb303507cc6133ccb920a5
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 31 00:06:28 2018 +1000

    L10n updates for: ko
    From translation svn revision: 43544
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    
    Stats:
    21      19      user_docs/ko/changes.t2t
    110     12      user_docs/ko/userGuide.t2t
     2 files changed, 131 insertions(+), 31 deletions(-)

commit 6b93a78933ef8a6e34d11cc103f2b1a3e69dccc1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 31 00:06:23 2018 +1000

    L10n updates for: ja
    From translation svn revision: 43544
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    76      0       user_docs/ja/changes.t2t
     1 file changed, 76 insertions(+)

commit b72a8cc16c549cdb269166cebf6cdad721930454
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 31 00:06:13 2018 +1000

    L10n updates for: hu
    From translation svn revision: 43544
    
    Authors:
    Aron OcsvAri <oaron@nvda.hu>
    
    Stats:
    194     77      source/locale/hu/LC_MESSAGES/nvda.po
    56      0       user_docs/hu/changes.t2t
     2 files changed, 250 insertions(+), 77 deletions(-)

commit 2b7395ab2a6efc93d568532330c08321cc1674a8
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 31 00:06:09 2018 +1000

    L10n updates for: hr
    From translation svn revision: 43544
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Mario Percinic <mario.percinic@gmail.com>
    Tea Turkovic <tturkovi@gmail.com>
    
    Stats:
    14      14      source/locale/hr/LC_MESSAGES/nvda.po
    1       0       user_docs/hr/changes.t2t
     2 files changed, 15 insertions(+), 14 deletions(-)

commit 7fd195cc34c8676346cf5023b936865fad880b56
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 31 00:06:03 2018 +1000

    L10n updates for: gl
    From translation svn revision: 43544
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    
    Stats:
    2       0       user_docs/gl/changes.t2t
     1 file changed, 2 insertions(+)

commit ccfa7363b121aab23a8f5f410368661f74d65148
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 31 00:05:59 2018 +1000

    L10n updates for: fr
    From translation svn revision: 43544
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    1       1       user_docs/fr/changes.t2t
     1 file changed, 1 insertion(+), 1 deletion(-)

commit e784c0db7d91605764651c6c47c1061017796105
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 31 00:05:55 2018 +1000

    L10n updates for: fi
    From translation svn revision: 43544
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    9       8       source/locale/fi/LC_MESSAGES/nvda.po
    3       2       user_docs/fi/changes.t2t
    2       2       user_docs/fi/userGuide.t2t
     3 files changed, 14 insertions(+), 12 deletions(-)

commit 1ed36fc9a8400a97173b9644548827c204237fe3
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 31 00:05:52 2018 +1000

    L10n updates for: fa
    From translation svn revision: 43544
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    1       0       user_docs/fa/changes.t2t
     1 file changed, 1 insertion(+)

commit 941a0fb4f394777c3aee1e5e0ae1df52d3269d3d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 31 00:05:47 2018 +1000

    L10n updates for: es
    From translation svn revision: 43544
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    
    Stats:
    2       0       user_docs/es/changes.t2t
     1 file changed, 2 insertions(+)

commit c1b7da06d9618dd816195489a3aee49ab73352e0
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 31 00:05:33 2018 +1000

    L10n updates for: de
    From translation svn revision: 43544
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    
    Stats:
    164     11      source/locale/de/LC_MESSAGES/nvda.po
    2       1       user_docs/de/changes.t2t
    12      12      user_docs/de/userGuide.t2t
     3 files changed, 178 insertions(+), 24 deletions(-)

commit d055671e018d93e1cec747595a0a159596b77ab2
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 31 00:05:19 2018 +1000

    L10n updates for: bg
    From translation svn revision: 43544
    
    Authors:
    Zahari Yurukov <zahari.yurukov@gmail.com>
    Kostadin Kolev <k_kolev1985@mail.bg>
    
    Stats:
    178     60      source/locale/bg/LC_MESSAGES/nvda.po
    3       1       source/locale/bg/symbols.dic
    111     43      user_docs/bg/userGuide.t2t
     3 files changed, 292 insertions(+), 104 deletions(-)

commit 30143e7ab8cbac330ededcffe9b7d8d6c3020aa4
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 31 00:05:09 2018 +1000

    L10n updates for: an
    From translation svn revision: 43544
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    
    Stats:
    109     76      user_docs/an/userGuide.t2t
     1 file changed, 109 insertions(+), 76 deletions(-)

commit b3aff97c649d3ca4a2e93fb2b299a29c4244aaf3
Merge: 1d591db97 5e060a21a
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Aug 24 16:09:15 2018 +1000

    Merge branch 'beta'

commit 5e060a21ae40cec39cb201c4e24d3a4f8dccbdb9
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Aug 24 16:08:06 2018 +1000

    Fix typo in changes.t2t

commit 1d591db97eefb9d957fb4483c60097c3a462e5f3
Merge: 8e2df9fde 9888190a4
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Aug 24 09:27:48 2018 +1000

    Merge branch 'beta'

commit 9888190a4bbb4a0be3fc212a374ce239eb2f96b8
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Aug 24 09:26:44 2018 +1000

    Add release blurb

commit 60b4da1413a97e9ba1760d1bb91bab8231828721
Merge: 4b08125a8 efcc320fd
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 24 00:06:49 2018 +1000

    Update translations.
    
    From translation svn revision: 43279

commit efcc320fdeb949da0a9848e733b3e29b0264103d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 24 00:06:47 2018 +1000

    L10n updates for: zh_CN
    From translation svn revision: 43279
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    
    Stats:
    497     197     user_docs/zh_CN/userGuide.t2t
     1 file changed, 497 insertions(+), 197 deletions(-)

commit 0164e8070cc925bb21f20fdd2a258b081b3cd162
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 24 00:06:45 2018 +1000

    L10n updates for: vi
    From translation svn revision: 43279
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    1       1       source/locale/vi/LC_MESSAGES/nvda.po
    37      37      user_docs/vi/userGuide.t2t
     2 files changed, 38 insertions(+), 38 deletions(-)

commit 38f028357520fba9d0ae8e37e7a42cf716e790c7
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 24 00:06:42 2018 +1000

    L10n updates for: tr
    From translation svn revision: 43279
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    10      9       user_docs/tr/changes.t2t
     1 file changed, 10 insertions(+), 9 deletions(-)

commit 990a41a1a3301af7391c682fe20174e7b93df5e5
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 24 00:06:41 2018 +1000

    L10n updates for: ta
    From translation svn revision: 43279
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    4       5       user_docs/ta/userGuide.t2t
     1 file changed, 4 insertions(+), 5 deletions(-)

commit b99c12e00c8bcaa0f92be18344e8008cd19fce98
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 24 00:06:34 2018 +1000

    L10n updates for: ru
    From translation svn revision: 43279
    
    Authors:
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    7       7       source/locale/ru/LC_MESSAGES/nvda.po
    48      13      user_docs/ru/userGuide.t2t
     2 files changed, 55 insertions(+), 20 deletions(-)

commit 3180d47faab152898cf8d738f38e9c06a18e3c8a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 24 00:06:30 2018 +1000

    L10n updates for: ro
    From translation svn revision: 43279
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    
    Stats:
    35      3       user_docs/ro/changes.t2t
    35      3       user_docs/ro/userGuide.t2t
     2 files changed, 70 insertions(+), 6 deletions(-)

commit 73d8edd1524c7a98623f16c3329ae7f0104358ba
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 24 00:06:23 2018 +1000

    L10n updates for: pl
    From translation svn revision: 43279
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <killer@tyflonet.com>
    
    Stats:
    4       4       user_docs/pl/userGuide.t2t
     1 file changed, 4 insertions(+), 4 deletions(-)

commit 463eec2378af8056c71cb64c1309b81d4f1220e4
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 24 00:06:16 2018 +1000

    L10n updates for: my
    From translation svn revision: 43279
    
    Authors:
    Benedict La hkun <lkbenedict@gmail.com>
    
    Stats:
    278     253     source/locale/my/LC_MESSAGES/nvda.po
     1 file changed, 278 insertions(+), 253 deletions(-)

commit 335a142d0fe8466f9c99bd5d19badb34bae6ccdb
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 24 00:06:09 2018 +1000

    L10n updates for: ky
    From translation svn revision: 43279
    
    Authors:
    Bermet Zhakypbekova <bermet.zhakypbekova@gmail.com>
    
    Stats:
    8       8       source/locale/ky/symbols.dic
    44      3       user_docs/ky/userGuide.t2t
     2 files changed, 52 insertions(+), 11 deletions(-)

commit a32dc7846bb33cd29a37f7f31fd662fe968faef1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 24 00:05:53 2018 +1000

    L10n updates for: hr
    From translation svn revision: 43279
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Mario Percinic <mario.percinic@gmail.com>
    Tea Turkovic <tturkovi@gmail.com>
    
    Stats:
    44      42      user_docs/hr/changes.t2t
    50      15      user_docs/hr/userGuide.t2t
     2 files changed, 94 insertions(+), 57 deletions(-)

commit 08b405e9a9f73dd59f0e391545c05b8ad715837a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 24 00:05:39 2018 +1000

    L10n updates for: fa
    From translation svn revision: 43279
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    1       0       user_docs/fa/changes.t2t
     1 file changed, 1 insertion(+)

commit 872c9d6b796bbbc9deebb26a9ad534f12957fd95
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 24 00:05:29 2018 +1000

    L10n updates for: de
    From translation svn revision: 43279
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    
    Stats:
    165     166     user_docs/de/changes.t2t
    10      10      user_docs/de/userGuide.t2t
     2 files changed, 175 insertions(+), 176 deletions(-)

commit 88b18ba6b2e1356434bf5456360bf4c6d4094e0c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 24 00:05:24 2018 +1000

    L10n updates for: da
    From translation svn revision: 43279
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    109     48      source/locale/da/LC_MESSAGES/nvda.po
    34      2       user_docs/da/changes.t2t
    47      11      user_docs/da/userGuide.t2t
     3 files changed, 190 insertions(+), 61 deletions(-)

commit 58df713fbfde4c6f2cc51034cd03c5500ccde860
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 24 00:05:12 2018 +1000

    L10n updates for: ar
    From translation svn revision: 43279
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    109     48      source/locale/ar/LC_MESSAGES/nvda.po
     1 file changed, 109 insertions(+), 48 deletions(-)

commit e0daaf012d71d886a23f484e2c5e74f1765d348b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 24 00:05:07 2018 +1000

    L10n updates for: an
    From translation svn revision: 43279
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    
    Stats:
    326     231     user_docs/an/userGuide.t2t
     1 file changed, 326 insertions(+), 231 deletions(-)

commit 8e2df9fdec6a5a3d9f47ee9290d9584dacf7bcc9
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Tue Aug 21 20:45:32 2018 -0700

    Python 3 imports: try importing Python 3 version before resorting to using Python 2 names (PR #8606)
    
    Attempt to import python 2 module name first, and then import Python 3 version for performance considerations. This can be changed for the first Python 3 release.
    
    * Python 3: import _winreg > winreg. Re #8527.
    
    Python 3 introduces winreg - just _winreg without the leading underscore. Thus use the new import form:
    >>> try:
    >>>  import winreg
    >>> except ImportError:
    >>>  import _winreg as winreg
    Note: spaces were used for this fragment.
    This change allows NVDA to work with Python 2 or 3 version of winreg module. Also, code that uses (_)winreg module has been modified to call winreg.something.
    
    * Queue handler: import Queue -> queue. Re #8527.
    
    Python 3 ships with queue (lowercase queue). This module is used in three places: queue handler, JaB handler, and Espeak module. For this commit, queue handler has been modified to import Python 3's queue first before resorting to loading Queue.queue (Python 2). JAB and Espeak will be done on a separate commit due to extensive edits required (these use Python 2 module directly).
    
    * Espeak internal module: import Queue > queue. Re #8527.
    
    Python 3 renames Queue to queue, and internal Espeak module imports this directly. Thus try loading Python 3 version first before resorting to useing Python 2 name.
    
    * JAB handler: import Queue > queue. re #8527.
    
    * App modules/aliases: use relative imports of the form 'from .appmod import *'. Re #8649.
    
    * Python 3/imports: use relative import of the form 'from .mod import something'. Re #8590.

commit ec3eeee941f6b47f6ebb8ead9dc75bdc3efddfa1
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Mon Aug 20 09:36:49 2018 +0200

    Get reliable points from offsets in virtual buffers (PR #8479)
    
    Fixes #6460
    
    1. Added two attributes to virtual buffer text nodes.
       - ia2TextOffset: holds the start offset for a TextFieldNode within the IAccessibleText of its associated
         object. This attribute is only added to text field nodes that originate from IAccessibleText.
       - strippedCharsFromStart: When characters are stripped from the start of a text node (#2963) this
          attribute holds the amount of stripped chars from the start, in order for us to correct the
          ia2TextOffset.
    
    2. the Gecko virtual buffer text info now has its own _getPointFromOffset implementation that uses the new virtual buffer attributes.
    
    3. VirtualBufferTextInfo.getTextWithFields is now split up into a helper function _getFieldsInRange, similar to DisplayModelTextInfo. This allows for easy retrieval of control/format fields in a particular range, regardless where the text info is positioned.
    
    4. pointFromOffset in the adobe acrobat virtual buffer now uses the _indexINParent attribute. It seems Adobe Acrobat has separate dom nodes for every word, so pointFromOffset now gets the center point of the word, which is far better than it was before.

commit 4b08125a8ffa51455f8bd27a9e6df8bf71a12c93
Merge: 8fd7f31af 49b9b0b3f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 17 11:36:40 2018 +1000

    Update translations.
    
    From translation svn revision: 43181

commit 49b9b0b3fb6929b43edf7756966b82b223b10fa9
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 17 11:36:38 2018 +1000

    L10n updates for: zh_CN
    From translation svn revision: 43181
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    
    Stats:
    2       1       user_docs/zh_CN/changes.t2t
     1 file changed, 2 insertions(+), 1 deletion(-)

commit 472fabe73b249eca3047d4343627663249481f3c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 17 11:36:36 2018 +1000

    L10n updates for: vi
    From translation svn revision: 43181
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    2       0       user_docs/vi/changes.t2t
    1       1       user_docs/vi/userGuide.t2t
     2 files changed, 3 insertions(+), 1 deletion(-)

commit 587c7e31c34e0a470bfa27d9e04a5e3e41b5a291
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 17 11:36:22 2018 +1000

    L10n updates for: pt_PT
    From translation svn revision: 43181
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    2       1       user_docs/pt_PT/changes.t2t
     1 file changed, 2 insertions(+), 1 deletion(-)

commit 138755b645b42a166ddf492981555cbb8257b38e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 17 11:36:20 2018 +1000

    L10n updates for: pt_BR
    From translation svn revision: 43181
    
    Authors:
    Cleverson Casarin Uliana <clever97@gmail.com>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    2       1       user_docs/pt_BR/changes.t2t
     1 file changed, 2 insertions(+), 1 deletion(-)

commit 86e2708a0a5cd666bee9ec076f923ac4d6ed4363
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 17 11:36:00 2018 +1000

    L10n updates for: hr
    From translation svn revision: 43181
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Mario Percinic <mario.percinic@gmail.com>
    Tea Turkovic <tturkovi@gmail.com>
    
    Stats:
    44      13      user_docs/hr/changes.t2t
     1 file changed, 44 insertions(+), 13 deletions(-)

commit eb1c976cec9226b260eaefb44a5556a1078559db
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 17 11:35:55 2018 +1000

    L10n updates for: fr
    From translation svn revision: 43181
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    1       0       user_docs/fr/changes.t2t
     1 file changed, 1 insertion(+)

commit 84b046bacbca066d6d4afd9cf22aa9b91c825d8c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 17 11:35:53 2018 +1000

    L10n updates for: fi
    From translation svn revision: 43181
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    1       0       user_docs/fi/changes.t2t
     1 file changed, 1 insertion(+)

commit c5fc628776cd3205ff6de8a64784bd818fb14a88
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 17 11:35:32 2018 +1000

    L10n updates for: an
    From translation svn revision: 43181
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    
    Stats:
    168     48      source/locale/an/LC_MESSAGES/nvda.po
    3       0       source/locale/an/symbols.dic
     2 files changed, 171 insertions(+), 48 deletions(-)

commit 8fd7f31af8860ec4ce25f0547596846105a897a0
Merge: 3462fcc2b f7227b166
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 17 00:16:23 2018 +1000

    Update translations.
    
    From translation svn revision: 43112

commit f7227b1664cfa2686f178bbc493f66f30bae4fa5
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 17 00:16:23 2018 +1000

    L10n updates for: zh_TW
    From translation svn revision: 43112
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    14      15      user_docs/zh_TW/userGuide.t2t
     1 file changed, 14 insertions(+), 15 deletions(-)

commit 7c929148b8a684c220936ee236272402458e56b8
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 17 00:16:19 2018 +1000

    L10n updates for: zh_HK
    From translation svn revision: 43112
    
    Authors:
    Eric Yip <ericycy@gmail.com>
    
    Stats:
    173     61      source/locale/zh_HK/LC_MESSAGES/nvda.po
    1       1       source/locale/zh_HK/symbols.dic
     2 files changed, 174 insertions(+), 62 deletions(-)

commit d5b90ca846deb2a1c69bac6e8131ef075fb334b6
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 17 00:16:18 2018 +1000

    L10n updates for: zh_CN
    From translation svn revision: 43112
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    
    Stats:
    4       3       user_docs/zh_CN/changes.t2t
    32      0       user_docs/zh_CN/userGuide.t2t
     2 files changed, 36 insertions(+), 3 deletions(-)

commit 4a4b96a78ef9d5bc9cdb25ec283438a88a9c7cfe
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 17 00:16:13 2018 +1000

    L10n updates for: vi
    From translation svn revision: 43112
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    3       2       source/locale/vi/LC_MESSAGES/nvda.po
    10      9       user_docs/vi/changes.t2t
    16      17      user_docs/vi/userGuide.t2t
     3 files changed, 29 insertions(+), 28 deletions(-)

commit 3de6b033e420b7053c70b5a070a4b6b5a6a14c88
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 17 00:16:09 2018 +1000

    L10n updates for: uk
    From translation svn revision: 43112
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    112     51      source/locale/uk/LC_MESSAGES/nvda.po
     1 file changed, 112 insertions(+), 51 deletions(-)

commit 729f150c723848b1bd83f284691affccd880f754
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 17 00:15:51 2018 +1000

    L10n updates for: sl
    From translation svn revision: 43112
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    261     46      source/locale/sl/LC_MESSAGES/nvda.po
    50      18      user_docs/sl/userGuide.t2t
     2 files changed, 311 insertions(+), 64 deletions(-)

commit dbcdc19ff60aee2a73be4ea2ef1df9dd1a173331
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 17 00:15:37 2018 +1000

    L10n updates for: pt_PT
    From translation svn revision: 43112
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    3       5       user_docs/pt_PT/userGuide.t2t
     1 file changed, 3 insertions(+), 5 deletions(-)

commit dcbd09f35de58c26c47eeb0826cec65402d48e48
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 17 00:15:33 2018 +1000

    L10n updates for: pt_BR
    From translation svn revision: 43112
    
    Authors:
    Cleverson Casarin Uliana <clever97@gmail.com>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    116     54      source/locale/pt_BR/LC_MESSAGES/nvda.po
    24      23      user_docs/pt_BR/changes.t2t
    4       8       user_docs/pt_BR/userGuide.t2t
     3 files changed, 144 insertions(+), 85 deletions(-)

commit 71e1fd2398e697cca66b76c11435692d225de52a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 17 00:15:18 2018 +1000

    L10n updates for: nl
    From translation svn revision: 43112
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    12      14      source/locale/nl/LC_MESSAGES/nvda.po
    59      0       user_docs/nl/changes.t2t
    5       6       user_docs/nl/userGuide.t2t
     3 files changed, 76 insertions(+), 20 deletions(-)

commit 7de97cbbee3c9b4b94e8b8e2865514e243968964
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 17 00:14:56 2018 +1000

    L10n updates for: ko
    From translation svn revision: 43112
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    
    Stats:
    167     51      source/locale/ko/LC_MESSAGES/nvda.po
    6       6       user_docs/ko/changes.t2t
    1       1       user_docs/ko/userGuide.t2t
     3 files changed, 174 insertions(+), 58 deletions(-)

commit 8053d89a6a55454537dbcd7190ad286c72a04ae1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 17 00:14:51 2018 +1000

    L10n updates for: kmr
    From translation svn revision: 43112
    
    Authors:
    unable to find language: kmr
    
    Stats:
    166     18      source/locale/kmr/LC_MESSAGES/nvda.po
     1 file changed, 166 insertions(+), 18 deletions(-)

commit e6bb47c45858325a52498c37c4c182f76be97f96
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 17 00:14:49 2018 +1000

    L10n updates for: ja
    From translation svn revision: 43112
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    3       4       user_docs/ja/userGuide.t2t
     1 file changed, 3 insertions(+), 4 deletions(-)

commit 6606b7b3c3e8d2dd9bfc820f1198978634b8f7a9
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 17 00:14:35 2018 +1000

    L10n updates for: gl
    From translation svn revision: 43112
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    
    Stats:
    1       1       user_docs/gl/changes.t2t
    3       4       user_docs/gl/userGuide.t2t
     2 files changed, 4 insertions(+), 5 deletions(-)

commit 3f9dec28a7cc46b273787f717fdd284c03466fcf
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 17 00:14:31 2018 +1000

    L10n updates for: fr
    From translation svn revision: 43112
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    3       3       user_docs/fr/changes.t2t
    4       5       user_docs/fr/userGuide.t2t
     2 files changed, 7 insertions(+), 8 deletions(-)

commit 85e4e723017bb1ca3bb7a2b7868c785482768142
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 17 00:14:28 2018 +1000

    L10n updates for: fi
    From translation svn revision: 43112
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    8       8       user_docs/fi/changes.t2t
    4       5       user_docs/fi/userGuide.t2t
     2 files changed, 12 insertions(+), 13 deletions(-)

commit f44daba75473d51fecd20f0827866c5481a2c581
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 17 00:14:26 2018 +1000

    L10n updates for: fa
    From translation svn revision: 43112
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    4       4       user_docs/fa/changes.t2t
    3       4       user_docs/fa/userGuide.t2t
     2 files changed, 7 insertions(+), 8 deletions(-)

commit 2ec43e70173815ccf3fceea596a40420af0ef9ac
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 17 00:14:22 2018 +1000

    L10n updates for: es
    From translation svn revision: 43112
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    
    Stats:
    1       1       user_docs/es/changes.t2t
    3       4       user_docs/es/userGuide.t2t
     2 files changed, 4 insertions(+), 5 deletions(-)

commit b47f62fc08530a44ec480908fa0c276ae98fa8a2
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 17 00:14:13 2018 +1000

    L10n updates for: de
    From translation svn revision: 43112
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    
    Stats:
    7       7       user_docs/de/changes.t2t
    3       4       user_docs/de/userGuide.t2t
     2 files changed, 10 insertions(+), 11 deletions(-)

commit fabb3cd4bbb8b75dfb7df4142ecca4ee03e5de38
Merge: 671b20238 3462fcc2b
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Aug 16 18:22:03 2018 +1000

    Merge branch 'beta'

commit 3462fcc2b181012f782b01a5214f89d6236a9e01
Author: André-Abush Clause <dev@andreabc.net>
Date:   Thu Aug 16 10:21:04 2018 +0200

    Compatibility for the "Use Unicode UTF-8 for worldwide language support" feature (#8602)
    
    * Compatibility for the "Use Unicode UTF-8 for worldwide language support" feature
    => Add cp65001 codec Temporarily
    This commit should be reverted during Python3 transition
    Fixes #8599
    
    * Update what's new

commit ccb488b4f44cf3a200c3c58d0ecb86bb36590e22
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Aug 15 16:44:00 2018 +1000

    Fix issue #8609 by removing bad implementation of _getTextWithFields_text and fix instead in WordDocument's getTextWithFields. (#8627)

commit 671b20238159dfb1be72d873b971927254c3bf02
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Wed Aug 15 15:11:16 2018 +0930

    Update miscDeps to latest. (PR #8629)
    
    Misc-deps has been updated to remove the following:
    IA2, replaced by https://github.com/LinuxA11y/IAccessible2.git
    configobj: replaced by https://github.com/DiffSK/configobj.git
    
    Based on merged in commit of: nvaccess/nvda-misc-deps PR #10 (https://github.com/nvaccess/nvda-misc-deps/pull/10)

commit 949f0babd061e0d456d5d7f7464f503a921890d6
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Wed Aug 15 00:40:48 2018 +0200

    Add validate to setup.py (#8632)

commit a8bda064b02a1b274c59fa79717988344f9d44db
Author: Łukasz Golonka <wulfryk1@gmail.com>
Date:   Tue Aug 14 09:35:04 2018 +0200

    Remove redundant text from clock icon in system tray (PR #8513)
    
    On some versions of Windows, the name of the clock icon is present in the value of the clock system tray icon. When this is the case, the name attribute is overridden so that it is not reported twice.
    Fixes #4364

commit 5952d0f857488fca5f4d4317240d277df9346f2f
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Tue Aug 14 09:28:57 2018 +0200

    Second attempt to update to configobj 5.1.0dev (PR #8626)
    
    Really use the new configobj this time, and add proper logging for configobj version when starting NVDA for this to be more easily verified. For add-ons or other code that might be still using validate directly, a deprecation warning has been added.
    
    Closes #4470
    Implements #7945
    Supersedes #8622

commit 32351be5376a4eff1b92c9e059545e7548fa8696
Author: Derek Riemer <derek.riemer@colorado.edu>
Date:   Tue Aug 14 00:51:24 2018 -0600

    Provide accessible Checkable list (PR #7491)
    
    Implements an accPropServer for NVDA to be able to use checkableLists. accPropServer is a base class users can inherit from to implement accpropServers on wx widgets.
    
    This commit introduces
    - an accessible check list box, so that each item is a checkbox. This list box only supports one column
    - CheckableAutoWidthColumnListCtrl, which is a multi column supporting list control with accessible check boxes. From an accessibility perspective, this control behaves similar to the list control in Windows disk cleanup (cleanmgr).
    - an abstract AccPropServer we can make other servers from. This helps with fixing accessibility, but wraps the callback you provide with exception handling code (Since comtypes seems to squelch errors).
    
    closes #7325
    closes #4357

commit f0b1c61fd03c0dc2a9db79c25be74455e60f5095
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Tue Aug 14 14:37:09 2018 +1000

    wx no longer compplains of unsupported languages (#8612)
    
    * Core: don't try to initialize wx's locale support if wx doesn't actually support a particular algnauge.
    
    * Update what's new

commit 7117f56cf6aa9c50f3af3ce330f34bd5895ef02a
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Tue Aug 14 14:15:03 2018 +1000

    Outlook 2016: report category and flagged status for messages. (#8608)
    
    * Outlook 2016: report category and flagged status for messages.
    
    * Outlook: work around bug in UIA's getCachedChildren on Outlook conversation view threads where it fails to return any children at all. We can instead filter the tree for text and image elements which seems to get around the issue.
    
    * Outlook: check the object model to see if we should report the UIA flag and category fields.
    
    * Outlook: remove now unused oleFlagLabels dictionary
    
    * Outlook appModule:  check that we actually have an object model selection when matching on different fields for message rows.
    
    * Update what's new

commit e9d14d7053e4f51db59dc927f7a0f307c8ad2cfc
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Tue Aug 14 00:01:52 2018 +0200

    Increase eurobraille timeout when connecting (#8625)

commit 898f5808cbe923f09bf169235a94e52642fbf360
Author: Ethan Holliger <21368115+ehollig@users.noreply.github.com>
Date:   Mon Aug 13 01:41:02 2018 -0600

    Change report balloons to report notifications (PR #8617)
    
    Change report balloons to report notifications.
    Fixes #5789

commit cbaca4243795645e6bc3cdc05210eebfa86c275c
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Mon Aug 13 09:31:35 2018 +0200

    Update configobj to 5.1.0dev (PR #7945)
    
    Update configobj is at "latest master" (5.1.0dev) rather than 5.0.6 to solve a validation import error
    Closes #4470

commit 843cf01974738d4abde441e1b34209bfacf8abc0
Merge: 2909b2063 4e0381a44
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Aug 13 11:42:22 2018 +1000

    Merge branch 'beta' into master.

commit 4e0381a443205f38e0dbfca130c3ed7b10f64449
Merge: d58e1cd45 77836f2e9
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Aug 13 11:33:48 2018 +1000

    Merge branch beta into master.

commit 77836f2e92e9b4efd1a4e9f10e38dbb325b36b61
Merge: 691b996c7 98f85bc79
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Aug 13 11:15:59 2018 +1000

    Update translations.
    
    From translation svn revision: 42964

commit 98f85bc798fcbd9a2a4103104d5de3cf34c3571d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Aug 13 11:15:57 2018 +1000

    L10n updates for: zh_CN
    From translation svn revision: 42964
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    
    Stats:
    45      21      user_docs/zh_CN/userGuide.t2t
     1 file changed, 45 insertions(+), 21 deletions(-)

commit 69653200782cd2dea63e2fd7ae56af8277205a8f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Aug 13 11:15:55 2018 +1000

    L10n updates for: vi
    From translation svn revision: 42964
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    209     191     source/locale/vi/LC_MESSAGES/nvda.po
    1       1       user_docs/vi/changes.t2t
     2 files changed, 210 insertions(+), 192 deletions(-)

commit 2ef7d5a77acd9c44afaa9eee08a5291def82a119
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Aug 13 11:15:51 2018 +1000

    L10n updates for: ta
    From translation svn revision: 42964
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    4       4       source/locale/ta/LC_MESSAGES/nvda.po
    45      9       user_docs/ta/userGuide.t2t
     2 files changed, 49 insertions(+), 13 deletions(-)

commit 0ae9c5ade04ef0cb4638024f8b9cb06d771ba2f3
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Aug 13 11:15:35 2018 +1000

    L10n updates for: nl
    From translation svn revision: 42964
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    116     48      source/locale/nl/LC_MESSAGES/nvda.po
    4       1       user_docs/nl/changes.t2t
     2 files changed, 120 insertions(+), 49 deletions(-)

commit aea9070856b8f47cb9db4c3cc271981b5482d00f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Aug 13 11:15:27 2018 +1000

    L10n updates for: ko
    From translation svn revision: 42964
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    
    Stats:
    14      14      user_docs/ko/changes.t2t
     1 file changed, 14 insertions(+), 14 deletions(-)

commit 1687181c9966829f56d0c16bdd3f24579c0b1dc9
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Aug 13 11:15:21 2018 +1000

    L10n updates for: it
    From translation svn revision: 42964
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    28      2       user_docs/it/userGuide.t2t
     1 file changed, 28 insertions(+), 2 deletions(-)

commit 9886b2de92039c4c411283dcc24d4a82077f723b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Aug 13 11:15:12 2018 +1000

    L10n updates for: fr
    From translation svn revision: 42964
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    3       3       source/locale/fr/LC_MESSAGES/nvda.po
    41      5       user_docs/fr/userGuide.t2t
     2 files changed, 44 insertions(+), 8 deletions(-)

commit 03d06f40c99e43a29094ec63668691fcfc431fe4
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Aug 13 11:15:08 2018 +1000

    L10n updates for: fa
    From translation svn revision: 42964
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    3       3       source/locale/fa/LC_MESSAGES/nvda.po
    43      7       user_docs/fa/userGuide.t2t
     2 files changed, 46 insertions(+), 10 deletions(-)

commit 691b996c7d6a97d7ad0cf7fac068eb8d7a70b667
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Sun Aug 12 17:49:55 2018 -0700

    What's new: beta-level entry changes and clarifications (#8618)
    
    * What's new: entry changes, capitalization, clarification.
    
    MS Word/UIA/braille panning bug fix entry is now part of related fixes for Word/UIA fixes.
    Braille table path; russian > Russian.
    Sending synth name and brialle display driver name: added a clarification statement that says this is for 2018.3 and later.
    Half-checked state entry: 'fixed a case' > 'fixed an issue'.
    Language list/ISO 639 sorting change: General Settings dialog > NVDA's General Settings.
    Braille focus context presentation fix: clarified that this is related to browse mode cursor, as just saying 'stop following' is not relaly that clear.
    
    * What's new: revert usage stats entry and specify that this will happen when chekcing for updates.

commit 93f2b928fe76eb6d879b4266fa0ec64116a91ad8
Merge: 6d72e9297 f0d8bd765
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 10 00:07:18 2018 +1000

    Update translations.
    
    From translation svn revision: 42923

commit f0d8bd76582b920878930a441930ecc5cf1ea06d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 10 00:07:16 2018 +1000

    L10n updates for: zh_TW
    From translation svn revision: 42923
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    124     58      source/locale/zh_TW/LC_MESSAGES/nvda.po
    46      41      source/locale/zh_TW/characterDescriptions.dic
    50      14      user_docs/zh_TW/userGuide.t2t
     3 files changed, 220 insertions(+), 113 deletions(-)

commit 5e5381c30699ba5981e58c530aedbfb8fa3e3143
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 10 00:07:11 2018 +1000

    L10n updates for: zh_CN
    From translation svn revision: 42923
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    
    Stats:
    10893   10831   source/locale/zh_CN/LC_MESSAGES/nvda.po
    49      8       user_docs/zh_CN/changes.t2t
     2 files changed, 10942 insertions(+), 10839 deletions(-)

commit 2436e7176d4507f488f09cdc9b9ad49ecaca5fba
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 10 00:07:08 2018 +1000

    L10n updates for: vi
    From translation svn revision: 42923
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    775     740     source/locale/vi/LC_MESSAGES/nvda.po
    42      24      user_docs/vi/changes.t2t
    67      56      user_docs/vi/userGuide.t2t
     3 files changed, 884 insertions(+), 820 deletions(-)

commit 04433665ae35dd5b7d81588462dcba120bf04fd5
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 10 00:07:02 2018 +1000

    L10n updates for: tr
    From translation svn revision: 42923
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    110     49      source/locale/tr/LC_MESSAGES/nvda.po
    52      6       user_docs/tr/changes.t2t
     2 files changed, 162 insertions(+), 55 deletions(-)

commit 2c13c1d1e3ba85a76090eb22e87f230675f35f83
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 10 00:06:59 2018 +1000

    L10n updates for: ta
    From translation svn revision: 42923
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    107     45      source/locale/ta/LC_MESSAGES/nvda.po
     1 file changed, 107 insertions(+), 45 deletions(-)

commit 6b50dcc47e41cfd3bce4c9fc9aa2d4388ee088c5
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 10 00:06:48 2018 +1000

    L10n updates for: ru
    From translation svn revision: 42923
    
    Authors:
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    109     48      source/locale/ru/LC_MESSAGES/nvda.po
     1 file changed, 109 insertions(+), 48 deletions(-)

commit 1ae82381f24fadb3a0b26ef8743999538654b4a9
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 10 00:06:43 2018 +1000

    L10n updates for: ro
    From translation svn revision: 42923
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    
    Stats:
    109     48      source/locale/ro/LC_MESSAGES/nvda.po
    16      5       user_docs/ro/changes.t2t
     2 files changed, 125 insertions(+), 53 deletions(-)

commit 19ef904751397e5008aaaeece6500858a3d00e99
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 10 00:06:40 2018 +1000

    L10n updates for: pt_PT
    From translation svn revision: 42923
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    111     48      source/locale/pt_PT/LC_MESSAGES/nvda.po
    50      3       user_docs/pt_PT/changes.t2t
    61      24      user_docs/pt_PT/userGuide.t2t
     3 files changed, 222 insertions(+), 75 deletions(-)

commit e1b832bf9f48a5f7a23ce97bb252dbe7d5c623ec
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 10 00:06:37 2018 +1000

    L10n updates for: pt_BR
    From translation svn revision: 42923
    
    Authors:
    Cleverson Casarin Uliana <clever97@gmail.com>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    54      6       user_docs/pt_BR/changes.t2t
    112     86      user_docs/pt_BR/userGuide.t2t
     2 files changed, 166 insertions(+), 92 deletions(-)

commit cc3e072f89d50ab35f865797b9c24d879b34a799
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 10 00:06:34 2018 +1000

    L10n updates for: pl
    From translation svn revision: 42923
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <killer@tyflonet.com>
    
    Stats:
    110     49      source/locale/pl/LC_MESSAGES/nvda.po
     1 file changed, 110 insertions(+), 49 deletions(-)

commit 7a329032dd9944a1294d1bdf6e205054ab5942ca
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 10 00:06:30 2018 +1000

    L10n updates for: nl
    From translation svn revision: 42923
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    46      4       user_docs/nl/userGuide.t2t
     1 file changed, 46 insertions(+), 4 deletions(-)

commit 0a93c488c0f0b44c2dd92e675df127de3b3c347c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 10 00:06:18 2018 +1000

    L10n updates for: ko
    From translation svn revision: 42923
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    
    Stats:
    3       1       user_docs/ko/userGuide.t2t
     1 file changed, 3 insertions(+), 1 deletion(-)

commit ed186d7fa195f867817b1fd93450068bb5f062b5
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 10 00:06:14 2018 +1000

    L10n updates for: kmr
    From translation svn revision: 42923
    
    Authors:
    unable to find language: kmr
    
    Stats:
    260     204     source/locale/kmr/LC_MESSAGES/nvda.po
     1 file changed, 260 insertions(+), 204 deletions(-)

commit 33739242039ff29e6b5aa031fb5a570b44e6f345
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 10 00:06:12 2018 +1000

    L10n updates for: ja
    From translation svn revision: 42923
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    110     49      source/locale/ja/LC_MESSAGES/nvda.po
    49      13      user_docs/ja/userGuide.t2t
     2 files changed, 159 insertions(+), 62 deletions(-)

commit e462dfc43f9114ee8bd2103eca1596dcf14381f5
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 10 00:06:08 2018 +1000

    L10n updates for: it
    From translation svn revision: 42923
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    109     48      source/locale/it/LC_MESSAGES/nvda.po
     1 file changed, 109 insertions(+), 48 deletions(-)

commit a5758f159a7ad1bbe030983eb67345268b41ae71
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 10 00:06:00 2018 +1000

    L10n updates for: hr
    From translation svn revision: 42923
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Mario Percinic <mario.percinic@gmail.com>
    Tea Turkovic <tturkovi@gmail.com>
    
    Stats:
    110     49      source/locale/hr/LC_MESSAGES/nvda.po
     1 file changed, 110 insertions(+), 49 deletions(-)

commit 36f8d506c896b8dd69a693d70261ba0a755401fd
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 10 00:05:54 2018 +1000

    L10n updates for: gl
    From translation svn revision: 42923
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    
    Stats:
    109     48      source/locale/gl/LC_MESSAGES/nvda.po
    49      2       user_docs/gl/changes.t2t
    42      6       user_docs/gl/userGuide.t2t
     3 files changed, 200 insertions(+), 56 deletions(-)

commit fd4fd39638be42eb9e3511ea2be8557f65a05dca
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 10 00:05:50 2018 +1000

    L10n updates for: fr
    From translation svn revision: 42923
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    91      48      source/locale/fr/LC_MESSAGES/nvda.po
    53      6       user_docs/fr/changes.t2t
     2 files changed, 144 insertions(+), 54 deletions(-)

commit ba7fb86d0fa5f971919af29032609ca90f338f40
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 10 00:05:46 2018 +1000

    L10n updates for: fi
    From translation svn revision: 42923
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    109     48      source/locale/fi/LC_MESSAGES/nvda.po
    39      4       user_docs/fi/changes.t2t
    52      16      user_docs/fi/userGuide.t2t
     3 files changed, 200 insertions(+), 68 deletions(-)

commit a4dcd88f44bd01f9f8e809b25515f26e14d669e2
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 10 00:05:42 2018 +1000

    L10n updates for: fa
    From translation svn revision: 42923
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    109     48      source/locale/fa/LC_MESSAGES/nvda.po
    40      4       user_docs/fa/changes.t2t
     2 files changed, 149 insertions(+), 52 deletions(-)

commit 49c3e11b666858778ee5b001e3ab7250a7160f86
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 10 00:05:38 2018 +1000

    L10n updates for: es
    From translation svn revision: 42923
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    
    Stats:
    109     48      source/locale/es/LC_MESSAGES/nvda.po
    49      2       user_docs/es/changes.t2t
    43      7       user_docs/es/userGuide.t2t
     3 files changed, 201 insertions(+), 57 deletions(-)

commit 95f3092a365fe084d82be79201e98f22cb24e797
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 10 00:05:30 2018 +1000

    L10n updates for: de
    From translation svn revision: 42923
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    
    Stats:
    95      383     source/locale/de/LC_MESSAGES/nvda.po
    52      6       user_docs/de/changes.t2t
    57      21      user_docs/de/userGuide.t2t
     3 files changed, 204 insertions(+), 410 deletions(-)

commit dea35c368a4ff0f6abdd5f2a674fa985dfbe0535
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 10 00:05:22 2018 +1000

    L10n updates for: cs
    From translation svn revision: 42923
    
    Authors:
    Martina Letochova <letochova@seznam.cz>
    
    Stats:
    108     46      source/locale/cs/LC_MESSAGES/nvda.po
     1 file changed, 108 insertions(+), 46 deletions(-)

commit 6d72e9297bea37a5ce772a09ae26ff61b99b0f64
Author: Łukasz Golonka <wulfryk1@gmail.com>
Date:   Tue Aug 7 01:15:03 2018 +0200

    fix for #8073 improve list of commands for Optelec displays (#8465)

commit d58e1cd45985372c442e69bd281ffd96985d63d8
Merge: 4a75bfe88 2909b2063
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Aug 3 15:24:37 2018 +1000

    Merge branch 'master' into beta

commit 2909b2063680fa89f83db15f76c8a8535012913c
Author: Ethan Holliger <21368115+ehollig@users.noreply.github.com>
Date:   Thu Aug 2 21:57:13 2018 -0600

    winUser: fix xButton constants.  (#8589)
    
    Fixes #8570

commit 6e25ecd430fdce24fee3c47dc3f762ed79c9cfbb
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Fri Aug 3 13:25:36 2018 +1000

    Gecko_ia2 vbufBackend's  getLabelElement function: refactor to work around an odd bug where IAccessible2_2::get_relationTargetsOfType succeeds but nTargets is incorrectly 0. (#8586)

commit 4a75bfe886bcb0e53e5ce4baff806d59d5db5de8
Merge: 0f7694de4 a711f67c5
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 3 00:06:25 2018 +1000

    Update translations.
    
    From translation svn revision: 42704

commit a711f67c5f5dac11c3e5702ee44fe095767ec855
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 3 00:06:25 2018 +1000

    L10n updates for: zh_TW
    From translation svn revision: 42704
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    34      25      source/locale/zh_TW/characterDescriptions.dic
     1 file changed, 34 insertions(+), 25 deletions(-)

commit a50cb64438605fdf624f6c30e28b95c763c31701
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 3 00:06:22 2018 +1000

    L10n updates for: zh_CN
    From translation svn revision: 42704
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    
    Stats:
    10831   10831   source/locale/zh_CN/LC_MESSAGES/nvda.po
    14      27      source/locale/zh_CN/characterDescriptions.dic
     2 files changed, 10845 insertions(+), 10858 deletions(-)

commit 6a944f9e1382cbe8acca365a21541cfedf55e69d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 3 00:06:19 2018 +1000

    L10n updates for: vi
    From translation svn revision: 42704
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    15      15      source/locale/vi/LC_MESSAGES/nvda.po
    4       4       source/locale/vi/characterDescriptions.dic
    163     140     source/locale/vi/symbols.dic
    11      13      user_docs/vi/changes.t2t
    4       6       user_docs/vi/userGuide.t2t
     5 files changed, 197 insertions(+), 178 deletions(-)

commit 3535544be5a372ad482a8d0c5815d4bd6f97baa1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 3 00:06:03 2018 +1000

    L10n updates for: pt_PT
    From translation svn revision: 42704
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    12      12      source/locale/pt_PT/LC_MESSAGES/nvda.po
     1 file changed, 12 insertions(+), 12 deletions(-)

commit dc911f0fdb0bc1e3cffc2bd88993db58e4755e2f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 3 00:05:48 2018 +1000

    L10n updates for: ko
    From translation svn revision: 42704
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    
    Stats:
    55      7       user_docs/ko/changes.t2t
     1 file changed, 55 insertions(+), 7 deletions(-)

commit efcf2c8aaa58d240a5ed3840242eb12865cbde74
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 3 00:05:46 2018 +1000

    L10n updates for: kmr
    From translation svn revision: 42704
    
    Authors:
    unable to find language: kmr
    
    Stats:
    282     282     source/locale/kmr/LC_MESSAGES/nvda.po
     1 file changed, 282 insertions(+), 282 deletions(-)

commit a10921dba83014d001b7a3b62b5735681b648a8f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 3 00:05:16 2018 +1000

    L10n updates for: cs
    From translation svn revision: 42704
    
    Authors:
    Martina Letochova <letochova@seznam.cz>
    
    Stats:
    57      3       source/locale/cs/LC_MESSAGES/nvda.po
     1 file changed, 57 insertions(+), 3 deletions(-)

commit caa97fbd045fac801b2547507e27f5d8a48afd69
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Aug 1 19:39:28 2018 +1000

    Report  label of lists in browseMode (#8568)
    
    * speech.getControlFieldSpeech: ensure to report  all properties when entering a list (including: name, level, states etc), not just item count.
    
    * getControlFieldSpeech: speakEntry variable does not need to be changed to set containerContainsText variable.
    
    * Update what's new

commit c2ce1c651db3e2862c8aab09a48a5cc586981a6a
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Aug 1 15:19:45 2018 +1000

    Readme: mention that ATL is required to compile NVDA (#8583)
    
    * Readme: mention that ATL from Visual Studio 2017 is required to compile NVDA.
    
    * Add blank line back in

commit 2e237f776aeeb5f237d369eee8344fe9adf30289
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Aug 1 10:42:58 2018 +1000

    Braille in UIA word documents: improve focus ancestry, cursor routing, and newly inserted bullets/numbers (#8576)
    
    * UIATextRange._getTextWithFields_text: make the filtering of empty chunks configurable by subclasses.
    
    * UIA WordDocumentTextInfo: Improve support for lists in braille.
    Specifically:
    * strip the bullet off the start of the actual text and place it in the line-prefix formatField attribute. this allows braille cursor routing to work correctly on list items.
    * Work around a bug in MS Word where expanding to line on the final line of the document when it is blank fails. In this case, move the end of the range to to the end of the document manually. this  allows NVDA to expose newly inserted bullets in both speech and braille.
    
    * UIA WordDocumentTextInfo: ensure that the bullet/number of a list item is still announced on the first character like it used to. Now via a line-prefix_speakAlways boolean attribute.
    
    * Word documents with UIA: report  embedded charts.
    
    * UIA wordDocument: improve focus ancestory for speech and braille removing redundant reporting of the title.
    
    * UIA Word document: remove the name of the control alltogether as the name is duplicated in the title of the application.
    
    * Clarify docstring of ProtectedDocumentPane for Word documents.
    
    * Update What's new

commit 6522a9b3f0b9f994297520a08839e6a908c48323
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Tue Jul 31 17:38:05 2018 -0700

    Config: add saveConfig and resetConfig actions (PR #7606)
    
    Closes #7598
    
    Config: add the following actions so add-ons can respond and perform appropriate actions when saving or reverting settings, respectively:
    * `config.post_configSave`
    * `config.pre_configSave`
    * `config.post_configReset`
    * `config.pre_configReset`
    * `config.post_configProfileSwitch`
    
    Some add-ons do not participate in ConfigManager/profiles at the moment. For these, there's no easy way to revert settings or Control+NVDA+C cannot be used to let add-ons save settings. These new actions now alleviate this.
     Example use cases:
    * pre/post config save: allows add-ons to save settings to custom location(s).
    * pre/post config reset: allows add-ons to reload settings from anywhere and/or reset configuration to defaults (controlled by a boolean).
    
    Pre / post: there are times it is helpful to let modules perform actions prior to and/or after NVDA settings are saved, most likely when add-ons need to save settings and/or a module will transport settings to a cloud location for safekeeping or synchronization purposes. Not all modules should listen to both events at once - mostly, `pre_configSave` action is enough.

commit ef9be39243ed838691bb4bd1b4417cd5c5d77c53
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Tue Jul 31 07:26:34 2018 +0200

    Fix mistake in freedomScientific keymap assignment (#8578)

commit 14b74d359c6a2090f10d7a15bddac4562b4704f5
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Mon Jul 30 22:21:38 2018 -0700

    What's new: issue number edits, recognize Windows 10 RS5/Server 2019 (#8540)
    
    * What's new: issue number edits, recognize Windows 10 RS5/Server 2019.
    
    Changed issue numbers where they were previously pointing to pull requests. In case of braille tables, the two entries have been combined into one. Also, recognize the fact that Windows 10 RS5 also has a server variant: Windows Server 2019.
    
    * What's new: more edits.
    
    Requested by @LeonardDer (Babbage):
    * Windows 10 RS5: October 2018 Update
    * Capitalized more entries.
    * Added an explanatory text about 2018.2.1 release.
    
    * Half-checked checkbox issue: grammar.
    
    * What's new: reorder an entry so it matches order displayed on master snapshtos.
    
    * What's new: table -> tables

commit 9f59209e3f96fa9ed00a073bbe4d1d6da25a48e8
Author: Łukasz Golonka <wulfryk1@gmail.com>
Date:   Tue Jul 31 06:16:52 2018 +0200

    Add appmodule for 64-bit version of Media Player Classic (#8364)
    
    * Add appmodule for 64-bit version of Media Player Classic
    
    * review actions
    
    * Update what's new

commit 5b80fcac7f45497d00bb7ac9f2b9ef4ae25632fd
Author: James Teh <jamie@jantrid.net>
Date:   Tue Jul 31 14:11:43 2018 +1000

    Support IA2_ROLE_BLOCK_QUOTE. (#8577)
    
    * Support IA2_ROLE_BLOCK_QUOTE.
    
    This allows the new ARIA role="blockquote" to be supported in Firefox 63.
    Also, Firefox 63 exposes HTML blockquote with this role. Without this change, object navigation reports "unknown" for HTML blockquote.
    
    * Update what's new
    
    * Gecko_ia2 virtualBuffer: support jumping to ARIA blockquotes with quicknav.

commit 870669e3642cbf9d1c4f5045f0f4d2aad6f18556
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Tue Jul 31 05:59:46 2018 +0200

    Show proper display description when listing manually added braille display gestures in the input gestures dialog (#8245)
    
    * Allow case insensitive retrieval of BrailleDisplayDriver classes
    
    * Show the proper braille display in the input gestures dialog for custom assignments
    
    * Update what's new

commit a5e45550e75be40c1ab93290e4a3649b13b770c1
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Tue Jul 31 12:46:40 2018 +1000

    Treat documents as being multiline in Braille (#8569)
    
    * Treat documents as being multiline in Braille thus ensuring their textInfo region is hard left on the display.
    
    * Update what's new

commit 91831b22f6b20a6b339548186462ae29474c3fbe
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Mon Jul 30 10:30:57 2018 +0200

    Provide a locationHelper module for code related to locations, rectangles and points (PR #7537)
    
    Closes #7423
    
    Previously there were many different ways in which a location is presented in NVDA:
    - (left, top, width, height)
    - (left, top, right, bottom)
    - textInfos.Rect, which has left, top, right and bottom properties
    - ctypes.wintypes.Rect, which is a struct and also has left, top, right and bottom properties
    - (x,y)
    - textInfos.Point, which has x and y properties
    - ctypes.wintypes.Point, which is a structure and also has x and y properties
    
    On the fly conversion between the different types is not possible. Also, conversion from screen coordinates to client coordinates, physical to logical coordinates, etc. is somewhat cumbersome.

commit e31b8f243979aed5b668b3777b4d5fd3dfa74d10
Author: Łukasz Golonka <wulfryk1@gmail.com>
Date:   Mon Jul 30 10:22:29 2018 +0200

    Add apropriate messages when interacting with empty status lines  (PR #8475)
    
    Fixes #7789

commit b46b83eab33b1744af33fffa659b02bc404c4529
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Fri Jul 27 19:15:57 2018 +1000

    Report deleted/inserted content in Chrome (#8558)
    
    * Add deleted content and inserted content roles, mapped from new IAccessible2 roles. Adding reporting of inserted and deleted content in Chrome.
    
    * Address review actions.
    
    * Gecko_Ia2 virtualBuffer: support quicknav to insertions/deletions with annotations (a).
    
    * Review actions.
    
    * Update what's new

commit 00c8486749d7d678b4d3eacd3713da777dbee5da
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Fri Jul 27 19:14:30 2018 +1000

    Upgrade eSpeak-ng to latest master (#8561)
    
    * Upgrade eSpeak-ng to latest master.
    
    * Update readme.md and changes.t2t to reflect latest eSpeak-ng commit

commit b1acfd18ac5254cf62235994882d3a82cc4ef4f0
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Thu Jul 26 23:15:40 2018 -0700

    Edge: announce notifications fired by main Edge process such as reading view availability (#8424)
    
    * Edge: announce notifications fired by main Edge process such as reading view availability. Re #8423.
    
    Certain notifications, including reading view availability are fired by main Edge process, not the content process. This means NvDA will ignore such notifications. Resolved by adding a dedicated app module for Edge main process that'll catch notifications and announce them, and propogate them no more.
    
    * Edge: review actionn (limit notificaiton context to Edge). Re #8423.
    
    Reviewed by @LeonardDer: limit Edge notificaiton context to Edge only. This is done by checking to make sure focused element is indeed part of Edge, and if not, notifications will be silenced. This resolves an issue where Edge notifications are heard while using other apps.
    
    * Update what's new

commit 0f7694de4cb1ccb9a9c887c34907e17a43660ad1
Merge: 18864255c e4dfff677
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 27 00:06:17 2018 +1000

    Update translations.
    
    From translation svn revision: 42599

commit e4dfff677e8ba35fdbc64e7087b25a602021f995
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 27 00:06:16 2018 +1000

    L10n updates for: zh_TW
    From translation svn revision: 42599
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    47      42      source/locale/zh_TW/characterDescriptions.dic
     1 file changed, 47 insertions(+), 42 deletions(-)

commit eec659726cee29d9f839a7f72c4482fc406ae7c9
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 27 00:06:12 2018 +1000

    L10n updates for: vi
    From translation svn revision: 42599
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    12      7       source/locale/vi/LC_MESSAGES/nvda.po
    800     544     user_docs/vi/userGuide.t2t
     2 files changed, 812 insertions(+), 551 deletions(-)

commit 4e7ff724bd4179ccb07386d464bb9315ea0d392e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 27 00:06:09 2018 +1000

    L10n updates for: tr
    From translation svn revision: 42599
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    3       3       source/locale/tr/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 3 deletions(-)

commit 4b902288fe3cf4e839351b860e9ce61c5cb234b2
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 27 00:06:06 2018 +1000

    L10n updates for: sv
    From translation svn revision: 42599
    
    Authors:
    Daniel Johansson <daniel.johansson@coeptus.se>
    Niklas Johansson <sleeping.pillow@gmail.com>
    
    Stats:
    58      42      source/locale/sv/LC_MESSAGES/nvda.po
     1 file changed, 58 insertions(+), 42 deletions(-)

commit 6baa00152a5631964c942ea4d9b0679c5e6e6350
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 27 00:05:58 2018 +1000

    L10n updates for: ro
    From translation svn revision: 42599
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    
    Stats:
    3       3       source/locale/ro/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 3 deletions(-)

commit b3b757f85b3e91fe05530ce01898080132fc6953
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 27 00:05:48 2018 +1000

    L10n updates for: nb_NO
    From translation svn revision: 42599
    
    Authors:
    David Hole <balubathebrave@gmail.com>
    Bjornar Seppola <bjornar@seppola.net>
    
    Stats:
    51      56      user_docs/nb_NO/userGuide.t2t
     1 file changed, 51 insertions(+), 56 deletions(-)

commit de835c939968da3d5f95e20d3e5f19e3f734661e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 27 00:05:41 2018 +1000

    L10n updates for: kmr
    From translation svn revision: 42599
    
    Authors:
    unable to find language: kmr
    
    Stats:
    142     129     source/locale/kmr/LC_MESSAGES/nvda.po
     1 file changed, 142 insertions(+), 129 deletions(-)

commit 4c05f3c23320d43c3c207172a93794008bb8905e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 27 00:05:40 2018 +1000

    L10n updates for: ja
    From translation svn revision: 42599
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    66      2       user_docs/ja/userGuide.t2t
     1 file changed, 66 insertions(+), 2 deletions(-)

commit 1f338d5f972339dac59ccbd1f5ddac7acefe5e5c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 27 00:05:33 2018 +1000

    L10n updates for: hr
    From translation svn revision: 42599
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Mario Percinic <mario.percinic@gmail.com>
    Tea Turkovic <tturkovi@gmail.com>
    
    Stats:
    4       0       source/locale/hr/symbols.dic
     1 file changed, 4 insertions(+)

commit 3b9da690970b12910d1e2c12fe2e9a1369513c6e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 27 00:05:18 2018 +1000

    L10n updates for: de
    From translation svn revision: 42599
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    
    Stats:
    157     3       source/locale/de/LC_MESSAGES/nvda.po
     1 file changed, 157 insertions(+), 3 deletions(-)

commit 48201d01c4af2c32ddbe85a005105780b182c11c
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Wed Jul 25 23:32:12 2018 -0700

    Language handler: add Burmese manually as it is not recognized in Windows 7 (#8545)
    
    * Language handler: add Burmese manually as it is not included in Windows 7.
    
    Burmese (my) is recognized starting with Windows 8. Because NVDA also runs on Windows 7, add this language manually.
    
    * What's new: add bug fix entry for Burmese+Windows 7. Re #8544.

commit 9bd411166dcbe4517847b270cd8bb53306a4c757
Author: André-Abush Clause <dev@andreabc.net>
Date:   Thu Jul 26 08:07:04 2018 +0200

    Fix a case where the "not checked" state is not reported in speech (#8550)
    
    * Add CHECKED to speakNegatives if HALFCHECKED is present but CHECKED isn't for REASON_CHANGE
    Fixes #6946
    
    * Change the condition to match the condition originally proposed
    
    * Update What's new

commit 2975d337099e4a3fb735721684d5853006cc98cc
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Thu Jul 26 07:10:26 2018 +0200

    Remove duplicated functions from winKernel (#8551)

commit fd62d9da02b7c67b33c91bdfbf347867f19b3ad5
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Mon Jul 23 15:57:57 2018 +1000

    Enable event coalescing and connection recovery for UI Automation when available (#8539)
    
    * UIAHandler: enable event coalescing and connection recovery for UI Automation when available.
    
    * Update What's new

commit d92a5be8eef0b4018ab75347e4416aee9e220320
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Sun Jul 22 22:26:54 2018 -0700

    Language handler: use kernel32.dll function, add Kurdish language support (#8538)
    
    * Language handler: simplify localeNameToWindowsLCID function by calling kernel32.dll's LocaleNameToLCID function. Re #8488.
    
    Because NVDA no longer supports Windows XP, it is now safe to call kernel32.dll's LocaleNameToLCID function directly in language handler. This function is used for obtaining language descriptions and from Windows OneCore synthesizer for perfomring language switch command (Windows 10 only).
    
    * Language handler: remove languages with LCID's in Windows 7 and later, add Kurdish family.
    
    The following languages have LCID's defined in Windows 7 and later: Amharic (am), Arabic (ar), Nepali (ne), Latin Serbian (sr). Aragonese is kept because no LCID is defined.
    Added Kurdish family: Central (ckb), Northern (kmr). The general code, 'ku', is defined in Windows 10 for Central Kurdish, and two letter country code does not work at this stage. This also means the docstring for language description retriever has been changed to say that three-letter language codes are also accepted.

commit 26e338f8fd740e76a531ec93affc443803959617
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Sun Jul 22 15:02:09 2018 -0700

    wxPython 4: update deprecated items in settings, elements list, and submenu addition (#8533)
    
    * NVDA menu/submenus: wx.Menu.Append -> wx.Menu.AppendSubMenu, as the former is deprecated.
    
    * wxPyton 4 deprecation: wx.TreeCtrl.*ItemPyData -> wx.TreeCtrl.*ItemData in browse mode/elements list dilaog.
    
    wx.TreeCtrl.{Get/Set}ItemPyData is deprecated, replaced by {Get/Set}ItemData. There are two places where this matters: input gestures dilaog and elemnets list. This commit updates the method name in browse mode/elements list dialog.
    
    * wxPyton 4 deprecation: wx.TreeCtrl.*ItemPyData -> wx.TreeCtrl.*ItemData in settings/input gestures.
    
    wx.TreeCtrl.{Get/Set}ItemPyData is deprecated, replaced by {Get/Set}ItemData. There are two places where this matters: input gestures dialog and elements list. This second commit updates input gestures dialog.
    
    * wxPython 4 deprecation: wx.ListCtrl.SetStringItem -> wx.ListCtrl.SetItem in settings/dictionaries.
    
    wx.ListCtrl.SetStringItem is deprecated as SetItem method can work with all sorts of list items. Thus use this method. This commit updates speech dictionary dialogs.
    
    * wxPython 4 deprecation: wx.ListCtrl.SetStringItem -> wx.ListCtrl.SetItem in settings/symbol pronunciation dialog.
    wx.ListCtrl.SetStringItem is deprecated as SetItem method can work with all sorts of list items. Thus use this method. This commit updates punctuation/symbol pronunciation dialog.

commit 6c04bfb6219afa29ccf39ba16ed598ab752d0bb6
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Thu Jul 19 15:09:51 2018 -0700

    wxPython 4/deprecated items: use TextEntryDialog.Value, use Menu.Insert/Menu.Remove (#8524)
    
    * wxPython 4/TextEntryDialog: use 'value' instead of 'defaultValue'. Re #8523.
    
    Regression: wx.TextEntryDialog no longer accepts defaultValue kwarg, replaced by just 'value'. This affected edit command dialog in Excel and rename function in config profiles dialog (Control+NVDA+P).
    
    * wxPython 4/Menu: user Menu.Insert and Menu.Remove instead of deprecated Menu.InsertItem and Menu.RemoveItem.

commit e17ea3e6659ed239cf8b22a0ec094b9f7e919059
Merge: e409638da 18864255c
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Jul 20 08:07:12 2018 +1000

    Merge branch 'beta'

commit 18864255cf817876f6a9d310e49814d61a3cd33a
Merge: cab1cc13a 1d60ea58d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 20 00:06:22 2018 +1000

    Update translations.
    
    From translation svn revision: 42399

commit 1d60ea58d257fa17ccf958f293f7c8e3843f1e3a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 20 00:06:21 2018 +1000

    L10n updates for: zh_TW
    From translation svn revision: 42399
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    27      27      source/locale/zh_TW/characterDescriptions.dic
     1 file changed, 27 insertions(+), 27 deletions(-)

commit eb35ff9a00d2f685193dcdaca219bf12ba92311c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 20 00:06:17 2018 +1000

    L10n updates for: vi
    From translation svn revision: 42399
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    24      2       user_docs/vi/changes.t2t
    22      3       user_docs/vi/userGuide.t2t
     2 files changed, 46 insertions(+), 5 deletions(-)

commit 0f49565ae6e6518d57d74590ce0535718e546cda
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 20 00:05:52 2018 +1000

    L10n updates for: nb_NO
    From translation svn revision: 42399
    
    Authors:
    David Hole <balubathebrave@gmail.com>
    Bjornar Seppola <bjornar@seppola.net>
    
    Stats:
    116     44      user_docs/nb_NO/userGuide.t2t
     1 file changed, 116 insertions(+), 44 deletions(-)

commit a4d571a3c00e85c1c59d4b2350fdc4c21d2543e4
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 20 00:05:42 2018 +1000

    L10n updates for: kmr
    From translation svn revision: 42399
    
    Authors:
    unable to find language: kmr
    
    Stats:
    32      27      source/locale/kmr/characterDescriptions.dic
     1 file changed, 32 insertions(+), 27 deletions(-)

commit eb7cd8b8ed3636ea5783421af1e6feb11d0952ec
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 20 00:05:35 2018 +1000

    L10n updates for: hr
    From translation svn revision: 42399
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Mario Percinic <mario.percinic@gmail.com>
    Tea Turkovic <tturkovi@gmail.com>
    
    Stats:
    3       1       user_docs/hr/userGuide.t2t
     1 file changed, 3 insertions(+), 1 deletion(-)

commit e409638da36ef3b57b9f2dae1f0e9bbbd8992946
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Thu Jul 19 02:22:08 2018 -0700

    Composable Shell touch keyboard: support emoji panel and other features in Windows 10 Fall Creators Update and later. re #7273 (#7378)
    
    * Composable Shell touch keyboard: support emoji panel in Windows 10 Fall Creators Update. re #7273.
    
    In Windows 10 Fall Creators Update, people using United States English keyboard can use the keyboard to search for and enter emojis (Windows+period or Windows+semicolon). At the moment the app module has been added, with emoji candidates raising UIA element selected event.
    Things to be aware of:
    * When the emoji panel first opens, the first emoji isn't announced in some cases.
    * When searching for emojis, intermediate search results are not announced.
    
    * Emoji panel: take care of recent changes in Fall Creators Update. re #7273.
    
    In Fall Creators Update (build 16299), when emoji categories change, the new category fires name change event.
    
    * Readability and copyright year updates.
    
    * Emoji panel: handle window open event in post-1709 builds. Re #7273.
    
    In Windows 10 17000 and later (particularly after 17063 and later), when emoji panel first opens, window opened event is fired. This than allows NVDA to catch this and treat it as an item selected event, thereby allowing the first category to be announced.
    
    * Emoji panel: support redesigned emoji panel in build 17666 and later. Re #7273.
    
    In build 17666 and later, emoji panel was redesigned. Instead of refreshing emoji categories when Tab is pressed, one must now select a category before emoji refreshes. This is especially the case for People category where skin tone must be selected afterwards.
    For backwards compatibility, continue to support original panel design in Version 1709 and 1803.
    
    * Modern keyboard: introduce support for hardware input suggestions and cloud clipboard suggestions. Re #8189.
    
    Modern keyboard is not just used for emoji panel entry: in version 1803, hardware keyboard input suggestions are lited there. In Redstone 5, cloud clipboard entries are shown through this panel. Thus add support for both.
    
    * Modern keyboard: suppress 'Microsoft Candidate uI' message and handle touch keyboard's name change event. Re #7273.
    
    In Version 1803 (April 2018 Update), 'Microsoft Candidate UI' is announced whenever  candidates appear. As this is anoying, suppress this.
    Also, reported by a user: under some circumstances, touch keyboard keys fire name change event, which results in NVDA announcing characters. Thus suppress this as well.
    
    * Modern keyboard: support various changes introduced in build 17700 series. Re #7273.
    
    Several changes as a result of deploying build 17700 series:
    * Clipboard: NVDA will no longer announce label for clipboard candidates list.
    * Emoji panel: NVDA will not respond to verbose name change events fired whenever items are selected.
    
    * What's new/new features: added various modern input entries. Re #7273
    
    * Modern keyboard/emoji panel: catch a weird case where IAccessible content generic client is the parent of the 'selected' item. Re #7273.
    
    Reviewed by Mick Curran (NV Access): sometimes, a traceback that ends with 'AttributeError' on line 37 is shown, caused by the fact that sometimes IAccessible content generic client window becomes the parent of the 'selected' item (tree traversal issue). Thus catch this early by making sure the 'parent' is indeed a UIA control.

commit bff9b4095696349ed1cad150aa6e5b478e7b24de
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Thu Jul 19 02:16:18 2018 -0700

    Upgrade to IUIAutomation6, and UIA objects: recognize more UIA dialogs via more class names and IsDialog property in Windows 10 Redstone 5 (#8473)
    
    * UIA handler: add class names for various dialogs encountered on Windows 7, 8.x, 10, as well as apps. Re #8405.
    
    Windows 10 and various apps added more dilaog class names. Rather than using a static list as part of overlay class chooser in UIA object, this list, along iwth new ones, are now available in UIA handler.
    Also, added constant for UIA_IsDialogPropertyID in UIA handler, to be removed once IUIAutomation6 interface support comes to NVDA, as this property ID will be included in Redstone 5.
    
    * NVDAObjects/UIA: detect more dilaogs using class names and IsDialog property in Windows 10 RS5. Re #8405.
    
    Instead of looking up only three class names, look up more via:
    * Additional class names found in Windows 10 and various apps.
    * In RS5, IsDialog property.
    This allows dialogs such as app uninstlal dialog and many others to be recognized and their contents read by NVDA.
    
    * UIA/IsDialog: address review actions. Re #8405.
    
    Reviewed by @LeonardDer (Babbage): simplify dialog flag via assigning this flag from exception hyandler segment rahter than setting it to False when COM error is thrown. This then allows IsDialog flag to be set whether or not exceptoin has occured.
    
    * Upgrade to IUIAutomation6/IUIAutomationElement9 interface (based on build 17692).
    
    * Use IsDialog property directly from IUIAutomationElement9 interface. re #8405.
    
    * UIA: Popup is not supported as a fallback dialog class as the className is too generic. All the other classes are clearly dialogs from the name.
    
    * Update What's new

commit 88c64a9cb05e9531a4da62fca53245396669c2cb
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Thu Jul 19 10:39:42 2018 +0200

    Fix name mangling conflicts for the script decorator system (PR #8464)
    
    Fixes #8463
    
    Summary of the issue:
    When using multiple global plugins with decorated scripts, the decorated script gestures were added to the GlobalPlugin base class.
    
    Description of how this pull request fixes the issue:
    When a class already has a __gestures dictionary, copy that dictionary before processing the decorated scripts. This makes sure that we do not touch the dictionary of the base class. We also only set the __gestures attribute on a class when it contains items.

commit a7fcac2c7c39ddf256666b1454536c2b9a96420a
Author: Derek Riemer <derek.riemer@colorado.edu>
Date:   Thu Jul 19 01:15:47 2018 -0600

    Add an appModule for zoom (PR #8491)
    
    fixes #7754

commit c10c0026e0a949fca1ba47d1157632f7e9d3907b
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Thu Jul 19 16:58:57 2018 +1000

    appveyor: manually grab pyscreeze 0.1.13 as latest release is completely broken (#8519)

commit aff3c91d9cb82c0643bbb73164618acb3a8d100a
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Thu Jul 19 11:40:26 2018 +1000

    Update espeak to commit e7e59f9  (#7846)
    
    * Update eSpeak-ng to 1.49.3-dev
    
    eSpeak-ng submodule is now at: 8a61f0d2108df289d713e0d74273dbfebbf23776
    
    * Don't delete emoji files for espeak
    
    espeak no longer freezes with emoji files present in the known cases, so
    reintroduce them. This undoes the mitigation in #7810.
    
    * eSpeak synthDriver: provide text to eSpeak as utf8 as otherwise adjacent emojis will not be combined.
    
    * Update to latest eSpeak master. This addresses the pronunciation of words like return and selected.  as espeak-ng/espeak-ng@223ff9c has been reverted.
    
    * Upgrade to latest eSpeak master
    
    * Update eSpeak to latest master. Most notably some improvements to Russian.
    
    * Update espeak to latest master.  Fixes #8231
    
    * Update eSpeak to latest master
    
    * Update to latest eSpeak master
    
    * Minhook sconscript: correct case of hde source files as newer windows 10 builds seem to now be case-sensitive.
    
    * Upgrade to latest espeak master
    
    * Update What's new and readme.

commit 0814aa7ab0089efbcb994363ea7ddeb9da104aa3
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Thu Jul 19 01:44:36 2018 +0200

    Fix getting offsets from points in edit controls when offset numbers exceed 16 bits (#8397)
    
    * Fix _getOffsetFromPoint for edit TextInfo
    
    * Review action
    
    * Add additional comments to make things clearer, hopefully
    
    * Update what's new

commit 366bbc1f88fab2b3290610175a7ea11da7862083
Author: Davy Kager <dkager@users.noreply.github.com>
Date:   Wed Jul 18 23:50:51 2018 +0200

    Improve reporting keyboard layout changes (#8401)
    
    * Improve reporting of keyboard layout changes.
    In particular, fixes the problem of reporting the same keyboard layout over and over, alternating between a message with and without language name.
    
      * Don't report if there is no change, typically on TSF profile (de)activation.
      * Query the keyboard layout when NVDA starts instead of starting without a value. The previous implementation caused the first layout change to always be announced, even if the old and new layouts were identical.
      * Don't allow the input method name (two placeholders separated by a hyphen) to be translatable.
      * Fix a log message.
      * Improve comments.
      * Add copyright header.
    
    * Remove XP code for TSF from NVDAHelper.dll.
    
    * Update copyright header.
    
    * Use the LOWORD macro to get a lo-word.
    
    * Review actions.
    
    * Review actions.
    
    * Update what's new

commit 3865ccef926f9fbd42652f5ce5d4f458eaa9747c
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Wed Jul 18 14:26:54 2018 -0700

    UIA: assume Windows 7 is in use and remove constants that are now part of current interface (#8422)
    
    * UIA handler: just assume UIA is available, but keep the UIA enabled key. Re #8415.
    
    UIA support in NVDA assumes Windows 7 or later. Because NVDA supports Windows 7 (SP1) and later, just assume UIA is available. However, for cases where UIA should be turned off, turn this on if UIA enabled key (from config) is on.
    
    * Config: remove minWinVersion key for UIA. Re #8415.
    
    As NVDA supports Windows 7 (SP1) and later, there's no need to check if min Windows version is 7 anymore, thus the coresponding key in Config manager/UIA section is no longer applicable.
    
    * UIA constants: remove constants added in current interface that ships with NVDA. Re #8416.
    
    In the old days, when UIA handler supported Windows 7 and 8.x (IUIA1 through IUIA3), there were constants that were not part of the interface file that came with NVDA. now that iUIA5 is supported (and in the future, IUIA6), it makes no sense to continue to include constants that are now part of the interface itself. Thus constants included in latest UIA interface are no longer part of NVDA's own UIA handler module (not all are gone, however).
    
    * Update what's new

commit d40488ceec6348bf484ff9bfc09bc6817b40966a
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Tue Jul 17 22:47:13 2018 -0700

    Upgrade to wxPython 4.0.3 (Phoenix) (#7104)
    
    * wxPython4: initial foundations with wx.adv.TaskbarIcon and others. re #7077.
    
    One of the biggest benefits of using wxPython 4 is easier route for upgrading to Python 3.x. Due to changes made in wxPython 4, NvDA source code (at least wx routines) must be modified. This provides some foundations, namely wx.adv.TaskbarIcon and replacing wx.SpinCtrlNameStr with a string literal.
    
    * wxPython 4/Python Console: use wx.TextCtrl.WriteText instead of wx.TextCtrl.write. re #7077.
    
    wx.TextCtrl.write is no more - wx.TextCtrl.WriteText should be used instead.
    
    * wxPython 4/Python Console: use AppendText instead of WriteText for cursor tracking. re #7077.
    
    If wx.TextCtrl.WriteText is used and if the cursor is located at the top of the output window for the console, newly typed text will be inserted instead of being appended, thus wx.TextCtrl.AppendText will be used.
    
    * wxPython 4/various dialogs: wx.CENTER_ON_SCREEN is no more, use wx.Center instead. re #7077.
    
    Somehow, documentation says wx.CENTRE_ON_SCREEN is included but it isn't there at runtime. Instead, wx.Center is used (does not follow variable naming convention though), so using it for now.
    
    * wxPython 4/Welcome dialog: wx.NORMAL cannot be used as a font family anymore, replaced with wx.FONTFAMILY_DEFAULT. re #7077
    
    * wxPython 4/cursor manager/Find dialog: use sizer.Add instead of sizer.AddSizer. re #7077.
    
    * wxPython 4/Launcher: spell out GridSizer gaps, prevents overload error. re #7077.
    
    In wxPython 4, when instantiating wx.GridSizer, horizontal and vertical gaps in pixels must be specified.
    
    * wxPython 4/speech viewer: few tweaks to constructor, save position before the dialog is destroyed. re #7077.
    
    Due to changes to how dialog sizes are constructed, keyword arguments cannot be used.
    Also, if Window.Destroy is called, somehow text controls and what not are gone, so save speech viewer position before destroying the window.
    
    * wxPython 4/Input gestures dialog: when Cancel button is clicked, make sure to check if the treeview is alive. re #7077.
    
    Somehow, when Cancel button is licked, treeview is removed first, yet item selection event is run. Make sure to catch this.
    
    * Readme: mention new wxPython and Six compatibility layer requirements. re #7077
    
    * wx.Menu: AppendMenu is deprecated, use Append instead. re #7077
    
    * Add-ons Manager: make sure to nullify dialog instance flag and prevent issues when installing more than one add-on remotely. re #7077.
    
    Here 'remotely' refers to letting people install add-ons via Windows Explorer and other means. Without nullifying instance flag when the add-ons manager closes, instance flag will be kept, which causes wxPython to think (and correctly) that the dialog is still active, resulting in runtime error on add-on list control being thrown.
    
    * gui/Config profiles dialog/wxPython 4: nullify instance flag. re #7077.
    
    Just like add-ons manager, if the instance flag for config profiles dialog isn't nullified, wxWidgets will think that the dialog is active when it is gone. Thus nullify it in two places: when the actual dialog closes and when a new profile is activated right away (for the latter, it is parent.Destroy).
    
    * Python console: revert to wx.TextCtrl.write function. re #7077.
    
    Due to request from a tester, wxPython 4 developer has decided to restore wx.TextCtrl.write. This means the AppendText workaround in place is no longer needed.
    
    * Settings/voice sliders: replace wx.WXK_PRIOR and wx.WXK_NEXT with wx.WXK_pAGEUP and wx.WXK_PAGEDOWN, respectively. re #7077.
    
    wx.WXK_PRIOR and wx.WXK_NEXT are no more, replaced by direct definition of page up and page down keys. This fixes the problem where sliders couldn't be changed in Voice Settings dialog.
    
    * core.CorePump:  block this timer from firing recursively. This could never happen before wxPython 4, but now it is possible.
    
    * miscDeps now contains wxPython 4.
    
    * Core: update copyright years, corrected issue number
    
    * Comment spelling fix
    
    * wxPython 4.0.1 in miscDeps
    
    * gui: add a NonRe-entrant timer to replace use of wx.Timer and wx.PyTimer.
    
    * Replace usage of wx.PyTimer with gui.NonReentrantTimer for all core code in NVDA. This does not change any braille display drivers.
    
    * Clarify comment
    
    * Clarify docstring
    
    * Spelling
    
    * Readme: mention wxPython 4.0.1
    
    * wxPython 4: use wx.ID_ANY instead of NewID function. Re #8121.
    
    Becasue NewID may raise assertion error, use wx.ID_ANY instead.
    
    * GUI/SettingsDialogs: remove extra space at ends of lines
    
    * Settings screen: wx.Center again.
    
    * add a new submodule for wxPython dep
    
    * Use `CenterOnScreen()` rather than `Center`
    
    Use the explicit function rather than `Center()` with the CENTER_ON_SCREEN constant.
    Also supply CENTER_ON_SCREEN for addons which may still rely on it.
    
    * Define both missing constants
    
    Despite being referred to in the documentation for wxPython,
    CENTER_ON_SCREEN and CENTRE_ON_SCREEN constants are missing.
    Here we redefine them to stop errors in addons. Addons should migrate to
    using the explicit functions CenterOnParent or CenterOnScreen.
    
    * Update copyright years and headers.
    
    * Settings dialog: clear instances set when all settings instances are gone. Re #7077.
    
    Previously, when closing settings dialog, instances would be cleared. It turns out that might not be the case with wxPython 4, so manually clear instances set if the only thing remaining is the SettingsDialog object.
    
    * wxPython 4: revert instances checking in SettingsDialog thanks to mitigation about circular references. Re #7077.
    
    * Dictionary dilaog: use wx.NewId for add, edit, and remove buttons. Re #7077.
    
    Somehow, using wx.ID_ANY for speech dictionary buttons causes the buttons to not work. This is because the button is added directly to the helper sizer. Thus use NewID instead.
    
    * Get rid of unnecessary ID usage
    
    * Log viewer: wx.SAVE -> wx.FD_SAVE, wx.OVERWRITE_PROMPT -> wx.FD_OVERWRITE_PROMPT. Re #7077.
    
    Yet another change of attribute names: wx.SAVE is now wx.FD_SAVE, wx.OVERWRITE_PROMPT is fwx.FD_OVERWRITE_PROMPT. This resolves an issue where Log Viewer does not let users save logs (issue #8385).
    
    * Log viewer: add copyright headers.
    
    * wxPython4/settings dialogs: deleteWindows -> delete_windows in sizer.Clear method. Re #7077
    
    * What's new: add wxPython 4.0.1 entry in changes for developers section. Re #7077
    
    * Upgrade to wxPython 4.0.3
    
    * Touch intewraction/touch typing mode checkbox: no more wx.NewId function for this checkbox just like others. re #7077.
    
    Somehow, for touch interaction/touch typing mode checkbox, wx.NewId function was called, whereas other checkboxes do not do this. Thus make it consistent with other fellows by not calling this function in this particular checkbox.
    
    * Settings panels: use wx.NewIdRef function to retrieve global ID's for panels. Re #7077.
    
    Reported by several people and subsequently confirmed: in wxPython 4.0.0 to 4.0.2, there exists a wrap-around bug in wx.NewId function that prevents programs calling this function from working normally after the ID's are exhausted. This is now fixed in wxPython 4.0.3 via wx.NewIdRef function. Thus use this function to keep an eye on panel ID's, used for announcing new categories as they become visible in multi-category NVDA Settings screen.
    
    * Readme: mention Python 2.7.15 and wxPython 4.0.3 dependencies.
    
    * What's new: wxPython 4.0.1 -> 4.0.3. Re #7077.

commit 66186bfbc0b40a4c7af1406ae4706195deaabce0
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Tue Jul 17 09:44:59 2018 +0200

    Several fixes to the ALVA driver (#8230)
    
    * Work around malformed feature reports sent by the ALVA BC680 when initializing
    
    * Fix looking up modifier gestures
    
    * Distinguish between left and right smart pad and thumb keys
    
    * Force disable keys that trigger internal functions
    
    * Fix assignments to kb:alt
    
    * Review actions
    
    * Swap date time and windows command assignments
    
    * Revert force disabling of keys, as it does not work and this should be handled by the dvice anyway
    
    * Update changes.t2t

commit 96cb0701a5e57b1a4a88fa774e81d5bf67a908f2
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Tue Jul 17 00:36:20 2018 -0700

    Microsoft Store edition: detect if this is just a package or not (look for error 15700). Re #8362. (#8374)
    
    kernel32.dll::GetCurrentPackageFullName returns error 15700 (not a package) when a process is run outside an appx package. Thus catch this instead of 0 (error success). This then allows NvDA appx to run correctly.

commit df1a68c2fdd0f6327e3ea2435e41349960c91dc0
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Tue Jul 17 17:06:03 2018 +1000

    Support aria-roledescription in Edge. (#8449)
    
    * Support aria-roledescription in Edge.
    
    * Braille:  honor roleText in browseMode.
    
    * BrowseMode: only explicitly include the name of a landmark if it is not going to be already presented as part of the field.
    
    * Edge:  mark controlFields as block if if they have a particular role (grouping, paragraph or section currently). This ensures that they are appropriately presented as containers when roledescription is used.
    
    * Update What's new
    
    * Address review actions.

commit 846a998b363fd5abaf447e5148bc272fefdf161c
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Tue Jul 17 08:57:13 2018 +0200

    Add automatic background braille display detection (#7741)
    
    * Implement braille display auto detection. This new background mechanism can be activated by choosing the Automatic option from NVDA's braille display settings. See #1271 for an in depth discussion of funcionality.
    
    * brailliantB, use generic implementation for USB serial devices
    * Use generic check function for braille display drivers supporting bdDetect
    * Make auto detection the default
    * Set a timeout for joining the bgThread when auto detection was on
    * Poll for bluetooth devices on app switches
    * Support bluetooth HID in bdDetect
    
    * Use a separate thread for background scanning.
    
    * Make the bdDetect thread a daemon thread
    
    * Disable auto detection within the unit test framework. If we don't do this, detection will occur and unit tests will fail.
    
    * in braille.handler.handleGainFocus, check whether the focused object has an active tree interceptor. If so, focus the tree interceptor instead
    
    * Revert the use a separate thread for background scanning and make sure recursion does not occur when using an APC
    
    This reverts commit 5b97f3952348fe80db8ab06b1e9a008c105d48d0.
    
    * Created Detector._scanQueuedSafe which wraps changing the state of _scanQueued within a lock
    
    * Fix malformed VID and PID for Brailliant, add an extra check
    
    * NO longer filter serial ports for Brailliant
    
    * Updated changes.t2t

commit d99bb6abec777e1930e7a9b9f3d2fa5f0e9fd46c
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue Jul 17 16:24:02 2018 +1000

    System test with robot framework (#8481)
    
    * prototype sysTest
    
    Requires:
    robotFramework - the system test framework
    pyautogui - for controlling keyboard/mouse
    
    To install:
    pip install robotframework
    pip install pyautogui
    
    * WIP include flaky way of exiting
    
    Ensure this is run from a cmd prompt. Other shells may cause issues,
    for instance, NVDA does not get correct focus when run from cygwin.
    
    * WIP System testing
    
    Remote server implemenation and external abstracted library.
    
    * First try at including system tests in appveyor.
    
    * Disable pyAutoGUI's failsafe check as appeyor moves the mouse???
    
    * initial.robot: break robot to temporarily bipass freeze.
    
    * appveyor.yaml: run robot in powershell so exit code is ignored for now.
    
    * appveyor.yaml:  try again to make system tests return error code 0
    
    * appveyor.yaml:  try again to make system tests return error code 0
    
    * appveyor.yaml: fix syntax of uplodFile.
    
    * system tests: tell appVeyor they are junit formatted?
    
    * appVeyor: still upload test results on failed builds.
    
    * Upload unitTest reports to appViewer as well.
    
    * Investigate freeze in robot test.
    
    * add some logging to nvdaRobotLib
    
    * More logging
    
    * more logging again
    
    * sleep before connecting to server.
    
    * more and more logging
    
    * Fix logging...
    
    * reimplement quit nvda test inside initial.robot.
    
    * A try at moving everying to robot language to fix freezes.
    
    * Launch NVDA from robot with py for appveyor.
    
    * copy the globalPlugin.
    
    * Temporarily start rdp for appveyor build
    
    * bump
    
    * bump 2
    
    * bump 3
    
    * bump 4
    
    * Slightly re-write now with setup and teardown, and insert q for quit check  and check foreground name is Exit NVDA etc.
    
    * nvdaRobotLib: use a specific NVDA profile dir.
    
    * NVDA Spy for robot must use a daemon thread for now to stop  further NVDAs crashing.
    
    * Robot tests set NVDA not to show the welcome dialog
    
    * allow asserting on last speech
    
    * Remove extra tab characters
    
    * Copy in the testSpy globalPlugin for each test.
    
    * Remove sleep
    
    The sleep was required because importing the remote library suceeds
    regardless of whether it is possible to execute a keyword. We now test
    the connection before we load the library.
    
    * Some cleanup of connection/disconnection code
    
    * Extract code that can be reused and add better documentation
    
    * cleanup systemTest dir
    
    Allow use of different settings files and some cleanup of system test directories
    
    * Assert text on welcome dialog passes
    
    * Copy nvda log for each test
    
    * Try to get systemtest artefacts from appveyor
    
    * Try manually pushing artifacts
    
    * Try recursing over files and pushing manually
    
    * Fix issue when nvdaProfile folders do not exist
    
    * system tests: don't show usage stats dialog in NVDA
    
    * appveyor: install NVDA on the build system, and run the system tests against the installed copy.
    
    * appveyor: install nvda with start-process and wait up to 3 minutes for it to complete, failing on timeout.
    
    * fix appveyor errors
    
    * Temprarily include robotremoteserver in NVDA for system tests. Must figure out a better solution.
    
    * Breakup up appveyor test code into separate powershell code chunks to better show build progress.
    
    * system tests: use silence synth driver.
    
    * system test for exit dialog: just sleep instead of varifying dialog.
    
    * system tests: don't wait for exit dialog, rather just confirm that the NVDA process definitlly exited.
    
    * appveyor: move NVDA installation to before_test section.
    
    * ensure quit system test: exit from the NVDA menu.
    
    * system tests: try alt tabbing to the exit dialog???
    
    * More debugging for system tests.
    
    * IAccessibleHandler: more debugging.
    
    * IAccessibleHandler: more debugging.
    
    * eventHandler: more debugging.
    
    * Up max foreground defer count to 10.
    
    * Up foreground defers to 100 and log them.
    
    * IAccessibleHandler: drop foreground defers back down and  allow welcome dialog in  quit from keyboard system test.
    
    * system tests for quit with keyboard: watch for and close welcome dialog first.
    
    * quit with keyboard system test: wait longer for NVDA to exit.
    
    * Restore IAccessibleHandler and eventHandler.
    
    * Not able to get an index returned from get_index_of_speech
    
    * tests passing
    
    * move spy lib logic into spy
    
    * Install systemTestSpy as a package on setup
    
    * Cleanup files, add copyright headers
    
    * Use _ to prevent imports from leaking as keywords
    
    * Move non NVDA specific helpers into a new library
    
    * Create self contained package for system test spy
    
    The system test spy now copies in library dependencies that are not
    provided by a NVDA install. This is so that the system tests can be run
    on appVeyor against an installed version of NVDA
    
    * Zip system test output before pushing to artifacts
    
    * try adding robotlibraries directory to the path
    
    * Fix case of file name
    
    This should resolve the appveyor system test failures
    
    * further tidy up
    
    * Introduce suite name
    
    * fix appveyor system tests
    
    testOutput directories need to be created before writting files to them!
    
    * Stop double nvda install log artifact
    
    * set robot library path
    
    * reduce suite verbosity on appveyor
    
    * Revert to running from repo root
    
    Running from tests/system/ did not reduce the number of suites mentioned in Robots reports
    
    * Clean up some of the appveyor code
    
    * clean up some names and docs for tests
    
    * Add scons command to run system tests
    
    * ensure dir is created for std out/err logs
    
    * Use dummy speech synth to get speech
    
    This captures all NVDA manipulation of speech before it is given to
    synthesizers.
    
    * wait longer before sending input
    
    * Stop update dialog from showing on startup
    
    * simplify the appveyor pip installs
    
    * Update What's new

commit 83654e8bb43338a548dfc339a947888a4a94c94d
Author: zstanecic <zvonimirek222@yandex.com>
Date:   Tue Jul 17 06:35:15 2018 +0200

    {liblouis3.6.0 brailletables} (#8446)
    
    * added czech eight dots computer table
    
    * added hungarrian braille table
    
    * update braille tables file
    
    * review actions
    
    * review actions,
    note, if the unit tests pass, this can be merged into master
    
    * review action, change k to K in Central Kurdish
    
    * update changes file for #8446,
    based on latest master
    
    * revert the documentation edit, as thic can cause conflicts. This can be merged straightforward, as the only master branch is updated.
    
    * Update changes.t2t
    
    * Update changes.t2t

commit cab1cc13aff7dd84fa5dd15458ad6fc75c580f6d
Merge: df829c826 a9e7aa9e0
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Tue Jul 17 09:37:40 2018 +1000

    Update translations.
    
    From translation svn revision: 42378

commit a9e7aa9e066419ea7cce1a628614a167c9524563
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Tue Jul 17 09:37:38 2018 +1000

    L10n updates for: zh_CN
    From translation svn revision: 42378
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    
    Stats:
    10      12      source/locale/zh_CN/symbols.dic
    4       12      user_docs/zh_CN/userGuide.t2t
     2 files changed, 14 insertions(+), 24 deletions(-)

commit d390a156fe712b2f1522ac1d87881f5915185402
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Tue Jul 17 09:37:36 2018 +1000

    L10n updates for: vi
    From translation svn revision: 42378
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    7       7       user_docs/vi/changes.t2t
    3       2       user_docs/vi/userGuide.t2t
     2 files changed, 10 insertions(+), 9 deletions(-)

commit 04400147f93a8453b5fb73526dcc4df4330c7786
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Tue Jul 17 09:37:08 2018 +1000

    L10n updates for: kmr
    From translation svn revision: 42378
    
    Authors:
    unable to find language: kmr
    
    Stats:
    40      194     source/locale/kmr/LC_MESSAGES/nvda.po
     1 file changed, 40 insertions(+), 194 deletions(-)

commit 7bd1617a069264b738b85fd83f380ad5ff1e647f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Tue Jul 17 09:36:46 2018 +1000

    L10n updates for: de
    From translation svn revision: 42378
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    
    Stats:
    25      179     source/locale/de/LC_MESSAGES/nvda.po
    38      38      user_docs/de/userGuide.t2t
     2 files changed, 63 insertions(+), 217 deletions(-)

commit df829c826d47b73345a9be88da2123f2ccb10d95
Merge: 432614551 9c3f5bc8a
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Jul 17 09:17:01 2018 +1000

    Merge branch 'master' into beta

commit 9c3f5bc8a30aef3730754b6848e31804f2c22ac7
Merge: f2cc115c9 9655b119f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 13 00:06:14 2018 +1000

    Update translations.
    
    From translation svn revision: 42340

commit 9655b119f7b0fc8260f6b5d70a15e063c9c2cf56
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 13 00:06:11 2018 +1000

    L10n updates for: zh_CN
    From translation svn revision: 42340
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    
    Stats:
    5       2       source/locale/zh_CN/characterDescriptions.dic
    10      2       source/locale/zh_CN/symbols.dic
    14      14      user_docs/zh_CN/changes.t2t
     3 files changed, 29 insertions(+), 18 deletions(-)

commit c427cde7bb3b4f5442c527cb2f3289a6933990f4
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 13 00:06:10 2018 +1000

    L10n updates for: vi
    From translation svn revision: 42340
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    90      3       user_docs/vi/changes.t2t
     1 file changed, 90 insertions(+), 3 deletions(-)

commit 0508554294e47848569f7f01fc266a1029b97ca3
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 13 00:06:08 2018 +1000

    L10n updates for: uk
    From translation svn revision: 42340
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    2       2       source/locale/uk/LC_MESSAGES/nvda.po
    260     134     user_docs/uk/userGuide.t2t
     2 files changed, 262 insertions(+), 136 deletions(-)

commit f64b36f278dd9d76f48c354ab95c506b95ae8210
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 13 00:06:06 2018 +1000

    L10n updates for: ta
    From translation svn revision: 42340
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    24      3       user_docs/ta/userGuide.t2t
     1 file changed, 24 insertions(+), 3 deletions(-)

commit 36dde9c1df176f8988203a9d811726a097664e70
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 13 00:06:03 2018 +1000

    L10n updates for: sl
    From translation svn revision: 42340
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    4       4       source/locale/sl/LC_MESSAGES/nvda.po
    1       1       user_docs/sl/userGuide.t2t
     2 files changed, 5 insertions(+), 5 deletions(-)

commit 20ec78a483df03dc66ebae4c89a0c8dc6febbe0e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 13 00:05:57 2018 +1000

    L10n updates for: pt_PT
    From translation svn revision: 42340
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    66      13      source/locale/pt_PT/LC_MESSAGES/nvda.po
    27      1       user_docs/pt_PT/changes.t2t
    74      9       user_docs/pt_PT/userGuide.t2t
     3 files changed, 167 insertions(+), 23 deletions(-)

commit 018b08e78e2f3f2ddd4582531d7176c54f861e70
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 13 00:05:55 2018 +1000

    L10n updates for: pt_BR
    From translation svn revision: 42340
    
    Authors:
    Cleverson Casarin Uliana <clever97@gmail.com>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    26      21      source/locale/pt_BR/LC_MESSAGES/nvda.po
     1 file changed, 26 insertions(+), 21 deletions(-)

commit 32a92bf0e03190657d7dfae647b61115da498b9d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 13 00:05:49 2018 +1000

    L10n updates for: nb_NO
    From translation svn revision: 42340
    
    Authors:
    David Hole <balubathebrave@gmail.com>
    Bjornar Seppola <bjornar@seppola.net>
    
    Stats:
    662     326     source/locale/nb_NO/LC_MESSAGES/nvda.po
    55      34      user_docs/nb_NO/userGuide.t2t
     2 files changed, 717 insertions(+), 360 deletions(-)

commit e5f70d88e510cfff947f64f8e5f553e5bd950494
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 13 00:05:42 2018 +1000

    L10n updates for: kmr
    From translation svn revision: 42340
    
    Authors:
    unable to find language: kmr
    
    Stats:
    156     2       source/locale/kmr/LC_MESSAGES/nvda.po
     1 file changed, 156 insertions(+), 2 deletions(-)

commit 120da3cb377f6b7ddf132eea99c07fac871b6419
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 13 00:05:42 2018 +1000

    L10n updates for: ja
    From translation svn revision: 42340
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    1       0       source/locale/ja/symbols.dic
     1 file changed, 1 insertion(+)

commit eb9938c58d8e061e1ee3747b9b17a38b08a0d0bd
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 13 00:05:40 2018 +1000

    L10n updates for: it
    From translation svn revision: 42340
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    7       2       source/locale/it/LC_MESSAGES/nvda.po
     1 file changed, 7 insertions(+), 2 deletions(-)

commit 5d3c3692f307ee2be6ea7d793bc126a37642a4a9
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 13 00:05:36 2018 +1000

    L10n updates for: hr
    From translation svn revision: 42340
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Mario Percinic <mario.percinic@gmail.com>
    Tea Turkovic <tturkovi@gmail.com>
    
    Stats:
    27      0       user_docs/hr/changes.t2t
    66      3       user_docs/hr/userGuide.t2t
     2 files changed, 93 insertions(+), 3 deletions(-)

commit 4d691a91dd99effd06a2230487a4d0713c2ae284
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 13 00:05:31 2018 +1000

    L10n updates for: fr
    From translation svn revision: 42340
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    3       0       source/locale/fr/symbols.dic
    67      2       user_docs/fr/userGuide.t2t
     2 files changed, 70 insertions(+), 2 deletions(-)

commit 9c382517f29f617ceddaff8556a311d743dbcaa0
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 13 00:05:29 2018 +1000

    L10n updates for: fi
    From translation svn revision: 42340
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    6       6       source/locale/fi/LC_MESSAGES/nvda.po
    21      21      user_docs/fi/changes.t2t
    1       1       user_docs/fi/userGuide.t2t
     3 files changed, 28 insertions(+), 28 deletions(-)

commit d0408b7354890d2c2d146c6bf4b814ac18d5ecd0
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 13 00:05:27 2018 +1000

    L10n updates for: fa
    From translation svn revision: 42340
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    60      5       source/locale/fa/LC_MESSAGES/nvda.po
    30      22      user_docs/fa/changes.t2t
    66      1       user_docs/fa/userGuide.t2t
     3 files changed, 156 insertions(+), 28 deletions(-)

commit fdecda3418677bfaf23a3621f1e2a9d518908867
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 13 00:05:12 2018 +1000

    L10n updates for: ar
    From translation svn revision: 42340
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    57      3       source/locale/ar/LC_MESSAGES/nvda.po
     1 file changed, 57 insertions(+), 3 deletions(-)

commit 4326145517427e1cbb5d6af6d17c8a19dbf4bc79
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Jul 6 01:24:16 2018 +1000

    bump commit

commit 4fa691cbcbae58086d13f498832ce432d123e986
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Jul 6 00:32:24 2018 +1000

    appveyor: add appveyor changes from master to handle alpha/beta snapshots.

commit f2cc115c90222745c84d68d16ef6e1b8ccfde2fa
Merge: dc032f857 dd8008f1d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 6 00:06:22 2018 +1000

    Update translations.
    
    From translation svn revision: 42228

commit dd8008f1d7c74f8286bcd37b4229b8b78afcd283
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 6 00:06:20 2018 +1000

    L10n updates for: zh_CN
    From translation svn revision: 42228
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    
    Stats:
    7       2       source/locale/zh_CN/LC_MESSAGES/nvda.po
    7       0       user_docs/zh_CN/changes.t2t
     2 files changed, 14 insertions(+), 2 deletions(-)

commit 415b1469f8b4c278607507e075f8fdca7f700df5
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 6 00:06:17 2018 +1000

    L10n updates for: uk
    From translation svn revision: 42228
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    59      3       source/locale/uk/LC_MESSAGES/nvda.po
     1 file changed, 59 insertions(+), 3 deletions(-)

commit 3ae8e1d04f831ee862538373b859498f8045a6a3
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 6 00:06:15 2018 +1000

    L10n updates for: tr
    From translation svn revision: 42228
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    7       2       source/locale/tr/LC_MESSAGES/nvda.po
    3       0       source/locale/tr/symbols.dic
    5       0       user_docs/tr/changes.t2t
     3 files changed, 15 insertions(+), 2 deletions(-)

commit d8946cd462ec7c5992b5efa849051ce77c823ece
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 6 00:06:14 2018 +1000

    L10n updates for: ta
    From translation svn revision: 42228
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    7       2       source/locale/ta/LC_MESSAGES/nvda.po
     1 file changed, 7 insertions(+), 2 deletions(-)

commit cae8b2988910c8fea41443164b667e3e380f6938
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 6 00:06:10 2018 +1000

    L10n updates for: sl
    From translation svn revision: 42228
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    58      3       source/locale/sl/LC_MESSAGES/nvda.po
    76      8       user_docs/sl/userGuide.t2t
     2 files changed, 134 insertions(+), 11 deletions(-)

commit f1ec4b19f278f1aaea2fa6e8cb6baa40075ae94f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 6 00:06:07 2018 +1000

    L10n updates for: ru
    From translation svn revision: 42228
    
    Authors:
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    11      6       source/locale/ru/LC_MESSAGES/nvda.po
     1 file changed, 11 insertions(+), 6 deletions(-)

commit bc48f5b56a87fbd58a364f601ce0a8ce4495a5d6
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 6 00:06:05 2018 +1000

    L10n updates for: ro
    From translation svn revision: 42228
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    
    Stats:
    7       2       source/locale/ro/LC_MESSAGES/nvda.po
    3       0       source/locale/ro/symbols.dic
    5       0       user_docs/ro/changes.t2t
     3 files changed, 15 insertions(+), 2 deletions(-)

commit 5de8a3b31bd1c60cf5bdc25bba73ba1d81d52349
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 6 00:06:01 2018 +1000

    L10n updates for: pt_BR
    From translation svn revision: 42228
    
    Authors:
    Cleverson Casarin Uliana <clever97@gmail.com>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    3       0       source/locale/pt_BR/symbols.dic
    6       1       user_docs/pt_BR/changes.t2t
    131     123     user_docs/pt_BR/userGuide.t2t
     3 files changed, 140 insertions(+), 124 deletions(-)

commit 3c6a4996180fcb49e12ed6824c8bef04425d3cbe
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 6 00:06:00 2018 +1000

    L10n updates for: pl
    From translation svn revision: 42228
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <killer@tyflonet.com>
    
    Stats:
    7       2       source/locale/pl/LC_MESSAGES/nvda.po
     1 file changed, 7 insertions(+), 2 deletions(-)

commit 239d062650c903d96d64da8651eb68378cc31bd6
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 6 00:05:58 2018 +1000

    L10n updates for: nl
    From translation svn revision: 42228
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    3       1       user_docs/nl/userGuide.t2t
     1 file changed, 3 insertions(+), 1 deletion(-)

commit b3d97f851c335ae22c338ed8da6965dbe19305f1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 6 00:05:55 2018 +1000

    L10n updates for: nb_NO
    From translation svn revision: 42228
    
    Authors:
    David Hole <balubathebrave@gmail.com>
    Bjornar Seppola <bjornar@seppola.net>
    
    Stats:
    20      20      user_docs/nb_NO/userGuide.t2t
     1 file changed, 20 insertions(+), 20 deletions(-)

commit 683c840f4a703d260785c1556b6b6ba480dc0d18
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 6 00:05:49 2018 +1000

    L10n updates for: kmr
    From translation svn revision: 42228
    
    Authors:
    unable to find language: kmr
    
    Stats:
    25      20      source/locale/kmr/LC_MESSAGES/nvda.po
    3       0       source/locale/kmr/symbols.dic
     2 files changed, 28 insertions(+), 20 deletions(-)

commit 664e702392478c78ce05ac09d45716aefb4bcf9b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 6 00:05:48 2018 +1000

    L10n updates for: ja
    From translation svn revision: 42228
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    58      4       source/locale/ja/LC_MESSAGES/nvda.po
     1 file changed, 58 insertions(+), 4 deletions(-)

commit 037cd902a0bd8f02fd7e61713a68318ef50fce5a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 6 00:05:42 2018 +1000

    L10n updates for: hr
    From translation svn revision: 42228
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Mario Percinic <mario.percinic@gmail.com>
    Tea Turkovic <tturkovi@gmail.com>
    
    Stats:
    7       2       source/locale/hr/LC_MESSAGES/nvda.po
     1 file changed, 7 insertions(+), 2 deletions(-)

commit 2e3871c396bf6afc20bf5d6459bbf8ce73a9fa36
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 6 00:05:39 2018 +1000

    L10n updates for: gl
    From translation svn revision: 42228
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    
    Stats:
    7       2       source/locale/gl/LC_MESSAGES/nvda.po
    3       0       source/locale/gl/symbols.dic
    5       0       user_docs/gl/changes.t2t
    0       1       user_docs/gl/userGuide.t2t
     4 files changed, 15 insertions(+), 3 deletions(-)

commit af7fb4f109f94819257851d24e978fe73ebfa8ed
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 6 00:05:36 2018 +1000

    L10n updates for: fr
    From translation svn revision: 42228
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    7       2       source/locale/fr/LC_MESSAGES/nvda.po
    5       0       user_docs/fr/changes.t2t
     2 files changed, 12 insertions(+), 2 deletions(-)

commit ba921a4d0f7388c8abddff7059ba65f572052b6e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 6 00:05:34 2018 +1000

    L10n updates for: fi
    From translation svn revision: 42228
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    7       2       source/locale/fi/LC_MESSAGES/nvda.po
    5       0       user_docs/fi/changes.t2t
     2 files changed, 12 insertions(+), 2 deletions(-)

commit 2e3136a878c53fc7569dc270c7ba2ec106af8999
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 6 00:05:32 2018 +1000

    L10n updates for: fa
    From translation svn revision: 42228
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    6       5       user_docs/fa/changes.t2t
     1 file changed, 6 insertions(+), 5 deletions(-)

commit 5b258869f2189dca2a54c10b26dfc6007fb63468
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 6 00:05:30 2018 +1000

    L10n updates for: es
    From translation svn revision: 42228
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    
    Stats:
    7       2       source/locale/es/LC_MESSAGES/nvda.po
    3       0       source/locale/es/symbols.dic
    5       0       user_docs/es/changes.t2t
    0       1       user_docs/es/userGuide.t2t
     4 files changed, 15 insertions(+), 3 deletions(-)

commit 22ba983b87a92457171e74211c0d367c1d74c1eb
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 6 00:05:25 2018 +1000

    L10n updates for: de
    From translation svn revision: 42228
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    
    Stats:
    166     7       source/locale/de/LC_MESSAGES/nvda.po
    3       0       source/locale/de/symbols.dic
    16      11      user_docs/de/changes.t2t
    9       8       user_docs/de/userGuide.t2t
     4 files changed, 194 insertions(+), 26 deletions(-)

commit fb0d4118332c8556a202020c1a49571da17ebc78
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 6 00:05:21 2018 +1000

    L10n updates for: da
    From translation svn revision: 42228
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    6       1       source/locale/da/LC_MESSAGES/nvda.po
    3       0       source/locale/da/symbols.dic
    5       0       user_docs/da/changes.t2t
     3 files changed, 14 insertions(+), 1 deletion(-)

commit 02ce894d41eae1ab49818d4da837755d4c08bee9
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 6 00:05:13 2018 +1000

    L10n updates for: ar
    From translation svn revision: 42228
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    27      1       user_docs/ar/changes.t2t
    18      10      user_docs/ar/userGuide.t2t
     2 files changed, 45 insertions(+), 11 deletions(-)

commit dc032f857876cb46d018f4909c85a88e4b71b1ef
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Jul 5 17:23:54 2018 +1000

    bump for appveyor

commit b733777e6bc4ab046b84cf8f079d9b3c6101c082
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Jul 5 16:51:27 2018 +1000

    bump for appveyor

commit 6b5c5d7cd142b1473f175a0b0699ac1f435d8103
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Jul 5 16:29:26 2018 +1000

    appveyor: Fix syntax error

commit 8eb9f0de12edde4dc1366edffdb1ec3c20431fc0
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Jul 5 16:24:08 2018 +1000

    appveyor: builds generated from the master branch are now referred to as alpha, as the name master can no longer be used for snapshots.

commit c1a3b0ba5fcd2cb7485a9a86f657fa57b6f717cd
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Fri Jun 29 00:31:17 2018 +0200

    Revert minhook back to version 1.2.2 (#8456)
    
    * Revert "Minhook sconscript: correct case of hde source files as newer windows 10 builds seem to now be case-sensitive."
    
    This reverts commit 53a2b4ef4b78cfa9627b2be1cc57b5d267a18738.
    
    * Revert "Updated license for minhook"
    
    This reverts commit 1c77ab1f06ba28763d237730b888496c5386c6dd.
    
    * Revert "Update minhook to 1.3.3"
    
    This reverts commit 5be1a70cf087c27e400f937804a970420e7ca853.
    
    * Fix HDE source files for older minhook

commit 175b2c3b6fa2acd6ae78f2a2f4ff63011adc2ba6
Merge: e0f328448 040fa8020
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 29 00:06:14 2018 +1000

    Update translations.
    
    From translation svn revision: 42002

commit 040fa8020a31f1a3fda082a906abd1f6afaabb06
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 29 00:06:13 2018 +1000

    L10n updates for: zh_CN
    From translation svn revision: 42002
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    
    Stats:
    1022    1022    user_docs/zh_CN/changes.t2t
     1 file changed, 1022 insertions(+), 1022 deletions(-)

commit f61e861ed70e006475d0687d23ba4cf3073b9356
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 29 00:06:06 2018 +1000

    L10n updates for: sv
    From translation svn revision: 42002
    
    Authors:
    Daniel Johansson <daniel.johansson@coeptus.se>
    Niklas Johansson <sleeping.pillow@gmail.com>
    
    Stats:
    61      18      source/locale/sv/LC_MESSAGES/nvda.po
     1 file changed, 61 insertions(+), 18 deletions(-)

commit 3c8d737cc7976803e3b620518e93e2ba49e0ad13
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 29 00:05:53 2018 +1000

    L10n updates for: nl
    From translation svn revision: 42002
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    64      3       user_docs/nl/userGuide.t2t
     1 file changed, 64 insertions(+), 3 deletions(-)

commit f9ed5d929fc895f27c36c719f61c51d8bb4053cf
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 29 00:05:44 2018 +1000

    L10n updates for: kmr
    From translation svn revision: 42002
    
    Authors:
    unable to find language: kmr
    
    Stats:
    64      217     source/locale/kmr/LC_MESSAGES/nvda.po
     1 file changed, 64 insertions(+), 217 deletions(-)

commit e2e9e3aebf5f84c69238db9a6f0c0b57ccebd7f0
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 29 00:05:38 2018 +1000

    L10n updates for: hr
    From translation svn revision: 42002
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Mario Percinic <mario.percinic@gmail.com>
    Tea Turkovic <tturkovi@gmail.com>
    
    Stats:
    3       9       source/locale/hr/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 9 deletions(-)

commit a7a084e8c8cad84fbd257f2a5dfaf650b63a06c8
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 29 00:05:33 2018 +1000

    L10n updates for: fr
    From translation svn revision: 42002
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    55      4       source/locale/fr/LC_MESSAGES/nvda.po
    3       0       user_docs/fr/changes.t2t
     2 files changed, 58 insertions(+), 4 deletions(-)

commit 700055156c6ddea2a650b8a3d8b0e6e04b93d9a4
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 29 00:05:23 2018 +1000

    L10n updates for: de
    From translation svn revision: 42002
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    
    Stats:
    13      13      source/locale/de/LC_MESSAGES/nvda.po
    8       8       user_docs/de/changes.t2t
    2       2       user_docs/de/userGuide.t2t
     3 files changed, 23 insertions(+), 23 deletions(-)

commit dba91ad28865bcf9b8b0d364ce0f07038ffa7d62
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 29 00:05:20 2018 +1000

    L10n updates for: da
    From translation svn revision: 42002
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    1       1       source/locale/da/LC_MESSAGES/nvda.po
    9       9       user_docs/da/userGuide.t2t
     2 files changed, 10 insertions(+), 10 deletions(-)

commit e0f3284488262e89f05cdb1dfdb615fccf227103
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Jun 27 19:23:36 2018 +1000

    Revert "Object coordinates: It is now possible to hear object coordinates when using object navigation commands. re #2559 (#6078)"
    
    This reverts commit 1dddb96265e5c5301524295f20be5f2d450794a9.

commit 5ea0847a2e4cf23f72ce57c9c23d6295fe7b4b62
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Jun 27 19:22:48 2018 +1000

    Revert "Update what's new"
    
    This reverts commit 6681e10678d5ad2bac33b44106c1599b6560c7b6.

commit 1d27c7388b1d51c50b62148d44514b07f76f688f
Merge: 6681e1067 4e429592d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Jun 27 16:26:54 2018 +1000

    Update translations.
    
    From translation svn revision: 41967

commit 4e429592d2db3c9cbbf58de3da2bdb15340ba1a7
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Jun 27 16:26:54 2018 +1000

    L10n updates for: zh_TW
    From translation svn revision: 41967
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    52      6       source/locale/zh_TW/LC_MESSAGES/nvda.po
    71      6       user_docs/zh_TW/userGuide.t2t
     2 files changed, 123 insertions(+), 12 deletions(-)

commit 0f170b0f3e4ea771f505f46e4cf7cbbc8df29004
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Jun 27 16:26:52 2018 +1000

    L10n updates for: zh_CN
    From translation svn revision: 41967
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    
    Stats:
    48      4       source/locale/zh_CN/LC_MESSAGES/nvda.po
    187     185     user_docs/zh_CN/changes.t2t
     2 files changed, 235 insertions(+), 189 deletions(-)

commit 6303a4f5d99e78434be7412ad2271a8a21da94c6
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Jun 27 16:26:50 2018 +1000

    L10n updates for: vi
    From translation svn revision: 41967
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    54      3       source/locale/vi/LC_MESSAGES/nvda.po
     1 file changed, 54 insertions(+), 3 deletions(-)

commit 2a80e8f7b95ee6d98ff984453d416dc2031e6702
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Jun 27 16:26:47 2018 +1000

    L10n updates for: tr
    From translation svn revision: 41967
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    55      5       source/locale/tr/LC_MESSAGES/nvda.po
    3       0       user_docs/tr/changes.t2t
     2 files changed, 58 insertions(+), 5 deletions(-)

commit 3694d89334dba6af8d95374c76c611e52426a31e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Jun 27 16:26:46 2018 +1000

    L10n updates for: ta
    From translation svn revision: 41967
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    57      5       source/locale/ta/LC_MESSAGES/nvda.po
     1 file changed, 57 insertions(+), 5 deletions(-)

commit 1df8d1b3785f06a91027dbba097e924a852bb0f7
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Jun 27 16:26:40 2018 +1000

    L10n updates for: ru
    From translation svn revision: 41967
    
    Authors:
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    56      5       source/locale/ru/LC_MESSAGES/nvda.po
    4       3       source/locale/ru/symbols.dic
    5       2       user_docs/ru/changes.t2t
    67      2       user_docs/ru/userGuide.t2t
     4 files changed, 132 insertions(+), 12 deletions(-)

commit 3ddfb1332ec94df3aa676161d07bccee9e355141
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Jun 27 16:26:37 2018 +1000

    L10n updates for: ro
    From translation svn revision: 41967
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    
    Stats:
    59      4       source/locale/ro/LC_MESSAGES/nvda.po
    7       4       user_docs/ro/changes.t2t
    67      2       user_docs/ro/userGuide.t2t
     3 files changed, 133 insertions(+), 10 deletions(-)

commit 74bc5c1814a0abe52ea03ae6e2fffe0b878115ec
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Jun 27 16:26:34 2018 +1000

    L10n updates for: pt_BR
    From translation svn revision: 41967
    
    Authors:
    Cleverson Casarin Uliana <clever97@gmail.com>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    55      5       source/locale/pt_BR/LC_MESSAGES/nvda.po
    3       0       user_docs/pt_BR/changes.t2t
    45      26      user_docs/pt_BR/userGuide.t2t
     3 files changed, 103 insertions(+), 31 deletions(-)

commit 74e45e96eaded1f3cbec5023ae73f278ec8c4577
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Jun 27 16:26:32 2018 +1000

    L10n updates for: pl
    From translation svn revision: 41967
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <killer@tyflonet.com>
    
    Stats:
    54      3       source/locale/pl/LC_MESSAGES/nvda.po
     1 file changed, 54 insertions(+), 3 deletions(-)

commit 0ec5a24142790701a43dd969a09043c8c8198c96
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Jun 27 16:26:31 2018 +1000

    L10n updates for: nl
    From translation svn revision: 41967
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    61      6       source/locale/nl/LC_MESSAGES/nvda.po
    2       0       user_docs/nl/userGuide.t2t
     2 files changed, 63 insertions(+), 6 deletions(-)

commit 0e3e524b4926dbd87de33ab9b977f9b2934a9144
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Jun 27 16:26:28 2018 +1000

    L10n updates for: my
    From translation svn revision: 41967
    
    Authors:
    Benedict La hkun <lkbenedict@gmail.com>
    
    Stats:
    1865    1278    source/locale/my/LC_MESSAGES/nvda.po
     1 file changed, 1865 insertions(+), 1278 deletions(-)

commit 97b7cdd89b67395196b26809432c0580262c47a9
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Jun 27 16:26:21 2018 +1000

    L10n updates for: kmr
    From translation svn revision: 41967
    
    Authors:
    unable to find language: kmr
    
    Stats:
    10548   0       source/locale/kmr/LC_MESSAGES/nvda.po
    32      0       source/locale/kmr/characterDescriptions.dic
    186     0       source/locale/kmr/symbols.dic
     3 files changed, 10766 insertions(+)

commit e871b01dc0cb4cddf3d1fcd88e2599d347d41465
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Jun 27 16:26:19 2018 +1000

    L10n updates for: it
    From translation svn revision: 41967
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    55      3       source/locale/it/LC_MESSAGES/nvda.po
     1 file changed, 55 insertions(+), 3 deletions(-)

commit d813936299c60d77fd5b7b570f680fd308645fe9
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Jun 27 16:26:15 2018 +1000

    L10n updates for: hr
    From translation svn revision: 41967
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Mario Percinic <mario.percinic@gmail.com>
    Tea Turkovic <tturkovi@gmail.com>
    
    Stats:
    60      3       source/locale/hr/LC_MESSAGES/nvda.po
     1 file changed, 60 insertions(+), 3 deletions(-)

commit b88573906c6ca2761d5be1a4c002fbf7012bd5d6
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Jun 27 16:26:12 2018 +1000

    L10n updates for: gl
    From translation svn revision: 41967
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    
    Stats:
    55      3       source/locale/gl/LC_MESSAGES/nvda.po
    3       0       user_docs/gl/changes.t2t
    23      2       user_docs/gl/userGuide.t2t
     3 files changed, 81 insertions(+), 5 deletions(-)

commit 24707ff34250e6da95f6c1856e5af5212e05c659
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Jun 27 16:26:09 2018 +1000

    L10n updates for: fr
    From translation svn revision: 41967
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    3       3       user_docs/fr/changes.t2t
     1 file changed, 3 insertions(+), 3 deletions(-)

commit f5101a98bbf8691b1ec8adddf732fa9823aeeda7
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Jun 27 16:26:08 2018 +1000

    L10n updates for: fi
    From translation svn revision: 41967
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    53      4       source/locale/fi/LC_MESSAGES/nvda.po
    3       0       user_docs/fi/changes.t2t
    23      2       user_docs/fi/userGuide.t2t
     3 files changed, 79 insertions(+), 6 deletions(-)

commit d96ade56b3b8d49f9e381548e5a64fc70a7f4d37
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Jun 27 16:26:04 2018 +1000

    L10n updates for: es
    From translation svn revision: 41967
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    
    Stats:
    57      3       source/locale/es/LC_MESSAGES/nvda.po
    3       0       user_docs/es/changes.t2t
    22      1       user_docs/es/userGuide.t2t
     3 files changed, 82 insertions(+), 4 deletions(-)

commit 6f7f2ca336774d2c76f91874bc1813ff579deec4
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Jun 27 16:25:59 2018 +1000

    L10n updates for: de
    From translation svn revision: 41967
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    
    Stats:
    54      2       source/locale/de/LC_MESSAGES/nvda.po
    4       1       user_docs/de/changes.t2t
    78      59      user_docs/de/userGuide.t2t
     3 files changed, 136 insertions(+), 62 deletions(-)

commit 66da2327f0c252e229d9d84d0f16060c875b52e3
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Jun 27 16:25:56 2018 +1000

    L10n updates for: da
    From translation svn revision: 41967
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    644     439     source/locale/da/LC_MESSAGES/nvda.po
    3       0       user_docs/da/changes.t2t
    23      2       user_docs/da/userGuide.t2t
     3 files changed, 670 insertions(+), 441 deletions(-)

commit 6681e10678d5ad2bac33b44106c1599b6560c7b6
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Jun 27 16:10:06 2018 +1000

    Update what's new

commit 1dddb96265e5c5301524295f20be5f2d450794a9
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Tue Jun 26 23:04:02 2018 -0700

    Object coordinates: It is now possible to hear object coordinates when using object navigation commands. re #2559 (#6078)
    
    * Object coordinates: It is now possible to hear object coordinates when using object navigation commands (rebased with master in June 2016). re #2559
    
    * NVDAObjects: obj coordinate announcement will be handled via becomeNavObj event. re #2559
    
    As object coordinate announcement will be done regardless of focus movement, it was decided to let becomeNavObject event call call object coordinate player function in screen explorer. This means global commands will not use this method (this decisoin was made after talking to Jamie Teh and others).
    
    * Object coordinates: obj coordinates checkbox now follows guiHelper services. re #2559
    
    * Object coordinates: updated copyright headers, removed unused imports.
    
    * Config: play obj coordinates validator now lives in the new config spec module (after rebasing with master). re #2559.
    
    * Object coordinates: applied multi-monitor fix from NVDA 2017.1. re #2559.
    
    In NVDA 2017.1, it is possible to hear mouse coordinates on multi-monitor systems. Thus object coordinate announcement function has been modified to take advantage of this. To ensure backward compatibility, minimum screen position paremeter will be a keyword argument, ready to become mandatory if obj coordinate announcement from multi-monitor set ups is desired.
    
    * Object coordinates: do not play the tone if the object ia offscreen. re #2559
    
    * User guide: add anchors for object coordinate checkbox. re #2559
    
    * Update copyright years
    
    * Object coordinates: do not detect brightness, copyright year update. Re #2559.
    
    Reviewed by Mick Curran (NV Access)L due to some issues, object brightness won't make sense when playing coordinates, so tell coordinates player function to ignore this.
    Also updated copyright year.
    
    * Mouse handler: update copyright years
    
    * Mouse handler: set copyright header to that of NVDA 2018.2 (to be changed in 2018.3)
    
    * Mouse handler: restore removed imports.

commit 75d8e79589c1cdc7b2c5d18e373bbd88acaccfcd
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Jun 25 17:12:37 2018 +1000

    Update what's new

commit 065ddfaef27cfd9215c0ef732267a8c8ab719888
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Mon Jun 25 09:11:54 2018 +0200

    Add Swedish 8 dot computer braille (#8227)

commit 155f0505d96ca86cbc87648a631746491c162ad8
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Jun 25 17:10:27 2018 +1000

    Update what's new

commit a72e44dfdce589ffba79b2e4b91bca6c7bfd554b
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Mon Jun 25 17:08:21 2018 +1000

    Support aria-roledescription. (#8346)

commit 8534b5caf21321b2dec9b058a117974c1af3585a
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Jun 25 17:07:14 2018 +1000

    Update what's new

commit 5a231cae58b099c41985cbea7c0a3b7bd645869a
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Mon Jun 25 17:06:21 2018 +1000

    Report author-provided accessible labels in Chrome that are not visible elsewhere on the page (#8352)
    
    * Gecko vbufBackend: change isLabelVisible function to use IAccessible2_2::relationTargetsOfType rather than the custom navdirRelation constant (specific to Firefox), so that  issue #4773 is also fixed for Chrome, not just Firefox.
    
    * Gecko IA2 vbufBackend: address review comments.
    
    * Gecko_ia2 vbufBackend: ensure that we properly release IAccessible2 relation targets.

commit aa3f60c6f8d14e1b7220ddd8339e0770a7b995e0
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Jun 25 17:05:19 2018 +1000

    Update what's new

commit 34d8fefa3df4c4f29ec36e29cb39df0d0791b643
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Mon Jun 25 09:04:41 2018 +0200

    Update Liblouis to version 3.6.0 (#8365)
    
    * Update Liblouis to version 3.6.0
    
    * Liblouis: cz-g1 is now cs-g1

commit 52d63cb809a06b083eae9ea19bc272c25b5c6003
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Jun 25 17:02:58 2018 +1000

    Update what's new

commit f6846e07236de4dde6745cf3d9304ab108446138
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Mon Jun 25 17:00:29 2018 +1000

    Add the Mac command key unicode character to symbols.dic. (#8366)

commit 2ddb43cce9d181b87b6964ab390b681721945cc6
Author: James Teh <jamie@jantrid.net>
Date:   Mon Jun 25 16:59:05 2018 +1000

    Update to the latest master commit of IA2. (#8373)
    
    * Update to the latest master commit of IA2.
    
    We need some features of IA2 that have not yet been made available in a final release but are/will soon be available in browsers.
    To make IA2 updates easier in future, this also:
    
    1. Switches to a separate Git submodule for IA2 using the official IA2 repository; and
    2. Updates NVDA's build system to build the merged IDL itself.
    
    * Update IA2 to the just landed commit 21bbb176 which adds IA2_ROLE_BLOCK_QUOTE.
    
    * Minhook sconscript: correct case of hde source files as newer windows 10 builds seem to now be case-sensitive.

commit 033577d2014964a5466e44e81702abd36b652c8b
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Sun Jun 24 23:55:10 2018 -0700

    NvDA/AppX: do not present 'restart with add-ons disabled' in exit dialog as this edition does not support add-ons yet (#8382)
    
    * appx/manifest/tested version: 10.0.17134.0 (April 2018 Update)
    
    * NvDA/AppX: do not present 'restart with add-ons diabled' as this edition does not support add-ons yet.
    
    Possible oversight: because Windows Store version of NVDA does not support add-ons yet, do not present disable add-ons option in exit dialog. Also, if action is set to 2 (normally disable add-ons), add 1 so it can point to restarting with debug logging instead.

commit 0b546d3c87513a0b8212219b760183a0bcda5fa0
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Mon Jun 25 16:50:01 2018 +1000

    Reduce the verbosity of the github templates (PR #8435)
    
    Extra information has been moved to the wiki.

commit fbbdc5d9ee926ca5276d1c7b506098096f0906b1
Merge: 3fec637fd 87f0ed277
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 22 00:06:18 2018 +1000

    Update translations.
    
    From translation svn revision: 41748

commit 87f0ed277ea00c6adc3c3b07aea8a6d1a4a0703f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 22 00:06:16 2018 +1000

    L10n updates for: zh_CN
    From translation svn revision: 41748
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    
    Stats:
    504     410     user_docs/zh_CN/changes.t2t
     1 file changed, 504 insertions(+), 410 deletions(-)

commit 02011dbcf8d82590ef0f927542f752b23ce81144
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 22 00:06:12 2018 +1000

    L10n updates for: tr
    From translation svn revision: 41748
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    19      0       user_docs/tr/changes.t2t
    44      0       user_docs/tr/userGuide.t2t
     2 files changed, 63 insertions(+)

commit 77c848556f5f4f1148e679c4108708d28a17c4c6
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 22 00:06:10 2018 +1000

    L10n updates for: ta
    From translation svn revision: 41748
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    4       158     source/locale/ta/LC_MESSAGES/nvda.po
    44      0       user_docs/ta/userGuide.t2t
     2 files changed, 48 insertions(+), 158 deletions(-)

commit 880da1c9599b43f9b4c254d2bdb665435ccbd75a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 22 00:06:03 2018 +1000

    L10n updates for: ru
    From translation svn revision: 41748
    
    Authors:
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    19      0       user_docs/ru/changes.t2t
     1 file changed, 19 insertions(+)

commit 562e4659257882aedbe89f9efef7bd4c1d94ec32
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 22 00:06:01 2018 +1000

    L10n updates for: ro
    From translation svn revision: 41748
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    
    Stats:
    18      0       user_docs/ro/changes.t2t
     1 file changed, 18 insertions(+)

commit 4e1488a38865fa665c235776a92d02354cb9cf36
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 22 00:05:58 2018 +1000

    L10n updates for: pt_BR
    From translation svn revision: 41748
    
    Authors:
    Cleverson Casarin Uliana <clever97@gmail.com>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    20      1       user_docs/pt_BR/changes.t2t
    44      1       user_docs/pt_BR/userGuide.t2t
     2 files changed, 64 insertions(+), 2 deletions(-)

commit 3f4aae383401d292dec38aba1d0f6b808e06342f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 22 00:05:42 2018 +1000

    L10n updates for: it
    From translation svn revision: 41748
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    2       2       source/locale/it/LC_MESSAGES/nvda.po
    45      1       user_docs/it/userGuide.t2t
     2 files changed, 47 insertions(+), 3 deletions(-)

commit ca021dca9a8981154dc586ff06e619de0acff460
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 22 00:05:35 2018 +1000

    L10n updates for: gl
    From translation svn revision: 41748
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    
    Stats:
    19      0       user_docs/gl/changes.t2t
    44      0       user_docs/gl/userGuide.t2t
     2 files changed, 63 insertions(+)

commit a8c3845228e4f15ac7c381708e09649cdee5ad6a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 22 00:05:33 2018 +1000

    L10n updates for: fr
    From translation svn revision: 41748
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    20      0       user_docs/fr/changes.t2t
     1 file changed, 20 insertions(+)

commit 5620f2ead6f089296f0ced0494017eb9cdfd0f75
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 22 00:05:31 2018 +1000

    L10n updates for: fi
    From translation svn revision: 41748
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    20      0       user_docs/fi/changes.t2t
    44      0       user_docs/fi/userGuide.t2t
     2 files changed, 64 insertions(+)

commit 6f7d2485033eb0e05061d12b9d3f50a58e024409
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 22 00:05:29 2018 +1000

    L10n updates for: fa
    From translation svn revision: 41748
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    18      2       user_docs/fa/changes.t2t
     1 file changed, 18 insertions(+), 2 deletions(-)

commit aca165ae07ff607820352d16a49861166f4766e5
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 22 00:05:27 2018 +1000

    L10n updates for: es
    From translation svn revision: 41748
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    
    Stats:
    19      0       user_docs/es/changes.t2t
    44      0       user_docs/es/userGuide.t2t
     2 files changed, 63 insertions(+)

commit 02bbe1b9e6f072380dc9b110e87f0e5518c18455
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 22 00:05:23 2018 +1000

    L10n updates for: de
    From translation svn revision: 41748
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    
    Stats:
    73      71      source/locale/de/LC_MESSAGES/nvda.po
    19      0       user_docs/de/changes.t2t
    431     386     user_docs/de/userGuide.t2t
     3 files changed, 523 insertions(+), 457 deletions(-)

commit 59f009e17e63209e16742d481405c934cfec668d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 22 00:05:19 2018 +1000

    L10n updates for: da
    From translation svn revision: 41748
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    5       48      user_docs/da/changes.t2t
    44      0       user_docs/da/userGuide.t2t
     2 files changed, 49 insertions(+), 48 deletions(-)

commit 3fec637fda35c04409a328cdfd103b9d15f9344c
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Wed Jun 20 14:11:53 2018 +1000

    Update issue template with more instructions. (PR #8417)
    
    * Update issue template
    
    * Include some instructions about how to fill in the issue template
    * Explain that we will be more strict about closing issues that do not
    follow the template.
    * Give a suggestion for where to get help with the issue template
    * Note that for some NVDA developers, images are not very helpful.

commit 57f016db8461980a956309e81a6a077dac9c9fc8
Author: Reef Turner <reef@nvaccess.org>
Date:   Mon Jun 18 05:50:00 2018 +0000

    Update changes file for PR #6607

commit c04b33db2bd73d9ef30c9b45f26b09d000b18b66
Author: Tuukka Ojala <tuukka.ojala@gmail.com>
Date:   Mon Jun 18 08:46:11 2018 +0300

    Add scripts for reporting elapsed and total time of current track in Foobar2000 (PR #6607)
    
    Fixes #6596
    
    Add scripts for reporting elapsed and total time of current track in Foobar2000

commit 3b25a12b9b6f07d2b75f8ba9b439b4c2813922da
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Mon Jun 18 15:17:34 2018 +1000

    Minhook sconscript: correct case of hde source files as newer windows 10 builds seem to now be case-sensitive. (#8410)

commit c195141312bbe5d021878821d9236c6e78508dae
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Sun Jun 17 21:09:07 2018 -0700

    UIA handler: load highest supported IUIAutomatoin interface by traversing COM interfaces for CUIAutomation8. Re #8338. (#8363)
    
    Instead of using a static list of UIA interfaces (IUIA5 to IUIA2), use CUIAutomation8._com_interfaces_ to retrieve supported UIA interfaces. This allows this map to be kept static across newer UIA support routines.

commit 2ac28bf325fadcaeafa91058f55a6a0d7766eb76
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Jun 18 09:11:45 2018 +1000

    Update what's new

commit e791c8d3b2c6e28cfd54ccfad16408f0ff478bca
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Mon Jun 18 09:07:58 2018 +1000

    Send current synthDriver name and brailleDisplay name to update server for stats gathering. (#8217)
    
    * Send current synthDriver name and brailleDisplay name to update server for stats gathering.
    
    * When sending synth / braille driver names to the server for stats gathering, append either core, external or addon:addonName to better  differentiate between the drivers.
    
    * Ask the user if they wish to allow sending usage data to NV Access.  Also allow this to be configured from the General Settings tab.  Document what data is sent in the userGuide. Also collect outputBrailleTable.
    
    * Address review actions
    
    * Fix typo
    
    * Implement new AllowUsageStats dialog with yes, no, and ask later buttons, with Ask later being the default.
    
    * Address review actions.
    
    * Add comment
    
    * Move allow usage stats checkbox to the end of General Settings.

commit 8d463d96507ca14891dd8fb8256825ef5deecbea
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Jun 15 09:12:31 2018 +1000

    Fix small grammar error in userGuide.

commit a5b10dd9bb42e70e8bf4a2e0171e32a8cc1dfb34
Merge: 592e815ac 0d94c19da
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 15 00:06:09 2018 +1000

    Update translations.
    
    From translation svn revision: 41459

commit 0d94c19dade4227852eb7008f56de4d66ada9c87
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 15 00:06:07 2018 +1000

    L10n updates for: zh_CN
    From translation svn revision: 41459
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    
    Stats:
    1       1       user_docs/zh_CN/changes.t2t
    37      28      user_docs/zh_CN/userGuide.t2t
     2 files changed, 38 insertions(+), 29 deletions(-)

commit da8a2eac71440cfb82f22b5f309b6c7e525b7d8f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 15 00:06:00 2018 +1000

    L10n updates for: sv
    From translation svn revision: 41459
    
    Authors:
    Daniel Johansson <daniel.johansson@coeptus.se>
    Niklas Johansson <sleeping.pillow@gmail.com>
    
    Stats:
    245     368     source/locale/sv/LC_MESSAGES/nvda.po
     1 file changed, 245 insertions(+), 368 deletions(-)

commit dc834dcef48d988974ef203065a573ccbadc7f6a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 15 00:05:42 2018 +1000

    L10n updates for: ko
    From translation svn revision: 41459
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    
    Stats:
    15      0       user_docs/ko/changes.t2t
     1 file changed, 15 insertions(+)

commit c297a5b6b66a7dcb73d1a386a0d99e67f49ade31
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 15 00:05:37 2018 +1000

    L10n updates for: it
    From translation svn revision: 41459
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    6       6       source/locale/it/LC_MESSAGES/nvda.po
    1       1       user_docs/it/changes.t2t
     2 files changed, 7 insertions(+), 7 deletions(-)

commit 336158245d5f771c540e718ce4a42c5b5df7da22
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 15 00:05:19 2018 +1000

    L10n updates for: de
    From translation svn revision: 41459
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    
    Stats:
    7       7       source/locale/de/LC_MESSAGES/nvda.po
    320     320     user_docs/de/userGuide.t2t
     2 files changed, 327 insertions(+), 327 deletions(-)

commit 592e815ac9db9dd7feeff7bb2a638b51859a78b2
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Wed Jun 13 08:01:22 2018 -0700

    BrailleNote: fix ord(arg2) problem. Re #5993.
    
    Perhaps due to HwIO: when processing QT commands (arg2), the argument was a string, not an integer, so ord(arg2) didn't work. Now fixed.

commit 0f097d5c42e8453561da09ade50a7c7365dd5c4d
Author: Leonard de Ruijter <leonard@babbage.com>
Date:   Wed Jun 13 09:41:09 2018 +0200

    Fix typo in changes file, new features section heading

commit feda37e3cd7729df389534d4b94e0d4f6204a9cb
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Jun 13 16:21:12 2018 +1000

    Update what's new

commit 30cd6b893f04f52b143b1881b664d66ee9a6293d
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Tue Jun 12 23:20:26 2018 -0700

    BrailleNote: support for QT and Apex BT scroll wheel (#6316)
    
    * BrailleNote: Support scroll wheel on Apex BT. re #5992
    
    * BrailleNote: Support BrailleNote QT basic mode. re #5993
    
    * BrailleNote: Various BT and QT commands now work correctly. re #5992.
    
    Somehow, forgot to check that Rui used a tuple to specify key assignments. Now utilized properly to assign multiple gestures to a command. Also took this time to add codes for various QT keys so NVDA can properly recognize them.
    
    * BrailleNote QT: handle QT input directly from read packet function. re #5992
    
    Comment from Jamie Teh (Nv Access): there's no need to call read packet again if we're dealing with QT, so handle this from read packet directly. Thus readPacket returns three things: command, arg (dot mask on BT/command for QT), arg2 (char from QT).
    
    * BrailleNote QT: QT key parser refactor.
    
    Instead of relying on a dedicated QT key parser, handle parsing directly in readPacket. Also simplifies gesture ID assignment, as the packet will tell the gesture constructor as to what key it is.
    
    * BrailleNote QT: comment text change, correct ticket, simplified dictionary key lookup. re #5993
    
    A tip from Jamie Teh (NV Access0: use dict.get to simplify the turnary operation. Also, BNQT ticket is 5993, not 5992, and correct comment text.
    
    * User guide: cosmetics. re #5992
    
    Review from Jamie Teh (NV Access):
    * QT can emulate a BrailleNote BT, hence clarify this.
    * Removed redundant kcinclude statement.
    
    * BrailleNote QT: use set instead of worrying too much about formatting gesture identifier right. #5993
    
    Comment from Jamie Teh (NV Access): use sets instead of turning that into a list just for formatting purposes (and turns out this is unnecessary).
    
    * Merge master
    
    * Readjust commands
    
    * BrailleNote: copyright year update, QT key name changes. Re #5992.
    
    Commented by Leonard de Ruijter: rename QT key names.
    Update copyright years.
    
    * BrailleNote: rename scroll wheel constant strings. Re #5992.
    
    * Restore executable permission to win32calc

commit 915554add3984240a2fff4c7eedfd988b090fbea
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Jun 13 16:17:34 2018 +1000

    Update what's new

commit 2d1a4fc090969eecbd224c54dfade481babed547
Author: Blake Oliver <oliver22213@me.com>
Date:   Wed Jun 13 02:16:49 2018 -0400

    Add more default task switching gestures to freedom scientific braille displays (#7387)
    
    * Add default gestures to Freedom Scientific braille displays for alt shift tab as well as windows tab
    
    * Add the new task switching keys to the user's guide

commit 379cb6e8f5fd4f9b7db0c94b95f49d6ac485689f
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Wed Jun 13 08:14:13 2018 +0200

    Update MinHook to 1.3.3 (#8142)
    
    * Update minhook to 1.3.3
    
    * Fix log for MH_Initialize
    
    * Updated license for minhook
    
    * Update Minhook function pointers and added new one for StatusToString. Provide more user friendly logging with StatusToString
    
    * Revert logging with StatusToString, as it seem to cause crashes
    
    * Make debugging minhook hooking errors more user friendly by also logging the module and function names in the error
    
    * Review action
    
    * Review actions

commit 5b620427a1741038fc1148f4a5e66eade3884ead
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Jun 13 16:11:51 2018 +1000

    Update what's new

commit 302f2afe2c1f04c69845b7aa4b9f77c64afe6c5b
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Tue Jun 12 23:11:09 2018 -0700

    General Settings/Language: sort items based on descriptions (#8143)
    
    * Language handler: allow presentational view of available languages to be obtained. Re #7284.
    
    When going through General settings/Language combo box, users might be puzzled as to why items in there are listed in random order. This is because entries are sorte according to ISO 639-1 code. To improve user experience, sort this alphabetically according to description.
    This is done through a new keyword argument in languageHandler.getAvailableLanguages function. Wuth presentational argument set, language tuples will be sorted based on description text.
    
    * Settings dialog/General/Language: enable presentational view of languages. Re #7284.
    
    * GUI/settings dialog: update copyright years
    
    * Docstring: language handler module description
    
    * Language handler: only add language descriptions if this is for presentation purposes. Re #7284.
    
    Reduece confusion further by omitting language codes from language description texts.
    
    * Language handler: clarify module docstring
    
    * Language handler: readability changes for variable namess.
    
    the nanes 'd', 'i', and 'l' are so generic. Thus rename them to 'displayNames', 'entry', and 'locales'.
    
    * Language handler: clarify comment
    
    * Language handler: add ISO 639 codes in order to reduce confusion for users. Re #7284.
    
    Reviewed by Mick Curran (NV Access) and others: suppose a user changes to another language by accident, a language he or she cannot understand, especially changes the Windows display language by accident. So how can they return to a language they know? This cannot be done with absence of ISO 639 language codes.

commit 89284efdc1b5304ce2f0be504904399fd9c5cdd5
Author: Robert Haenggi <aarjay.robert@gmail.com>
Date:   Wed Jun 13 08:10:16 2018 +0200

    Update the Audacity appModule (#8181)
    
    * Update the Audacity appModule
    
    In response to a request from the Audacity developers (issue #8178).
    The workaround for buttons is no longer needed.
    However, the deletion of ampersand characters will be kept for the sake of backwards compatibility.
    
    * Update Copyright

commit fd14d732d606ae70eaaee4842722076b1c63d581
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Jun 13 16:07:24 2018 +1000

    Update what's new

commit 9d35a2fe18ec51c5e8ec12e1f45c49cd0b90b423
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Wed Jun 13 08:06:48 2018 +0200

    added an @script decorator to scriptHandler for setting script metadata (#8236)
    
    * added an @script decorator for setting script metadata to the scriptHandler module
    added a metaclass for collecting gestures on ScriptableObjects, this now supports getting from .gesture and .gestures set on script_ functions by the @script decorator.
    Fixes #6266
    
    * Removed gesture attribute from script functions
    Now passing gesture to the ```@script``` decorator will append the gesture to the list of gestures, rather than setting both gesture and gestures attributes on the function.
    
    * Removed unused getScripts method from BaseObject
    
    * Address review comment and rename GestureCollector to ScriptableType
    
    * Make the script decorator gestures work both for normal and dynamic NVDAObjects. Provide a working example for Excel
    
    * First baceObject tests
    
    * Fix decorated scripts not properly being added when subclassing objects
    
    * Finish unit tests
    
    * Add bypasInputHelp and resumeSayAllMode to the script decorator
    
    * Review actions
    
    * Add unit tests for the script decorator itself
    
    * Update developer guide
    
    * Review actions
    
    * Review actions regarding devGuide and comments
    
    * Only use the per class __gestures dictionary, also for decorated scripts
    
    * Last review action
    
    * Revert NVDAObjects/__init__.py to master, as in the end, this hasn't been touched by this change
    
    * Also revert changes to test suite objectProvider
    
    * Split of lines in devGuide
    
    * Rename the scripts in test_baseObject to follow the phonetic alphabet, to fix a bug in baseObject that used only the first character of a script name.
    
    * Log warnings when using the script decorator in a wrong way, either by decorating a non method or a method which name doesn't start with script_

commit f996ee49fd7540df0cd6e3b77c2ccb891da5c29e
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Jun 13 16:01:24 2018 +1000

    Update what's new

commit a3785b311aea1487b881cd357f4f2d80daeb881f
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Jun 13 15:59:20 2018 +1000

    Expose grammar errors from IAccessible2 text. (#8280)

commit 4ea6921e3245f118743ff23cfe10c9c738c312b9
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Jun 13 15:12:42 2018 +1000

    Bump version to 2018.3 dev

commit 647437c600a4cb356333aca24f79b79effdb91d7
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Jun 13 14:54:18 2018 +1000

    Instruct appveyor to build PRs (#8392)
    
    * build PRs on appveyor but don't sign or deploy them.
    
    * bump
    
    * Fix appveyor.yml
    
    * bump
    
    * bump 2
    
    * Again limit to specific branches. I guess prs will be built always as they are based on master.
    
    * appveyor: don't build appx packages if a pr as we cannot sign them.

commit 7902673a75c84a4d92979434ca80637471e8ac71
Merge: e6cb59e1e 585ba11b5
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 8 00:06:04 2018 +1000

    Update translations.
    
    From translation svn revision: 41367

commit 585ba11b508a24bad8bf578c57cd9da0d939cc58
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 8 00:06:03 2018 +1000

    L10n updates for: zh_HK
    From translation svn revision: 41367
    
    Authors:
    Eric Yip <ericycy@gmail.com>
    
    Stats:
    3       3       source/locale/zh_HK/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 3 deletions(-)

commit 2bc0b4ba18e481a2555ac1896eea4533dd938593
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 8 00:06:02 2018 +1000

    L10n updates for: zh_CN
    From translation svn revision: 41367
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    
    Stats:
    21      21      user_docs/zh_CN/userGuide.t2t
     1 file changed, 21 insertions(+), 21 deletions(-)

commit 8c829be003860b931160bffd19df33d985f2507c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 8 00:05:56 2018 +1000

    L10n updates for: sv
    From translation svn revision: 41367
    
    Authors:
    Daniel Johansson <daniel.johansson@coeptus.se>
    Niklas Johansson <sleeping.pillow@gmail.com>
    
    Stats:
    1719    1249    source/locale/sv/LC_MESSAGES/nvda.po
     1 file changed, 1719 insertions(+), 1249 deletions(-)

commit 32d9b86eaeec6cf6f7cab860291348a902e667e0
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 8 00:05:15 2018 +1000

    L10n updates for: da
    From translation svn revision: 41367
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    3       3       source/locale/da/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 3 deletions(-)

commit e6cb59e1ef192297cbb71b1077f28d534570e893
Merge: dfa3f29fd ba454f613
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Jun 7 14:00:29 2018 +1000

    Merge branch 'rc'

commit dfa3f29fdf3e552f5767044f455637dbfcc3ba4c
Merge: c4654885e 6bab1e3f5
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Jun 7 13:58:55 2018 +1000

    Update translations.
    
    From translation svn revision: 41359

commit 6bab1e3f5d413722cfa7d8965f3dff99289d177b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Jun 7 13:58:54 2018 +1000

    L10n updates for: zh_TW
    From translation svn revision: 41359
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    30      29      source/locale/zh_TW/characterDescriptions.dic
     1 file changed, 30 insertions(+), 29 deletions(-)

commit 26b2368b65dae4fc9e202fab4f02dbcf0c2f746a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Jun 7 13:58:52 2018 +1000

    L10n updates for: zh_CN
    From translation svn revision: 41359
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    
    Stats:
    5       5       source/locale/zh_CN/LC_MESSAGES/nvda.po
    1       0       user_docs/zh_CN/changes.t2t
    33      16      user_docs/zh_CN/userGuide.t2t
     3 files changed, 39 insertions(+), 21 deletions(-)

commit b2f1354b0469c6c591cbd064c8436bd03412eb24
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Jun 7 13:58:48 2018 +1000

    L10n updates for: tr
    From translation svn revision: 41359
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    2       2       user_docs/tr/changes.t2t
     1 file changed, 2 insertions(+), 2 deletions(-)

commit 83b987e883e0f93e14fac7f5d2076c6f8fd288b9
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Jun 7 13:58:46 2018 +1000

    L10n updates for: ta
    From translation svn revision: 41359
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    177     149     user_docs/ta/userGuide.t2t
     1 file changed, 177 insertions(+), 149 deletions(-)

commit 83391bbdfeb800933263caad763e5cc8db3b64fe
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Jun 7 13:58:41 2018 +1000

    L10n updates for: ru
    From translation svn revision: 41359
    
    Authors:
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    2       127     source/locale/ru/LC_MESSAGES/nvda.po
    2       3       user_docs/ru/changes.t2t
     2 files changed, 4 insertions(+), 130 deletions(-)

commit 89711a86988e852f1fcd888aca13f68a59e5ae7d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Jun 7 13:58:38 2018 +1000

    L10n updates for: ro
    From translation svn revision: 41359
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    
    Stats:
    2       1       user_docs/ro/changes.t2t
     1 file changed, 2 insertions(+), 1 deletion(-)

commit 4847c97b7cd3f9661f225d9d6470535e62ffbfd5
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Jun 7 13:58:37 2018 +1000

    L10n updates for: pt_PT
    From translation svn revision: 41359
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    1       1       user_docs/pt_PT/changes.t2t
     1 file changed, 1 insertion(+), 1 deletion(-)

commit dc785fa4e3bfcde2beea794369b9bd5a46f64373
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Jun 7 13:58:35 2018 +1000

    L10n updates for: pt_BR
    From translation svn revision: 41359
    
    Authors:
    Cleverson Casarin Uliana <clever97@gmail.com>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    31      31      source/locale/pt_BR/LC_MESSAGES/nvda.po
    6       7       user_docs/pt_BR/changes.t2t
    12      12      user_docs/pt_BR/userGuide.t2t
     3 files changed, 49 insertions(+), 50 deletions(-)

commit 3f3d89c7411da03fb4ffa86a5a0c41fdd68ef5d3
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Jun 7 13:58:31 2018 +1000

    L10n updates for: nl
    From translation svn revision: 41359
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    2       2       source/locale/nl/LC_MESSAGES/nvda.po
    0       1       user_docs/nl/changes.t2t
    10      10      user_docs/nl/userGuide.t2t
     3 files changed, 12 insertions(+), 13 deletions(-)

commit 6fb2648d0f5c663b70f7a7c6c6f628f2f6721dc4
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Jun 7 13:58:24 2018 +1000

    L10n updates for: ky
    From translation svn revision: 41359
    
    Authors:
    Bermet Zhakypbekova <bermet.zhakypbekova@gmail.com>
    
    Stats:
    2538    1600    source/locale/ky/LC_MESSAGES/nvda.po
    6       6       source/locale/ky/symbols.dic
    0       41      user_docs/ky/userGuide.t2t
     3 files changed, 2544 insertions(+), 1647 deletions(-)

commit acb09de1dff964ed93c7d23370fd539e6dd4ff51
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Jun 7 13:58:23 2018 +1000

    L10n updates for: ko
    From translation svn revision: 41359
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    
    Stats:
    1       1       user_docs/ko/changes.t2t
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 2eeff107b91b554f984c31d9c1545933328c6979
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Jun 7 13:58:21 2018 +1000

    L10n updates for: ja
    From translation svn revision: 41359
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    2       2       source/locale/ja/symbols.dic
    2       2       user_docs/ja/changes.t2t
     2 files changed, 4 insertions(+), 4 deletions(-)

commit 36c1cb09bf4be2f82694f9e8f462cc7c7d3a01e0
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Jun 7 13:58:15 2018 +1000

    L10n updates for: hr
    From translation svn revision: 41359
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Mario Percinic <mario.percinic@gmail.com>
    Tea Turkovic <tturkovi@gmail.com>
    
    Stats:
    2       2       user_docs/hr/changes.t2t
     1 file changed, 2 insertions(+), 2 deletions(-)

commit d9a2a60376d7d532ce4c2ec403bd556835cbd704
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Jun 7 13:58:13 2018 +1000

    L10n updates for: he
    From translation svn revision: 41359
    
    Authors:
    Shmuel Naaman <shmuel_naaman@yahoo.com>
    Afik Sofir <afik.sofer@gmail.com>
    
    Stats:
    58      107     source/locale/he/LC_MESSAGES/nvda.po
     1 file changed, 58 insertions(+), 107 deletions(-)

commit be2474d2ceca9b5863713a551239e12a359bd373
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Jun 7 13:58:12 2018 +1000

    L10n updates for: gl
    From translation svn revision: 41359
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    
    Stats:
    0       1       user_docs/gl/changes.t2t
     1 file changed, 1 deletion(-)

commit 1ebfec06ebfacd78aaa3e0c0f5b089d234cda6e6
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Jun 7 13:58:10 2018 +1000

    L10n updates for: fr
    From translation svn revision: 41359
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    1       1       user_docs/fr/changes.t2t
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 2c30393f98df7c7f292f2bad45c7fcbd4ce03895
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Jun 7 13:58:08 2018 +1000

    L10n updates for: fi
    From translation svn revision: 41359
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    0       1       user_docs/fi/changes.t2t
     1 file changed, 1 deletion(-)

commit 4ea37f50ea4c71ca8dc57cf03e08a3163db38ad5
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Jun 7 13:58:06 2018 +1000

    L10n updates for: fa
    From translation svn revision: 41359
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    2       2       source/locale/fa/LC_MESSAGES/nvda.po
    2       2       user_docs/fa/changes.t2t
     2 files changed, 4 insertions(+), 4 deletions(-)

commit 768c7bb0e26c4f5a775fd90ed8e716b3de9f7dff
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Jun 7 13:58:04 2018 +1000

    L10n updates for: es
    From translation svn revision: 41359
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    
    Stats:
    1       2       user_docs/es/changes.t2t
     1 file changed, 1 insertion(+), 2 deletions(-)

commit 2ac51abe469297ca07ec304e70496bb0c7900eb7
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Jun 7 13:57:59 2018 +1000

    L10n updates for: de
    From translation svn revision: 41359
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    
    Stats:
    0       1       user_docs/de/changes.t2t
     1 file changed, 1 deletion(-)

commit 6f0046923cf23f39ac9e18ee37eac60508b1ac94
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Jun 7 13:57:56 2018 +1000

    L10n updates for: da
    From translation svn revision: 41359
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    380     302     source/locale/da/LC_MESSAGES/nvda.po
    0       1       user_docs/da/changes.t2t
    2       2       user_docs/da/userGuide.t2t
     3 files changed, 382 insertions(+), 305 deletions(-)

commit 06c445a49fd0a33c8832384e1e2d76dfc366dd31
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Jun 7 13:57:52 2018 +1000

    L10n updates for: bg
    From translation svn revision: 41359
    
    Authors:
    Zahari Yurukov <zahari.yurukov@gmail.com>
    Kostadin Kolev <k_kolev1985@mail.bg>
    
    Stats:
    1       1       user_docs/bg/changes.t2t
     1 file changed, 1 insertion(+), 1 deletion(-)

commit ba454f6133d10d8e22495614791fa395c8515549
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Thu Jun 7 05:32:19 2018 +0200

    Removed self.sHelper from MultiCategorySettingsDialog, which caused a circular reference (#8372)

commit c4654885eab86b973960ed2e22e7722c9c70ba9c
Merge: a7d8cd2b9 414cad4b5
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 1 17:12:01 2018 +1000

    Update translations.
    
    From translation svn revision: 41182

commit 414cad4b5d4be67a1ca79dd81124c82b45a1c095
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 1 17:11:49 2018 +1000

    L10n updates for: ru
    From translation svn revision: 41182
    
    Authors:
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    4       3       user_docs/ru/changes.t2t
     1 file changed, 4 insertions(+), 3 deletions(-)

commit 099bb7952637f669663516cb1b5e58348e2bf6ba
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 1 17:11:47 2018 +1000

    L10n updates for: ro
    From translation svn revision: 41182
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    
    Stats:
    1       1       source/locale/ro/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 32d67138922640bcc12e4a3ca5ae78dba9b97cea
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 1 17:11:25 2018 +1000

    L10n updates for: gl
    From translation svn revision: 41182
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    
    Stats:
    1       0       user_docs/gl/changes.t2t
     1 file changed, 1 insertion(+)

commit 4dd084a14a4f9ed6b2606c8fe812d6d2715506ad
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 1 17:11:22 2018 +1000

    L10n updates for: fi
    From translation svn revision: 41182
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    1       0       user_docs/fi/changes.t2t
     1 file changed, 1 insertion(+)

commit f85705a0291db0774c09a28a81d79e0bd7e34594
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 1 17:11:20 2018 +1000

    L10n updates for: fa
    From translation svn revision: 41182
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    1       1       source/locale/fa/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit b0243e00989559cb197641ee83c463a018774f46
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 1 17:11:18 2018 +1000

    L10n updates for: es
    From translation svn revision: 41182
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    
    Stats:
    1       0       user_docs/es/changes.t2t
     1 file changed, 1 insertion(+)

commit 9cbf7be945c05f4fccd8e393101e14506973bd75
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 1 17:11:14 2018 +1000

    L10n updates for: de
    From translation svn revision: 41182
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    
    Stats:
    1       0       user_docs/de/changes.t2t
     1 file changed, 1 insertion(+)

commit 4b384c55f9981b93a2c12169cbea9a6ba7e022c1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 1 17:11:11 2018 +1000

    L10n updates for: da
    From translation svn revision: 41182
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    416     648     source/locale/da/LC_MESSAGES/nvda.po
    1       0       user_docs/da/changes.t2t
    2       2       user_docs/da/userGuide.t2t
     3 files changed, 419 insertions(+), 650 deletions(-)

commit a7d8cd2b900956f25a268b3558ec60beee44c46c
Merge: d344fb768 43dd97614
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Jun 1 17:06:08 2018 +1000

    Merge branch 'rc'

commit 43dd97614ef160a815ce02d3888f16aaecf3114f
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Fri Jun 1 08:55:12 2018 +0200

    Revert announcement of replied and forwarded state in Outlook (#8353)

commit d344fb768a8d416491c101be54640afcc4c727ef
Merge: 0f69cd1d9 56095df05
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 1 00:06:02 2018 +1000

    Update translations.
    
    From translation svn revision: 41131

commit 56095df05c6274650580376b21a86a3b3f5fea40
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 1 00:05:49 2018 +1000

    L10n updates for: ro
    From translation svn revision: 41131
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    
    Stats:
    158     4       source/locale/ro/LC_MESSAGES/nvda.po
     1 file changed, 158 insertions(+), 4 deletions(-)

commit 0f69cd1d9e60ebc40d314ae8592d5277801cda82
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Thu May 31 07:44:16 2018 +0200

    Fix currently edited profile announcements, numpad enter functionality and validation behavior (#8253)
    
    * Fix another case where the switch of the currently edited profile is not announced
    
    * Restore event_appModule_loseFocus
    
    * Fix operation of the numpad enter key in settings dialogs
    
    * Remove obsolete char hooks from lists
    
    * Rename handler for enter and control+s to _enterActivatesOk_ctrlSActivatesApply
    
    * Add additional information in the enter/escape event handler that mentions wx ticket 3725
    
    * Add preSave and postSave handlers
    
    * Fixed doc string for SettingsPanel on discard
    
    * preSave, explicitly check for False
    
    * Review actions

commit 27c21d64db671acf40456620f439c98aaf77351e
Merge: 6b920055e c48bcd694
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu May 31 14:05:09 2018 +1000

    Update translations.
    
    From translation svn revision: 41128

commit c48bcd694220c45cebb17574868cbac6a7d8811e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu May 31 14:05:07 2018 +1000

    L10n updates for: zh_CN
    From translation svn revision: 41128
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    
    Stats:
    43      5       source/locale/zh_CN/symbols.dic
    123     6       user_docs/zh_CN/userGuide.t2t
     2 files changed, 166 insertions(+), 11 deletions(-)

commit d0aafd47308ac01bb9a6a0b0d1c3f695d830790a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu May 31 14:04:48 2018 +1000

    L10n updates for: nl
    From translation svn revision: 41128
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    37      37      user_docs/nl/changes.t2t
    21      11      user_docs/nl/userGuide.t2t
     2 files changed, 58 insertions(+), 48 deletions(-)

commit 0d284968ff7466994ad38014be95e5780e253bb4
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu May 31 14:04:41 2018 +1000

    L10n updates for: ko
    From translation svn revision: 41128
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    
    Stats:
    4       4       source/locale/ko/LC_MESSAGES/nvda.po
     1 file changed, 4 insertions(+), 4 deletions(-)

commit b689ceccc50bf07e3a58a6cc2120b950fac97757
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu May 31 14:04:36 2018 +1000

    L10n updates for: it
    From translation svn revision: 41128
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    51      52      source/locale/it/LC_MESSAGES/nvda.po
     1 file changed, 51 insertions(+), 52 deletions(-)

commit 2da688cd68bd74cb0c22b3baa6c785d4b8ee9903
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu May 31 14:04:28 2018 +1000

    L10n updates for: ga
    From translation svn revision: 41128
    
    Authors:
    Cearbhall OMeadhra <cearbhall.omeadhra@blbc.ie>
    Ronan McGuirk <ronan.p.mcguirk@gmail.com>
    Kevin Scannell <kscanne@gmail.com>
    
    Stats:
    78      112     source/locale/ga/LC_MESSAGES/nvda.po
     1 file changed, 78 insertions(+), 112 deletions(-)

commit 96d4c6cc20aeea1ea24cf5a252d741dc9dc59f2f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu May 31 14:04:24 2018 +1000

    L10n updates for: fa
    From translation svn revision: 41128
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    3       3       source/locale/fa/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 3 deletions(-)

commit 753a9f6850652ce68d7959d3e80db9f20ca35966
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu May 31 14:04:22 2018 +1000

    L10n updates for: es
    From translation svn revision: 41128
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    
    Stats:
    3       3       source/locale/es/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 3 deletions(-)

commit 6b920055e3a5ae54315aae65c797ed93f67b08fc
Author: Łukasz Golonka <wulfryk1@gmail.com>
Date:   Tue May 29 02:21:01 2018 +0200

    Fix reading empty columns in Windows Explorer on Windows 7 (#8316)
    
    * Fix reading empty columns in Windows Explorer on Windows 7
    
    * Review actions

commit f76bbdbfd26805f155cbf030cf511af9d9bd55e0
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Tue May 29 02:11:38 2018 +0200

    Both sleep before and after closing the connection to a handy tech display (#8232)

commit d8b2e1fb82dd6a2202f41687cb5a5e458c12bfd0
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Tue May 29 10:09:51 2018 +1000

    Ignore UIA notification events with no valid NVDAObject (#8257)
    
    * UIA noticication event: don't fire an NVDA event  when we cannot make an NVDAObject.
    
    * When logging an InvalidNVDAObject exception: ensure to log the proper traceback, not the outer stack as that is useless for debugging the problem.

commit 864bf4533e751b9079d279f4aed4dff1a502e8c2
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue May 29 10:08:17 2018 +1000

    What's new: fix typo of HumanWare.

commit c65fa66363251c0f886057771eba94930372e5df
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue May 29 10:07:00 2018 +1000

    Update what's new

commit 3f541750b598f1902c765d300f0b3f515866d8ad
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Tue May 29 10:05:31 2018 +1000

    Support Win10 rs5 task switch list so we only report the list item and not its ancestry. (#8258)

commit 614ac6ca062f02d4e18816bf13cea9bf9e194af5
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue May 29 09:39:27 2018 +1000

    Handlers can have required params with extension points. (PR #8208)
    
    Allow handlers to have required params with extension points, which are
    parameters with no default value set.
    
    To make it clearer for someone new to this API where to start, the extensionPoints implementation has been moved into a package, with the common stuff in `__init__`

commit 1cd171de3b35caf7751e71a3653bed48e5e2fe9c
Merge: 354ad3555 78e190d7e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 25 00:06:16 2018 +1000

    Update translations.
    
    From translation svn revision: 41033

commit 78e190d7eab227ae7963925683268b7d649837ba
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 25 00:06:15 2018 +1000

    L10n updates for: zh_TW
    From translation svn revision: 41033
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    35      31      source/locale/zh_TW/characterDescriptions.dic
     1 file changed, 35 insertions(+), 31 deletions(-)

commit 124fda7688e7ec0b8597491791378d9854ed296b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 25 00:06:14 2018 +1000

    L10n updates for: zh_HK
    From translation svn revision: 41033
    
    Authors:
    Eric Yip <ericycy@gmail.com>
    
    Stats:
    583     326     source/locale/zh_HK/LC_MESSAGES/nvda.po
     1 file changed, 583 insertions(+), 326 deletions(-)

commit 8de2cddf1989b9adbaddf95937d481251e356100
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 25 00:06:13 2018 +1000

    L10n updates for: zh_CN
    From translation svn revision: 41033
    
    Authors:
    vgjh2005@gmail.com
    jiangtiandao901647@gmail.com
    manchen0528@gmail.com
    sysking1024@gmail.com
    dingpengyu06@gmail.com
    
    Stats:
    10      13      source/locale/zh_CN/LC_MESSAGES/nvda.po
    25      2       source/locale/zh_CN/symbols.dic
     2 files changed, 35 insertions(+), 15 deletions(-)

commit c8b23bd98607d22d500034be694079d2edd53fb5
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 25 00:06:12 2018 +1000

    L10n updates for: vi
    From translation svn revision: 41033
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    579     319     source/locale/vi/LC_MESSAGES/nvda.po
     1 file changed, 579 insertions(+), 319 deletions(-)

commit 88167195c246fe47ea868d6cdf518829a8cb8fad
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 25 00:06:10 2018 +1000

    L10n updates for: uk
    From translation svn revision: 41033
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    381     264     source/locale/uk/LC_MESSAGES/nvda.po
     1 file changed, 381 insertions(+), 264 deletions(-)

commit d8422ad2361206d2c30762442f33b97b29f7a731
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 25 00:06:03 2018 +1000

    L10n updates for: sk
    From translation svn revision: 41033
    
    Authors:
    Ondrej Rosik <ondrej.rosik@gmail.com>
    Peter Vagner <peter.v@datagate.sk>
    
    Stats:
    111     125     source/locale/sk/LC_MESSAGES/nvda.po
    61      0       user_docs/sk/changes.t2t
    203     142     user_docs/sk/userGuide.t2t
     3 files changed, 375 insertions(+), 267 deletions(-)

commit d15605d2ced7569a4f09c476f11a9e676fc64e5d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 25 00:06:00 2018 +1000

    L10n updates for: ru
    From translation svn revision: 41033
    
    Authors:
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    19      8       source/locale/ru/symbols.dic
    28      5       user_docs/ru/changes.t2t
    18      18      user_docs/ru/userGuide.t2t
     3 files changed, 65 insertions(+), 31 deletions(-)

commit b89e54629f23deb02472d22ebdcf09ac00f0b0e6
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 25 00:05:58 2018 +1000

    L10n updates for: ro
    From translation svn revision: 41033
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    
    Stats:
    31      320     source/locale/ro/LC_MESSAGES/nvda.po
    24      17      user_docs/ro/changes.t2t
     2 files changed, 55 insertions(+), 337 deletions(-)

commit 08c1801eea7672111cfa7bdd6aff5d75d01b0a94
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 25 00:05:57 2018 +1000

    L10n updates for: pt_PT
    From translation svn revision: 41033
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    5       5       source/locale/pt_PT/LC_MESSAGES/nvda.po
    144     144     user_docs/pt_PT/userGuide.t2t
     2 files changed, 149 insertions(+), 149 deletions(-)

commit 9cf5e2bf388a7ef07af08a10727259acd7f4fdec
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 25 00:05:55 2018 +1000

    L10n updates for: pt_BR
    From translation svn revision: 41033
    
    Authors:
    Cleverson Casarin Uliana <clever97@gmail.com>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    342     327     source/locale/pt_BR/LC_MESSAGES/nvda.po
    16      16      user_docs/pt_BR/userGuide.t2t
     2 files changed, 358 insertions(+), 343 deletions(-)

commit 143c6728d028c91d349d8227fbcfde24f7f46a1f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 25 00:05:53 2018 +1000

    L10n updates for: pl
    From translation svn revision: 41033
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <killer@tyflonet.com>
    
    Stats:
    5       5       source/locale/pl/LC_MESSAGES/nvda.po
     1 file changed, 5 insertions(+), 5 deletions(-)

commit ffefbce2d84fb439842f572462d4b0a254721256
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 25 00:05:51 2018 +1000

    L10n updates for: nl
    From translation svn revision: 41033
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    7       0       user_docs/nl/changes.t2t
    152     131     user_docs/nl/userGuide.t2t
     2 files changed, 159 insertions(+), 131 deletions(-)

commit b0426fc29e1827d9199a2a3a937ef3c6c1f0c226
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 25 00:05:48 2018 +1000

    L10n updates for: mn
    From translation svn revision: 41033
    
    Authors:
    Mongol NVDA-Translation <mongoliannvdatranslation@gmail.com>
    
    Stats:
    1602    1336    source/locale/mn/LC_MESSAGES/nvda.po
     1 file changed, 1602 insertions(+), 1336 deletions(-)

commit d89be7561a42552cdbc17f720277297b6e626aa1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 25 00:05:45 2018 +1000

    L10n updates for: ky
    From translation svn revision: 41033
    
    Authors:
    Bermet Zhakypbekova <bermet.zhakypbekova@gmail.com>
    
    Stats:
    236     153     source/locale/ky/symbols.dic
    484     0       user_docs/ky/userGuide.t2t
     2 files changed, 720 insertions(+), 153 deletions(-)

commit d1fdae40f59bc9c4b15fb51ffc05b726ab480b23
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 25 00:05:44 2018 +1000

    L10n updates for: ko
    From translation svn revision: 41033
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    
    Stats:
    60      70      source/locale/ko/LC_MESSAGES/nvda.po
    36      31      user_docs/ko/changes.t2t
    70      62      user_docs/ko/userGuide.t2t
     3 files changed, 166 insertions(+), 163 deletions(-)

commit 8a354b0d8b7de868eac59a306577f8a747c26489
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 25 00:05:41 2018 +1000

    L10n updates for: ja
    From translation svn revision: 41033
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    67      0       user_docs/ja/changes.t2t
     1 file changed, 67 insertions(+)

commit 273c03b2be520b6597b7bda015123d9c1edb865a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 25 00:05:39 2018 +1000

    L10n updates for: it
    From translation svn revision: 41033
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    36      35      source/locale/it/LC_MESSAGES/nvda.po
    7       5       user_docs/it/userGuide.t2t
     2 files changed, 43 insertions(+), 40 deletions(-)

commit 824e0723ba17639a979a65e90ab3bff9fd26f686
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 25 00:05:34 2018 +1000

    L10n updates for: he
    From translation svn revision: 41033
    
    Authors:
    Shmuel Naaman <shmuel_naaman@yahoo.com>
    Afik Sofir <afik.sofer@gmail.com>
    
    Stats:
    613     296     source/locale/he/LC_MESSAGES/nvda.po
     1 file changed, 613 insertions(+), 296 deletions(-)

commit 0595f901b686ea2fc9366bfe766bc5a162a2cf5c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 25 00:05:31 2018 +1000

    L10n updates for: fr
    From translation svn revision: 41033
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    3       3       source/locale/fr/LC_MESSAGES/nvda.po
    1       1       user_docs/fr/changes.t2t
    1       1       user_docs/fr/userGuide.t2t
     3 files changed, 5 insertions(+), 5 deletions(-)

commit 0696b4bd353ad974396e8b8940401b2e2d5e7a6b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 25 00:05:29 2018 +1000

    L10n updates for: fi
    From translation svn revision: 41033
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    5       5       user_docs/fi/changes.t2t
     1 file changed, 5 insertions(+), 5 deletions(-)

commit 192814128bde53065f8332586488196cceb80219
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 25 00:05:26 2018 +1000

    L10n updates for: fa
    From translation svn revision: 41033
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    585     314     source/locale/fa/LC_MESSAGES/nvda.po
    197     159     user_docs/fa/userGuide.t2t
     2 files changed, 782 insertions(+), 473 deletions(-)

commit 933f088f91f7adbacb317a701a4bd55cc89f7746
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 25 00:05:21 2018 +1000

    L10n updates for: el
    From translation svn revision: 41033
    
    Authors:
    Irene Nakas <irnakas@gmail.com>
    Nikos Demetriou <nikosdemetriou@googlemail.com>
    access@e-rhetor.com
    
    Stats:
    119     180     source/locale/el/LC_MESSAGES/nvda.po
     1 file changed, 119 insertions(+), 180 deletions(-)

commit 372f89358f4753cb9556b54a7bc6425bb77a0087
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 25 00:05:20 2018 +1000

    L10n updates for: de
    From translation svn revision: 41033
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    
    Stats:
    19      19      user_docs/de/changes.t2t
    38      38      user_docs/de/userGuide.t2t
     2 files changed, 57 insertions(+), 57 deletions(-)

commit cd3b33f245c647fbd18916a6bfc6360e80912b91
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 25 00:05:18 2018 +1000

    L10n updates for: de_CH
    From translation svn revision: 41033
    
    Authors:
    Robert Hänggi <aarjay.robert@gmail.com>
    
    Stats:
    865     586     source/locale/de_CH/LC_MESSAGES/nvda.po
    17      17      source/locale/de_CH/characterDescriptions.dic
    44      20      source/locale/de_CH/symbols.dic
    122     45      user_docs/de_CH/changes.t2t
     4 files changed, 1048 insertions(+), 668 deletions(-)

commit a0d9b6132928d98caa54e14b69b54f83701823af
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 25 00:05:16 2018 +1000

    L10n updates for: cs
    From translation svn revision: 41033
    
    Authors:
    Martina Letochova <letochova@seznam.cz>
    
    Stats:
    511     294     source/locale/cs/LC_MESSAGES/nvda.po
     1 file changed, 511 insertions(+), 294 deletions(-)

commit c6b2275a416778c9d08032d82b59dec8cadaecca
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 25 00:05:14 2018 +1000

    L10n updates for: ca
    From translation svn revision: 41033
    
    Authors:
    Ruben Alcaraz <ruben.hangar1.8@gmail.com>
    Dr. Mireia Ribera <mireia.ribera@gmail.com>
    Santi Moese <santispock@gmail.com>
    Marina Salse Rovira <salse@ub.edu>
    
    Stats:
    388     267     source/locale/ca/LC_MESSAGES/nvda.po
     1 file changed, 388 insertions(+), 267 deletions(-)

commit 4acab63f600ceaeec19bbe88e157241f5f3dd266
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 25 00:05:08 2018 +1000

    L10n updates for: an
    From translation svn revision: 41033
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    
    Stats:
    591     316     source/locale/an/LC_MESSAGES/nvda.po
    7       3       source/locale/an/symbols.dic
    63      0       user_docs/an/changes.t2t
    50      18      user_docs/an/userGuide.t2t
     4 files changed, 711 insertions(+), 337 deletions(-)

commit 354ad355538e028d3b1d25ee9a87c95b73a635a1
Merge: d3abab77d dc685a8b4
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 18 00:06:17 2018 +1000

    Update translations.
    
    From translation svn revision: 40834

commit dc685a8b4b3fe33edcd1c1762a76d5d122ca45c2
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 18 00:06:16 2018 +1000

    L10n updates for: zh_TW
    From translation svn revision: 40834
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    28      2       source/locale/zh_TW/LC_MESSAGES/nvda.po
    167     139     user_docs/zh_TW/userGuide.t2t
     2 files changed, 195 insertions(+), 141 deletions(-)

commit 353722f6c4c4b629b7549863893087df294c7d3f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 18 00:06:14 2018 +1000

    L10n updates for: zh_CN
    From translation svn revision: 40834
    
    Authors:
    vgjh2005@gmail.com
    
    Stats:
    285     286     source/locale/zh_CN/LC_MESSAGES/nvda.po
    1059    4       source/locale/zh_CN/symbols.dic
    8       3       user_docs/zh_CN/changes.t2t
    34      21      user_docs/zh_CN/userGuide.t2t
     4 files changed, 1386 insertions(+), 314 deletions(-)

commit a4521aaed7cba55684d71c3eeb51f55f7a0c991e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 18 00:06:10 2018 +1000

    L10n updates for: tr
    From translation svn revision: 40834
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    30      2       source/locale/tr/LC_MESSAGES/nvda.po
    16      9       user_docs/tr/changes.t2t
    22      11      user_docs/tr/userGuide.t2t
     3 files changed, 68 insertions(+), 22 deletions(-)

commit f4562c7ad163b3ac9eca06274b904d630c796236
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 18 00:06:08 2018 +1000

    L10n updates for: ta
    From translation svn revision: 40834
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    529     260     source/locale/ta/LC_MESSAGES/nvda.po
     1 file changed, 529 insertions(+), 260 deletions(-)

commit 846011e2958838096c10829c7c871e172b52ea44
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 18 00:06:06 2018 +1000

    L10n updates for: sr
    From translation svn revision: 40834
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    30      2       source/locale/sr/LC_MESSAGES/nvda.po
    25      2       user_docs/sr/changes.t2t
     2 files changed, 55 insertions(+), 4 deletions(-)

commit e561d8c6b0289b77943ccfe0fcbaf9e663b6c7e8
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 18 00:06:04 2018 +1000

    L10n updates for: sl
    From translation svn revision: 40834
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    32      4       source/locale/sl/LC_MESSAGES/nvda.po
    24      13      user_docs/sl/userGuide.t2t
     2 files changed, 56 insertions(+), 17 deletions(-)

commit 2d4392a9df42415fd1c799d8e9f32aad9194ff51
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 18 00:06:02 2018 +1000

    L10n updates for: ru
    From translation svn revision: 40834
    
    Authors:
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    31      3       source/locale/ru/LC_MESSAGES/nvda.po
    136     125     user_docs/ru/userGuide.t2t
     2 files changed, 167 insertions(+), 128 deletions(-)

commit 6b0230e840f3cdd4f05662830d53dc0d5a18a379
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 18 00:05:59 2018 +1000

    L10n updates for: ro
    From translation svn revision: 40834
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    
    Stats:
    148     130     user_docs/ro/userGuide.t2t
     1 file changed, 148 insertions(+), 130 deletions(-)

commit ec5f21bc027c36266bddb46ba2873c607dd81995
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 18 00:05:58 2018 +1000

    L10n updates for: pt_PT
    From translation svn revision: 40834
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    32      4       source/locale/pt_PT/LC_MESSAGES/nvda.po
    20      3       user_docs/pt_PT/changes.t2t
    325     297     user_docs/pt_PT/userGuide.t2t
     3 files changed, 377 insertions(+), 304 deletions(-)

commit 8cc2d2984adf870a43c794cd8f9739b634fa17eb
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 18 00:05:56 2018 +1000

    L10n updates for: pt_BR
    From translation svn revision: 40834
    
    Authors:
    Cleverson Casarin Uliana <clever97@gmail.com>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    31      3       source/locale/pt_BR/LC_MESSAGES/nvda.po
    16      9       user_docs/pt_BR/changes.t2t
    419     393     user_docs/pt_BR/userGuide.t2t
     3 files changed, 466 insertions(+), 405 deletions(-)

commit 78b37370dbff29cf875e3410d3295b7900529b70
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 18 00:05:55 2018 +1000

    L10n updates for: pl
    From translation svn revision: 40834
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <killer@tyflonet.com>
    
    Stats:
    119     91      source/locale/pl/LC_MESSAGES/nvda.po
    66      0       user_docs/pl/changes.t2t
    203     142     user_docs/pl/userGuide.t2t
     3 files changed, 388 insertions(+), 233 deletions(-)

commit e46a702a6d82c4648290702b537d0a09baa0da4d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 18 00:05:53 2018 +1000

    L10n updates for: nl
    From translation svn revision: 40834
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    30      2       source/locale/nl/LC_MESSAGES/nvda.po
    6       6       user_docs/nl/changes.t2t
     2 files changed, 36 insertions(+), 8 deletions(-)

commit 8ef7ca3b8a038525df18479f7c6bd2bc612c1ef0
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 18 00:05:46 2018 +1000

    L10n updates for: ko
    From translation svn revision: 40834
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    
    Stats:
    530     302     source/locale/ko/LC_MESSAGES/nvda.po
    42      31      user_docs/ko/changes.t2t
    136     83      user_docs/ko/userGuide.t2t
     3 files changed, 708 insertions(+), 416 deletions(-)

commit 3ad856181ee7c0a7a3e821b9813707a2bb02b6c9
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 18 00:05:42 2018 +1000

    L10n updates for: ja
    From translation svn revision: 40834
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    30      3       source/locale/ja/LC_MESSAGES/nvda.po
    23      11      user_docs/ja/userGuide.t2t
     2 files changed, 53 insertions(+), 14 deletions(-)

commit 782466d99024b4411b7714f41dd0d5f87e2237ee
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 18 00:05:40 2018 +1000

    L10n updates for: it
    From translation svn revision: 40834
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    32      3       source/locale/it/LC_MESSAGES/nvda.po
    62      0       user_docs/it/changes.t2t
    144     117     user_docs/it/userGuide.t2t
     3 files changed, 238 insertions(+), 120 deletions(-)

commit 39241dfbd332550522c60590810af1bd6a3d6792
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 18 00:05:38 2018 +1000

    L10n updates for: hu
    From translation svn revision: 40834
    
    Authors:
    Aron OcsvAri <oaron@nvda.hu>
    
    Stats:
    534     385     source/locale/hu/LC_MESSAGES/nvda.po
    61      0       user_docs/hu/changes.t2t
     2 files changed, 595 insertions(+), 385 deletions(-)

commit 844056fa309f0459558d4bf0e9112f6534a10ca0
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 18 00:05:36 2018 +1000

    L10n updates for: hr
    From translation svn revision: 40834
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Mario Percinic <mario.percinic@gmail.com>
    Tea Turkovic <tturkovi@gmail.com>
    
    Stats:
    30      2       source/locale/hr/LC_MESSAGES/nvda.po
    7       0       user_docs/hr/changes.t2t
    21      10      user_docs/hr/userGuide.t2t
     3 files changed, 58 insertions(+), 12 deletions(-)

commit 513cf7180f1268de943c7d914bac2901bda24f76
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 18 00:05:33 2018 +1000

    L10n updates for: gl
    From translation svn revision: 40834
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    
    Stats:
    30      2       source/locale/gl/LC_MESSAGES/nvda.po
    6       0       user_docs/gl/changes.t2t
    161     133     user_docs/gl/userGuide.t2t
     3 files changed, 197 insertions(+), 135 deletions(-)

commit b0ec7339ec57fb8d734778b873b8cd19ec794812
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 18 00:05:31 2018 +1000

    L10n updates for: ga
    From translation svn revision: 40834
    
    Authors:
    Cearbhall OMeadhra <cearbhall.omeadhra@blbc.ie>
    Ronan McGuirk <ronan.p.mcguirk@gmail.com>
    Kevin Scannell <kscanne@gmail.com>
    
    Stats:
    621     339     source/locale/ga/LC_MESSAGES/nvda.po
     1 file changed, 621 insertions(+), 339 deletions(-)

commit 116461ff8b4d8410368a7338e9f7e2211182e9e8
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 18 00:05:31 2018 +1000

    L10n updates for: fr
    From translation svn revision: 40834
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    49      22      source/locale/fr/LC_MESSAGES/nvda.po
    20      10      user_docs/fr/changes.t2t
    26      16      user_docs/fr/userGuide.t2t
     3 files changed, 95 insertions(+), 48 deletions(-)

commit 9263028e4d55426707e8753b07c18820395a25fe
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 18 00:05:29 2018 +1000

    L10n updates for: fi
    From translation svn revision: 40834
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    31      3       source/locale/fi/LC_MESSAGES/nvda.po
    12      6       user_docs/fi/changes.t2t
    60      49      user_docs/fi/userGuide.t2t
     3 files changed, 103 insertions(+), 58 deletions(-)

commit 8bd69a8b1a93584aa561391b38d592392f419152
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 18 00:05:27 2018 +1000

    L10n updates for: fa
    From translation svn revision: 40834
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    16      9       user_docs/fa/changes.t2t
     1 file changed, 16 insertions(+), 9 deletions(-)

commit 6cc50ce906aebd01d619a645554f953eba223b32
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 18 00:05:25 2018 +1000

    L10n updates for: es
    From translation svn revision: 40834
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    
    Stats:
    30      2       source/locale/es/LC_MESSAGES/nvda.po
    6       0       user_docs/es/changes.t2t
    161     133     user_docs/es/userGuide.t2t
     3 files changed, 197 insertions(+), 135 deletions(-)

commit 9ba72f97bab5984532d31c38d5cbff1b45af1c96
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 18 00:05:22 2018 +1000

    L10n updates for: el
    From translation svn revision: 40834
    
    Authors:
    Irene Nakas <irnakas@gmail.com>
    Nikos Demetriou <nikosdemetriou@googlemail.com>
    access@e-rhetor.com
    
    Stats:
    1761    1239    source/locale/el/LC_MESSAGES/nvda.po
     1 file changed, 1761 insertions(+), 1239 deletions(-)

commit c2e7b4cff6b3ef417b279b3bcfb2cdd7737aff1a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 18 00:05:20 2018 +1000

    L10n updates for: de
    From translation svn revision: 40834
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    
    Stats:
    37      9       source/locale/de/LC_MESSAGES/nvda.po
    12      4       user_docs/de/changes.t2t
    169     141     user_docs/de/userGuide.t2t
     3 files changed, 218 insertions(+), 154 deletions(-)

commit a65778cd0d31cc2f7f8aa7dd19c70f9963c5abd4
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 18 00:05:17 2018 +1000

    L10n updates for: da
    From translation svn revision: 40834
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    713     453     source/locale/da/LC_MESSAGES/nvda.po
    9       5       source/locale/da/symbols.dic
    15      9       user_docs/da/changes.t2t
    231     201     user_docs/da/userGuide.t2t
     4 files changed, 968 insertions(+), 668 deletions(-)

commit f437ca09586704c79df566874cc7e113e82b89a4
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 18 00:05:14 2018 +1000

    L10n updates for: bg
    From translation svn revision: 40834
    
    Authors:
    Zahari Yurukov <zahari.yurukov@gmail.com>
    Kostadin Kolev <k_kolev1985@mail.bg>
    
    Stats:
    601     323     source/locale/bg/LC_MESSAGES/nvda.po
    8       3       source/locale/bg/symbols.dic
    66      0       user_docs/bg/changes.t2t
    215     153     user_docs/bg/userGuide.t2t
     4 files changed, 890 insertions(+), 479 deletions(-)

commit fe07cf8ab44df857d25be5978502a82e596e91e5
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 18 00:05:11 2018 +1000

    L10n updates for: ar
    From translation svn revision: 40834
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    516     285     source/locale/ar/LC_MESSAGES/nvda.po
    24      0       user_docs/ar/changes.t2t
     2 files changed, 540 insertions(+), 285 deletions(-)

commit d3abab77d877a1d03d232c3ebf6a61bb7be83cd0
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed May 16 19:41:06 2018 +1000

    Restore handytech COM server (#8213)
    
    * Upgrade comtypes to 1.1.4 which fixes a bug affecting the Handitech COM server.
    
    * miscDeps again contains handytech files until Handytech driver supports native auto detection and ATC.
    
    * Restore the Handytech COM registration in our manifest.
    
    * Readme: mention comtypes 1.1.4
    
    * Roll back to comtypes commit edbaf3 as 98f6a42 causes comtypes issue #145.

commit 2229d55afd530607d08c25bc53d72cd2a3003de4
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Fri May 11 04:10:49 2018 +1000

    Fix accelerator conflict with apply button. (#8252)
    
    * Stop alt+a from silently applying settings
    
    When using the wx function "CreateButtonSizer", enter triggers ok,
    esc triggers cancel, and alt+A triggers Apply.
    
    We have some conflicts with alt+A, used as accelerators for options.
    When there are conflicts for checkbox items the focus is only shifted to
    the item, the item is not activated. When the item is a button, the
    button is activated. The only feedback a user is given for the apply
    button is that focus shifts to the categories list.
    
    This commit stops the settings dialogs from using the
    "CreateButtonSizer" method, and instead we create the buttons ourself.
    We add a binding for the "enter" key so that enter will still trigger
    the OK button. We also add a binding for "control + S" to trigger the
    apply button.
    
    To resolve the annoying windows chime when pressing enter on the
    synthesiser name, or braille display name, the "...Change" button is now
    triggered.
    
    This also means that OK, Cancel, Apply can be translated for all our
    users.
    
    * Match changes in speech vs braille display
    
    Mirror the changes made to the static groupbox in the speech settings.

commit 8566c376ed0fa36b2db9b37ac404280c6b2acd79
Merge: 4ffdab080 9c1ceaf8d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 11 00:06:17 2018 +1000

    Update translations.
    
    From translation svn revision: 40464

commit 9c1ceaf8d92f3a5640d7b9cb21fadcf88fcf878f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 11 00:06:16 2018 +1000

    L10n updates for: zh_TW
    From translation svn revision: 40464
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    321     266     source/locale/zh_TW/LC_MESSAGES/nvda.po
    30      27      source/locale/zh_TW/characterDescriptions.dic
    3       1       source/locale/zh_TW/symbols.dic
     3 files changed, 354 insertions(+), 294 deletions(-)

commit 8ec2109e8b2b9d3c6ac20b261b4e021173245935
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 11 00:06:14 2018 +1000

    L10n updates for: zh_CN
    From translation svn revision: 40464
    
    Authors:
    vgjh2005@gmail.com
    
    Stats:
    618     371     source/locale/zh_CN/LC_MESSAGES/nvda.po
    194     184     source/locale/zh_CN/symbols.dic
    31      15      user_docs/zh_CN/changes.t2t
     3 files changed, 843 insertions(+), 570 deletions(-)

commit 71b20022425ab389b5239723f7c9b34a75a7e65b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 11 00:06:10 2018 +1000

    L10n updates for: tr
    From translation svn revision: 40464
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    315     261     source/locale/tr/LC_MESSAGES/nvda.po
    6       0       user_docs/tr/changes.t2t
    134     116     user_docs/tr/userGuide.t2t
     3 files changed, 455 insertions(+), 377 deletions(-)

commit 32091cf0afdace218cb96a95ae97e762a752b5e1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 11 00:06:06 2018 +1000

    L10n updates for: sr
    From translation svn revision: 40464
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    407     263     source/locale/sr/LC_MESSAGES/nvda.po
     1 file changed, 407 insertions(+), 263 deletions(-)

commit bcb725ceda9d88828327a00187feebf1eb73699c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 11 00:06:05 2018 +1000

    L10n updates for: sl
    From translation svn revision: 40464
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    333     276     source/locale/sl/LC_MESSAGES/nvda.po
    165     148     user_docs/sl/userGuide.t2t
     2 files changed, 498 insertions(+), 424 deletions(-)

commit 125ede0e680c056dae6c360c40508d9d40f2216a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 11 00:06:04 2018 +1000

    L10n updates for: sk
    From translation svn revision: 40464
    
    Authors:
    Ondrej Rosik <ondrej.rosik@gmail.com>
    Peter Vagner <peter.v@datagate.sk>
    
    Stats:
    573     300     source/locale/sk/LC_MESSAGES/nvda.po
     1 file changed, 573 insertions(+), 300 deletions(-)

commit 0966f42924fc57767dda75836d8efb348314fd36
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 11 00:06:02 2018 +1000

    L10n updates for: ru
    From translation svn revision: 40464
    
    Authors:
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    509     355     source/locale/ru/LC_MESSAGES/nvda.po
    164     144     user_docs/ru/userGuide.t2t
     2 files changed, 673 insertions(+), 499 deletions(-)

commit 0ff1359b7e9ac39a85bf989304e4616e245aa0ca
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 11 00:05:59 2018 +1000

    L10n updates for: ro
    From translation svn revision: 40464
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    
    Stats:
    328     275     source/locale/ro/LC_MESSAGES/nvda.po
    6       0       user_docs/ro/changes.t2t
     2 files changed, 334 insertions(+), 275 deletions(-)

commit 1f084acead78ab38a0189e7c083eb90fcdcc83f0
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 11 00:05:58 2018 +1000

    L10n updates for: pt_PT
    From translation svn revision: 40464
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    351     295     source/locale/pt_PT/LC_MESSAGES/nvda.po
     1 file changed, 351 insertions(+), 295 deletions(-)

commit 7c3a2910556fe0242fe4b27aee92806e1d587081
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 11 00:05:56 2018 +1000

    L10n updates for: pt_BR
    From translation svn revision: 40464
    
    Authors:
    Cleverson Casarin Uliana <clever97@gmail.com>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    558     313     source/locale/pt_BR/LC_MESSAGES/nvda.po
    51      30      user_docs/pt_BR/changes.t2t
     2 files changed, 609 insertions(+), 343 deletions(-)

commit 78c4761b2830ea2b84347cc188c3dcb5b0236db4
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 11 00:05:54 2018 +1000

    L10n updates for: pl
    From translation svn revision: 40464
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Dorota Krac <dorkakrac@yandex.com>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <killer@tyflonet.com>
    
    Stats:
    354     281     source/locale/pl/LC_MESSAGES/nvda.po
     1 file changed, 354 insertions(+), 281 deletions(-)

commit 4854f01610a5296cfa5159212412da35ee28e700
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 11 00:05:52 2018 +1000

    L10n updates for: nl
    From translation svn revision: 40464
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    335     279     source/locale/nl/LC_MESSAGES/nvda.po
    58      0       user_docs/nl/changes.t2t
     2 files changed, 393 insertions(+), 279 deletions(-)

commit 23b1a0258607044348fd70ebdaaa3a764afbfbc0
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 11 00:05:43 2018 +1000

    L10n updates for: ja
    From translation svn revision: 40464
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    236     268     source/locale/ja/LC_MESSAGES/nvda.po
    157     140     user_docs/ja/userGuide.t2t
     2 files changed, 393 insertions(+), 408 deletions(-)

commit 8af79d29b2d384af2e23a885d39e83e7581121fe
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 11 00:05:40 2018 +1000

    L10n updates for: it
    From translation svn revision: 40464
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    325     268     source/locale/it/LC_MESSAGES/nvda.po
     1 file changed, 325 insertions(+), 268 deletions(-)

commit 4b75c72c252cd968a375742d7bf6388a02822561
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 11 00:05:36 2018 +1000

    L10n updates for: hr
    From translation svn revision: 40464
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Mario Percinic <mario.percinic@gmail.com>
    Tea Turkovic <tturkovi@gmail.com>
    
    Stats:
    326     272     source/locale/hr/LC_MESSAGES/nvda.po
    6       0       user_docs/hr/changes.t2t
    150     133     user_docs/hr/userGuide.t2t
     3 files changed, 482 insertions(+), 405 deletions(-)

commit 4bed14d0f4f6b0267d102033678d95118c6bcf51
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 11 00:05:33 2018 +1000

    L10n updates for: gl
    From translation svn revision: 40464
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    
    Stats:
    321     266     source/locale/gl/LC_MESSAGES/nvda.po
    6       0       user_docs/gl/changes.t2t
     2 files changed, 327 insertions(+), 266 deletions(-)

commit 5d7c99049f53ca9efc244e3ec29987f52eaa6b1d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 11 00:05:31 2018 +1000

    L10n updates for: fr
    From translation svn revision: 40464
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    231     350     source/locale/fr/LC_MESSAGES/nvda.po
    3       0       user_docs/fr/changes.t2t
    232     211     user_docs/fr/userGuide.t2t
     3 files changed, 466 insertions(+), 561 deletions(-)

commit 92079363c5a693d0b37f02ddfc377b02b8cb34a1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 11 00:05:29 2018 +1000

    L10n updates for: fi
    From translation svn revision: 40464
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    332     276     source/locale/fi/LC_MESSAGES/nvda.po
    9       3       user_docs/fi/changes.t2t
    168     151     user_docs/fi/userGuide.t2t
     3 files changed, 509 insertions(+), 430 deletions(-)

commit aa9253a1e61d56a8070ed1c31df44886b5a433e2
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 11 00:05:27 2018 +1000

    L10n updates for: fa
    From translation svn revision: 40464
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    6       1       user_docs/fa/changes.t2t
     1 file changed, 6 insertions(+), 1 deletion(-)

commit 9c213823932191630e32d35e268afebbaae5f77e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 11 00:05:26 2018 +1000

    L10n updates for: es
    From translation svn revision: 40464
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    
    Stats:
    323     267     source/locale/es/LC_MESSAGES/nvda.po
    6       0       user_docs/es/changes.t2t
     2 files changed, 329 insertions(+), 267 deletions(-)

commit eb8e5305b40f9929f6bc88b0f1d046169e495b4e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 11 00:05:21 2018 +1000

    L10n updates for: de
    From translation svn revision: 40464
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    
    Stats:
    357     455     source/locale/de/LC_MESSAGES/nvda.po
    24      4       user_docs/de/changes.t2t
     2 files changed, 381 insertions(+), 459 deletions(-)

commit 934a37c28da3b7dab828f9fd8c1215850b3f498a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 11 00:05:18 2018 +1000

    L10n updates for: da
    From translation svn revision: 40464
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    666     621     source/locale/da/LC_MESSAGES/nvda.po
    21      4       user_docs/da/changes.t2t
     2 files changed, 687 insertions(+), 625 deletions(-)

commit 4ffdab080b957cbb46626f416ce7d344b832a881
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed May 9 08:05:54 2018 +1000

    Update What's new with release blurb

commit 29b81f427e8790a5ff26fbec640e607e99e59cd4
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Tue May 8 16:47:25 2018 -0500

    Docs 2018.2 (#8188)
    
    * User guide: reorder languages list.
    
    Reorder languages list to follow sorted order based on languages. When appropriate, list locales in braces.
    
    * User guide and what's new: add Mongolian and Swiss German to list of new languages.
    
    * What's new: linguistics and issue number fixes.
    
    * What's new: linguistic fixes.
    
    * User guide: linguistics, settings category descriptions.
    
    Added descriptions for categories for ones that does not feature it (for consistency purposes). Also, did some linguistic fixes.

commit f2151aae1c9bf41ba606aa3eb020a57bfec38df1
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue May 8 15:43:09 2018 +1000

    Update What's new

commit 874948c70ce8bfc1a52580f1c1d83988e8094e08
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Tue May 8 07:41:17 2018 +0200

    Try to use window.edit.Edit when an editable window supports it (#8165)
    
    * Try to use NVDAObjects.window.edit.Edit when an editable window supports it regardless of window class. Also, try ITextDocument in more cases and remove old pre Windows Vista code
    
    Inherrit from RichEdit
    
    * Fixed one case where the movement of EM_CHARFROMPOS to winUser wasn't reflected

commit ed176f96d3946ce9a5be8a01b0eda8b4ba68cb48
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue May 8 15:39:26 2018 +1000

    Update What's new.

commit b2e008d53a48ec3a2b5c09053d2e9d5ccbdff609
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Tue May 8 07:38:03 2018 +0200

    Fix Smart Beetle scroll keys (#8198)
    
    * Fix Smart Beetle scroll keys
    
    * Review action

commit 7e64d1504f9f6cd9a6b97a8738aabde9ce7c6467
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon May 7 19:39:04 2018 +1000

    Add Bachir Benanou to contributors.txt who has been a key french translator for several years.

commit a61445e71c420b050527bd5ab4712deddac94b4c
Author: Reef Turner <reef@nvaccess.org>
Date:   Sun May 6 23:22:26 2018 +0000

    Update changes file for PR #6488
    
    An input gesture can be assigned to temporarily disable all configuration profile triggers.
    Issue #4935

commit 2c26aa2b06afb69497bee81a9181210353c6d55e
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Mon May 7 01:16:51 2018 +0200

    Add an input gesture to temporarily disable all configuration profiles (PR #6488)
    
    An input gesture can be assigned to temporarily disable all configuration profile triggers.
    Fixes #4935

commit fb645e6121f7e5ce9ad70494ef3a54f709c4fbca
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Mon May 7 09:12:20 2018 +1000

    Update the examples used in GUI helper. (PR #8186)
    
    Fixes #8163

commit 7154caa2e18735dce1e303f3bcb64b13974334cc
Author: Reef Turner <reef@nvaccess.org>
Date:   Sun May 6 23:09:42 2018 +0000

    Update changes file for PR #5751
    
    NVDA no longer reports (LTR and RTL marks) in Braille or per-character speech when accessing the clock in recent versions of Windows.
    Issue #5729

commit f5bc84830b56649168429b32095b60713bf13721
Author: Davy Kager <dkager@users.noreply.github.com>
Date:   Mon May 7 01:03:48 2018 +0200

    Filter LTR and RTL marks from list view items (PR #5751)
    
    Taskbar clock: filter out Unicode character U+200E (LTR mark) and U+200F (RTL mark) that are included in the value on recent versions of Windows. This character is usually not defined in the liblouis braille tables.
    
    Fixes #5729

commit 17918e92c471a63b2e26713e9fd1d02d689ceff0
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Mon May 7 00:51:36 2018 +0200

    Properly show the alt and windows key toggle gestures in the input gestures dialog (#8234)

commit 482e916c1f59ad5a44ea0552f129489c92aef424
Merge: d16f1c8be ebc0f26c4
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 4 00:06:15 2018 +1000

    Update translations.
    
    From translation svn revision: 40238

commit ebc0f26c409eb18973b181e66e09d5675e06d630
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 4 00:06:14 2018 +1000

    L10n updates for: zh_TW
    From translation svn revision: 40238
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    81      7       source/locale/zh_TW/LC_MESSAGES/nvda.po
    2       2       source/locale/zh_TW/characterDescriptions.dic
     2 files changed, 83 insertions(+), 9 deletions(-)

commit c5b0435151b90f0484db782568219e4557971138
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 4 00:06:12 2018 +1000

    L10n updates for: zh_CN
    From translation svn revision: 40238
    
    Authors:
    vgjh2005@gmail.com
    
    Stats:
    161     0       user_docs/zh_CN/changes.t2t
    3       5       user_docs/zh_CN/userGuide.t2t
     2 files changed, 164 insertions(+), 5 deletions(-)

commit f5afc3ae311d974c3b87c98fd7ac7876a62fe077
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 4 00:06:08 2018 +1000

    L10n updates for: tr
    From translation svn revision: 40238
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    41      8       source/locale/tr/LC_MESSAGES/nvda.po
    6       0       user_docs/tr/changes.t2t
     2 files changed, 47 insertions(+), 8 deletions(-)

commit 1dc142acb0cd3d204cae46d4e38c419522e6b457
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 4 00:06:03 2018 +1000

    L10n updates for: sl
    From translation svn revision: 40238
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    97      10      source/locale/sl/LC_MESSAGES/nvda.po
    5       2       user_docs/sl/userGuide.t2t
     2 files changed, 102 insertions(+), 12 deletions(-)

commit 67d6d511a1ff164182ab897a9091e8f40d6a3cf4
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 4 00:05:58 2018 +1000

    L10n updates for: ro
    From translation svn revision: 40238
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    
    Stats:
    42      7       source/locale/ro/LC_MESSAGES/nvda.po
    7       6       source/locale/ro/symbols.dic
    6       0       user_docs/ro/changes.t2t
     3 files changed, 55 insertions(+), 13 deletions(-)

commit e52d3db7a4d0a751f87b048d626014f94db4f976
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 4 00:05:57 2018 +1000

    L10n updates for: pt_PT
    From translation svn revision: 40238
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    44      10      source/locale/pt_PT/LC_MESSAGES/nvda.po
    7       0       user_docs/pt_PT/changes.t2t
     2 files changed, 51 insertions(+), 10 deletions(-)

commit 0b526c4a62134a92b4bb7605547af08ad692011e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 4 00:05:55 2018 +1000

    L10n updates for: pt_BR
    From translation svn revision: 40238
    
    Authors:
    Cleverson Casarin Uliana <clever97@gmail.com>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    6       0       user_docs/pt_BR/changes.t2t
     1 file changed, 6 insertions(+)

commit 5cf0e1d55fa6c6f9171032b6d4835e0984c00bcd
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 4 00:05:53 2018 +1000

    L10n updates for: pl
    From translation svn revision: 40238
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <killer@tyflonet.com>
    
    Stats:
    235     60      source/locale/pl/LC_MESSAGES/nvda.po
     1 file changed, 235 insertions(+), 60 deletions(-)

commit 9c5a3729cad4ac3f4c0b3c90d404887ad90a7ca2
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 4 00:05:51 2018 +1000

    L10n updates for: nl
    From translation svn revision: 40238
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    194     39      source/locale/nl/LC_MESSAGES/nvda.po
    1       1       source/locale/nl/symbols.dic
     2 files changed, 195 insertions(+), 40 deletions(-)

commit 7032df46d4ee06247cdf1687b8e5d96adbb9f6fc
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 4 00:05:42 2018 +1000

    L10n updates for: ja
    From translation svn revision: 40238
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    38      8       source/locale/ja/LC_MESSAGES/nvda.po
    1289    221     source/locale/ja/symbols.dic
    2       2       user_docs/ja/userGuide.t2t
     3 files changed, 1329 insertions(+), 231 deletions(-)

commit 22801af21d5173d09c18daf092c1bf02db37040e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 4 00:05:40 2018 +1000

    L10n updates for: it
    From translation svn revision: 40238
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    101     7       source/locale/it/LC_MESSAGES/nvda.po
    17      8       user_docs/it/userGuide.t2t
     2 files changed, 118 insertions(+), 15 deletions(-)

commit 682d1554075e8b4b36fdf58f1ec0fb88067b0dfa
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 4 00:05:36 2018 +1000

    L10n updates for: hr
    From translation svn revision: 40238
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Mario Percinic <mario.percinic@gmail.com>
    Tea Turkovic <tturkovi@gmail.com>
    
    Stats:
    39      7       source/locale/hr/LC_MESSAGES/nvda.po
    7       1       user_docs/hr/changes.t2t
     2 files changed, 46 insertions(+), 8 deletions(-)

commit bfb1544bacaef95ccdafc7406275e97a4f5f1e41
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 4 00:05:33 2018 +1000

    L10n updates for: gl
    From translation svn revision: 40238
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    
    Stats:
    41      7       source/locale/gl/LC_MESSAGES/nvda.po
    6       0       user_docs/gl/changes.t2t
     2 files changed, 47 insertions(+), 7 deletions(-)

commit ac8ee6134d0311a0d838de25f8068307a54ceda8
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 4 00:05:30 2018 +1000

    L10n updates for: fr
    From translation svn revision: 40238
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    43      8       source/locale/fr/LC_MESSAGES/nvda.po
    11      1       user_docs/fr/changes.t2t
    1       1       user_docs/fr/userGuide.t2t
     3 files changed, 55 insertions(+), 10 deletions(-)

commit b7c00186a42831c26feefc8a30662479786483e6
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 4 00:05:28 2018 +1000

    L10n updates for: fi
    From translation svn revision: 40238
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    39      7       source/locale/fi/LC_MESSAGES/nvda.po
    9       3       user_docs/fi/changes.t2t
     2 files changed, 48 insertions(+), 10 deletions(-)

commit 52f622ed9d9511a58e55b40c2cb98842570e0415
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 4 00:05:27 2018 +1000

    L10n updates for: fa
    From translation svn revision: 40238
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    7       0       user_docs/fa/changes.t2t
     1 file changed, 7 insertions(+)

commit d88369427de6d39d0fc27216ace60d16e3dc7962
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 4 00:05:25 2018 +1000

    L10n updates for: es
    From translation svn revision: 40238
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    
    Stats:
    52      18      source/locale/es/LC_MESSAGES/nvda.po
    6       0       user_docs/es/changes.t2t
    268     268     user_docs/es/userGuide.t2t
     3 files changed, 326 insertions(+), 286 deletions(-)

commit 9f5b1d353d494deaba0a78f5ecc1dc45871c704b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 4 00:05:20 2018 +1000

    L10n updates for: de
    From translation svn revision: 40238
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    
    Stats:
    42      7       source/locale/de/LC_MESSAGES/nvda.po
    39      39      user_docs/de/changes.t2t
    2       2       user_docs/de/userGuide.t2t
     3 files changed, 83 insertions(+), 48 deletions(-)

commit d16f1c8be74caa2092b414076bc30d58a9d426b8
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed May 2 08:28:27 2018 +1000

    Update authenticode certificate.

commit 1bb9a6d71935413652a5457cb9e49e19931ab9cb
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue May 1 05:06:02 2018 +1000

    Update what's new

commit 1efa20edc3e75d9642512f7198cb9c3097dd8389
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Tue May 1 05:05:09 2018 +1000

    SAPI5:  allow SAPI5 voices to be instantly interupted / paused by making use of the underlying ISPAudio interface. (#8174)

commit 58893e4bee303f772d00f442e23c792cfc230e94
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue May 1 05:03:33 2018 +1000

    Update what's new

commit 84d3e27b86f6bf5facff406c0ef2d787875ca98b
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Tue May 1 05:02:07 2018 +1000

    synthDriverHandler.setSynth: If on Windows 10 or higher, use OneCore speech by default, falling back to eSpeak if no voices are available. Previous Operating systems still use eSpeak by default. (#8176)

commit edfa7662585370de59d94f83b2d9b398c7f0d7ac
Author: nvdaes <nrm1977@gmail.com>
Date:   Mon Apr 30 20:40:54 2018 +0200

    Enhanced readability of script_moveMouseToNavigatorObject (#5937)

commit 21f90dbcea4d127c10a4a0c111e58b0710af7351
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Apr 30 12:58:15 2018 +1000

    Update what's new

commit df535ccbdaa544cd32e3bce577ade4198a95f50b
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Mon Apr 30 04:57:43 2018 +0200

    Change multiple settings dialogs into one category based dialog (#7302)
    
    * Implement a categories based settings dialog for configuration manager settings. This fixes #577. The following is changed:
    
    1. Added new classes:
            * MultiCategorySettingsDialog
            * NVDASettingsDialog
            * SettingsPanel
    
    2. Changed several settings dialogs to be settings panels, and included them in the new NVDASettingsDialog
    3. Added an apply button to the new dialog, and added the possibility to add these to other settings dialogs as well
    4. Added control+tab and control+shift+tab keyboard commands to switch between the various settings categories
    5. Added the possibility to easily override the orientation of the settings sizer in settings dialogs, since the settings sizer needs to be horizontal in a multi category dialog
    6. Changed several doc strings and translator comments to reflect the new situation
    7. Updated gui/__init__.py to reflect the new situation
    
    * Updated global commands for the new settings dialog, and removed some unintentional double space in this file
    
    * Show the edited profile in the NVDA settings title bar. Fixes #3644
    
    * Changed CONTROL+Tab code to use the % operator
    
    * Fix merge conflict and convert OCR dialog to panel
    
    * Fixed major crash when shutting down NVDA with the new settings dialog open
    
    * Review actions
    
    * Use wx GridbagSizer for the multi category settings dialog.
    
    This allows the categories treeview to be vertically aligned with the
    settings panel.
    
    Gave the settings panel a fixed size, and introduced a scrolling panel
    which will display a scroll bar when this size is exceeded.
    
    Removed the scrolling panel from the document formatting
    
    * Review actions
    
    For https://github.com/BabbageCom/nvda/pull/1
    Removed unneeded sizers.
    
    * Review actions regarding voice settings panel updates
    
    * more review actions regarding synthesizer changes
    
    * Fix wx warning and GUI stutter when loading
    
    There was a warning to do with the span used. The span should be
    (rowspan, colspan) where (1,1) is a single cell.
    
    There was a stutter when changing to certain (more complicated) settings
    panels. For instance the Braille settings or the document formatting
    settings. Calling `Freeze` and then `Thaw` addresses this.
    
    * Don't prompt the user to save a new synthesizer, just try to load when deactivating the panel
    
    * Split synthDriverHandler.setSynth into a new getSynthInstance method
    
    * Change TouchInteractionDialog into a panel
    
    * Combine voice and synth settings
    
    Both are added to a single panel called Speech
    
    * Review actions
    
    * Don't allow more than one instance of the synthesizer dialog
    
    * allowMultiInstance doc string
    
    * When a settings dialog is open, only allow the synthesizer selection dialog to open when initiated from the speech panel
    
    * Add BrailleDisplaySelection dialog
    
    * Rename onVoiceCommand to onSpeechCommand
    
    * Some reordering of super calls and clean ups
    
    * Proper focus when changing tabs with ctrl+tab
    
    * Put grouping around settings
    
    * Make return close the dialog, also when the tree is focused
    
    * Properly update current display and synth in the dialog when changing
    
    * Place display and synth in a static text, which is properly set as the description for the grouping
    
    * Update several GlobalCommands
    
    * Fix selection dialogs being destroyed even when there was an error in selecting a driver
    
    * Rename BrailleIoSettingsPanel to BrailleSettingsSubPanel
    
    * Translator comments, also call Layout on the panel when SetupScrolling is called to fix a bug in the braille panel
    
    * Accelerators, small regression fix when closing the dialog with escape
    
    * Very small, trivial change
    
    * Fix global commands backwards compat
    
    * More fixes to globalCommands backwards compatibility
    
    * User guide updates
    
    * Renamed and fixed some commands, thereby preserving backwards compatibility for scripts. Added NVDA+ctrl+a to braille display selection dialog
    
    * Make sure that opening unsupported panels is handled gracefully
    
    * Add select braille display gesture to user guide
    
    * Fix error when opening settings
    
    When opening settings with NVDA+n, p, s there is no longer an error.
    Improved the logging to make it easier to track down the cause of an
    error like this.
    
    * Fix dialog launching without a category
    
    * Revert reordering of call to super
    
    * app module to detect category changes
    
    Use the NVDA app module to detect changes to the name of the current
    category in the muilti category settings dialog. This replaces the group
    box around each settings panel. The groupbox added extra verbosity, and
    was visually unappealing.
    
    * Make sure that we set the label on the container as early as possible
    
    * Change multi category settings tree view into a list control
    
    * Hopefully fixed name changes not being announced for the container when the braille panel gets focus.
    
    * Preserve the category selection when pressing apply
    
    * Add one column to the categories list, as it is required to show up correctly
    
    * For onOk and onCancel, just destroy the panels without explicitly removing them from the list of panels. That list will be destroyed anyway. Also split a very long line into several ones.
    
    * Add missing translator comments
    
    * Use read-only text controls for synthesizer and braille display
    
    * Add more debug logging to the gui, which can be enabled with config.conf['debugLog']['gui']=True
    
    * Add more logging to the loading of the braille settings subpanel
    
    * Lazy init the settings panels (babbagecom/nvda#4)
    
    * Lazy init the settings panels
    
    * Use wx.ListItem Id to lookup panels
    
    Also fixed save / discard / apply
    
    * Clean up panel instance lists.
    
    * Review actions
    
    * Remove colon from groupings
    
    The synthesizer and braille display groupings do not need a colon.
    
    * KeyError should be IndexError
    
    When looking up an index on a list that does not exist.
    
    * Change accelerators for change buttons, update several copyright years
    
    * Announce editing profile changes when switching categories, if applicable
    
    * Work around announcement of initial category when undesired
    
    * Fix verbose announcement of config profile changes in the multi category settings dialog
    
    * Changes in preparation for display auto detection
    
    * Make the Multi Cat settings dialog resizable.
    
    When windows scaling is applied, the dialog is not big enough and was
    showing horizontal scroll bars. To remedy this the dialog has been made
    resizeable.
    
    * Populate the settings panel during makeSettings
    
    Rather than construct an empty settings panel and then update it
    (indirectly) via postInit when setting the selected category and
    relying on the listCtrl's event item focused binding, we explicitly
    construct it in make settings and save the method that should be used to
    set focus when postInit is called.
    
    * fix some spelling errors
    
    * Fix an error when changing profile.
    
    * Make configuration of SettingsDialog construction consistent
    
    resizable, hasApplyButton, and settingsSizerOrientation parameters are
    only used in the construction of the SettingsDialog, so they have been
    made __init__ params.
    
    * Make dialog title an unicode string
    
    * Do not call super for onSave on the TouchInteractionPanel
    
    * Fix case where using a category specific gesture to open the settings dialog did not properly focus the selected category in the categories list
    
    * Reload the synthesizer when pressing ok in the synthesizer selection dialog, just as we did before
    
    * No longer ignore the first occuring change of the currently edited profile
    
    * Use windows apis to get the scaling factor for highdpi settings.
    
    This is then used to set initial sizes in the dialogs.
    
    * Clean up some comments
    
    * Fix comments further.
    
    * Review actions
    
    * add better logging
    
    * Fix undersized synth/braille text boxes on scaled systems

commit 10694bea764150013f505e246bb3dee01cd1291f
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Apr 30 11:50:11 2018 +1000

    Update what's new

commit 758a1161b36127f65be6f14494eb78c16a1a6343
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Mon Apr 30 03:45:15 2018 +0200

    Improve working with message lists and calendars in Outlook (#7949)
    
    * Show replied/forwarded status for messages in Outlook
    
    * New, completely different implementation based on the value of the message's UIAGridRow object
    
    * Add getDateFormatEx and getTimeFormatEx to winKernel
    
    * Improvements to the message list and calendar date announcements
    
    * Fixed entire day announcements for calendar
    
    * Only announce appointments and slots as all day when they start and end at noon time
    
    * All day appointments are now called all day and no longer entire day appointments
    
    * Improved clarity of some comments
    
    * Decrease the likelyhood of announcing partial message classes when they ought to be silent.
    
    * No longer try to get flag information from a None selection object in the message list
    
    * Work around null pointer access value error
    
    * Ignore flags when the object model couldn't be accessed
    
    * Catch null com pointer access when fetching UIA children for UIA grid rows
    
    * When getting children to construct the name of an Outlook message, use the ContentViewCondition as tree filter instead of creating a property condition for content elements.
    
    * Revert relying on UIA for Attachment, importance and flag info
    
    * Properly get the value for grid rows, also when they are dynamic type mixed with tree view items (e.g. in conversation view)

commit e7f5366cdeef84d0e213c3a4b9e5de6fdc25bbee
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Apr 30 11:06:04 2018 +1000

    Update what's new

commit 3dcd74d6fe4355b8c552912f284a2a7c9882585f
Author: Derek Riemer <derek.riemer@colorado.edu>
Date:   Sun Apr 29 18:53:05 2018 -0600

    Add a appModule for taskMan, to fix some bugs in windows ten. (#8147)
    
    * Add a appModule for taskMan, to fix some bugs in windows ten.
    
    * Address review actions.
    
    rename to isChildOfRow

commit 0320485529078a8c090ee031e8bf11638a3b6a03
Merge: 76ca46750 1acbf69b5
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 27 00:06:14 2018 +1000

    Update translations.
    
    From translation svn revision: 40079

commit 1acbf69b551cde8e8fd89fbc4d422a9f5c985f71
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 27 00:06:14 2018 +1000

    L10n updates for: zh_TW
    From translation svn revision: 40079
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    18      18      source/locale/zh_TW/characterDescriptions.dic
    2       2       source/locale/zh_TW/symbols.dic
    5       2       user_docs/zh_TW/userGuide.t2t
     3 files changed, 25 insertions(+), 22 deletions(-)

commit cb435664696ca894eb894064ea1bc4a3481c27b5
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 27 00:06:09 2018 +1000

    L10n updates for: uk
    From translation svn revision: 40079
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    207     52      source/locale/uk/LC_MESSAGES/nvda.po
     1 file changed, 207 insertions(+), 52 deletions(-)

commit 4e83e788750be97bc086e16760c9c6a1d878ab47
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 27 00:06:08 2018 +1000

    L10n updates for: tr
    From translation svn revision: 40079
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    56      2       source/locale/tr/LC_MESSAGES/nvda.po
    6       2       source/locale/tr/symbols.dic
    4       0       user_docs/tr/changes.t2t
    5       2       user_docs/tr/userGuide.t2t
     4 files changed, 71 insertions(+), 6 deletions(-)

commit e6c8213301b14af253bfcb26706c83e163cba259
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 27 00:06:06 2018 +1000

    L10n updates for: ta
    From translation svn revision: 40079
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    54      2       source/locale/ta/LC_MESSAGES/nvda.po
    5       2       user_docs/ta/userGuide.t2t
     2 files changed, 59 insertions(+), 4 deletions(-)

commit 49de5381a79221206480496d28d86cc7d55057a3
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 27 00:05:57 2018 +1000

    L10n updates for: ro
    From translation svn revision: 40079
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    
    Stats:
    56      2       source/locale/ro/LC_MESSAGES/nvda.po
    5       1       user_docs/ro/changes.t2t
    3       0       user_docs/ro/userGuide.t2t
     3 files changed, 64 insertions(+), 3 deletions(-)

commit 8fbc38b9db45b848c1ae9ada7f73109ceae493f4
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 27 00:05:56 2018 +1000

    L10n updates for: pt_PT
    From translation svn revision: 40079
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    68      14      source/locale/pt_PT/LC_MESSAGES/nvda.po
    4       0       user_docs/pt_PT/changes.t2t
    6       3       user_docs/pt_PT/userGuide.t2t
     3 files changed, 78 insertions(+), 17 deletions(-)

commit 2213a1552d3b6c5449ac98692705b66ca21adcf1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 27 00:05:54 2018 +1000

    L10n updates for: pt_BR
    From translation svn revision: 40079
    
    Authors:
    Cleverson Casarin Uliana <clever97@gmail.com>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    4       0       user_docs/pt_BR/changes.t2t
    23      17      user_docs/pt_BR/userGuide.t2t
     2 files changed, 27 insertions(+), 17 deletions(-)

commit a8f683a41e9361e10533147f26cf4f54f42918d5
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 27 00:05:51 2018 +1000

    L10n updates for: nl
    From translation svn revision: 40079
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    5       2       user_docs/nl/userGuide.t2t
     1 file changed, 5 insertions(+), 2 deletions(-)

commit 03d4322bc76bd04bf8ab7e0d7500bdf73cf8f1ba
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 27 00:05:44 2018 +1000

    L10n updates for: ko
    From translation svn revision: 40079
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    
    Stats:
    44      0       user_docs/ko/changes.t2t
     1 file changed, 44 insertions(+)

commit 2d57e0c9b3a391394e9932d18bdb5b52baba443d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 27 00:05:42 2018 +1000

    L10n updates for: ja
    From translation svn revision: 40079
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    49      5       source/locale/ja/LC_MESSAGES/nvda.po
    5       2       user_docs/ja/userGuide.t2t
     2 files changed, 54 insertions(+), 7 deletions(-)

commit 4224914d6adba7f93a5c28a2e40ac01c2aa06015
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 27 00:05:36 2018 +1000

    L10n updates for: hr
    From translation svn revision: 40079
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Mario Percinic <mario.percinic@gmail.com>
    Tea Turkovic <tturkovi@gmail.com>
    
    Stats:
    56      2       source/locale/hr/LC_MESSAGES/nvda.po
    4       0       user_docs/hr/changes.t2t
    5       2       user_docs/hr/userGuide.t2t
     3 files changed, 65 insertions(+), 4 deletions(-)

commit 9d188daaa239fff610391fb560fa0feb3c0e99bf
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 27 00:05:33 2018 +1000

    L10n updates for: gl
    From translation svn revision: 40079
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    
    Stats:
    56      2       source/locale/gl/LC_MESSAGES/nvda.po
    4       0       user_docs/gl/changes.t2t
    5       2       user_docs/gl/userGuide.t2t
     3 files changed, 65 insertions(+), 4 deletions(-)

commit 9355ee98d9c5c094830f6342137526ee7ce93ef1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 27 00:05:31 2018 +1000

    L10n updates for: fr
    From translation svn revision: 40079
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    57      3       source/locale/fr/LC_MESSAGES/nvda.po
    6       6       user_docs/fr/changes.t2t
    5       5       user_docs/fr/userGuide.t2t
     3 files changed, 68 insertions(+), 14 deletions(-)

commit 22aebba09b7f050bfd4574943958d9b541ca1a26
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 27 00:05:29 2018 +1000

    L10n updates for: fi
    From translation svn revision: 40079
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    56      2       source/locale/fi/LC_MESSAGES/nvda.po
    4       0       user_docs/fi/changes.t2t
    177     174     user_docs/fi/userGuide.t2t
     3 files changed, 237 insertions(+), 176 deletions(-)

commit 0611f45d2d99bed9ebeb5a597479f61687c9ce03
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 27 00:05:27 2018 +1000

    L10n updates for: fa
    From translation svn revision: 40079
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    5       1       user_docs/fa/changes.t2t
     1 file changed, 5 insertions(+), 1 deletion(-)

commit fd59c9eaf635acd98d19b3e7c4cdb8ad4b225a65
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 27 00:05:25 2018 +1000

    L10n updates for: es
    From translation svn revision: 40079
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    
    Stats:
    58      4       source/locale/es/LC_MESSAGES/nvda.po
    4       0       user_docs/es/changes.t2t
    5       2       user_docs/es/userGuide.t2t
     3 files changed, 67 insertions(+), 6 deletions(-)

commit c6d6e72df356e3771db95d952234173c4cb2bef9
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 27 00:05:21 2018 +1000

    L10n updates for: de
    From translation svn revision: 40079
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    
    Stats:
    57      3       source/locale/de/LC_MESSAGES/nvda.po
    1       1       source/locale/de/symbols.dic
    6       3       user_docs/de/userGuide.t2t
     3 files changed, 64 insertions(+), 7 deletions(-)

commit 98dc303e90b8a56bf212022e89a411a654cd25af
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 27 00:05:15 2018 +1000

    L10n updates for: ca
    From translation svn revision: 40079
    
    Authors:
    Ruben Alcaraz <ruben.hangar1.8@gmail.com>
    Dr. Mireia Ribera <mireia.ribera@gmail.com>
    Santi Moese <santispock@gmail.com>
    Marina Salse Rovira <salse@ub.edu>
    
    Stats:
    213     53      source/locale/ca/LC_MESSAGES/nvda.po
     1 file changed, 213 insertions(+), 53 deletions(-)

commit 76ca4675029d1f1eeaf209db6310c9e6705950d0
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Apr 20 15:32:42 2018 +1000

    Update miscDeps to remove Alva and hims / syncBraille dlls. These are no longer needed as these displays are supported natively.

commit a6549adf5037b8a1f38cce8945d448f6730cb617
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Apr 20 15:13:06 2018 +1000

    Update miscDeps to remove SScons and comtypes which have been included as separate submodules for some time now.

commit 7bc782d21cd805eba845188c46ca0b38ee2df72e
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Apr 20 15:06:21 2018 +1000

    Update what's new

commit ba7716807273fdfff6a436df27f1ebbcbd7c4d27
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Fri Apr 20 15:05:58 2018 +1000

    Provide a tool to re-register particular COM interfaces that may become unregistered or broken by uninstallers, breaking platform accessibility (#8075)
    
    * Installer: re-register some common COM interfaces which commonly get  broken by bad uninstallers.
    
    * COMRegistrationFixes tool: add a backslash to the systemDrive. Also deremove some unused functions.
    
    * Add the COM Registrations Fixing tool to NVDA's Tools menu.
    
    * Add a warning dialog to the COM Registration Fixing tool when run manually from the Tools menu.
    
    * Add copyright header
    
    * Add a module docstring
    
    * Regedit is in c:\windows not c:\windows\system32.
    This happened to still work on x64 as there is a 32 bit copy of regedit in c:\windows\syswow64, and as NVDA itself is 32 bit it always found it.
    Fixes #8089
    
    * Address revew comments:
    * Update copyright in setup.py
    * Use the same reg file for registering oleacc proxy for both 64 and 32 bit, but just use a different version of regedit.exe for each.

commit 33a259d7ad0d71d4c1789ecba16d010bab125b13
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Apr 20 15:03:57 2018 +1000

    Update what's new

commit 4f2173079e5a3abab417617686f073b8392b95a3
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Fri Apr 20 07:03:40 2018 +0200

    Fix model specific gestures for Hims displays (#8100)
    
    * Fix model identifier for Hims Braille Edge and improve braille gesture identifier regex
    
    * Changed tests to reflect the improved regex

commit 37e11aecf1379b2bf57332a4b5a00d6c7206d39b
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Apr 20 15:01:52 2018 +1000

    Update what's new

commit 2977f5fd44e10511d2226b15865f528fe061b037
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Fri Apr 20 00:00:52 2018 -0500

    Explorer: do not announce 'unknown' when opening quick link menu and selecting items from it (Windows+X) (#8138)
    
    * Explorer: do not announce 'unknown' when opening quick link menu (Windows+X). Re #8137.
    
    Windows with the class name of LauncherTipWnd and ApplicationManager_DesktopShellWindow fires focus events, causing NVDA to announce 'unknown' when opening quick link menu (Windows+X) and selecting an item from this menu. Suppress this if possible.
    
    * Explorer: clarify comments. Re #8137.

commit 17d7293438f82425379de0e2a314ed8eed8b5652
Author: Takuya Nishimoto <nishimotz@gmail.com>
Date:   Fri Apr 20 13:59:07 2018 +0900

    #7673 log.debugWarning should not raise UnicodeDecodeError when WindowsError occurs (#8141)

commit 4ea2d12dd7d3ed7edd9ea305edd9b2d7772b6b9d
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Apr 20 14:44:01 2018 +1000

    Update what's new

commit 653db57ce3322c35701dfac7cfc0795350a8599c
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Apr 20 14:43:24 2018 +1000

    Update miscDeps to remove HandyTech braille files which are no longer needed

commit d41e7cd94bae59b5d1f8060841a7589b6e5efc2a
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Fri Apr 20 06:33:15 2018 +0200

    Several improvements for the handy tech driver (#8016)
    
    * Support time synchronization and fix reconnecting for bluetooth.
    
    * Basic preparation for #7452
    
    * Revert "Drop support for the Braillino for now"
    
    This reverts commit fdd9c410dee672a21d15a5a4be36a60db225b4cc.
    
    * Basic support for old protocol
    
    * More work on old protocol
    
    * Support the old protocol
    
    * cleanup
    
    * Python3 compat
    
    * Comments
    
    * Use old protocol for easy braille
    
    * Fixes
    
    * Refactor onReceive
    
    * Added support for Braillino and the old protocol
    
    * Hopefully, some changes that ease python 3 porting in future
    
    * Use old protocol for easy braille
    
    * Last refactoring, including onReceive. Old protocol input is now dstable
    
    * Remove the com server
    
    * Review action
    
    * Use Old Protocol for Braille Wave
    
    * Catch ValueError for Handy Tech time sync datetime.datetime

commit 27edca985aedf9e33f78c730c526000357725c73
Merge: 110b27179 aa22f069b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 20 00:06:09 2018 +1000

    Update translations.
    
    From translation svn revision: 39957

commit aa22f069b990bb67b18862a030ef54b1ebf98573
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 20 00:06:09 2018 +1000

    L10n updates for: zh_TW
    From translation svn revision: 39957
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    4       4       source/locale/zh_TW/LC_MESSAGES/nvda.po
     1 file changed, 4 insertions(+), 4 deletions(-)

commit 08961ee9d11aa5dbf343aa2b71c01c4abb6e4ac8
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 20 00:05:59 2018 +1000

    L10n updates for: sl
    From translation svn revision: 39957
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    1       1       user_docs/sl/userGuide.t2t
     1 file changed, 1 insertion(+), 1 deletion(-)

commit bc1d754ef6c48de3de6173e4e3b11da8629d3b12
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 20 00:05:56 2018 +1000

    L10n updates for: ru
    From translation svn revision: 39957
    
    Authors:
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    45      0       user_docs/ru/changes.t2t
     1 file changed, 45 insertions(+)

commit 8f2619773f217d837b5de553e7e7c6b31493fefe
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 20 00:05:34 2018 +1000

    L10n updates for: hr
    From translation svn revision: 39957
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Mario Percinic <mario.percinic@gmail.com>
    Tea Turkovic <tturkovi@gmail.com>
    
    Stats:
    3       3       source/locale/hr/LC_MESSAGES/nvda.po
    6       2       source/locale/hr/symbols.dic
    23      6       user_docs/hr/changes.t2t
    14      8       user_docs/hr/userGuide.t2t
     4 files changed, 46 insertions(+), 19 deletions(-)

commit 6ed86fb86a032bf74fbb6c72cdeda86fbf17c34b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 20 00:05:29 2018 +1000

    L10n updates for: fr
    From translation svn revision: 39957
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    5       5       source/locale/fr/LC_MESSAGES/nvda.po
    48      24      user_docs/fr/userGuide.t2t
     2 files changed, 53 insertions(+), 29 deletions(-)

commit 559f2dbeebb1745d3d7df4f232d5cbd0010efdfa
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 20 00:05:20 2018 +1000

    L10n updates for: de
    From translation svn revision: 39957
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    
    Stats:
    156     6       source/locale/de/LC_MESSAGES/nvda.po
    16      3       user_docs/de/changes.t2t
     2 files changed, 172 insertions(+), 9 deletions(-)

commit 7d65800940578f04495c4c825c0a5a5f0a8e56e7
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 20 00:05:17 2018 +1000

    L10n updates for: da
    From translation svn revision: 39957
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    362     285     source/locale/da/LC_MESSAGES/nvda.po
     1 file changed, 362 insertions(+), 285 deletions(-)

commit 110b27179dc5f968a160f708bb68bde06ad30f80
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Apr 16 09:30:40 2018 +1000

    Update what's new.

commit 61c9f91183dd50f8a3efb47714668711d09e414e
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Mon Apr 16 01:27:10 2018 +0200

    Braille input: emulate keys outside text content and support combining input with modifiers (#7843)
    
    * Use keyboard emulation for braille input when outside text controls. This allows backwards quick navigation using a capital sign. Support uncontracted partial translation outside text content
    
    * Add toggling to braille input and allow creating keyboard input gestures from a name containing NVDA
    
    * Basic support for combining modifiers with braille input
    
    * Output error for unsupported input
    
    * Integrated braille input modifiers in the key emulation system for BrailleDisplayGestures
    
    * Added doc strings
    
    * Support backward quick navigation for real this time
    
    * Bind new toggle scripts to Eurobraille gestures

commit 812040150dfd101847ad7aeedc5b4e6c941680a0
Merge: a36460538 b68bc726a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 13 00:06:08 2018 +1000

    Update translations.
    
    From translation svn revision: 39911

commit b68bc726a1f4c7115e44a774ab70f04c7ae17824
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 13 00:06:07 2018 +1000

    L10n updates for: zh_TW
    From translation svn revision: 39911
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    33      33      source/locale/zh_TW/characterDescriptions.dic
    303     193     user_docs/zh_TW/userGuide.t2t
     2 files changed, 336 insertions(+), 226 deletions(-)

commit b09bd36544d07b19fcf9d6d0293ae7a203dd08b8
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 13 00:05:52 2018 +1000

    L10n updates for: ro
    From translation svn revision: 39911
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    
    Stats:
    2       2       user_docs/ro/changes.t2t
    11      9       user_docs/ro/userGuide.t2t
     2 files changed, 13 insertions(+), 11 deletions(-)

commit cb44e3639c336e90e0c822b1fb99d93eaf34bab1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 13 00:05:51 2018 +1000

    L10n updates for: pt_PT
    From translation svn revision: 39911
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    154     50      source/locale/pt_PT/LC_MESSAGES/nvda.po
    45      0       user_docs/pt_PT/changes.t2t
    58      28      user_docs/pt_PT/userGuide.t2t
     3 files changed, 257 insertions(+), 78 deletions(-)

commit b466b6b3bd502ec7a29a0bfc8ea20c334d342a53
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 13 00:05:46 2018 +1000

    L10n updates for: nl
    From translation svn revision: 39911
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    5       1       user_docs/nl/userGuide.t2t
     1 file changed, 5 insertions(+), 1 deletion(-)

commit a11ddfae1a66478cb0c278a8cad2c7d2fa145c21
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 13 00:05:41 2018 +1000

    L10n updates for: mk
    From translation svn revision: 39911
    
    Authors:
    zvonimir stanecic <9a5dsz@gozaltech.org>
    Kiko Lazarev <kristijan.lazarev@gmail.com>
    
    Stats:
    436     225     source/locale/mk/LC_MESSAGES/nvda.po
     1 file changed, 436 insertions(+), 225 deletions(-)

commit c67d571f6e0acdef7499d173ed1fd21c3080d417
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 13 00:05:32 2018 +1000

    L10n updates for: hr
    From translation svn revision: 39911
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Mario Percinic <mario.percinic@gmail.com>
    Tea Turkovic <tturkovi@gmail.com>
    
    Stats:
    18      18      source/locale/hr/LC_MESSAGES/nvda.po
     1 file changed, 18 insertions(+), 18 deletions(-)

commit f7b46b10952654e3efd66b5d712c79bf471ebcd4
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 13 00:05:27 2018 +1000

    L10n updates for: fr
    From translation svn revision: 39911
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    6       3       user_docs/fr/userGuide.t2t
     1 file changed, 6 insertions(+), 3 deletions(-)

commit fa25d662a292c8c1f7371c6de0d18e1315c84f46
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 13 00:05:18 2018 +1000

    L10n updates for: de
    From translation svn revision: 39911
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    
    Stats:
    13      8       source/locale/de/symbols.dic
     1 file changed, 13 insertions(+), 8 deletions(-)

commit 4740ce9d00333f3eebe35a5e60beb1da08ca020e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 13 00:05:10 2018 +1000

    L10n updates for: ar
    From translation svn revision: 39911
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    19      0       user_docs/ar/changes.t2t
     1 file changed, 19 insertions(+)

commit a3646053867a5bc66681baab33b281f87dc21022
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Wed Apr 11 04:02:14 2018 +0200

    Build the NVDA Controller client for release builds (PR #8159)

commit 95eb52d60503dd7a2f5767df258382a9e7c8aded
Merge: 4ccb2ab17 3da0c5ee7
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 6 00:06:25 2018 +1000

    Update translations.
    
    From translation svn revision: 39881

commit 3da0c5ee70055eef5b4b97cc6795d7f175a878da
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 6 00:06:23 2018 +1000

    L10n updates for: zh_TW
    From translation svn revision: 39881
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    103     36      source/locale/zh_TW/LC_MESSAGES/nvda.po
     1 file changed, 103 insertions(+), 36 deletions(-)

commit c067a55de580e3655b51aaadb69b9c8eeb84c31a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 6 00:06:17 2018 +1000

    L10n updates for: tr
    From translation svn revision: 39881
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    101     34      source/locale/tr/LC_MESSAGES/nvda.po
    18      0       user_docs/tr/changes.t2t
    12      6       user_docs/tr/userGuide.t2t
     3 files changed, 131 insertions(+), 40 deletions(-)

commit 17d19af53d7c4dc2837572a08ec5d71ab4afb580
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 6 00:06:15 2018 +1000

    L10n updates for: ta
    From translation svn revision: 39881
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    98      34      source/locale/ta/LC_MESSAGES/nvda.po
    6       2       source/locale/ta/symbols.dic
    46      16      user_docs/ta/userGuide.t2t
     3 files changed, 150 insertions(+), 52 deletions(-)

commit b394b3b9cc8c04b606663121e18cb68ede8bc28f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 6 00:06:12 2018 +1000

    L10n updates for: sr
    From translation svn revision: 39881
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    154     50      source/locale/sr/LC_MESSAGES/nvda.po
    42      0       user_docs/sr/changes.t2t
    44      14      user_docs/sr/userGuide.t2t
     3 files changed, 240 insertions(+), 64 deletions(-)

commit 1ccbcd00fb290d8e7ad18adc78361f12a47c1997
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 6 00:06:11 2018 +1000

    L10n updates for: sl
    From translation svn revision: 39881
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    101     35      source/locale/sl/LC_MESSAGES/nvda.po
    457     325     user_docs/sl/userGuide.t2t
     2 files changed, 558 insertions(+), 360 deletions(-)

commit 3896c43250be8b17ca9d2e6eef5788d377711ada
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 6 00:06:07 2018 +1000

    L10n updates for: ru
    From translation svn revision: 39881
    
    Authors:
    Ruslan Kolodyazhni <eye0@rambler.ru>
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    107     40      source/locale/ru/LC_MESSAGES/nvda.po
    8       0       source/locale/ru/gestures.ini
    7       2       source/locale/ru/symbols.dic
    63      33      user_docs/ru/userGuide.t2t
     4 files changed, 185 insertions(+), 75 deletions(-)

commit c43eed969d6f15733969ae5f5f73af033c5805e9
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 6 00:06:04 2018 +1000

    L10n updates for: ro
    From translation svn revision: 39881
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    
    Stats:
    100     33      source/locale/ro/LC_MESSAGES/nvda.po
    3       0       source/locale/ro/symbols.dic
    19      1       user_docs/ro/changes.t2t
    5       1       user_docs/ro/userGuide.t2t
     4 files changed, 127 insertions(+), 35 deletions(-)

commit 9c20d4678fa0da4dd0c4401ed67d55a9f05895bb
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 6 00:06:01 2018 +1000

    L10n updates for: pt_BR
    From translation svn revision: 39881
    
    Authors:
    Cleverson Casarin Uliana <clever97@gmail.com>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    8       4       source/locale/pt_BR/symbols.dic
    19      1       user_docs/pt_BR/changes.t2t
    2657    2314    user_docs/pt_BR/userGuide.t2t
     3 files changed, 2684 insertions(+), 2319 deletions(-)

commit 21fe6bd696f2ad5d897b8e01e040b19767956b09
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 6 00:05:57 2018 +1000

    L10n updates for: nl
    From translation svn revision: 39881
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    6       4       user_docs/nl/userGuide.t2t
     1 file changed, 6 insertions(+), 4 deletions(-)

commit 68459be37f018e5571512616d1f4330dcf5e08ad
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 6 00:05:48 2018 +1000

    L10n updates for: ja
    From translation svn revision: 39881
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    85      45      source/locale/ja/LC_MESSAGES/nvda.po
    48      18      user_docs/ja/userGuide.t2t
     2 files changed, 133 insertions(+), 63 deletions(-)

commit 621d628c14e6a6a1778d5a77c7877a4cd1f37edf
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 6 00:05:45 2018 +1000

    L10n updates for: it
    From translation svn revision: 39881
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    104     33      source/locale/it/LC_MESSAGES/nvda.po
     1 file changed, 104 insertions(+), 33 deletions(-)

commit 3b99b61421fcd44b16b45025b67628b155fb1148
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 6 00:05:41 2018 +1000

    L10n updates for: hr
    From translation svn revision: 39881
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Mario Percinic <mario.percinic@gmail.com>
    Tea Turkovic <tturkovi@gmail.com>
    
    Stats:
    103     36      source/locale/hr/LC_MESSAGES/nvda.po
     1 file changed, 103 insertions(+), 36 deletions(-)

commit 995718c84a79fb0b32873e3d5a96d9f4b8fca416
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 6 00:05:38 2018 +1000

    L10n updates for: gl
    From translation svn revision: 39881
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    
    Stats:
    102     34      source/locale/gl/LC_MESSAGES/nvda.po
    6       2       source/locale/gl/symbols.dic
    19      1       user_docs/gl/changes.t2t
    12      6       user_docs/gl/userGuide.t2t
     4 files changed, 139 insertions(+), 43 deletions(-)

commit 637a36e76c7414fdc1e545acf02f3a56fc14c7f2
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 6 00:05:35 2018 +1000

    L10n updates for: fr
    From translation svn revision: 39881
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    103     33      source/locale/fr/LC_MESSAGES/nvda.po
    18      0       user_docs/fr/changes.t2t
    4       3       user_docs/fr/userGuide.t2t
     3 files changed, 125 insertions(+), 36 deletions(-)

commit 4dfa2ca3b535aa830373c1e06aa2a26f3d7be3aa
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 6 00:05:33 2018 +1000

    L10n updates for: fi
    From translation svn revision: 39881
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    100     33      source/locale/fi/LC_MESSAGES/nvda.po
    8       7       source/locale/fi/symbols.dic
    18      1       user_docs/fi/changes.t2t
    16      10      user_docs/fi/userGuide.t2t
     4 files changed, 142 insertions(+), 51 deletions(-)

commit 4e218d82aa36ab37bbec45f6c62efa4aa80f4560
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 6 00:05:31 2018 +1000

    L10n updates for: fa
    From translation svn revision: 39881
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    17      0       user_docs/fa/changes.t2t
     1 file changed, 17 insertions(+)

commit 00b877151597fe3fb27f33b05accad0b65f7dbe4
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 6 00:05:29 2018 +1000

    L10n updates for: es
    From translation svn revision: 39881
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    
    Stats:
    103     34      source/locale/es/LC_MESSAGES/nvda.po
    6       2       source/locale/es/symbols.dic
    18      0       user_docs/es/changes.t2t
    12      6       user_docs/es/userGuide.t2t
     4 files changed, 139 insertions(+), 42 deletions(-)

commit ef37dfcfa3f7867a81bf55bb5b1f04557c24d41f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 6 00:05:25 2018 +1000

    L10n updates for: de
    From translation svn revision: 39881
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    
    Stats:
    105     38      source/locale/de/LC_MESSAGES/nvda.po
    13      7       user_docs/de/userGuide.t2t
     2 files changed, 118 insertions(+), 45 deletions(-)

commit 431756fd492b07a9a66248c188df82bfc5d063dd
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 6 00:05:21 2018 +1000

    L10n updates for: da
    From translation svn revision: 39881
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    385     395     source/locale/da/LC_MESSAGES/nvda.po
    19      5       user_docs/da/changes.t2t
    91      85      user_docs/da/userGuide.t2t
     3 files changed, 495 insertions(+), 485 deletions(-)

commit 14f0c42aa5d88699b81d83c3736ce0c89d246f7f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 6 00:05:18 2018 +1000

    L10n updates for: ckb
    From translation svn revision: 39881
    
    Authors:
    Ali Ustek <aliustek@gmail.com>
    Patrick Galasso <Patrice.galasso@gmail.com>
    Jwanro Mustafa <jwanroabdula@hotmail.com>
    Kosrat D Ahmad <kosrat.d.ahmad@gmail.com>
    
    Stats:
    10293   0       source/locale/ckb/LC_MESSAGES/nvda.po
    32      0       source/locale/ckb/characterDescriptions.dic
    186     0       source/locale/ckb/symbols.dic
     3 files changed, 10511 insertions(+)

commit 4ccb2ab1715dd2671d487a08796877dc31a52dc5
Merge: 439e963ba 18d091655
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 30 00:06:12 2018 +1000

    Update translations.
    
    From translation svn revision: 39721

commit 18d091655d7c2acf80e6e0fdf268ba792931e37b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 30 00:06:12 2018 +1000

    L10n updates for: zh_TW
    From translation svn revision: 39721
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    1       1       source/locale/zh_TW/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 9ff9a556d3925a14e0b02f25635a618b4d0d6bd4
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 30 00:05:44 2018 +1000

    L10n updates for: ky
    From translation svn revision: 39721
    
    Authors:
    Bermet Zhakypbekova <bermet.zhakypbekova@gmail.com>
    
    Stats:
    32      0       source/locale/ky/characterDescriptions.dic
    182     0       source/locale/ky/symbols.dic
     2 files changed, 214 insertions(+)

commit d156e9f06b45c0d5bccbec26c81ffaffb314cf8b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 30 00:05:43 2018 +1000

    L10n updates for: ko
    From translation svn revision: 39721
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    
    Stats:
    9       8       source/locale/ko/LC_MESSAGES/nvda.po
    4       0       user_docs/ko/changes.t2t
     2 files changed, 13 insertions(+), 8 deletions(-)

commit 114fd7c7155c814ed654b68b88b29dce4053c86c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 30 00:05:41 2018 +1000

    L10n updates for: ja
    From translation svn revision: 39721
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    56      20      source/locale/ja/LC_MESSAGES/nvda.po
     1 file changed, 56 insertions(+), 20 deletions(-)

commit 736724c6fffbefc1e062c07cd72f46500e6b307c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 30 00:05:20 2018 +1000

    L10n updates for: de
    From translation svn revision: 39721
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    
    Stats:
    4       4       user_docs/de/changes.t2t
    3       3       user_docs/de/userGuide.t2t
     2 files changed, 7 insertions(+), 7 deletions(-)

commit 2630f264b66706279bca27a18caaed8a364c2689
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 30 00:05:17 2018 +1000

    L10n updates for: da
    From translation svn revision: 39721
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    55      19      source/locale/da/LC_MESSAGES/nvda.po
    11      34      user_docs/da/changes.t2t
    36      12      user_docs/da/userGuide.t2t
     3 files changed, 102 insertions(+), 65 deletions(-)

commit 3fc1c700b9d8156c21a5a8a89093a2c2be5aa792
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 30 00:05:16 2018 +1000

    L10n updates for: cs
    From translation svn revision: 39721
    
    Authors:
    Martina Letochova <letochova@seznam.cz>
    
    Stats:
    51      20      source/locale/cs/LC_MESSAGES/nvda.po
     1 file changed, 51 insertions(+), 20 deletions(-)

commit 439e963ba9b7eb09fbed69242fac4828b002bc6c
Author: Bram Duvigneau <bram@bramd.nl>
Date:   Wed Mar 28 22:53:55 2018 +0200

    Fix reading tables in LibreOffice (#8125) by catching NotImplementedError for row and column spans in compound documents (#8126)

commit c6b573d2100bb9b023111688b341c2139e4cae0b
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Mar 28 17:24:22 2018 +1000

    Update What's new

commit b3daebb6cab885bc510de7105b0af691d80e6819
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Wed Mar 28 06:04:24 2018 +0200

    Introduse the ability to postpone a downloaded update #4263 (#6355)
    
    * initial work on postponeing updates
    
    * Removed undesired code from the source and userdocs and added some copyright notices
    
    * Review actions
    
    * Some major code updates to make this actually work, hopefully
    
    * Fixed translator comment
    
    * Some more fixes, still some testing to be done
    
    * Support updating of portable copies
    
    * Review actions
    
    * More review actions
    
    * Actions for user guide
    
    * Fixed issue where a right paren was placed at the wrong position
    
    * Properly evaluate whether to show or hide the pending updates menu item on every time the menu is opened. Binding this evaluation to the item itself made the item never to show up.
    
    * Don't use the file variable name when looping through possible old updates. This broke the loading of the state file. Added state file loading debug logging while at it.
    
    * Properly destroy the UpdateResultDialog when installing a postponed update
    
    * When updating a portable copy, run NVDA with the -m command line argument
    
    * Fix KeyError on updating
    
    * make sure that the update state file will be updated to contain pending update info
    
    * When updating a portable copy, place paths that are provided as command line params between quotes to deal with paths containing spaces
    
    * Fix crash after restart with a postponed update
    
    * No longer add removeFile to the update state, as it is used nowhere
    
    * Call prePopup before raising the UpdateAskInstallDialog and make it modal
    
    * Use runScriptModalDialog for the UpdateAskInstallDialog
    
    * Clear the don't remind version when postponing an update. If we do not do this, a user will never be reminded about a postponed update automatically at all

commit 0d55be1ac8d2b5f47f599b45b03badef4b764b59
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Mar 28 13:47:36 2018 +1000

    Update What's new

commit 9dd4836d0bd1bd821c199d033ca956cb195f7a5c
Author: Davy Kager <dkager@users.noreply.github.com>
Date:   Wed Mar 28 05:44:45 2018 +0200

    Add "report formatting for text under braille cell" command (#7189)
    
    * Add a "report formatting info for text under this braille cell" command.
    
    * Assign the Alva BC6 secondary cursor routing keys to the new report formatting command.
    
    * Update copyrights.
    
    * Update user guide for the new Alva BC6 key assignment.
    
    * Also use the new report formatting braille command in both Papenmeier drivers.
    This removes their "route to and report formatting" behavior. Instead, it now only reports formatting without routing the cursor.
    
    * Address review actions.
    
    * Update user docs.
    
    * Add the report text formatting under braille cell command to the EuroBraille displays.
    
    * Revert browseable message for the report text formatting under braille cell command.
    
    * Incorporate PR #7990.
    
    * Add translator comment

commit 99c3ca66a2ef91b729f6ff5a91ac4dbb712e099d
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Mar 28 13:43:17 2018 +1000

    Update What's new

commit 93082e3794d1f9e9c0cf07368ec1d28f04bc8f50
Author: Davy Kager <dkager@users.noreply.github.com>
Date:   Wed Mar 28 05:41:37 2018 +0200

    Map PUA bullets to Unicode in Word (#6778)
    
    * Adding Private Unicode Area to Unicode map for Bullet character
    Adding few bullet types that word uses.
    
    * Clean up PR by @nvda-india:
    * Remove U+F0B7 PUA symbol from symbol dictionary.
    * Reorder and clean up the mapPUAToUnicode dict.
    * More consistent code style in _normalizeFormatField().
    * Update U+F0E8 to use the same mapping as Word uses when saving to plain text.
    * Update U+F0FC based on http://www.alanwood.net/demos/wingdings.html.
    * Update description for U+21E8 to more closely match the Unicode name.
    * Add U+F0A7, used for bullets on level 3,
      based on https://en.wikipedia.org/wiki/Symbol_(typeface)#Encoding.
    
    * Review actions.

commit 4364e7219159c414380f4140876efcaf18b9cad7
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Mar 28 13:37:08 2018 +1000

    Update What's new

commit c575478fddc5640c2c8a85211a85233bd310e93e
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Wed Mar 28 05:31:37 2018 +0200

    Update Liblouis to version 3.5.0 (#7839)
    
    * * No longer use liblouis pass1only by default
    * Update liblouis to 3.4.0
    * Add new Lithuanian 6 dot braille table and rename the existing Lithuanian table to Lithuanian 8 dot in the interface
    
    * Added unit test for braille table existence
    
    * Added a unit test to test whether all renamed braille tables are part of the actual tables list
    
    * Include Romanian braille table
    
    * Update Liblouis to v3.4.1-pre1
    
    * Review action
    
    * Remove pass1only support
    
    * Reflect liblouis changes with regard to Mongolian
    
    * Added Ukrainian braille table
    
    * Update submodule to 3.5.0 final
    
    * Update readme to reflect liblouis 3.5
    
    * Treat Mongolean grade 2 as contracted
    
    * Removed French tables and added them to renamedTables as suggested by liblouis
    
    * Fix duplicate method doc string for unit test
    
    * Fix inconsistent case in French grade 2 table description

commit 1bdbfcbbb85ab3870c5e0a04b2988dc5375bd5ac
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Mar 28 13:25:25 2018 +1000

    Update What's new

commit 9134677da01f8cf26ff1786633092a5ab4340868
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Mar 28 13:22:35 2018 +1000

    Ensure Onecore synthDriver still loads when the configured voice is missing  (#7999)
    
    * languageHandler: split out the code that fetches the user's Windows language from setLanguage into a new getWindowsLanguage function so that it can be called separately.
    
    * Onecore synthDriver: Ensure it does not fail to load if the configured voice has been uninstalled. Also majorly speed up changing voices.
    Specifically:
    * When fetching the list of voices from Onecore speech, also get the language for each voice.
    * Choose the best default voice on initialization, trying to match the user's Windows language as best as possible. If this fails, just choose the first valid voice it can find.
    * Validate and filter the list of available voices as early as possible. This ensures that available voices are not fetched more than once, as the actual call to get the voices from Onecore can sometimes take up to 600 ms or more. thus this was majorly slowing down changing voices.
    
    * Address review actions.

commit b623256b34384dcd07450e7f42fd450f9c1f00d3
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Mar 28 13:12:16 2018 +1000

    Update What's new

commit 35c08405d1ea18f460517352550d0ebc587169d3
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Tue Mar 27 20:10:30 2018 -0700

    Introduce IUIAutomation5 interface and ability to announce notifications in Windows 10 Fall Creators Update and later (#8045)
    
    * UIA: support IUIAutomation5 so notification event tracking can be supported. Re #8009.
    
    Also includes #7984: in Windows 10 Version 1709 (Fall Creators Update), UIA notification event is introduced for the benefit of screen readers so they can announct needed text. This is part of UIA 5 interface, which NVDA does not support yet.
    The UIA notification event accepts additional parameters such as notification kind, notification processing constant and activit ID. This is useful for controlling how things should be announced and when. For now, the handler will do nothing.
    Also, when initializing UIA handler, use UIA 5, and then fall back to UIA 4.
    
    * UIA notification event: treat it the same as any other event except for additional kwargs for event execution. Re #8009.
    
    Treat UIA notification event just like others except for two things:
    * A new UIA_notification event will be fired.
    * The new event will populate kwargs based on arguments for the actual event handling function (sender, displayString, etc.). This means app modules, global plugins, objects and others must include these kwargs when defining this event.
    
    * UIA interface: obtain appropriate IUIAutomation interface based on Windows release. Re #8009.
    
    A new function named getIUIAInterface (along with a private companion for Windows 10) is introduced to obtain highest supported IUIAutomation interface. Depending on Windows release, it'll return various interfaces. In case of Windows 10, a companion function will return appropriate interface based on build ranges.
    
    * UIA notification event: add the handler if IUIAutomation5 is in use. Re #7984.
    
    If IUIAutomation5 is in use, add notificaiton event handler, otherwise COM error is thrown.
    Also, instead of relying solely on Python MRO to retrieve UIA interface, save the string somewhere for reference purposes and for future use.
    
    * UIA notification event: camel case for consistency.
    
    * NVDAObjects/UIA: handle UIA notification event from object level. Re #8009.
    
    The base implementation for UIA notification handler will just speak whatever notification it receives. Subclasses are more than welcome to add further processing routines.
    
    * UIA interface: query interface from version 5 downwards. Re #8009.
    
    Comments from @LeonardDer and @MichaelDCurran: build ranges aren't useful, subsequently proven to be true. As an alternative, query interfaces from newest to oldest, which does allow NVDA to use IUIAutomation5 interface from source.
    Also, this means getIUIAInterface function is no longer necessary.
    
    * UIA support: check isinstance, no more IUIAVersion string. Re #8009.
    
    Commented by @LeonardDer and @MichaelDCurran: check isinstance instead of keeping an eye on IUIA interface string.
    
    * UIA notification: do not include sender argument. Re #8009.
    
    Reviewed by @MichaelDCurran (NV Access): sender argument is redundant.
    
    * UIA notification: do not announce notifications from background apps. Re #8045.

commit f6c88be4541c4d6ed14a563987c80a204d99fddf
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Mar 28 13:07:00 2018 +1000

    Ensure NVDA can switch from browseMode to focus mode in Microsoft word when using UIA and braille. (#8046)
    
    * Ensure NVDA can switch from browseMode to focus mode in Microsoft word when using UIA and braille.
    Specifically:
    * UIATextInfo constructor: sometimes it is impossible to get position_first due to buggy UIA implementation  (E.g. A chart  in a Word document). Make sure to catch COMErrors and raise RuntimeError as expected by calling code.
    * review.getObjectPosition: Sometimes fetching position_first on a TextInfo could fail (e.g. a chart in Microsoft Word). Ensure we still get something usable back by falling back to a generic NVDAObjectTextInfo which will always support position_first.
    * UIABrowseMode's UIAControlQuickNavIterator: when  direction is "up", handle the case where the found element is not actually represented in the document's text and ignore it, and also keep yielding elements until the document is reached, just like all the other directions. Specifically, on a chart in Microsoft word,  we may find a focusable element which isn't represented in the document, going up further does find something useful though.
    * UIA wordDocument's getTextwithFields: handle the case where there are no fields at all (probably a collapsed range). This addresses the issue where  exceptions are raised because the page number can not be properly set on a formatField.
    
    * UIABrowseMode:  review action: split up an if check.

commit 2938a424fbf63340d4a18c3f8b84edd1869180ab
Merge: a2a443e05 22a57800a
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Mar 28 07:57:47 2018 +1000

    Merge branch 'rc'

commit 22a57800a21203bb12aac3bc84239e10cd12e9c0
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Mar 28 07:34:37 2018 +1000

    Update what's new

commit f70aefa60f5f7cd4ff0c481826d25a4c10403741
Author: James Teh <jamie@jantrid.net>
Date:   Thu Mar 15 14:13:35 2018 +1000

    OneCore voices driver: Initialize audio playback using the parameters from the wave header provided by the synthesizer, rather than using hard-coded values.
    Fixes #8082
    
    We previously hard-coded all of the audio parameters.
    However, the sample rate seems to have changed in Windows 10 build 17120.

commit a2a443e050949d1b9534a018f89e9afc9075db4d
Merge: 9c2a86039 15f1a0e63
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 23 00:06:16 2018 +1000

    Update translations.
    
    From translation svn revision: 39646

commit 15f1a0e63b48355283756b412469f4d9ad9c131f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 23 00:06:15 2018 +1000

    L10n updates for: zh_TW
    From translation svn revision: 39646
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    66      30      source/locale/zh_TW/LC_MESSAGES/nvda.po
     1 file changed, 66 insertions(+), 30 deletions(-)

commit fcc6a84bd552749a2588627b0e6ec363e6f539be
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 23 00:06:10 2018 +1000

    L10n updates for: tr
    From translation svn revision: 39646
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    4       4       source/locale/tr/LC_MESSAGES/nvda.po
    1       0       user_docs/tr/changes.t2t
    26      4       user_docs/tr/userGuide.t2t
     3 files changed, 31 insertions(+), 8 deletions(-)

commit 228929bd543718170555271c4f23f27d494e111e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 23 00:06:08 2018 +1000

    L10n updates for: ta
    From translation svn revision: 39646
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    51      20      source/locale/ta/LC_MESSAGES/nvda.po
     1 file changed, 51 insertions(+), 20 deletions(-)

commit 0fb53bcbf22a081356c55bd45f60bcad60c20095
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 23 00:06:02 2018 +1000

    L10n updates for: ru
    From translation svn revision: 39646
    
    Authors:
    Ruslan Kolodyazhni <eye0@rambler.ru>
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    52      16      source/locale/ru/LC_MESSAGES/nvda.po
     1 file changed, 52 insertions(+), 16 deletions(-)

commit a36666e1aa0d76bc8a21d615c2d59ea4616558b4
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 23 00:05:59 2018 +1000

    L10n updates for: ro
    From translation svn revision: 39646
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    
    Stats:
    5       5       source/locale/ro/LC_MESSAGES/nvda.po
    2       1       user_docs/ro/changes.t2t
    28      5       user_docs/ro/userGuide.t2t
     3 files changed, 35 insertions(+), 11 deletions(-)

commit 338f61976719464b3218ab984672e9d186850750
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 23 00:05:56 2018 +1000

    L10n updates for: pt_BR
    From translation svn revision: 39646
    
    Authors:
    Cleverson Casarin Uliana <clever97@gmail.com>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    1       0       user_docs/pt_BR/changes.t2t
     1 file changed, 1 insertion(+)

commit 8fecdb244be0e3abd54d2aa89180fc2a7dbcf9dc
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 23 00:05:53 2018 +1000

    L10n updates for: nl
    From translation svn revision: 39646
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    27      6       user_docs/nl/userGuide.t2t
     1 file changed, 27 insertions(+), 6 deletions(-)

commit b152af4a5268295db8e3f5a74df22ef478c141a2
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 23 00:05:41 2018 +1000

    L10n updates for: it
    From translation svn revision: 39646
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    7       7       source/locale/it/LC_MESSAGES/nvda.po
    32      9       user_docs/it/userGuide.t2t
     2 files changed, 39 insertions(+), 16 deletions(-)

commit 9c77223a241e52a950242efae2ec06d86af80005
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 23 00:05:38 2018 +1000

    L10n updates for: hr
    From translation svn revision: 39646
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Mario Percinic <mario.percinic@gmail.com>
    Tea Turkovic <tturkovi@gmail.com>
    
    Stats:
    4       4       source/locale/hr/LC_MESSAGES/nvda.po
    10      9       user_docs/hr/changes.t2t
    32      8       user_docs/hr/userGuide.t2t
     3 files changed, 46 insertions(+), 21 deletions(-)

commit 9a49ae9bb276e40f1d8f7fdc3aac0f2fb1eb07dc
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 23 00:05:34 2018 +1000

    L10n updates for: gl
    From translation svn revision: 39646
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    
    Stats:
    56      20      source/locale/gl/LC_MESSAGES/nvda.po
    26      0       user_docs/gl/changes.t2t
    30      6       user_docs/gl/userGuide.t2t
     3 files changed, 112 insertions(+), 26 deletions(-)

commit 803d45c38f063caa53fb32a8caffb386432fc15d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 23 00:05:32 2018 +1000

    L10n updates for: fr
    From translation svn revision: 39646
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    4       4       source/locale/fr/LC_MESSAGES/nvda.po
    1       0       user_docs/fr/changes.t2t
     2 files changed, 5 insertions(+), 4 deletions(-)

commit 6015019972690dc837cbceb8e5b5e10c4360208b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 23 00:05:30 2018 +1000

    L10n updates for: fi
    From translation svn revision: 39646
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    4       4       source/locale/fi/LC_MESSAGES/nvda.po
    1       0       user_docs/fi/changes.t2t
    32      9       user_docs/fi/userGuide.t2t
     3 files changed, 37 insertions(+), 13 deletions(-)

commit 4bc571e208bb22aaa8030ee0656dc894cc99f8c3
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 23 00:05:28 2018 +1000

    L10n updates for: fa
    From translation svn revision: 39646
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    2       1       user_docs/fa/changes.t2t
    32      8       user_docs/fa/userGuide.t2t
     2 files changed, 34 insertions(+), 9 deletions(-)

commit 1b80d9e6f61a8b9a16bee77fe49b1f90e1c397f1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 23 00:05:26 2018 +1000

    L10n updates for: es
    From translation svn revision: 39646
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    
    Stats:
    80      44      source/locale/es/LC_MESSAGES/nvda.po
    26      0       user_docs/es/changes.t2t
    29      5       user_docs/es/userGuide.t2t
     3 files changed, 135 insertions(+), 49 deletions(-)

commit feaa66a0612eb6579f533c3e5d2bcf6256601378
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 23 00:05:21 2018 +1000

    L10n updates for: de
    From translation svn revision: 39646
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    
    Stats:
    6       6       source/locale/de/LC_MESSAGES/nvda.po
    1       0       user_docs/de/changes.t2t
    36      13      user_docs/de/userGuide.t2t
     3 files changed, 43 insertions(+), 19 deletions(-)

commit 80f76de1c22937da271a935a5a71e2ace72985be
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 23 00:05:12 2018 +1000

    L10n updates for: ar
    From translation svn revision: 39646
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    4       4       source/locale/ar/LC_MESSAGES/nvda.po
    1       0       user_docs/ar/changes.t2t
    30      5       user_docs/ar/userGuide.t2t
     3 files changed, 35 insertions(+), 9 deletions(-)

commit 9c2a8603934a6ed7282784d25330027572fa9ebb
Merge: dd9b9d3ba a4cf5cbb5
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 16 00:06:14 2018 +1000

    Update translations.
    
    From translation svn revision: 39533

commit a4cf5cbb502b82c22fd5c3ff1c5f2c352c694cd7
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 16 00:06:11 2018 +1000

    L10n updates for: vi
    From translation svn revision: 39533
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    10      4       user_docs/vi/userGuide.t2t
     1 file changed, 10 insertions(+), 4 deletions(-)

commit 253c1ca113e4b261373e7077a149fc4a323b0b41
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 16 00:06:08 2018 +1000

    L10n updates for: tr
    From translation svn revision: 39533
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    85      49      source/locale/tr/LC_MESSAGES/nvda.po
    25      0       user_docs/tr/changes.t2t
    4       3       user_docs/tr/userGuide.t2t
     3 files changed, 114 insertions(+), 52 deletions(-)

commit 17f3fc3a2b6385cf7fdf0ec79a4e893e63e64ac0
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 16 00:06:03 2018 +1000

    L10n updates for: sl
    From translation svn revision: 39533
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    45      45      source/locale/sl/LC_MESSAGES/nvda.po
     1 file changed, 45 insertions(+), 45 deletions(-)

commit 6da5680aa6a7d5cea530822c99e2de82214ebe5c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 16 00:05:58 2018 +1000

    L10n updates for: ro
    From translation svn revision: 39533
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    
    Stats:
    54      18      source/locale/ro/LC_MESSAGES/nvda.po
    26      0       user_docs/ro/changes.t2t
    1       0       user_docs/ro/userGuide.t2t
     3 files changed, 81 insertions(+), 18 deletions(-)

commit eb86a1d418962e8a48684fd6c7c162b284619d1b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 16 00:05:55 2018 +1000

    L10n updates for: pt_BR
    From translation svn revision: 39533
    
    Authors:
    Cleverson Casarin Uliana <clever97@gmail.com>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    2277    2252    user_docs/pt_BR/changes.t2t
     1 file changed, 2277 insertions(+), 2252 deletions(-)

commit 044e91ad3d5fe6d2784c3c102bbb0461e8dafbd0
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 16 00:05:52 2018 +1000

    L10n updates for: nl
    From translation svn revision: 39533
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    53      17      source/locale/nl/LC_MESSAGES/nvda.po
    2       1       user_docs/nl/userGuide.t2t
     2 files changed, 55 insertions(+), 18 deletions(-)

commit f05324a4c19ce0905ce178e21e6d05a2425146f1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 16 00:05:47 2018 +1000

    L10n updates for: mn
    From translation svn revision: 39533
    
    Authors:
    Mongol NVDA-Translation <mongoliannvdatranslation@gmail.com>
    
    Stats:
    55      17      source/locale/mn/LC_MESSAGES/nvda.po
     1 file changed, 55 insertions(+), 17 deletions(-)

commit 139cb2e252cf830d6ddff57d310c5c0a3bd45ca9
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 16 00:05:44 2018 +1000

    L10n updates for: ko
    From translation svn revision: 39533
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    
    Stats:
    59      21      source/locale/ko/LC_MESSAGES/nvda.po
     1 file changed, 59 insertions(+), 21 deletions(-)

commit 3648d8c95ddff1dfeeb7f64a9467c57f5075ed72
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 16 00:05:39 2018 +1000

    L10n updates for: it
    From translation svn revision: 39533
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    54      18      source/locale/it/LC_MESSAGES/nvda.po
     1 file changed, 54 insertions(+), 18 deletions(-)

commit e98ca4b91b7859169a30d6d26c899b12806c3b54
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 16 00:05:35 2018 +1000

    L10n updates for: hr
    From translation svn revision: 39533
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Mario Percinic <mario.percinic@gmail.com>
    Tea Turkovic <tturkovi@gmail.com>
    
    Stats:
    54      18      source/locale/hr/LC_MESSAGES/nvda.po
    24      0       user_docs/hr/changes.t2t
     2 files changed, 78 insertions(+), 18 deletions(-)

commit 0b83ecadad3f969f69bf25a36eb70da76bae3a66
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 16 00:05:30 2018 +1000

    L10n updates for: fr
    From translation svn revision: 39533
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    54      18      source/locale/fr/LC_MESSAGES/nvda.po
    25      0       user_docs/fr/changes.t2t
     2 files changed, 79 insertions(+), 18 deletions(-)

commit ba0447345a3480b8a341c662b842e96531652126
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 16 00:05:28 2018 +1000

    L10n updates for: fi
    From translation svn revision: 39533
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    52      16      source/locale/fi/LC_MESSAGES/nvda.po
    20      0       user_docs/fi/changes.t2t
    2       1       user_docs/fi/userGuide.t2t
     3 files changed, 74 insertions(+), 17 deletions(-)

commit 3eb6b7c721676bf9b25cdd58c55a42b5aec005ae
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 16 00:05:26 2018 +1000

    L10n updates for: fa
    From translation svn revision: 39533
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    20      0       user_docs/fa/changes.t2t
     1 file changed, 20 insertions(+)

commit 3739c7767d98a896661a3a91e1bbb32e3ac69eb6
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 16 00:05:20 2018 +1000

    L10n updates for: de
    From translation svn revision: 39533
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    
    Stats:
    70      38      source/locale/de/LC_MESSAGES/nvda.po
    26      0       user_docs/de/changes.t2t
    5       3       user_docs/de/userGuide.t2t
     3 files changed, 101 insertions(+), 41 deletions(-)

commit 50eaddcc93718a891ec9868f035133b228f96222
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 16 00:05:10 2018 +1000

    L10n updates for: ar
    From translation svn revision: 39533
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    415     325     source/locale/ar/LC_MESSAGES/nvda.po
    24      1       user_docs/ar/changes.t2t
    3       2       user_docs/ar/userGuide.t2t
     3 files changed, 442 insertions(+), 328 deletions(-)

commit dd9b9d3ba2d5a62eb2b962546337292cb306996d
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Mar 14 07:30:53 2018 +1000

    Update What's new

commit 15060d9ca90089b8e1a2419086dd2d48b67804c2
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Mar 14 07:28:03 2018 +1000

    Support the BrailleNote Touch and Brailliant BI 14 via the BrailliantB brailledisplayDriver (#8031)
    
    * Support for HumanWare Brailliant BI/B braille displays connected via Bluetooth when the protocol is set to OpenBraille.
    
    * brailliantB: Try a delay after connect, multiple init attempts and delays between attempts as recommended by HumanWare, as init can be quite flakey, particularly via Bluetooth.
    
    * Add support for the Brailliant BI 14 and BrailleNote Touch.
    
    * brailliantB: Change some key names and add comments about devices to key table.
    
    * hwIo.Hid: add a setOutputReport method which allows writing data with HidD_SetOutputReport as an alternative to WriteFile which may freeze on certain USB implementations.
    
    * Fix support for newer BrailleNote Touch devices via HID, by writing display cells with HidD_SetOutputReport rather than WriteFile which can block forever on these devices.
    
    * Mention BrailleNote Touch in the UserGuide under Brailliant BI/B Series, and BrailleNote Touch
    
    * Mention Brailliant BI 14 in userGuide
    
    * UserGuide: update key assignments for Brailliant BI/B and BrailleNote Touch, splitting them into tables for all models, and extra specific.
    
    * hwIo.Hid.setOutputReport: add debugging.
    
    * Change description of BrailliantB driver.
    
    * change time.sleep to waitForRead to not block IO thread.
    
    * Fix debug string.
    
    * BrailliantB braille display driver: use HidD_SetOutputReport for all HID devices supported by this driver. Not only does WriteFile block for ever with USB HID, but WriteFile simply does nothing at all for Bluetooth HID.
    
    * BrailliantB braille display driver: add some extra key assignments with space  as not all displays have command keys.
    
    * Change  waitForRead before retrying init back to a time.sleep for now. If it is truly needed we can add it back in in the Autio braille display detection pr.

commit e78e72f9ca6cd3d74f563d9ea4ebe575b9abdf1b
Merge: 34c09a041 47f4b51f6
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 9 00:06:11 2018 +1000

    Update translations.
    
    From translation svn revision: 39414

commit 47f4b51f6cbbafb21ce3f7cda9b9e9beeb6b3494
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 9 00:06:11 2018 +1000

    L10n updates for: zh_TW
    From translation svn revision: 39414
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    9       8       source/locale/zh_TW/characterDescriptions.dic
     1 file changed, 9 insertions(+), 8 deletions(-)

commit 75ec72f6ff8881390d4c373840ce495c9a73ace3
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 9 00:05:46 2018 +1000

    L10n updates for: mn
    From translation svn revision: 39414
    
    Authors:
    Mongol NVDA-Translation <mongoliannvdatranslation@gmail.com>
    
    Stats:
    17      15      source/locale/mn/LC_MESSAGES/nvda.po
     1 file changed, 17 insertions(+), 15 deletions(-)

commit c2f7cf24440a0e0344ae30ef3b2e8525c60d5cc5
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 9 00:05:32 2018 +1000

    L10n updates for: gl
    From translation svn revision: 39414
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    
    Stats:
    4       4       source/locale/gl/LC_MESSAGES/nvda.po
    1       1       user_docs/gl/changes.t2t
     2 files changed, 5 insertions(+), 5 deletions(-)

commit fcefd768b27b1fa401a80f1704ef96e63913fa3e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 9 00:05:24 2018 +1000

    L10n updates for: es
    From translation svn revision: 39414
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    
    Stats:
    4       4       source/locale/es/LC_MESSAGES/nvda.po
    1       1       user_docs/es/changes.t2t
     2 files changed, 5 insertions(+), 5 deletions(-)

commit 1eeaa68b838b69038f7286b8916b7eef5c0d118d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 9 00:05:11 2018 +1000

    L10n updates for: ar
    From translation svn revision: 39414
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    244     219     source/locale/ar/LC_MESSAGES/nvda.po
     1 file changed, 244 insertions(+), 219 deletions(-)

commit 34c09a0418be0372f13ad672c7beef4b4961708c
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Mar 7 12:07:52 2018 +1000

    Update what's new.

commit 611a9423087249e82056af4c1d09cd5433ce8e29
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Mar 7 12:05:08 2018 +1000

    Support tables in Kindle for PC (#7977)
    
    * Add support for IAccessibleTable2 and IAccessibleTableCell
    
    * Add support for tables in Kindle
    
    * Kindle: initial support for jumping to tables with t / shift+t.
    
    * Kindle: support jumping to the beginning/end of containers (so far just tables) with comma and shift comma.
    
    * Add code comments
    
    * Kindle appModule: update method docstring.

commit 62aff76b52ea05c23f88602f95cee017a84f7325
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Mar 6 15:51:56 2018 +1000

    Update what's new

commit 55a7da57ee3715a132cb6b6df57ba16edb267033
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Tue Mar 6 06:50:57 2018 +0100

    Allow setting good UIA windows in core or per appModule (#7980)
    
    * Allow setting good UIA windows in core or per appModule.
    
    * Review actions

commit 55a1b4964eb294e4c6555f5683dc3e2859ef61a3
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Mar 6 15:13:01 2018 +1000

    Update what's new

commit ea88eec74a22c0c2f8f3bb2fe957ddf2e9ddceeb
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Tue Mar 6 15:11:43 2018 +1000

    Allow table navigation commands in Google Docs  (#7946)
    
    * Allow table navigation commands in editable web content via IAccessible2. Most useful for tables in Google Docs.
    
    * Add comments to ia2web's Editor NVDAObject's _getTableCellAt method.

commit 85175644e823f2ea38bfb4f5e98dcd202cbedaaf
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Mar 6 15:10:28 2018 +1000

    Update what's new

commit 4724de63625158fc6522cabbcb38be3a21da78e0
Author: Ethan Holliger <21368115+ehollig@users.noreply.github.com>
Date:   Mon Mar 5 22:10:11 2018 -0700

    Change status column of addons to enabled or disabled (#7930)
    
    * Change status message of addons to enabled or disabled
    
    * Update user guide
    
    * Added Enabled/disabled after restart to status column
    
    * Add quotation marks and reference to enabled/disabled after restart

commit 8be90d62bec9d6af162a777d1deca24d047a3640
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Mar 6 15:06:11 2018 +1000

    Update what's new

commit d338d58c17475e80bbe17c359ed5e9287e93e2a7
Author: Bram Duvigneau <bram@bramd.nl>
Date:   Tue Mar 6 06:05:13 2018 +0100

    Handle aria-current=false as False instead of True (#7901)
    
    * Handle aria-current=false as False instead of True
    
    * Fix docstring for NVDAObject._get_isCurrent
    
    * Address review comments
    
     * isCurrent defaults to None instead of False, so now it returns either
       None or one of the allowed strings ("true", "page", etc)
     * Use the search method on the regular expression to match the
       aria-current attribute in Edge, so it is also found if it's not the
       first attribute in the string. Also, document that false is a valid
       value.
    
    * Improve comment about aria-current regex in Edge

commit cd8c739421e8ff92cf892bf7669c64923fcdf1a9
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Mar 6 15:03:50 2018 +1000

    Update what's new

commit 91a0d231f8f0d0dc6a97bbe22b9c0451eac8ebed
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Tue Mar 6 06:00:14 2018 +0100

    Report row and column span for table cells in speech and braille (#7872)
    
    * Support pronouncing row and column span with speech
    
    * Announce row and column span on the web
    
    * Fix announcements when row or column span differs even though the row or column number stays the same
    
    * Show row/column span in braille
    
    * IAccessible NVDAObject: support rowspan and columnSpan.
    
    * compoundDocuments: support rowSpan and columnSpan.
    
    * Converted rowStr and columnStr to strings with string formatting/named arguments to fulfill a desire of checkpot which will otherwise throw warnings
    
    * Update copyright header
    
    * Update copyright year

commit 96abcb64bfd120d124e85bb0416350804d057034
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Mar 6 14:54:54 2018 +1000

    Update what's new

commit 709f345763ff9e91c390f7e020053bfcdc58c6c3
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Tue Mar 6 14:53:47 2018 +1000

    Stop labels for checkboxes / radioButtons from being reported twice when tabbing / quicknavving in browse Mode, fore Chrome / Firefox. (#7988)
    
    Reported in #7960. Regression caused in #7513.

commit 4c14f45ae36162fa0b826c98439749b1deb6f244
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Mar 6 14:50:58 2018 +1000

    Update what's new

commit 4812c6553e7ffb3c15782d2c9e47d7d3fcec038b
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Tue Mar 6 14:50:37 2018 +1000

    No longer announce final character of Windows 10 security PIN (#7989)
    
    Fixes #7908

commit 62464e78c43fee9404e07170f5afaaaa1414be1e
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Mar 6 14:47:32 2018 +1000

    Update what's new

commit 86662d7d42652dce1ab1b7fa988a6c89e5791df6
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Tue Mar 6 05:47:00 2018 +0100

    Expose available UIA patterns in developer info (#7992)
    
    * Show available UIA patterns in the developer info
    
    * In UIA._prefetchUIACacheForPropertyIDs, gracefully handle an attempt to cache a property that is not supported on a particular version of Windows
    
    * Review action and copyright update

commit ff6ce2f57080c200214abc3d0839fa4a41db5deb
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Mar 6 14:45:04 2018 +1000

    Update what's new

commit 59de1dcbcbbb8a301b4694ba3e5e013d3473c5fe
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Tue Mar 6 14:43:02 2018 +1000

    Better handle dead caret  / selection text ranges in Microsoft Edge. (#7997)
    
    Specifically:
    * No longer support remembering the last caret position  for previously visited documents in Edge. This never worked and only caused errors. The UIA textRange we stored could not be used on new documents.
    * Detect and fix the case where the textRange we have stored as the browseMode selection dies due to major page mutations.  Replace it with the first position in the document in this case.

commit 2ee920cddb5fc9548c220465c22dbe36ec2dd982
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Mar 6 14:40:17 2018 +1000

    Get ready for 2018.2

commit b63081a8880895ca9807b3e98f85a6b3b3ef559e
Merge: 4faf0d058 a98e77ccd
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Mar 5 10:10:11 2018 +1000

    Merge branch 'rc'

commit a98e77ccd8de9fa7c40a981540703451a46b89fe
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Sun Mar 4 23:33:04 2018 +0100

    Fix problems with ALVA protocol converter and time synchronisation (#8051)
    
    * Do not try to sync time for ALVA displays that do not reveal time information. Requesting a time feature report from these displays gives a packet that is padded up with zero's. A year should never be 0, in that case, return early and do not sync.
    
    * Do not block ALVA display init when time retrieval fails somehow
    
    * Braille's renamed_drivers: fix case of alvaBC6 to correctly match the old driver.
    
    * Alva braille driver: catch more errors when handling time.
    
    * Review actions after internal discussion with @dkager
    
    * ALVA driver: Use constants for min and max year

commit 4faf0d0582e8df4d1d35995e4ddbfbecc592f55b
Merge: 90b1ea867 dfc8cbf4b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 2 00:06:05 2018 +1000

    Update translations.
    
    From translation svn revision: 39338

commit dfc8cbf4b78863b78f15befb39fdd0d536a02a96
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 2 00:06:00 2018 +1000

    L10n updates for: tr
    From translation svn revision: 39338
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    1       0       user_docs/tr/changes.t2t
     1 file changed, 1 insertion(+)

commit 7d877495757fe6719d7781c48671638bd656f84f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 2 00:05:48 2018 +1000

    L10n updates for: pt_BR
    From translation svn revision: 39338
    
    Authors:
    Cleverson Casarin Uliana <clever97@gmail.com>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    1       0       user_docs/pt_BR/changes.t2t
     1 file changed, 1 insertion(+)

commit 01e279ed80bd8b720dec573decad8fc6682d0890
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 2 00:05:45 2018 +1000

    L10n updates for: nl
    From translation svn revision: 39338
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    1       9       user_docs/nl/userGuide.t2t
     1 file changed, 1 insertion(+), 9 deletions(-)

commit 96f0b235bfc7c57e51290b52d175007b2b42de68
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 2 00:05:43 2018 +1000

    L10n updates for: nb_NO
    From translation svn revision: 39338
    
    Authors:
    David Hole <balubathebrave@gmail.com>
    Bjornar Seppola <bjornar@seppola.net>
    
    Stats:
    48      38      source/locale/nb_NO/LC_MESSAGES/nvda.po
     1 file changed, 48 insertions(+), 38 deletions(-)

commit 112ca0528b81ecec92e72228027363c285d258bd
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 2 00:05:41 2018 +1000

    L10n updates for: mn
    From translation svn revision: 39338
    
    Authors:
    Mongol NVDA-Translation <mongoliannvdatranslation@gmail.com>
    
    Stats:
    10739   0       source/locale/mn/LC_MESSAGES/nvda.po
    39      0       source/locale/mn/characterDescriptions.dic
    175     0       source/locale/mn/symbols.dic
    2302    0       user_docs/mn/changes.t2t
    2618    0       user_docs/mn/userGuide.t2t
     5 files changed, 15873 insertions(+)

commit 05bd8cd4926102029a3cb227513c015aafbaa56a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 2 00:05:30 2018 +1000

    L10n updates for: hr
    From translation svn revision: 39338
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Mario Percinic <mario.percinic@gmail.com>
    Tea Turkovic <tturkovi@gmail.com>
    
    Stats:
    11      11      user_docs/hr/changes.t2t
     1 file changed, 11 insertions(+), 11 deletions(-)

commit 0f86090a8360142756824d823f481a8433d18465
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 2 00:05:16 2018 +1000

    L10n updates for: de_CH
    From translation svn revision: 39338
    
    Authors:
    Robert Hänggi <aarjay.robert@gmail.com>
    
    Stats:
    82      44      source/locale/de_CH/LC_MESSAGES/nvda.po
    139     139     user_docs/de_CH/changes.t2t
     2 files changed, 221 insertions(+), 183 deletions(-)

commit aaddd089405df35a1c8b4b57caac668c3c83f32e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 2 00:05:09 2018 +1000

    L10n updates for: ar
    From translation svn revision: 39338
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    351     418     source/locale/ar/LC_MESSAGES/nvda.po
    1       0       user_docs/ar/changes.t2t
    365     262     user_docs/ar/userGuide.t2t
     3 files changed, 717 insertions(+), 680 deletions(-)

commit d456297324423c60d2257a6e8c1ea87bfbfa27e8
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 2 00:05:06 2018 +1000

    L10n updates for: an
    From translation svn revision: 39338
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    
    Stats:
    1       0       user_docs/an/changes.t2t
    97      9       user_docs/an/userGuide.t2t
     2 files changed, 98 insertions(+), 9 deletions(-)

commit 90b1ea8672702f14ac5f5ea590eba06d2a9b51f6
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Thu Mar 1 08:00:57 2018 +1000

    No longer try to fetch the title of charts in MS word when cursoring around as this causes the document to look like it has been changed. (#8042)
    
    Fixes #8038

commit c83231ec6e31bb19e5a25d9b0442f019a7a13e73
Merge: 684a40166 64b40d235
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 23 14:04:08 2018 +1000

    Update translations.
    
    From translation svn revision: 39266

commit 64b40d2357f2f7077a401e4f6c1a468c06799bbc
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 23 14:04:05 2018 +1000

    L10n updates for: zh_CN
    From translation svn revision: 39266
    
    Authors:
    vgjh2005@gmail.com
    
    Stats:
    1166    995     source/locale/zh_CN/LC_MESSAGES/nvda.po
     1 file changed, 1166 insertions(+), 995 deletions(-)

commit 52469bb36b68859474c56171c65d41e8fb1ad9db
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 23 14:03:56 2018 +1000

    L10n updates for: sr
    From translation svn revision: 39266
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    1       0       user_docs/sr/changes.t2t
     1 file changed, 1 insertion(+)

commit 2cd3e73006cbcbd4618bb4705174227331d66997
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 23 14:03:37 2018 +1000

    L10n updates for: ko
    From translation svn revision: 39266
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    
    Stats:
    7       8       source/locale/ko/LC_MESSAGES/nvda.po
    26      7       user_docs/ko/changes.t2t
    105     17      user_docs/ko/userGuide.t2t
     3 files changed, 138 insertions(+), 32 deletions(-)

commit d3148f5642848f39731c98614fe69c206eb67c86
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 23 14:03:29 2018 +1000

    L10n updates for: hu
    From translation svn revision: 39266
    
    Authors:
    Aron OcsvAri <oaron@nvda.hu>
    
    Stats:
    4       4       source/locale/hu/LC_MESSAGES/nvda.po
    139     11      user_docs/hu/userGuide.t2t
     2 files changed, 143 insertions(+), 15 deletions(-)

commit 81935cb74d093d2347c38c1e29fbde6887e6c550
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 23 14:03:24 2018 +1000

    L10n updates for: gl
    From translation svn revision: 39266
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    
    Stats:
    1       0       user_docs/gl/changes.t2t
     1 file changed, 1 insertion(+)

commit 9c97f3b3c1223f3706b1f0d03e43ea2776d0148c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 23 14:03:22 2018 +1000

    L10n updates for: fr
    From translation svn revision: 39266
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    1       0       user_docs/fr/changes.t2t
     1 file changed, 1 insertion(+)

commit 41c2ba1d22a8e9b0d927dd48d4628477c50aee10
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 23 14:03:20 2018 +1000

    L10n updates for: fi
    From translation svn revision: 39266
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    4       4       source/locale/fi/LC_MESSAGES/nvda.po
    2       1       user_docs/fi/changes.t2t
     2 files changed, 6 insertions(+), 5 deletions(-)

commit 712f472093e3756d00607197a0f3c4e1eb551b31
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 23 14:03:18 2018 +1000

    L10n updates for: fa
    From translation svn revision: 39266
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    1183    1003    source/locale/fa/LC_MESSAGES/nvda.po
    1       0       user_docs/fa/changes.t2t
    77      77      user_docs/fa/userGuide.t2t
     3 files changed, 1261 insertions(+), 1080 deletions(-)

commit 2095257d0be286947c8940f03296c7c97e841596
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 23 14:03:16 2018 +1000

    L10n updates for: es
    From translation svn revision: 39266
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    
    Stats:
    1       0       user_docs/es/changes.t2t
     1 file changed, 1 insertion(+)

commit c8f60d65111ef0d4f5d1880569ca9a9a53fd7970
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 23 14:03:11 2018 +1000

    L10n updates for: de
    From translation svn revision: 39266
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    
    Stats:
    2       2       source/locale/de/LC_MESSAGES/nvda.po
    1       1       user_docs/de/changes.t2t
     2 files changed, 3 insertions(+), 3 deletions(-)

commit 6d01a8bdb30c060368860fb32a9d72c362923233
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 23 14:03:08 2018 +1000

    L10n updates for: da
    From translation svn revision: 39266
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    1       0       user_docs/da/changes.t2t
     1 file changed, 1 insertion(+)

commit 10b8086377960bee90765d9ad2149d242df3c7b3
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 23 14:03:04 2018 +1000

    L10n updates for: bg
    From translation svn revision: 39266
    
    Authors:
    Zahari Yurukov <zahari.yurukov@gmail.com>
    Kostadin Kolev <k_kolev1985@mail.bg>
    
    Stats:
    1       0       user_docs/bg/changes.t2t
     1 file changed, 1 insertion(+)

commit 684a40166ac21c40e75584168d8f6d0ab33b3d93
Merge: 48743675b f5a4a1ef2
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 23 00:06:10 2018 +1000

    Update translations.
    
    From translation svn revision: 39190

commit f5a4a1ef2479a1765b6e7c402bdf3a50c552cba8
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 23 00:06:09 2018 +1000

    L10n updates for: zh_TW
    From translation svn revision: 39190
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    16      4       source/locale/zh_TW/LC_MESSAGES/nvda.po
    9       9       source/locale/zh_TW/characterDescriptions.dic
    3       0       source/locale/zh_TW/symbols.dic
     3 files changed, 28 insertions(+), 13 deletions(-)

commit ad5cc097cc0a6beb6ae6fbd402814ec59cbd5eb6
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 23 00:06:06 2018 +1000

    L10n updates for: vi
    From translation svn revision: 39190
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    80      71      user_docs/vi/changes.t2t
     1 file changed, 80 insertions(+), 71 deletions(-)

commit 35aa2efa2b6056a75be66d6bcfdd0f20c0f81186
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 23 00:06:05 2018 +1000

    L10n updates for: uk
    From translation svn revision: 39190
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    21      9       source/locale/uk/LC_MESSAGES/nvda.po
    424     308     user_docs/uk/userGuide.t2t
     2 files changed, 445 insertions(+), 317 deletions(-)

commit b1319f8a27e676a6c56591d1390f964309586435
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 23 00:06:03 2018 +1000

    L10n updates for: tr
    From translation svn revision: 39190
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    58      57      source/locale/tr/LC_MESSAGES/nvda.po
    3       3       user_docs/tr/userGuide.t2t
     2 files changed, 61 insertions(+), 60 deletions(-)

commit c268d87c3c1214bc6b534dd6f9b1c014a0e41119
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 23 00:05:58 2018 +1000

    L10n updates for: sk
    From translation svn revision: 39190
    
    Authors:
    Ondrej Rosik <ondrej.rosik@gmail.com>
    Peter Vagner <peter.v@datagate.sk>
    
    Stats:
    1188    1009    source/locale/sk/LC_MESSAGES/nvda.po
    44      0       user_docs/sk/changes.t2t
    369     267     user_docs/sk/userGuide.t2t
     3 files changed, 1601 insertions(+), 1276 deletions(-)

commit fa10ebf9dc0672c426aa21952f11bd7da91456e8
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 23 00:05:56 2018 +1000

    L10n updates for: ru
    From translation svn revision: 39190
    
    Authors:
    Ruslan Kolodyazhni <eye0@rambler.ru>
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    3       3       source/locale/ru/LC_MESSAGES/nvda.po
    10      1       user_docs/ru/changes.t2t
    134     54      user_docs/ru/userGuide.t2t
     3 files changed, 147 insertions(+), 58 deletions(-)

commit b62fdbf241367a9d689ea69e0bd7c61cfa1b014e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 23 00:05:53 2018 +1000

    L10n updates for: ro
    From translation svn revision: 39190
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    
    Stats:
    3       3       source/locale/ro/LC_MESSAGES/nvda.po
    2       2       source/locale/ro/symbols.dic
     2 files changed, 5 insertions(+), 5 deletions(-)

commit 76d21921d61d01b8724a303f8a1fb8ce0e7e314f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 23 00:05:52 2018 +1000

    L10n updates for: pt_PT
    From translation svn revision: 39190
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    1       3       user_docs/pt_PT/changes.t2t
    90      18      user_docs/pt_PT/userGuide.t2t
     2 files changed, 91 insertions(+), 21 deletions(-)

commit f21cb59eeaf4749f932c9bd41773d62b652140c1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 23 00:05:47 2018 +1000

    L10n updates for: nl
    From translation svn revision: 39190
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    2       2       source/locale/nl/LC_MESSAGES/nvda.po
    49      0       user_docs/nl/changes.t2t
    278     234     user_docs/nl/userGuide.t2t
     3 files changed, 329 insertions(+), 236 deletions(-)

commit d8b08c782cd23c8a18754c8c69c04c06b297d951
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 23 00:05:42 2018 +1000

    L10n updates for: ko
    From translation svn revision: 39190
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    
    Stats:
    15      15      user_docs/ko/changes.t2t
    10      14      user_docs/ko/userGuide.t2t
     2 files changed, 25 insertions(+), 29 deletions(-)

commit e89caf4620ad7bc4bb1fbc93b8e079e19ea9c995
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 23 00:05:38 2018 +1000

    L10n updates for: it
    From translation svn revision: 39190
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    3       3       source/locale/it/LC_MESSAGES/nvda.po
    2       3       user_docs/it/userGuide.t2t
     2 files changed, 5 insertions(+), 6 deletions(-)

commit 54bce4b8ad0d882d6c4b743f8c191c5bce52ff6a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 23 00:05:35 2018 +1000

    L10n updates for: hu
    From translation svn revision: 39190
    
    Authors:
    Aron OcsvAri <oaron@nvda.hu>
    
    Stats:
    1194    1014    source/locale/hu/LC_MESSAGES/nvda.po
    44      0       user_docs/hu/changes.t2t
     2 files changed, 1238 insertions(+), 1014 deletions(-)

commit 5cfd931deef5061357759d8d6f5cda492537c90e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 23 00:05:30 2018 +1000

    L10n updates for: ga
    From translation svn revision: 39190
    
    Authors:
    Cearbhall OMeadhra <cearbhall.omeadhra@blbc.ie>
    Ronan McGuirk <ronan.p.mcguirk@gmail.com>
    Kevin Scannell <kscanne@gmail.com>
    
    Stats:
    1245    1009    source/locale/ga/LC_MESSAGES/nvda.po
     1 file changed, 1245 insertions(+), 1009 deletions(-)

commit 891fd6982948818d57dfdcf9e679819170f64d4e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 23 00:05:29 2018 +1000

    L10n updates for: fr
    From translation svn revision: 39190
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    4       4       source/locale/fr/LC_MESSAGES/nvda.po
     1 file changed, 4 insertions(+), 4 deletions(-)

commit b1fdb15c15945a8420423c08b96bfe164159ffd6
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 23 00:05:25 2018 +1000

    L10n updates for: fa
    From translation svn revision: 39190
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    95      15      user_docs/fa/userGuide.t2t
     1 file changed, 95 insertions(+), 15 deletions(-)

commit b33c05c2d8e667725728ae23233e9b5f92b11712
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 23 00:05:19 2018 +1000

    L10n updates for: de
    From translation svn revision: 39190
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    
    Stats:
    24      24      source/locale/de/LC_MESSAGES/nvda.po
    21      12      user_docs/de/changes.t2t
    1       1       user_docs/de/userGuide.t2t
     3 files changed, 46 insertions(+), 37 deletions(-)

commit b30b942015ef507ae48bd8707f5a07cd5b3b04af
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 23 00:05:15 2018 +1000

    L10n updates for: cs
    From translation svn revision: 39190
    
    Authors:
    Martina Letochova <letochova@seznam.cz>
    
    Stats:
    1094    923     source/locale/cs/LC_MESSAGES/nvda.po
     1 file changed, 1094 insertions(+), 923 deletions(-)

commit 8e83c35273da9d0f6e92b36c52aaeef1d300eade
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 23 00:05:12 2018 +1000

    L10n updates for: bg
    From translation svn revision: 39190
    
    Authors:
    Zahari Yurukov <zahari.yurukov@gmail.com>
    Kostadin Kolev <k_kolev1985@mail.bg>
    
    Stats:
    1202    1019    source/locale/bg/LC_MESSAGES/nvda.po
    58      2       user_docs/bg/changes.t2t
    392     290     user_docs/bg/userGuide.t2t
     3 files changed, 1652 insertions(+), 1311 deletions(-)

commit 4869ec3c13bc4fff498d703d318e7f011f006266
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 23 00:05:07 2018 +1000

    L10n updates for: an
    From translation svn revision: 39190
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    
    Stats:
    56      1       user_docs/an/changes.t2t
    405     372     user_docs/an/userGuide.t2t
     2 files changed, 461 insertions(+), 373 deletions(-)

commit 48743675b6cdafe9b907cba79697b9217447231b
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Feb 20 09:09:59 2018 +1000

    Update copyright years in virsionInfo. Fixes #8012

commit 769e09f1d5a05cc24b50bd78fc58480e60e03ea3
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Feb 19 12:10:56 2018 +1000

    Update What's new

commit 5a120d65e98eec87008df947e228aec10143a3b3
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Mon Feb 19 12:06:26 2018 +1000

    Include the Desktop UWP redistributables in NVDA for Onecore features, rather than the Onecore redistributables. This should fix issues on windows 7. (#8003)

commit 1484064fe83254d578aeb1b7ff25201cc748bc7b
Merge: e51f5080e 8fda9fa3f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 16 00:06:23 2018 +1000

    Update translations.
    
    From translation svn revision: 39038

commit 8fda9fa3f7261768ae997e08647a089997e7ba6d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 16 00:06:22 2018 +1000

    L10n updates for: zh_TW
    From translation svn revision: 39038
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    12      12      source/locale/zh_TW/characterDescriptions.dic
    17      1       source/locale/zh_TW/symbols.dic
     2 files changed, 29 insertions(+), 13 deletions(-)

commit b37005d6b1198ae3784974a76e6fa3af7819d2a0
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 16 00:06:20 2018 +1000

    L10n updates for: zh_HK
    From translation svn revision: 39038
    
    Authors:
    Eric Yip <ericycy@gmail.com>
    
    Stats:
    1168    989     source/locale/zh_HK/LC_MESSAGES/nvda.po
     1 file changed, 1168 insertions(+), 989 deletions(-)

commit b46b0947931aeac3d2db1b6949b904e23cec90f1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 16 00:06:20 2018 +1000

    L10n updates for: zh_CN
    From translation svn revision: 39038
    
    Authors:
    vgjh2005@gmail.com
    
    Stats:
    24      24      user_docs/zh_CN/userGuide.t2t
     1 file changed, 24 insertions(+), 24 deletions(-)

commit 178e4c23a9ca6c58d6359cc90ca49e799aaefa76
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 16 00:06:18 2018 +1000

    L10n updates for: vi
    From translation svn revision: 39038
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    40      4       source/locale/vi/LC_MESSAGES/nvda.po
    22      22      user_docs/vi/changes.t2t
     2 files changed, 62 insertions(+), 26 deletions(-)

commit ad8425e9a27d6704cc532bf2d68c165c586bf70d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 16 00:06:16 2018 +1000

    L10n updates for: tr
    From translation svn revision: 39038
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    29      17      source/locale/tr/LC_MESSAGES/nvda.po
    9       4       user_docs/tr/changes.t2t
    162     82      user_docs/tr/userGuide.t2t
     3 files changed, 200 insertions(+), 103 deletions(-)

commit 5a79d6123d5f63afd71edf6f388e28e147b2379b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 16 00:06:14 2018 +1000

    L10n updates for: ta
    From translation svn revision: 39038
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    39      4       source/locale/ta/LC_MESSAGES/nvda.po
    94      14      user_docs/ta/userGuide.t2t
     2 files changed, 133 insertions(+), 18 deletions(-)

commit 597fc2e72c72fe2116c28de8b95651927badce18
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 16 00:06:11 2018 +1000

    L10n updates for: sr
    From translation svn revision: 39038
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    13      1       source/locale/sr/LC_MESSAGES/nvda.po
    7       4       user_docs/sr/changes.t2t
    82      9       user_docs/sr/userGuide.t2t
     3 files changed, 102 insertions(+), 14 deletions(-)

commit cfc3125e1d66b91b7a442aab225dc1da0c75c692
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 16 00:06:10 2018 +1000

    L10n updates for: sl
    From translation svn revision: 39038
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    1141    1135    source/locale/sl/LC_MESSAGES/nvda.po
     1 file changed, 1141 insertions(+), 1135 deletions(-)

commit ad3bd482a30cf71951beb4b7aadcad22e90a1e9a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 16 00:06:07 2018 +1000

    L10n updates for: ru
    From translation svn revision: 39038
    
    Authors:
    Ruslan Kolodyazhni <eye0@rambler.ru>
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    14      2       source/locale/ru/LC_MESSAGES/nvda.po
     1 file changed, 14 insertions(+), 2 deletions(-)

commit d5167937adbd8b231b10eecd315c7b61b31c83ac
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 16 00:06:04 2018 +1000

    L10n updates for: ro
    From translation svn revision: 39038
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    
    Stats:
    14      2       source/locale/ro/LC_MESSAGES/nvda.po
    11      5       user_docs/ro/changes.t2t
    171     83      user_docs/ro/userGuide.t2t
     3 files changed, 196 insertions(+), 90 deletions(-)

commit 3c49ba0c9b0f8dcbae1b9a86a94fe47f92469f82
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 16 00:06:02 2018 +1000

    L10n updates for: pt_PT
    From translation svn revision: 39038
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    13      1       source/locale/pt_PT/LC_MESSAGES/nvda.po
    41      3       user_docs/pt_PT/changes.t2t
    10      5       user_docs/pt_PT/userGuide.t2t
     3 files changed, 64 insertions(+), 9 deletions(-)

commit 89f6bcc20c76f922012c0d54b11c18bfe4263608
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 16 00:06:00 2018 +1000

    L10n updates for: pt_BR
    From translation svn revision: 39038
    
    Authors:
    Cleverson Casarin Uliana <clever97@gmail.com>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    40      4       source/locale/pt_BR/LC_MESSAGES/nvda.po
    3       5       source/locale/pt_BR/symbols.dic
    793     601     user_docs/pt_BR/changes.t2t
     3 files changed, 836 insertions(+), 610 deletions(-)

commit 42ae9080d9e77c16cff0d45640979bdb3d29d838
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 16 00:05:58 2018 +1000

    L10n updates for: pl
    From translation svn revision: 39038
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <killer@tyflonet.com>
    
    Stats:
    718     250     source/locale/pl/LC_MESSAGES/nvda.po
    48      0       user_docs/pl/changes.t2t
    424     322     user_docs/pl/userGuide.t2t
     3 files changed, 1190 insertions(+), 572 deletions(-)

commit 5bd66e358f8a7a89955ef35403412dc0ca633fb0
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 16 00:05:56 2018 +1000

    L10n updates for: nl
    From translation svn revision: 39038
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <alderuijter@gmail.com>
    
    Stats:
    1182    1003    source/locale/nl/LC_MESSAGES/nvda.po
    1       1       user_docs/nl/userGuide.t2t
     2 files changed, 1183 insertions(+), 1004 deletions(-)

commit d408d46ca9f33ff83fbf8e35deb84fcfb84e13dd
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 16 00:05:50 2018 +1000

    L10n updates for: ko
    From translation svn revision: 39038
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    
    Stats:
    23      9       source/locale/ko/LC_MESSAGES/nvda.po
     1 file changed, 23 insertions(+), 9 deletions(-)

commit b10cd58ffff18609706dd0f7617cd85ff8da0794
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 16 00:05:47 2018 +1000

    L10n updates for: ja
    From translation svn revision: 39038
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    14      2       source/locale/ja/LC_MESSAGES/nvda.po
    7       2       user_docs/ja/changes.t2t
    81      10      user_docs/ja/userGuide.t2t
     3 files changed, 102 insertions(+), 14 deletions(-)

commit 52528fbac3901b4f3fca58ff488106be6be90edc
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 16 00:05:44 2018 +1000

    L10n updates for: it
    From translation svn revision: 39038
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    14      2       source/locale/it/LC_MESSAGES/nvda.po
    56      0       user_docs/it/changes.t2t
    93      14      user_docs/it/userGuide.t2t
     3 files changed, 163 insertions(+), 16 deletions(-)

commit a29887c9f42c486fa7f74c6cf8aa11fe3f1f0263
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 16 00:05:40 2018 +1000

    L10n updates for: hr
    From translation svn revision: 39038
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Mario Percinic <mario.percinic@gmail.com>
    Tea Turkovic <tturkovi@gmail.com>
    
    Stats:
    14      2       source/locale/hr/LC_MESSAGES/nvda.po
    7       3       user_docs/hr/changes.t2t
    81      9       user_docs/hr/userGuide.t2t
     3 files changed, 102 insertions(+), 14 deletions(-)

commit 124673572855f5fb28bf532f738f2c4b753e1654
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 16 00:05:37 2018 +1000

    L10n updates for: he
    From translation svn revision: 39038
    
    Authors:
    Shmuel Naaman <shmuel_naaman@yahoo.com>
    Afik Sofir <afik.sofer@gmail.com>
    
    Stats:
    1175    996     source/locale/he/LC_MESSAGES/nvda.po
     1 file changed, 1175 insertions(+), 996 deletions(-)

commit 7a9c1e79cbe421c2011460ae114ae9ff2281a343
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 16 00:05:36 2018 +1000

    L10n updates for: gl
    From translation svn revision: 39038
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    
    Stats:
    14      2       source/locale/gl/LC_MESSAGES/nvda.po
    7       2       user_docs/gl/changes.t2t
    81      9       user_docs/gl/userGuide.t2t
     3 files changed, 102 insertions(+), 13 deletions(-)

commit 3b26ecb78de34391f68f2c590c7d797ede3c4b17
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 16 00:05:33 2018 +1000

    L10n updates for: fr
    From translation svn revision: 39038
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    41      5       source/locale/fr/LC_MESSAGES/nvda.po
    8       3       user_docs/fr/changes.t2t
    95      14      user_docs/fr/userGuide.t2t
     3 files changed, 144 insertions(+), 22 deletions(-)

commit f3b4a9d72ed387c442e6dc7261307a286300c580
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 16 00:05:31 2018 +1000

    L10n updates for: fi
    From translation svn revision: 39038
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    19      7       source/locale/fi/LC_MESSAGES/nvda.po
    4       0       user_docs/fi/changes.t2t
    81      9       user_docs/fi/userGuide.t2t
     3 files changed, 104 insertions(+), 16 deletions(-)

commit fb42dfb75f6e8f9217398d7acae5dd77f0ecd8c5
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 16 00:05:28 2018 +1000

    L10n updates for: fa
    From translation svn revision: 39038
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    29      7       user_docs/fa/changes.t2t
     1 file changed, 29 insertions(+), 7 deletions(-)

commit e127d6ccd7a78532adfb4e6d01b996550cf96454
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 16 00:05:27 2018 +1000

    L10n updates for: es
    From translation svn revision: 39038
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    
    Stats:
    14      2       source/locale/es/LC_MESSAGES/nvda.po
    6       1       user_docs/es/changes.t2t
    82      10      user_docs/es/userGuide.t2t
     3 files changed, 102 insertions(+), 13 deletions(-)

commit 50b0074e53175eba7d42fbc194495c4cf5730452
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 16 00:05:21 2018 +1000

    L10n updates for: de
    From translation svn revision: 39038
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    
    Stats:
    216     321     source/locale/de/LC_MESSAGES/nvda.po
    26      7       source/locale/de/symbols.dic
    114     35      user_docs/de/userGuide.t2t
     3 files changed, 356 insertions(+), 363 deletions(-)

commit f698a1531cdcf6a71c114dbeec40168a2eb9ccde
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 16 00:05:18 2018 +1000

    L10n updates for: da
    From translation svn revision: 39038
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    399     286     source/locale/da/LC_MESSAGES/nvda.po
    5       3       user_docs/da/changes.t2t
    82      10      user_docs/da/userGuide.t2t
     3 files changed, 486 insertions(+), 299 deletions(-)

commit d8591192f6318695978dcb9337258d31768ca705
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 16 00:05:15 2018 +1000

    L10n updates for: ca
    From translation svn revision: 39038
    
    Authors:
    Ruben Alcaraz <ruben.hangar1.8@gmail.com>
    Dr. Mireia Ribera <mireia.ribera@gmail.com>
    Santi Moese <santispock@gmail.com>
    Marina Salse Rovira <salse@ub.edu>
    
    Stats:
    74      54      source/locale/ca/LC_MESSAGES/nvda.po
     1 file changed, 74 insertions(+), 54 deletions(-)

commit 0670ae3491463657f4ccc112658a3eba34589737
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 16 00:05:11 2018 +1000

    L10n updates for: ar
    From translation svn revision: 39038
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    9       1       user_docs/ar/changes.t2t
     1 file changed, 9 insertions(+), 1 deletion(-)

commit d3feebda99cd658a21a2ae9875108c93970f2696
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 16 00:05:08 2018 +1000

    L10n updates for: an
    From translation svn revision: 39038
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    
    Stats:
    1204    1022    source/locale/an/LC_MESSAGES/nvda.po
     1 file changed, 1204 insertions(+), 1022 deletions(-)

commit e51f5080ed738898f5ee6ce5e386741d917e2257
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Sat Feb 10 05:21:33 2018 +0100

    Fix acknowledgement packet handling causing an error when a display isn't fully initialized (#7981)

commit 81d5aab4c03dfbdba7303f07f05adbd65b7cacbc
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Thu Feb 8 20:14:36 2018 -0800

    Docs 2018.1: some more edits to documentation (#7976)
    
    * What's new: linguistic fixes
    
    * User guide: add anchor for HIMS displays

commit 35a927310c496c6cd66091729776c65971a63793
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Feb 9 11:29:07 2018 +1000

    Remove mention of Tiflotechnia Neuance vocalizer from the User Guide.  From now on we will no longer be mentioning any commercial synthesizers in core NVDA documentation. These should be listed on our Extra voices page instead.

commit 4dab17132d764d274dccb3ca0a0ff0a9c469270c
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Feb 9 11:23:48 2018 +1000

    Update what's new

commit 4e01423280dc891c2c38fa3a7907218bb25a8cfa
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Feb 9 11:12:25 2018 +1000

    Update what's new

commit da5f33b74b152a8291761c451577887162c97f08
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Fri Feb 9 02:10:37 2018 +0100

    Native driver for Eurobraille Esys, Esytime and newer Iris displays (#7859)
    
    * Driver for Eurobraille Esys, Esytime and Iris displays.
    
    * Add Eurobraille to the contributors and driver copyright header
    
    * Cleaner HID packet sending
    
    * Removed the word eurobraille from some translator comments and script doc strings in order to make HID input toggling more generic
    
    * Make HID keyboard input getter/setter based
    
    * Make HID input toggle based
    
    * Re-add empty line at end of contributors file
    
    * Add esysuite and esybraille appModules on request of Eurobraille. These appModules simply set NVDA into sleep mode, as these applications are self-voicing/self-brailling

commit 0203f6bee6c24a767c66fcc09a81988095447a08
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Feb 9 11:08:06 2018 +1000

    Update what's new

commit 46459420dc3e1220a081bbc6b5f077a19cacf398
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Fri Feb 9 02:06:56 2018 +0100

    Fix Hims usb detection issues and scroll keys input for Polaris displays (#7865)
    
    * Work around a bug where Hims displays get in a bad state when closing the port without a timeout
    
    * More changes to deal with timeouts
    
    * Fix typo
    
    * Fix support for Hims Braille Sense Polaris scroll keys, thereby moving all supported scroll keys to the BrailleSense base model.

commit df908b7dc5e1d8cd6b77c0b0d5859d0c0216e367
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Feb 9 11:04:22 2018 +1000

    Update what's new

commit 0569e731a0cb4139180b05da0ab9c280df286ccd
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Fri Feb 9 11:02:30 2018 +1000

    Improve presentation in Google sheets (with Braille mode enabled) (#7935)
    
    * Improve presentation in Google Sheets (in braille mode).
    
    * An IAccessible NVDAObject with both a readonly state and editable state should remove its editable state and class itself as just readonly. This ensures that table cells with the readonly state within a contenteditable (such as Google sheets) are correctly presented and do not announce as editable text.
    * Report friendly cell coordinates for spreadsheets in Firefox and Chrome similar to MS Excel, by exposing coltext and rowtext IAccessible2 attributes via the cellCoordsText property.
    
    * IAccessible NVDAObject's positionInfo property: don't expose indexInGroup or similarItemInGroup if this object supports the IAccessibleTableCell interface as a cell's 2d info is much better position information.

commit 06849c9f8bfaf08f88379526eaf1a5fa757f90d8
Merge: 3ff4700da 7b1aefe2c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 9 00:06:12 2018 +1000

    Update translations.
    
    From translation svn revision: 38699

commit 7b1aefe2c7496f49cb93579ba07cf9c30f7c17e1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 9 00:06:12 2018 +1000

    L10n updates for: zh_TW
    From translation svn revision: 38699
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    28      4       source/locale/zh_TW/LC_MESSAGES/nvda.po
     1 file changed, 28 insertions(+), 4 deletions(-)

commit 0fe46355153a0a70f3c7025e846c2b13fd02414a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 9 00:06:07 2018 +1000

    L10n updates for: uk
    From translation svn revision: 38699
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    1184    1015    source/locale/uk/LC_MESSAGES/nvda.po
     1 file changed, 1184 insertions(+), 1015 deletions(-)

commit 0146b08f541b622f6f2c37756e149653892925a6
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 9 00:06:06 2018 +1000

    L10n updates for: tr
    From translation svn revision: 38699
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    116     98      source/locale/tr/LC_MESSAGES/nvda.po
    5       1       user_docs/tr/changes.t2t
    23      23      user_docs/tr/userGuide.t2t
     3 files changed, 144 insertions(+), 122 deletions(-)

commit d283f757063a1f14f23d4b04a91cdea1bd9ed3cd
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 9 00:06:02 2018 +1000

    L10n updates for: sr
    From translation svn revision: 38699
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    27      3       source/locale/sr/LC_MESSAGES/nvda.po
    4       0       user_docs/sr/changes.t2t
    13      6       user_docs/sr/userGuide.t2t
     3 files changed, 44 insertions(+), 9 deletions(-)

commit 7b5912928d517fccbe0c0a0fe9e92fdc81d694b0
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 9 00:05:58 2018 +1000

    L10n updates for: ru
    From translation svn revision: 38699
    
    Authors:
    Ruslan Kolodyazhni <eye0@rambler.ru>
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    29      5       source/locale/ru/LC_MESSAGES/nvda.po
     1 file changed, 29 insertions(+), 5 deletions(-)

commit 6bdf8cf3b3bb5798ca9b50a43c691a1689239cc4
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 9 00:05:56 2018 +1000

    L10n updates for: ro
    From translation svn revision: 38699
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    
    Stats:
    28      4       source/locale/ro/LC_MESSAGES/nvda.po
    4       0       user_docs/ro/changes.t2t
    2       1       user_docs/ro/userGuide.t2t
     3 files changed, 34 insertions(+), 5 deletions(-)

commit 1dd934aed8c7b3c0b3559542d316c98d89227274
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 9 00:05:54 2018 +1000

    L10n updates for: pt_PT
    From translation svn revision: 38699
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    27      3       source/locale/pt_PT/LC_MESSAGES/nvda.po
    69      61      user_docs/pt_PT/userGuide.t2t
     2 files changed, 96 insertions(+), 64 deletions(-)

commit 69c60b8b622fa221ff5157fbf436d29d465c4ac4
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 9 00:05:51 2018 +1000

    L10n updates for: pl
    From translation svn revision: 38699
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <killer@tyflonet.com>
    
    Stats:
    981     815     source/locale/pl/LC_MESSAGES/nvda.po
     1 file changed, 981 insertions(+), 815 deletions(-)

commit a78edb80f04a2969b649d880cb329249fcf21487
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 9 00:05:49 2018 +1000

    L10n updates for: nl
    From translation svn revision: 38699
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <leonard_dev@babbage.com>
    
    Stats:
    15      7       user_docs/nl/userGuide.t2t
     1 file changed, 15 insertions(+), 7 deletions(-)

commit 7813862c048bec49ec264dccb7ed903c87d74b5b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 9 00:05:47 2018 +1000

    L10n updates for: nb_NO
    From translation svn revision: 38699
    
    Authors:
    David Hole <balubathebrave@gmail.com>
    Bjornar Seppola <bjornar@seppola.net>
    
    Stats:
    331     279     source/locale/nb_NO/LC_MESSAGES/nvda.po
     1 file changed, 331 insertions(+), 279 deletions(-)

commit e5ef0f13bbd3194a9fa4b05124c49eefac24ff30
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 9 00:05:43 2018 +1000

    L10n updates for: ko
    From translation svn revision: 38699
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    
    Stats:
    1163    923     source/locale/ko/LC_MESSAGES/nvda.po
    2       0       user_docs/ko/changes.t2t
    12      12      user_docs/ko/userGuide.t2t
     3 files changed, 1177 insertions(+), 935 deletions(-)

commit 7c3c14334dd0556c3cb9e8080c39b858e370b382
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 9 00:05:41 2018 +1000

    L10n updates for: ja
    From translation svn revision: 38699
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    26      5       source/locale/ja/LC_MESSAGES/nvda.po
    51      0       user_docs/ja/changes.t2t
    296     265     user_docs/ja/userGuide.t2t
     3 files changed, 373 insertions(+), 270 deletions(-)

commit 8d593403eaef4d211aefad3de48ddc89e55ba003
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 9 00:05:38 2018 +1000

    L10n updates for: it
    From translation svn revision: 38699
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    28      4       source/locale/it/LC_MESSAGES/nvda.po
     1 file changed, 28 insertions(+), 4 deletions(-)

commit 4a26e0d6e12dab6b903a2bea0cb52f672c85f776
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 9 00:05:34 2018 +1000

    L10n updates for: hr
    From translation svn revision: 38699
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Mario Percinic <mario.percinic@gmail.com>
    Tea Turkovic <tturkovi@gmail.com>
    
    Stats:
    28      4       source/locale/hr/LC_MESSAGES/nvda.po
    4       0       user_docs/hr/changes.t2t
    13      5       user_docs/hr/userGuide.t2t
     3 files changed, 45 insertions(+), 9 deletions(-)

commit 60a6c7707d01b15a9b121b0060a7a27076e07f89
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 9 00:05:30 2018 +1000

    L10n updates for: gl
    From translation svn revision: 38699
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    
    Stats:
    28      4       source/locale/gl/LC_MESSAGES/nvda.po
    4       0       user_docs/gl/changes.t2t
    13      5       user_docs/gl/userGuide.t2t
     3 files changed, 45 insertions(+), 9 deletions(-)

commit f6f78bac8179765bf6c8eefcd975dc3874568119
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 9 00:05:27 2018 +1000

    L10n updates for: fr
    From translation svn revision: 38699
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    4       0       user_docs/fr/changes.t2t
    2       2       user_docs/fr/userGuide.t2t
     2 files changed, 6 insertions(+), 2 deletions(-)

commit 3a03b99f768172eaa5f8c0962782e3e18bc2b2dd
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 9 00:05:26 2018 +1000

    L10n updates for: fi
    From translation svn revision: 38699
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    28      4       source/locale/fi/LC_MESSAGES/nvda.po
    4       0       user_docs/fi/changes.t2t
    14      6       user_docs/fi/userGuide.t2t
     3 files changed, 46 insertions(+), 10 deletions(-)

commit 654b0771123024f0e4ac3613967f326341640f2d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 9 00:05:22 2018 +1000

    L10n updates for: es
    From translation svn revision: 38699
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    
    Stats:
    28      4       source/locale/es/LC_MESSAGES/nvda.po
    4       0       user_docs/es/changes.t2t
    13      5       user_docs/es/userGuide.t2t
     3 files changed, 45 insertions(+), 9 deletions(-)

commit 9270a95ac7daa6bbf4cd75f6702de5f0d60ebfe0
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 9 00:05:15 2018 +1000

    L10n updates for: da
    From translation svn revision: 38699
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    3       0       user_docs/da/changes.t2t
    13      4       user_docs/da/userGuide.t2t
     2 files changed, 16 insertions(+), 4 deletions(-)

commit 27814e7f19338958ed01752823c7a72022b6bd95
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 9 00:05:09 2018 +1000

    L10n updates for: ar
    From translation svn revision: 38699
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    1166    999     source/locale/ar/LC_MESSAGES/nvda.po
     1 file changed, 1166 insertions(+), 999 deletions(-)

commit 3ff4700da2b2f6c4a5b470a16af310ba51c33d9d
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Feb 2 11:27:49 2018 +1000

    Update what's new.

commit d7ce072beb66005deaa07916c941c60738b5b465
Author: Francisco R. Del Roio <francipvb@users.noreply.github.com>
Date:   Thu Feb 1 22:25:20 2018 -0300

    Use Python launcher if present (#7541)
    
    * The scons batch file now will use the Python launcher if available to specifically launch scons.py with Python 2.7 32 bit. If the launcher does not exist, it falls back to the original vehaviour of getting the shell to open scons.py.

commit 2017d1f54fb8a1a7fb66e0b21127ec57e12f24cc
Merge: 15358b6c0 d45092baf
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 2 00:06:09 2018 +1000

    Update translations.
    
    From translation svn revision: 38526

commit d45092bafef254a2b5d05058bf8d9a368a97f70b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 2 00:06:09 2018 +1000

    L10n updates for: zh_TW
    From translation svn revision: 38526
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    11      11      source/locale/zh_TW/LC_MESSAGES/nvda.po
    14      10      user_docs/zh_TW/userGuide.t2t
     2 files changed, 25 insertions(+), 21 deletions(-)

commit d25c836ed723c3c4fc0c423fa30445cd36305b45
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 2 00:06:05 2018 +1000

    L10n updates for: vi
    From translation svn revision: 38526
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    31      44      source/locale/vi/LC_MESSAGES/nvda.po
    113     0       user_docs/vi/changes.t2t
    8       9       user_docs/vi/userGuide.t2t
     3 files changed, 152 insertions(+), 53 deletions(-)

commit 4e5041aaac942c5ff0b2e59775787a9bcfcb49ee
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 2 00:06:02 2018 +1000

    L10n updates for: tr
    From translation svn revision: 38526
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    1102    981     source/locale/tr/LC_MESSAGES/nvda.po
    22      5       user_docs/tr/changes.t2t
    239     221     user_docs/tr/userGuide.t2t
     3 files changed, 1363 insertions(+), 1207 deletions(-)

commit 28b0f0287f72e60fe6d50f40f8f55f47a53c883b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 2 00:06:00 2018 +1000

    L10n updates for: ta
    From translation svn revision: 38526
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    10      6       user_docs/ta/userGuide.t2t
     1 file changed, 10 insertions(+), 6 deletions(-)

commit 6a445990b1813ac43e8b76c8e781be9ef3b243f4
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 2 00:05:55 2018 +1000

    L10n updates for: ru
    From translation svn revision: 38526
    
    Authors:
    Ruslan Kolodyazhni <eye0@rambler.ru>
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    1081    1006    source/locale/ru/LC_MESSAGES/nvda.po
    47      0       user_docs/ru/changes.t2t
    291     269     user_docs/ru/userGuide.t2t
     3 files changed, 1419 insertions(+), 1275 deletions(-)

commit 63e5734bbb048d92a93488f880535f03c0efb651
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 2 00:05:52 2018 +1000

    L10n updates for: ro
    From translation svn revision: 38526
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    Dragoș Grecianu <grecianu.dragos@gmail.com>
    
    Stats:
    3       3       source/locale/ro/LC_MESSAGES/nvda.po
    13      15      user_docs/ro/userGuide.t2t
     2 files changed, 16 insertions(+), 18 deletions(-)

commit 1593617b7d8619a694e81824ae4046e8e57067ee
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 2 00:05:50 2018 +1000

    L10n updates for: pt_PT
    From translation svn revision: 38526
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    1132    989     source/locale/pt_PT/LC_MESSAGES/nvda.po
    170     153     user_docs/pt_PT/userGuide.t2t
     2 files changed, 1302 insertions(+), 1142 deletions(-)

commit 292f454986ef135c3b7b3524fad6139ba21d449e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 2 00:05:11 2018 +1000

    L10n updates for: ar
    From translation svn revision: 38526
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    12      4       user_docs/ar/changes.t2t
     1 file changed, 12 insertions(+), 4 deletions(-)

commit 15358b6c0061426add8acb5ee10cb68c7339bf3b
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Feb 1 16:19:41 2018 +1000

    Remove extra space from What's new document

commit cae6c2c9f71bc15cb92870de4ab4555911cd8dfd
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Feb 1 07:46:29 2018 +1000

    Update wha's new

commit 728f82a899ccbea79d4e49ed0f7d0fa93a1f5e21
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Wed Jan 31 22:42:41 2018 +0100

    Native driver for Optelec ALVA 6 displays with support for raw braille input and the Optelec protocool converter (#7884)
    
    * New, native driver for ALVA 6 series displays. The new alva driver replaces the alvaBC6 driver. This new driver supports raw keyboard input, time synchronisation and properly updates the number of cells for split point changes.
    
    * Made it more clear in the user guide that by default, ALVA uses its own braille input system
    
    * Add an additional note to the user guide about Bluetooth pairing
    
    * Fix typo

commit 7f1302411300d7faa33898208ad14290ff34bbad
Author: Reef Turner <reef@nvaccess.org>
Date:   Tue Jan 30 06:12:33 2018 +0000

    Update changes file for PR #7479
    
    Add support for VitalSource Bookshelf (Issue #7155)

commit cd421d8352ae1cc6a1e472adc3875968d3a92200
Author: nvdaes <nrm1977@gmail.com>
Date:   Tue Jan 30 07:10:21 2018 +0100

    Add support for VitalSource Bookshelf (PR #7479)
    
    Fixes #7155

commit 3ba20ade2ccd570aeaf23786fe8745a3120faf0b
Merge: e6292ba9e 335935d4f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 26 00:06:05 2018 +1000

    Update translations.
    
    From translation svn revision: 38344

commit 335935d4f1aabf19ab2c984ad6b64047e973c3ae
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 26 00:06:04 2018 +1000

    L10n updates for: zh_TW
    From translation svn revision: 38344
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    207     148     source/locale/zh_TW/LC_MESSAGES/nvda.po
    87      87      source/locale/zh_TW/characterDescriptions.dic
     2 files changed, 294 insertions(+), 235 deletions(-)

commit 2b0bec93bd96d69e20bb227e199a6065f1c1bca5
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 26 00:06:01 2018 +1000

    L10n updates for: vi
    From translation svn revision: 38344
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    1115    974     source/locale/vi/LC_MESSAGES/nvda.po
     1 file changed, 1115 insertions(+), 974 deletions(-)

commit 641d09ae1b4e94b6d634214d01cb1d10d59033b7
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 26 00:05:57 2018 +1000

    L10n updates for: ta
    From translation svn revision: 38344
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    215     163     source/locale/ta/LC_MESSAGES/nvda.po
     1 file changed, 215 insertions(+), 163 deletions(-)

commit 433d563525abc4d75ee5d276e2d04fefc41480b5
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 26 00:05:55 2018 +1000

    L10n updates for: sr
    From translation svn revision: 38344
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <9a5dsz@gozaltech.org>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    1118    974     source/locale/sr/LC_MESSAGES/nvda.po
    22      2       user_docs/sr/changes.t2t
    233     211     user_docs/sr/userGuide.t2t
     3 files changed, 1373 insertions(+), 1187 deletions(-)

commit c3310c43aba87174828b4ba26b61cc7b4d844b2f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 26 00:05:50 2018 +1000

    L10n updates for: ro
    From translation svn revision: 38344
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    
    Stats:
    226     167     source/locale/ro/LC_MESSAGES/nvda.po
    14      5       user_docs/ro/changes.t2t
    9       5       user_docs/ro/userGuide.t2t
     3 files changed, 249 insertions(+), 177 deletions(-)

commit f658e9622d6e20be8c4bd9ce706b5ae854c38079
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 26 00:05:47 2018 +1000

    L10n updates for: pt_BR
    From translation svn revision: 38344
    
    Authors:
    Cleverson Casarin Uliana <clever97@gmail.com>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
    
    Stats:
    1165    1021    source/locale/pt_BR/LC_MESSAGES/nvda.po
     1 file changed, 1165 insertions(+), 1021 deletions(-)

commit cd8fc0c9112933f40a072af8cc2efd626d2edb37
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 26 00:05:44 2018 +1000

    L10n updates for: nl
    From translation svn revision: 38344
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <leonard_dev@babbage.com>
    
    Stats:
    11      7       user_docs/nl/userGuide.t2t
     1 file changed, 11 insertions(+), 7 deletions(-)

commit 5681c3d76bdb043b73a4ab0acd97c1c989dfe2a6
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 26 00:05:37 2018 +1000

    L10n updates for: ja
    From translation svn revision: 38344
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    201     194     source/locale/ja/LC_MESSAGES/nvda.po
     1 file changed, 201 insertions(+), 194 deletions(-)

commit 7d8b1797707e9df4b077f260e7e67849fc347831
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 26 00:05:35 2018 +1000

    L10n updates for: it
    From translation svn revision: 38344
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    1128    980     source/locale/it/LC_MESSAGES/nvda.po
    296     272     user_docs/it/userGuide.t2t
     2 files changed, 1424 insertions(+), 1252 deletions(-)

commit 1723b723095d03f95faee9172cbd2134a923630c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 26 00:05:31 2018 +1000

    L10n updates for: hr
    From translation svn revision: 38344
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Mario Percinic <mario.percinic@gmail.com>
    Tea Turkovic <tturkovi@gmail.com>
    
    Stats:
    219     160     source/locale/hr/LC_MESSAGES/nvda.po
    33      20      user_docs/hr/changes.t2t
    10      6       user_docs/hr/userGuide.t2t
     3 files changed, 262 insertions(+), 186 deletions(-)

commit 49a3f80c604779684785c10186b43042666f002f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 26 00:05:28 2018 +1000

    L10n updates for: gl
    From translation svn revision: 38344
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    
    Stats:
    223     164     source/locale/gl/LC_MESSAGES/nvda.po
    13      4       user_docs/gl/changes.t2t
    10      6       user_docs/gl/userGuide.t2t
     3 files changed, 246 insertions(+), 174 deletions(-)

commit 581bcdf1d2c9b0826c1777b63fdb8ce737d3a8fd
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 26 00:05:26 2018 +1000

    L10n updates for: fr
    From translation svn revision: 38344
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    226     167     source/locale/fr/LC_MESSAGES/nvda.po
    24      16      user_docs/fr/changes.t2t
    292     270     user_docs/fr/userGuide.t2t
     3 files changed, 542 insertions(+), 453 deletions(-)

commit 677d330d2c9b43661bc3ca9f15a2143c4cbc8ead
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 26 00:05:24 2018 +1000

    L10n updates for: fi
    From translation svn revision: 38344
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    220     161     source/locale/fi/LC_MESSAGES/nvda.po
    12      4       user_docs/fi/changes.t2t
    9       6       user_docs/fi/userGuide.t2t
     3 files changed, 241 insertions(+), 171 deletions(-)

commit 4bb370bff087a5214afcdcef4c54b1bf85a6cb2a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 26 00:05:23 2018 +1000

    L10n updates for: fa
    From translation svn revision: 38344
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    291     269     user_docs/fa/userGuide.t2t
     1 file changed, 291 insertions(+), 269 deletions(-)

commit 353fd29a89ff15c608747db945a97f462c917cd1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 26 00:05:21 2018 +1000

    L10n updates for: es
    From translation svn revision: 38344
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    
    Stats:
    229     170     source/locale/es/LC_MESSAGES/nvda.po
    13      4       user_docs/es/changes.t2t
    10      6       user_docs/es/userGuide.t2t
     3 files changed, 252 insertions(+), 180 deletions(-)

commit 89e4e6a56dfe01a1967b71a3319ddcce37bab46e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 26 00:05:17 2018 +1000

    L10n updates for: de
    From translation svn revision: 38344
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    Robert Hänggi <aarjay.robert@gmail.com>
    
    Stats:
    1125    997     source/locale/de/LC_MESSAGES/nvda.po
    14      5       user_docs/de/changes.t2t
    10      6       user_docs/de/userGuide.t2t
     3 files changed, 1149 insertions(+), 1008 deletions(-)

commit 2c9d947d8f926f7f68063818387cc8ec254c0c57
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 26 00:05:15 2018 +1000

    L10n updates for: de_CH
    From translation svn revision: 38344
    
    Authors:
    Robert Hänggi <aarjay.robert@gmail.com>
    
    Stats:
    10787   0       source/locale/de_CH/LC_MESSAGES/nvda.po
    35      0       source/locale/de_CH/characterDescriptions.dic
    169     0       source/locale/de_CH/symbols.dic
    2293    0       user_docs/de_CH/changes.t2t
    2606    0       user_docs/de_CH/userGuide.t2t
     5 files changed, 15890 insertions(+)

commit c588ae8d019908ae7fd6a151428d4b6b62b34f27
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 26 00:05:13 2018 +1000

    L10n updates for: da
    From translation svn revision: 38344
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    325     264     source/locale/da/LC_MESSAGES/nvda.po
    29      45      user_docs/da/changes.t2t
    129     126     user_docs/da/userGuide.t2t
     3 files changed, 483 insertions(+), 435 deletions(-)

commit 5e20d387cc43fafb1dba45effbaf95547de3a302
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 26 00:05:11 2018 +1000

    L10n updates for: ca
    From translation svn revision: 38344
    
    Authors:
    Ruben Alcaraz <ruben.hangar1.8@gmail.com>
    Dr. Mireia Ribera <mireia.ribera@gmail.com>
    Santi Moese <santispock@gmail.com>
    Marina Salse Rovira <salse@ub.edu>
    
    Stats:
    1139    995     source/locale/ca/LC_MESSAGES/nvda.po
     1 file changed, 1139 insertions(+), 995 deletions(-)

commit e6292ba9efbbfaea525bd1aa1ded3e07518ac654
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Thu Jan 18 21:49:47 2018 +0100

    Fix issue where config profile switches did not change the tether setting when manually tethered (#7919)

commit 057efc98a4f5057cbf7acac85d61db01ff369a33
Merge: 63d7edb57 eb72ebdaf
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 19 00:06:03 2018 +1000

    Update translations.
    
    From translation svn revision: 38174

commit eb72ebdaf241749ae52bb06988843e5cac6a0002
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 19 00:06:03 2018 +1000

    L10n updates for: zh_TW
    From translation svn revision: 38174
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    3       3       source/locale/zh_TW/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 3 deletions(-)

commit 11ec4811acefa36c761f95d9a6f9a0149c522e5a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 19 00:05:56 2018 +1000

    L10n updates for: ta
    From translation svn revision: 38174
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    868     802     source/locale/ta/LC_MESSAGES/nvda.po
    7       7       user_docs/ta/userGuide.t2t
     2 files changed, 875 insertions(+), 809 deletions(-)

commit b0bddb2b885f96719833d2d66f39ee2deabfef0c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 19 00:05:40 2018 +1000

    L10n updates for: nb_NO
    From translation svn revision: 38174
    
    Authors:
    David Hole <balubathebrave@gmail.com>
    Bjornar Seppola <bjornar@seppola.net>
    
    Stats:
    978     878     source/locale/nb_NO/LC_MESSAGES/nvda.po
     1 file changed, 978 insertions(+), 878 deletions(-)

commit b087c574e5e841766c30c6f1eee1258d38c75988
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 19 00:05:21 2018 +1000

    L10n updates for: fa
    From translation svn revision: 38174
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    1       1       user_docs/fa/changes.t2t
     1 file changed, 1 insertion(+), 1 deletion(-)

commit ecd981c5bc1672ecea761293db82e54fa573a864
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 19 00:05:16 2018 +1000

    L10n updates for: de
    From translation svn revision: 38174
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    
    Stats:
    4       0       user_docs/de/changes.t2t
     1 file changed, 4 insertions(+)

commit 09530a78b9c2e0f2c546a662dca4289b8972bd21
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 19 00:05:14 2018 +1000

    L10n updates for: da
    From translation svn revision: 38174
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    1124    1132    source/locale/da/LC_MESSAGES/nvda.po
     1 file changed, 1124 insertions(+), 1132 deletions(-)

commit 63d7edb571a2c781dc90f059414140b74f432b41
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Thu Jan 18 00:52:22 2018 -0800

    What's new and user guide: reorganization, new language, add missing bug fix entry on #7456 (#7918)
    
    * User guide: additions and deletions.
    
    * Added a note about touchscreen support in feature highlights list.
    * Removed blank lines and unintended indentation.
    
    * User guide: add missing anchor for browse mode settings
    
    * What's new: linguistic fixes
    
    * Remove double spaces and spelling of PowerPoint.
    
    Reviewed by Reef Turner (NV Access): remove double spaces.
    
    * User guide and what's new: reorganization, add Kyrgyz as a supported language.
    
    What's new: moved charts entry to new features section. Add Kyrgyz as a new language.
    User guide: now translated into 52 languages.

commit 286753094658461e8b01cb4b95938807a38695b2
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Thu Jan 18 09:44:38 2018 +0100

    Fix case in BrailleDisplayDriver._getModifierGestures where the function assumed that the script name was a string, while it was in fact a None (#7886)

commit 9f26663b04db95863456e9038b436c374ad0d02d
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Jan 18 07:09:04 2018 +1000

    Update what's new

commit 38d28f9ca9fb484bcc046739e8297e2f04256a3e
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Thu Jan 18 07:06:29 2018 +1000

    Allow access to Microsoft Word documents via UIAutomation, providing a significant speed improvement, and ability to access documents when in-process injection is impossible. (#7849)
    
    * Add support for table navigation (control+alt+arrows) to MS word with UIA support, by abstracting existing browseMode table navigation code even further.
    
    Specifically:
    Add a new documentBase module which contains:
    * TextContainerObject, which is an object that can make a textInfo. It contains a TextInfo class property, as well as makeTextInfo, and selection getter and setter. This is now inherited by NVDAObject and documentTreeInterceptor.
    * DocumentWithTableNavigation: a TextContainerObject that contains table navigation scripts, implemented by abstraction table code that used to exist in browseMode. Now BrowseModeDocument inherits from this.
    UIABrowseModeDocument's _getTableCellAt was moved into its own UIADocumentWithTableNavigation class, which UIABrowseModeDocument now inherits from, and so dos the UIA WordDocument NVDAObject class, thus now giving UIA word document support table navigation outside browse mode.
    
    * Allow browse mode in Microsoft Word using UIA
    
    * UIATextInfo: detect spelling errors when they are a part of multiple annotation types, such as for Microsoft Word.
    
    UIATextInfo: support reporting of comments.
    
    UIATextInfo: support reporting of style name (E.g. Microsoft Word styles)
    
    UIATextInfo: report insertion and deletion revisions (Though Edge and MS Word don't seem to implement this yet).
    
    UIATextInfo: report linespacing.
    
    * UIA WordDocumentTextInfo: announce lists correctly and stop announcing edit  in tables of contents.
    
    UIA wordDocumentTextInfo: support page numbers.
    
    UIA Word document support: Always at least split by unit format when fetching formatting. Fetching formatting for the entire text chunk may not be good as some annotationTypes such as spelling return valid results for the total range, and therefore do not give the greatest resolution
    
    UIA WordDocumentTextInfo: remove som old code that detected annoying editable text nodes which no longer works.
    
    UIA word document: report existance of footnotes and endnotes within text.
    
    UIA WordDocument: add reportCurrentComment script
    
    * Move some Windows Winword NVDAObject stuff into IAccessible WinWord NVDAObject.
    
    Use UIA with Microsoft word if NVDA connot inject, or NVDA is specifically configured to do so.
    
    Choose WordDocument with IAccessible
    
    Outlook appModule: grab WordDocument code from IAccessible rather than Window
    
    * UIA NVDAObject: rowHeaderText and columnHeaderText now filter out the current cell from the headers if inappropriately put there by the UIA implementation.
    
    * Winword's script_tab: when  we have a collapsed range on a table cell, expand to paragraph rather than cell, as not all implementations can support cell (such as UIA). Paragraph is certainly enough info to speak anyway.
    
    * Allow editableText's newLine script to announce the entire new line if announceEntireNewLine class viarable is true. This is false by default, but UIA WordDocument sets this to true for better list bullet reading.
    
    * UIA NVDAObject: add the EditableTextWithOutAutoSelectDetection mixin class at the very end before the base UIA class, so that subclasses of UIA can override methods and properties of EditableTextWithoutAutoSelectDetection (such as for controlling of announcement of new line text).
    
    * UIA WordDocument: for now suppress announcement of entering and exiting lists. this ensures compatibility with the older MS Word implementation, and stops confusion when pressing enter for new bullets where  NVDA was announcing exiting and then entering a new list.
    
    * UIA browseMode: add support for quicknav and elements list for spelling errors.
    
    * UIA WordDocument support: add quicknav / elements list for comments (currently under annotations like old MS Word).
    
    * Add support for grammar errors to UIA (inline reading, quicknav and elements list.)
    
    * Fix comment
    
    * UIA WordDocument: initial support for track changes in elements list.  Unable to fetch author and date info at this point in time.
    
    * UIA MS Word support: allow backspace to work again. Seems like range comparison is now broken in MS Word's UIA implementation as well.
    
    * UIA MS Word support: don't list charts in elements list as this cannot be supported currently.
    
    * UIATextInfo: fix an AttributeError  on Windows 7 by defining the fetchAnnotationTypes variable before any point where it can be used. Specifically: If the IUIAutomationTextRange3 interface was missing, fetchAnnotationTypes was never set. It should be set to False by default.

commit 1ce1c3e1469a8bf736cdffc21643366ed2165325
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Jan 16 06:37:33 2018 +1000

    Update what's new

commit 841ee00a7eb57d2c651a0fa6893f75e2555464d1
Author: Leonard de Ruijter <leonardder@users.noreply.github.com>
Date:   Mon Jan 15 21:34:42 2018 +0100

    Add the ability to automatically tether to focus or review (#7489)
    
    * Add support for auto tethering to NVDA
    
    * Use extensionPoints.callWithSupportedKwargs as a fallback for executing event handlers, to support executing events with undefined kwargs.
    
    * Pass an additional parameter for becomeNavigatorObject (isFocus)
    
    * Some small comma fixes and default params are now correct
    
    * Make sure caret moves properly update the braille display when it was tethered to review before
    
    * Some more logging in eventHandler
    
    * More review actions regarding UX
    
    * Update user guide
    
    * DO not update the review position when a tether to focus is expected due to the review move being caused by a focus or caret change
    
    * Fix failing cursor manager test
    
    * Deal with auto tethering in the braille to focus script
    
    * fix braille_toFocus in such a way that it also goes back to focus when reviewing a terminal
    
    * Fix cases where tethering to review and back to focus in browse mode would result in the caret not being followed correctly. This also applies to the braille_toFocus script
    
    * No longer handleGainFocus when tethered to review, and no longer handleReviewMove when tethered to focus

commit d8bc29d928d39ba49d5ee21b00bebb7da00f7afb
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Jan 15 06:51:36 2018 +1000

    Change the Mozilla symbol upload URL per request from Mozilla.

commit dbf5d5436b9c1041373d2e40a63dbb1ed4ee4bcd
Merge: 93884c84f 247af3c2b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 12 00:06:07 2018 +1000

    Update translations.
    
    From translation svn revision: 38157

commit 247af3c2b6d9b97b980d6cfe4fdd06cec7fcd321
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 12 00:06:06 2018 +1000

    L10n updates for: zh_TW
    From translation svn revision: 38157
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    868     800     source/locale/zh_TW/LC_MESSAGES/nvda.po
    354     336     user_docs/zh_TW/userGuide.t2t
     2 files changed, 1222 insertions(+), 1136 deletions(-)

commit 065ce63368de142ccbe5ab9698b68414fef83c67
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 12 00:05:52 2018 +1000

    L10n updates for: ro
    From translation svn revision: 38157
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    
    Stats:
    865     796     source/locale/ro/LC_MESSAGES/nvda.po
    9       2       user_docs/ro/changes.t2t
    4       4       user_docs/ro/userGuide.t2t
     3 files changed, 878 insertions(+), 802 deletions(-)

commit 1e6dbb8f237e4d60ba430421549b18b4e5b86ab9
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 12 00:05:46 2018 +1000

    L10n updates for: nl
    From translation svn revision: 38157
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <leonard_dev@babbage.com>
    
    Stats:
    230     229     user_docs/nl/userGuide.t2t
     1 file changed, 230 insertions(+), 229 deletions(-)

commit 5e8cc323f69525f47c11b5bcd1800e345e8bc784
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 12 00:05:42 2018 +1000

    L10n updates for: mk
    From translation svn revision: 38157
    
    Authors:
    zvonimir stanecic <9a5dsz@gozaltech.org>
    Kiko Lazarev <kristijan.lazarev@gmail.com>
    
    Stats:
    932     845     source/locale/mk/LC_MESSAGES/nvda.po
     1 file changed, 932 insertions(+), 845 deletions(-)

commit ada35c698924b3f480ad53243c7ba414cce3ab78
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 12 00:05:40 2018 +1000

    L10n updates for: ky
    From translation svn revision: 38157
    
    Authors:
    Bermet Zhakypbekova <bermet.zhakypbekova@gmail.com>
    
    Stats:
    10015   0       source/locale/ky/LC_MESSAGES/nvda.po
     1 file changed, 10015 insertions(+)

commit d5efd925efa20da9ca127d8e1d52b619f9268e37
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 12 00:05:39 2018 +1000

    L10n updates for: ko
    From translation svn revision: 38157
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    
    Stats:
    3       3       user_docs/ko/userGuide.t2t
     1 file changed, 3 insertions(+), 3 deletions(-)

commit 1a5dffe34e515f27ee3e3076080d8ddf44d8985e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 12 00:05:37 2018 +1000

    L10n updates for: ja
    From translation svn revision: 38157
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    900     832     source/locale/ja/LC_MESSAGES/nvda.po
     1 file changed, 900 insertions(+), 832 deletions(-)

commit 9c09b362e74d561cdf31966ec6b16c8587593604
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 12 00:05:31 2018 +1000

    L10n updates for: hr
    From translation svn revision: 38157
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <9a5dsz@gozaltech.org>
    Mario Percinic <mario.percinic@gmail.com>
    Tea Turkovic <tturkovi@gmail.com>
    
    Stats:
    923     835     source/locale/hr/LC_MESSAGES/nvda.po
    289     271     user_docs/hr/userGuide.t2t
     2 files changed, 1212 insertions(+), 1106 deletions(-)

commit 7f803767de358cefb09f1d94f0e34438d9e7af16
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 12 00:05:28 2018 +1000

    L10n updates for: gl
    From translation svn revision: 38157
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    
    Stats:
    865     795     source/locale/gl/LC_MESSAGES/nvda.po
    12      4       user_docs/gl/changes.t2t
    6       6       user_docs/gl/userGuide.t2t
     3 files changed, 883 insertions(+), 805 deletions(-)

commit 60edea4f7a1bd0d0894957ba68392eff259e3712
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 12 00:05:26 2018 +1000

    L10n updates for: fr
    From translation svn revision: 38157
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    912     843     source/locale/fr/LC_MESSAGES/nvda.po
    9       1       user_docs/fr/changes.t2t
    4       4       user_docs/fr/userGuide.t2t
     3 files changed, 925 insertions(+), 848 deletions(-)

commit fee8bd4a0c2c5b2748f940c96b7136af9c67ade8
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 12 00:05:24 2018 +1000

    L10n updates for: fi
    From translation svn revision: 38157
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    864     794     source/locale/fi/LC_MESSAGES/nvda.po
    9       3       user_docs/fi/changes.t2t
    9       8       user_docs/fi/userGuide.t2t
     3 files changed, 882 insertions(+), 805 deletions(-)

commit 1aa0ca0c9a2126d22cacb51c391e82c4dd7f3343
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 12 00:05:22 2018 +1000

    L10n updates for: fa
    From translation svn revision: 38157
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    23      2       user_docs/fa/changes.t2t
     1 file changed, 23 insertions(+), 2 deletions(-)

commit 192b2a006dbeb9f143be2e57d47370d9ba12a822
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 12 00:05:21 2018 +1000

    L10n updates for: es
    From translation svn revision: 38157
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    
    Stats:
    916     845     source/locale/es/LC_MESSAGES/nvda.po
    11      3       user_docs/es/changes.t2t
    6       6       user_docs/es/userGuide.t2t
     3 files changed, 933 insertions(+), 854 deletions(-)

commit 20276d2fb18eb859d8ab181fc70fa6c3fcb7a4e0
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 12 00:05:16 2018 +1000

    L10n updates for: de
    From translation svn revision: 38157
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    
    Stats:
    16      12      user_docs/de/changes.t2t
    4       4       user_docs/de/userGuide.t2t
     2 files changed, 20 insertions(+), 16 deletions(-)

commit 7b33a5c29499241826eb44a5a84a96ed34478d86
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 12 00:05:08 2018 +1000

    L10n updates for: ar
    From translation svn revision: 38157
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    25      0       user_docs/ar/changes.t2t
     1 file changed, 25 insertions(+)

commit 93884c84f809a674f0835b08a68d1336aeda6b09
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Jan 10 10:07:29 2018 +1000

    Add externally translated Indonesian userGuide.

commit 0d94f5dddb09de799d1130031c05387254815f6a
Merge: 28966ddf8 f0d6867da
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 5 00:05:59 2018 +1000

    Update translations.
    
    From translation svn revision: 37941

commit f0d6867da61af90553d1c60212369647085c9b2e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 5 00:05:59 2018 +1000

    L10n updates for: zh_TW
    From translation svn revision: 37941
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    3       3       source/locale/zh_TW/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 3 deletions(-)

commit dc3af6de125b814e341a7250f1694aa576f1f30a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 5 00:05:54 2018 +1000

    L10n updates for: tr
    From translation svn revision: 37941
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    19      2       source/locale/tr/LC_MESSAGES/nvda.po
     1 file changed, 19 insertions(+), 2 deletions(-)

commit 351cf4ebbf5726c57612272d6c426f69d66c7ccf
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 5 00:05:52 2018 +1000

    L10n updates for: ta
    From translation svn revision: 37941
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    24      7       source/locale/ta/LC_MESSAGES/nvda.po
    205     204     user_docs/ta/userGuide.t2t
     2 files changed, 229 insertions(+), 211 deletions(-)

commit 02b452f959cc301c9089206f847eb114df97caf4
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 5 00:05:39 2018 +1000

    L10n updates for: nl
    From translation svn revision: 37941
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <leonard_dev@babbage.com>
    
    Stats:
    18      1       user_docs/nl/userGuide.t2t
     1 file changed, 18 insertions(+), 1 deletion(-)

commit c6cfa735bbade7e9bb13f0a181cc841ce8a71a04
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 5 00:05:34 2018 +1000

    L10n updates for: ko
    From translation svn revision: 37941
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    
    Stats:
    11      0       user_docs/ko/changes.t2t
    7       7       user_docs/ko/userGuide.t2t
     2 files changed, 18 insertions(+), 7 deletions(-)

commit 520100780b5a28020043ee775be63a9f4ccaa5bf
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 5 00:05:15 2018 +1000

    L10n updates for: de
    From translation svn revision: 37941
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    Karl Eick <hozosch@web.de>
    
    Stats:
    7       0       user_docs/de/changes.t2t
    221     206     user_docs/de/userGuide.t2t
     2 files changed, 228 insertions(+), 206 deletions(-)

commit e4d0f9501c01478716f0e2c4ac30ed7b383510c1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 5 00:05:13 2018 +1000

    L10n updates for: da
    From translation svn revision: 37941
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    453     258     source/locale/da/LC_MESSAGES/nvda.po
    137     119     user_docs/da/userGuide.t2t
     2 files changed, 590 insertions(+), 377 deletions(-)

commit 28966ddf850f0369b9c411c73c568c7e6e9f5285
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Jan 4 11:14:02 2018 +1000

    Update What's new.

commit 2571d54d2aee918e1c78c251a6e83fdd73571efb
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Thu Jan 4 11:12:13 2018 +1000

    Package NVDA for the Windows Store (#7851)
    
    * Allow Building an appx package by running scons appx
    * appveyor should also build the appx package
    * Disable features that are incompatible with Windows Store policy
    * Restart on Windows store updates
    * Change publisher to match Windows store, and set appx version so  minor is build and revision is 0
    * Hardcode certain Windows Store publisher details, and don't sign the appx anymore (Windows Store does that).
    * Change back the publisher to NV Access in appveyor.yml.  It is now hardcoded separately in the appx manifest for windows store.
    * scons appx now produces two appx files:
     * storeSubmition: not signed, and a publisher ID matching NV Access Limited's Store publisher ID. Suitable for submitting to the Windows Store via NV Access Limited's developer account
     * sideLoadable: signed by NV Access Limited, suitable for installing on a Windows 10 system manually as a side-loaded app for testing.

commit 8cfdfe2fa36e3f0ed3d8848b6de482792a2bb3d1
Author: ThomasStivers <thomas.stivers@gmail.com>
Date:   Wed Jan 3 18:21:01 2018 -0600

    Fixes for Anchors in the User Guide (PR #7890)
    
    Fix problems found in #7881.

commit f7853f34bba62ffc34b7df793be24c114737fb4f
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Tue Jan 2 23:59:49 2018 -0800

    Dev docs: use absolute path when creating development documentation, include missing speech dict handler in NVDA 2017.4 (PR #7861)
    
    When building development docs, sourceEnv is imported again. Somehow, using `os.path.dirname(os.path.dirname(__file__))` yields an empty path, so resort to using absolute path, which then allows dev docs switch to work properly.
    
    scons/devDocs: include speechDictHandler folder from 2017.4 onwards, change http to https

commit 2bc0511af6e7c6b09fa40ff4b07abb543de343ce
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Mon Jan 1 22:47:54 2018 -0800

    User guide and what's new: linguistic fixes, add missing anchor tag (PR #7881)
    
    User guide:
    * add missing anchor for browse mode settings
    * Added a note about touchscreen support in feature highlights list.
    * Removed blank lines and unintended indentation.
    
    What's new:
    * linguistic fixes
    * Remove double spaces and spelling of PowerPoint.

commit aeae8ad4e954edb688fd2124afef7d7a90724579
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Jan 2 09:58:42 2018 +1000

    Update what's new

commit 89d3dae072624719ff333889f682aa2143c1cd04
Author: Leonard de Ruijter <leonard_dev@babbage.com>
Date:   Tue Jan 2 00:57:12 2018 +0100

    Implement a generic system for acknowledgement packet handling (#7732)
    
    * Implement a generic system for acknowledgement packet handling
    
    * Make sure that the executor checks awaitingAck and, if True, returns early without writing
    
    * Added winKernel doc strings
    
    * Double the timeout for missed ACK packets

commit 10091cd4c9acb079f051bde1cbe96964b691a053
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Jan 2 09:51:19 2018 +1000

    Update what's new

commit 3bd729e8ce3b24926c49574e76b3531e9bd6ec9c
Author: Leonard de Ruijter <leonard_dev@babbage.com>
Date:   Tue Jan 2 00:49:27 2018 +0100

    Always report object states in same order, regardless whether positive or negative (#7279)
    
    * In speech and braille output, states will now always be reported in same order, regardless whether they are positive or negative. Fixes #7076
    
    * Adressed review comment
    
    * Create a new processAndLabelStates function in controlTypes and use that in the speech and braille modules
    
    * Added unit tests for states
    
    * Small fix for negative state unit test
    
    * Make use of assertSetEqual and use de setUp method to set an object to test on
    
    * Added additional controlTypes unit tests, not particularly related to this pr
    
    * Added doc strings
    
    * Review actions
    
    * Switch to processAndLabelStates for browseMode

commit ac149b3164bfd94bc5463691cc014a5780465d7b
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Jan 2 09:46:42 2018 +1000

    Update what's new

commit adea9f62867601a7c17c7e3bd3b9d9a142638c54
Author: dineshkaushal <dineshkaushal@gmail.com>
Date:   Tue Jan 2 05:11:27 2018 +0530

    added chart support for word and powerpoint in addition to excel (#7046)
    
    * added chart support for word and powerpoint in addition to excel
    
    * _msOfficeChart.py added
    
    * changed WordChart to _msOfficeChart.OfficeChart and fixed a problem regarding error in word while processing the formula
    
    * changed OfficeChartElement to OfficeChartElementCollection, removed getChartSegment and changed comments from excel to office
    
    * Updated to include escape for chart in word and excel
    
    * Add translator comments
    
    * Excel: make the parent of any chart the active worksheet, so that switching sheets is still correctly supported.
    also ensure that charts are not classed as being in Excel's treeInterceptor, so that they can be dismissed properly with escape.
    
    * Powerpoint appModule: after focusing ona chart in slide view, you now must press enter on the chart to interact with it. This ensures you can still move the chart around the slide with the arrows like any other shape when not interacting.
    
    * Remove excelChart.py.  No need to keep it here, it is in the git history.
    
    * Fix copyright statement.
    
    * Add translator comment

commit 15f27aa17814751ba65828645ada1913bb8256d4
Merge: 633fd91cd dab2dcdb0
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 29 00:06:09 2017 +1000

    Update translations.
    
    From translation svn revision: 37802

commit dab2dcdb02e0e35045c86d401f5dad2a397b7554
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 29 00:06:09 2017 +1000

    L10n updates for: zh_TW
    From translation svn revision: 37802
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    24      7       source/locale/zh_TW/LC_MESSAGES/nvda.po
     1 file changed, 24 insertions(+), 7 deletions(-)

commit dcd770e79674112b53b0de966f9ad6c81d92ede0
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 29 00:06:05 2017 +1000

    L10n updates for: vi
    From translation svn revision: 37802
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    53      37      source/locale/vi/LC_MESSAGES/nvda.po
     1 file changed, 53 insertions(+), 37 deletions(-)

commit dec58d5ace78fd02792fc5067d8665cd18938ed9
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 29 00:06:03 2017 +1000

    L10n updates for: tr
    From translation svn revision: 37802
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    7       0       user_docs/tr/changes.t2t
     1 file changed, 7 insertions(+)

commit f9ef0959712ffc788218fbe10676346dd1e60be2
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 29 00:06:01 2017 +1000

    L10n updates for: ta
    From translation svn revision: 37802
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    2       2       source/locale/ta/LC_MESSAGES/nvda.po
    24      7       user_docs/ta/userGuide.t2t
     2 files changed, 26 insertions(+), 9 deletions(-)

commit 46bf92ebfe3bbd059e61244e82d4399c0b8927a7
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 29 00:05:55 2017 +1000

    L10n updates for: ru
    From translation svn revision: 37802
    
    Authors:
    Ruslan Kolodyazhni <eye0@rambler.ru>
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    24      7       source/locale/ru/LC_MESSAGES/nvda.po
     1 file changed, 24 insertions(+), 7 deletions(-)

commit 2a9e8fab7ed4aa8f94e5d5ff67f8a94301f26087
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 29 00:05:53 2017 +1000

    L10n updates for: ro
    From translation svn revision: 37802
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    
    Stats:
    19      2       source/locale/ro/LC_MESSAGES/nvda.po
    8       1       user_docs/ro/changes.t2t
    233     218     user_docs/ro/userGuide.t2t
     3 files changed, 260 insertions(+), 221 deletions(-)

commit bcf435afec3861bea692418897b072eb0ab13685
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 29 00:05:42 2017 +1000

    L10n updates for: ko
    From translation svn revision: 37802
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    
    Stats:
    23      22      user_docs/ko/userGuide.t2t
     1 file changed, 23 insertions(+), 22 deletions(-)

commit 84bdc040a5dcce78b58d612d53a9586b18de4bd6
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 29 00:05:39 2017 +1000

    L10n updates for: ja
    From translation svn revision: 37802
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    19      2       source/locale/ja/LC_MESSAGES/nvda.po
     1 file changed, 19 insertions(+), 2 deletions(-)

commit 5a40d7296403d5b9ac2926c0daf4c087c3da993d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 29 00:05:33 2017 +1000

    L10n updates for: hr
    From translation svn revision: 37802
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <zvonimirek222@webczatnet.pl>
    Mario Percinic <mario.percinic@gmail.com>
    Tea Turkovic <tturkovi@gmail.com>
    
    Stats:
    27      0       user_docs/hr/changes.t2t
     1 file changed, 27 insertions(+)

commit c697113d21b06a0c9a2da3b552b2dea3d3c18c02
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 29 00:05:31 2017 +1000

    L10n updates for: gl
    From translation svn revision: 37802
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    
    Stats:
    19      2       source/locale/gl/LC_MESSAGES/nvda.po
    9       2       user_docs/gl/changes.t2t
    222     204     user_docs/gl/userGuide.t2t
     3 files changed, 250 insertions(+), 208 deletions(-)

commit 02d91e59245fdd1f4178df53904cecd49a623946
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 29 00:05:28 2017 +1000

    L10n updates for: fr
    From translation svn revision: 37802
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    23      6       source/locale/fr/LC_MESSAGES/nvda.po
    7       0       user_docs/fr/changes.t2t
     2 files changed, 30 insertions(+), 6 deletions(-)

commit 4c99016a06dd99671ef5c86468dd9ea1f925673f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 29 00:05:26 2017 +1000

    L10n updates for: fi
    From translation svn revision: 37802
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    19      2       source/locale/fi/LC_MESSAGES/nvda.po
    6       0       user_docs/fi/changes.t2t
    241     223     user_docs/fi/userGuide.t2t
     3 files changed, 266 insertions(+), 225 deletions(-)

commit a9e195633926baee8711e29d6adae84a729cd09a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 29 00:05:23 2017 +1000

    L10n updates for: es
    From translation svn revision: 37802
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    
    Stats:
    19      2       source/locale/es/LC_MESSAGES/nvda.po
    7       0       user_docs/es/changes.t2t
    221     203     user_docs/es/userGuide.t2t
     3 files changed, 247 insertions(+), 205 deletions(-)

commit 484317516c2660fdd10f634b6f3b41b670c7e613
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 29 00:05:19 2017 +1000

    L10n updates for: de
    From translation svn revision: 37802
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    
    Stats:
    18      1       source/locale/de/LC_MESSAGES/nvda.po
     1 file changed, 18 insertions(+), 1 deletion(-)

commit b419a7daf99e85657e9373252e751f730290c178
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 29 00:05:17 2017 +1000

    L10n updates for: da
    From translation svn revision: 37802
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    251     272     source/locale/da/LC_MESSAGES/nvda.po
    4       6       user_docs/da/userGuide.t2t
     2 files changed, 255 insertions(+), 278 deletions(-)

commit e40408037ebd6bcbef9ed679c4815768c117a260
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 29 00:05:14 2017 +1000

    L10n updates for: ca
    From translation svn revision: 37802
    
    Authors:
    Ruben Alcaraz <ruben.hangar1.8@gmail.com>
    Dr. Mireia Ribera <mireia.ribera@gmail.com>
    Santi Moese <santispock@gmail.com>
    Marina Salse Rovira <salse@ub.edu>
    
    Stats:
    55      36      source/locale/ca/LC_MESSAGES/nvda.po
     1 file changed, 55 insertions(+), 36 deletions(-)

commit 633fd91cd1e599cf63c8ef2e5411a3a68007e302
Merge: 48da6d773 1f5da3eda
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 22 00:06:08 2017 +1000

    Update translations.
    
    From translation svn revision: 37670

commit 1f5da3eda097c10f04611f8a72b9bcb6a248d4a2
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 22 00:06:07 2017 +1000

    L10n updates for: zh_TW
    From translation svn revision: 37670
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    44      43      source/locale/zh_TW/LC_MESSAGES/nvda.po
     1 file changed, 44 insertions(+), 43 deletions(-)

commit 2783edc0749d8175429cfe089aaf42a5e5dae008
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 22 00:06:05 2017 +1000

    L10n updates for: zh_CN
    From translation svn revision: 37670
    
    Authors:
    vgjh2005@gmail.com
    
    Stats:
    0       2       source/locale/zh_CN/symbols.dic
     1 file changed, 2 deletions(-)

commit 87427edbe502a1b0e60edc06b5e40d58a78b2c22
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 22 00:06:01 2017 +1000

    L10n updates for: tr
    From translation svn revision: 37670
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    38      39      source/locale/tr/LC_MESSAGES/nvda.po
    23      0       user_docs/tr/changes.t2t
    46      43      user_docs/tr/userGuide.t2t
     3 files changed, 107 insertions(+), 82 deletions(-)

commit ff7a1c6338a79ff70e34d5783271486681bd86b9
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 22 00:05:59 2017 +1000

    L10n updates for: ta
    From translation svn revision: 37670
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    36      37      source/locale/ta/LC_MESSAGES/nvda.po
    48      48      user_docs/ta/userGuide.t2t
     2 files changed, 84 insertions(+), 85 deletions(-)

commit e3c7918ed9db6afd487c5fc94204c413b9b99f65
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 22 00:05:57 2017 +1000

    L10n updates for: sr
    From translation svn revision: 37670
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <zvonimirek222@webczatnet.pl>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    35      36      source/locale/sr/LC_MESSAGES/nvda.po
    21      0       user_docs/sr/changes.t2t
    49      49      user_docs/sr/userGuide.t2t
     3 files changed, 105 insertions(+), 85 deletions(-)

commit 6578b2370928a9005115c8b35f8f97fff35c4922
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 22 00:05:53 2017 +1000

    L10n updates for: ru
    From translation svn revision: 37670
    
    Authors:
    Ruslan Kolodyazhni <eye0@rambler.ru>
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    38      39      source/locale/ru/LC_MESSAGES/nvda.po
     1 file changed, 38 insertions(+), 39 deletions(-)

commit 111d31dfd069b1d347254ad05e99ddeba866f9c9
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 22 00:05:51 2017 +1000

    L10n updates for: ro
    From translation svn revision: 37670
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    Adriani Ionuț Botez <ionutz_tero@yahoo.com>
    
    Stats:
    36      37      source/locale/ro/LC_MESSAGES/nvda.po
    10      0       user_docs/ro/changes.t2t
    2       2       user_docs/ro/userGuide.t2t
     3 files changed, 48 insertions(+), 39 deletions(-)

commit bac390ef8031a5ce753530b49922bb4cc9b7caca
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 22 00:05:49 2017 +1000

    L10n updates for: pt_PT
    From translation svn revision: 37670
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    8       9       source/locale/pt_PT/LC_MESSAGES/nvda.po
    7       0       user_docs/pt_PT/changes.t2t
    63      63      user_docs/pt_PT/userGuide.t2t
     3 files changed, 78 insertions(+), 72 deletions(-)

commit 14b48d0409a826f0e9c80bbaaae12de53d365752
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 22 00:05:46 2017 +1000

    L10n updates for: pl
    From translation svn revision: 37670
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <zvonimirek222@webczatnet.pl>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <killer@tyflonet.com>
    
    Stats:
    322     776     source/locale/pl/LC_MESSAGES/nvda.po
     1 file changed, 322 insertions(+), 776 deletions(-)

commit 3e6e1887a8b9f018db925000068a3368dc7982bd
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 22 00:05:44 2017 +1000

    L10n updates for: nl
    From translation svn revision: 37670
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <leonard_dev@babbage.com>
    
    Stats:
    63      65      user_docs/nl/userGuide.t2t
     1 file changed, 63 insertions(+), 65 deletions(-)

commit c50d026082251e9cc38256b17371b957d53ab892
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 22 00:05:40 2017 +1000

    L10n updates for: mk
    From translation svn revision: 37670
    
    Authors:
    zvonimir stanecic <zvonimirek222@webczatnet.pl>
    Kiko Lazarev <kristijan.lazarev@gmail.com>
    
    Stats:
    8       9       source/locale/mk/LC_MESSAGES/nvda.po
     1 file changed, 8 insertions(+), 9 deletions(-)

commit 2a1db2f63b057dde2fd6cdba15109212cff90793
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 22 00:05:39 2017 +1000

    L10n updates for: ko
    From translation svn revision: 37670
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    
    Stats:
    55      174     source/locale/ko/LC_MESSAGES/nvda.po
    9       0       user_docs/ko/changes.t2t
    38      19      user_docs/ko/userGuide.t2t
     3 files changed, 102 insertions(+), 193 deletions(-)

commit dc081ec27107c184e40a0741d3f9add220accfae
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 22 00:05:36 2017 +1000

    L10n updates for: ja
    From translation svn revision: 37670
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    37      38      source/locale/ja/LC_MESSAGES/nvda.po
     1 file changed, 37 insertions(+), 38 deletions(-)

commit 0e3693ec0f2facf658b1b95a8be27694631634ba
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 22 00:05:34 2017 +1000

    L10n updates for: it
    From translation svn revision: 37670
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    36      37      source/locale/it/LC_MESSAGES/nvda.po
     1 file changed, 36 insertions(+), 37 deletions(-)

commit 0ab766b25ba25f7251da1b603948b42d869f8185
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 22 00:05:30 2017 +1000

    L10n updates for: hr
    From translation svn revision: 37670
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <zvonimirek222@webczatnet.pl>
    Mario Percinic <mario.percinic@gmail.com>
    Tea Turkovic <tturkovi@gmail.com>
    
    Stats:
    8       9       source/locale/hr/LC_MESSAGES/nvda.po
     1 file changed, 8 insertions(+), 9 deletions(-)

commit 1ea23629b56e94d5f77865cffa800a12329ac166
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 22 00:05:27 2017 +1000

    L10n updates for: gl
    From translation svn revision: 37670
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    
    Stats:
    36      37      source/locale/gl/LC_MESSAGES/nvda.po
    10      0       user_docs/gl/changes.t2t
    60      60      user_docs/gl/userGuide.t2t
     3 files changed, 106 insertions(+), 97 deletions(-)

commit f7da0fe530a09353dc46e46fc37bd0605c6d14b3
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 22 00:05:25 2017 +1000

    L10n updates for: fr
    From translation svn revision: 37670
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    39      40      source/locale/fr/LC_MESSAGES/nvda.po
    12      1       user_docs/fr/changes.t2t
     2 files changed, 51 insertions(+), 41 deletions(-)

commit d7f8afff0c451c33c8ec375693195bc40aa9e65b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 22 00:05:23 2017 +1000

    L10n updates for: fi
    From translation svn revision: 37670
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    36      37      source/locale/fi/LC_MESSAGES/nvda.po
    9       0       user_docs/fi/changes.t2t
    48      48      user_docs/fi/userGuide.t2t
     3 files changed, 93 insertions(+), 85 deletions(-)

commit 68b946bab6ef9cd7296f4e5c86180b70149d906b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 22 00:05:20 2017 +1000

    L10n updates for: es
    From translation svn revision: 37670
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    
    Stats:
    36      37      source/locale/es/LC_MESSAGES/nvda.po
    11      1       user_docs/es/changes.t2t
    60      60      user_docs/es/userGuide.t2t
     3 files changed, 107 insertions(+), 98 deletions(-)

commit 7a150d0d9945b4c27f25450d11e6202b99827c31
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 22 00:05:16 2017 +1000

    L10n updates for: de
    From translation svn revision: 37670
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    
    Stats:
    143     11      source/locale/de/LC_MESSAGES/nvda.po
    13      4       user_docs/de/changes.t2t
    32      32      user_docs/de/userGuide.t2t
     3 files changed, 188 insertions(+), 47 deletions(-)

commit 799fc2a8d70db0900be4ed632d323612ca9f8e5e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 22 00:05:13 2017 +1000

    L10n updates for: cs
    From translation svn revision: 37670
    
    Authors:
    Martina Letochova <letochova@seznam.cz>
    
    Stats:
    38      39      source/locale/cs/LC_MESSAGES/nvda.po
     1 file changed, 38 insertions(+), 39 deletions(-)

commit 48da6d773056432d347fb5805580ecd2f24cdb30
Author: Reef Turner <reef@nvaccess.org>
Date:   Thu Dec 21 01:29:13 2017 +0000

    Update changes file for PR #7687
    
    NVDA now uses the correct language when announcing symbols when text is selected.

commit 2ce9bb3f13e19ebfa2bdc68171dcf0c6850ea8ee
Author: miki123211 <miki123211@gmail.com>
Date:   Thu Dec 21 02:27:18 2017 +0100

    Fix a bug causing NVDA to use the wrong language when announcing selected/unselected symbols. (PR #7687)
    
    * Fix a bug causing NVDa to use the wrong language when announcing
    selected/unselected symbols.
    
    When languages of the currently selected voice and of NVDA itself
    differ, NVDA uses the voice language when announcing typed and erased
    characters. This wasn't the case when selecting by character, the NVDA
    language was always used.

commit b28fe86f8849e1e09c99611fd53c174d55ea4967
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Thu Dec 21 12:18:10 2017 +1100

    Remove AutoPropertyObject dependency on __init__ (PR #7833)
    
    Missing super call on AutoPropertyObject children no longer causes
    failure for CachedGetter properties. Previously a class that inherits
    from AutoPropertyObject and forgot to call super in the __init__
    function, would result in a failure for CachedGetter properties.

commit 0f86440ee095158a80340c439b803e2c2863d1ac
Author: ThomasStivers <thomas.stivers@gmail.com>
Date:   Wed Dec 20 19:12:04 2017 -0600

    Added explicit anchors to section headings in the user guide. (PR #7762)
    
    Explicit anchors to section headings in the user guide for use by context help.
    
    Part of issue #7757

commit 064b9d34749d80f71b3f629186b8914aef308098
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Dec 21 08:51:43 2017 +1000

    Update what's new

commit 3859ef5e3001f707675de621cca6cb3dea4d8a9a
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Thu Dec 21 08:48:59 2017 +1000

    Update comtypes package to 1.1.3 (#7831)
    
    * Update comtypes to version 1.1.3.
    
    This will be necessary to handle events from SAPI 5 once we have speechRefactor, as one of the parameters is a decimal which is not supported by our existing (very outdated) version of comtypes .
    comtypes has now been added as a separate git submodule.
    
    * Fix submodule URL for comtypes. Oops!

commit 898cdc225b24acbe3b0aae19931c521b01d90709
Author: James Teh <jamie@jantrid.net>
Date:   Wed Dec 20 16:47:07 2017 -0600

    Add debug logging for the time taken to load a virtual buffer. (#7832)
    
    * Add debug logging for the time taken to load a virtual buffer.
    
    When testing browser and virtual buffer backend performance, it's extremely useful to be able to measure how long it takes to load a buffer.
    Currently, it's possible to achieve this by looking at the IO timestamps and doing manual math, but this is tedious at best.
    This logs a simple debug message indicating the time taken and number of characters in the buffer.
    
    * Round buffer load time to 3 decimal places.

commit aa0d1efb8d7c24ad47058466a92ad51030d3caf4
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Dec 21 08:45:19 2017 +1000

    Update what's new

commit 9cca0bf86ad805cbb650b9b898b1013b8f2d51ff
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Thu Dec 21 08:43:07 2017 +1000

    sysListview32 IAccessible NVDAObject:  make the text buffer for receiving listview column text larger than 260 characters to accommodate modern Twitter clients. (#7829)
    
    * sysListview32 IAccessible NVDAObject:  make the text buffer for receiving listview column text larger than 260 characters to accommodate modern Twitter clients.
    
    * Fix comment
    
    * Update copyright year

commit 6d02a9115f588252e8b7759361b6464c11413840
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Dec 21 08:41:43 2017 +1000

    Update what's new

commit b4ee7710170f6464d06cee49d7b9e7bcc2b208c3
Author: James Teh <jamie@jantrid.net>
Date:   Wed Dec 20 16:41:06 2017 -0600

    Prevent freezes on every focus change if Firefox stops responding. (#7818)
    
    Previously, if Firefox (or Chrome or any other app based on these) stopped responding, NVDA would often freeze every time the focused changed, even if the browser was in the background.
    This occurred because NVDA queried the document on every focus change to see if it was alive, but that query blocked in the case of an unresponsive process.
    
    Now, we don't query if the process is in the background.
    We just assume the document is alive in this case.
    The chances of a document dying while the browser is in the backgroud are low anyway.
    However, if this did occur, the buffer will still be killed once the browser comes to the foreground or gets exited.

commit c87589f8e1aac9eea044bd1aa375e7648dd6c89b
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Dec 21 08:39:18 2017 +1000

    Update what's new

commit 359fba3d231aee8148e09de7769caa0140d07d53
Author: James Teh <jamie@jantrid.net>
Date:   Wed Dec 20 16:37:36 2017 -0600

    Fix browse mode in Firefox extension popups. (#7809)
    
    Firefox extensions can pop up documents to provide access to their functionality without creating a new browser tab.
    For example, both the LastPass and bitwarden password managers pop up a document allowing you to access your vault, add a site, etc. when you press their button on the toolbar.
    Previously, browse mode only worked in these documents when you were focused on the document itself.
    If you focused something inside the document (e.g. a link, a button or a text box), browse mode functionality ceased to work.
    This could happen even if you moved the browse mode cursor, so you would suddenly be "thrown out" of browse mode.
    
    This occurred because the Gecko vbuf code to handle combo box popups was being incorrectly used in this case.
    It only checked for Mozilla popup windows, but these popup documents are also popup windows.
    It walked to the nearest ancestor with a different HWND, but that meant that the document was skipped.
    Thus, anything inside the document was never considered to be part of the document.
    Now, the code to deal with combo box popups has been tightened so that it only matches those.

commit eb2647d00b1bcc979eff9f946e2fe19f1003e769
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Dec 21 08:35:01 2017 +1000

    Update what's new

commit 1916ba35369fe6d6ea38bddbc883ce4f08ed0fdd
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Wed Dec 20 14:27:35 2017 -0800

    Touch keyboard support: ability to configure how the key is pressed via hover up (tuch typing) or double-tap (standard typing) (#7316)
    
    * Touch support: add a new map for touch interaction settings such as standard versus touch typing and what not. re #7309.
    
    * Global commands/hover up: press the touch key if touch typing option is enabled.
    
    By default, touch typing will be disabled, but can be enabled by changing touch interaction settings.
    
    * Touchscreen/touch typing: add a new Touch Interaction dialog to configure touch typing mode between touch and standard.
    
    Instead of just calling this 'touchscreen settings', touch interaction settings is a more appropriate title as it may include other interaction methods and settings in the future.
    
    * User guide: document the new touch interaction dialog and added a section on using the touch keyboard.
    
    * Touch interaction: only add this dialog if and only if touchscreen support is in use. re #7309
    
    * Fix translator comment mispelling.
    
    * Touch Interaction: make sure to call the correct super function for the correct dialog class.
    
    * User guide: includethe fact that tablets display touch keyboard when keyboards are undocked. re #7309.
    
    A reminder from Mick Curran (NV Access): for tablets such as Microsoft surface Pro and others, when the computer is in tablet mode or keyboard is undocked, touch keyboard becomes visible and stays on top at all times.
    
    * Touch interaction dialog: add translator comment for the tooltip.
    
    A word from Mick Curran (NV Access) to add translator comments in order for scons checkPot to pass.
    
    * Touch handler and GUI: check if touch is supported, as touch handler might not be ready when initializing GUI subsystem. re #7309.
    
    Touch handler is initialized AFTER GUI, so handler might not be ready at all. To avoid this, a new touchHandler.touchSupported function will be used to check if touch interaction is supported. For now, it is used by GUI, but add-ons and other modules are more than welcome to use it."
    
    * Touch handler: docstring
    
    * Touch handler: use max touches constant (95) as a proper constant. re #7309.
    
    Noted by Mick Curran (NV Access): because the literal '95' is used multiple times, give it a proper label and use it as a constant.

commit 3152eacc55c0ba94443acf00000801b928dcc1d3
Merge: 94bc05bef 0170c11ce
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 15 00:06:03 2017 +1000

    Update translations.
    
    From translation svn revision: 37465

commit 0170c11ce423f190f5cff007bfa1deeda40510a3
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 15 00:06:03 2017 +1000

    L10n updates for: zh_TW
    From translation svn revision: 37465
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    21      21      source/locale/zh_TW/characterDescriptions.dic
    4       4       source/locale/zh_TW/symbols.dic
     2 files changed, 25 insertions(+), 25 deletions(-)

commit c58aa4f432811835635141fc1b77bc56d0e3cda5
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 15 00:05:37 2017 +1000

    L10n updates for: ko
    From translation svn revision: 37465
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    
    Stats:
    49      51      user_docs/ko/userGuide.t2t
     1 file changed, 49 insertions(+), 51 deletions(-)

commit 7b36fb27165571ca517e6e3bf11cfd1a51e756fc
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 15 00:05:16 2017 +1000

    L10n updates for: de
    From translation svn revision: 37465
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    Adriani Botez <adriani.botez@gmail.com>
    
    Stats:
    39      172     source/locale/de/LC_MESSAGES/nvda.po
     1 file changed, 39 insertions(+), 172 deletions(-)

commit 94bc05bef2e22127ac5fa8a053fcc0873a13ec0d
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Dec 8 16:24:20 2017 +1000

    Update what's new

commit c5706cba7b9b8f4d2700b5ae8e2724e1438186aa
Author: Leonard de Ruijter <leonard_dev@babbage.com>
Date:   Fri Dec 8 07:22:49 2017 +0100

    Support model specific gestures for braille displays when working with modifiers (#7783)

commit 640cd0986426591ddc57584263a7db54022320b9
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Dec 8 16:21:20 2017 +1000

    Update what's new

commit de20ef1db02dc8ae812dac4b91f57a7e952bdd44
Author: Bram Duvigneau <bram@bramd.nl>
Date:   Fri Dec 8 07:20:22 2017 +0100

    Handle COMError when fetching table header cells in Word documents (#7777)

commit 3ee45d8a888c9bff73153b9873ccfa153bf2a7d1
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Dec 8 16:18:43 2017 +1000

    Update what's new

commit 8ddc7e7d66b96650b13608b83f6317be5399ddc2
Author: James Teh <jamie@jantrid.net>
Date:   Fri Dec 8 16:16:56 2017 +1000

    gecko_ia2 vbuf backend: Support IAccessibleHypertext2 to improve performance for Firefox multi-process. (#7719)
    
    * gecko_ia2 vbuf backend: Support IAccessibleHypertext2 to improve performance for Firefox multi-process.
    
    IAccessibleHypertext2::hyperlinks allows all embedded objects to be retrieved at once, rather than retrieving them one at a time.
    This improves performance for cross-process renders, which is the case for Firefox multi-process.
    IAccessibleHypertext is still supported and will be used if the newer interface is not present.
    
    In addition:
    
    1. Don't bother calling hyperlinkIndex, since in Gecko (and Chrome), hyperlinks correspond with embedded object characters.
    2. Use a constant for the embedded object character.
    
    * Move hyperlink getter code into ia2utils so it can be reused.
    
    * Fix typo in comment.
    
    * Slight performance enhancement to HyperlinkGetter.
    
    The gecko vbuf (and probably any future callers) only call HyperlinkGetter::next() when they encounter an embedded object character.
    That is, if there are no embedded object characters, there will be no calls.
    Thus:
    
    1. For IAccessibleHypertext, we don't need to call nHyperlinks. hyperlink will fail or return null if we pass an invalid index anyway.
    2. For IAccessibleHypertext2, we can lazily fetch the hyperlinks on the first call to get(), thus saving a potential cross-process call when there are none.

commit c62d6013dd9cd842955c406f481317278c649c93
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Dec 8 16:15:11 2017 +1000

    Update what's new

commit 14fb6001220c846b53cd5688b08e47e09b1ffdba
Author: Leonard de Ruijter <leonard_dev@babbage.com>
Date:   Fri Dec 8 07:08:53 2017 +0100

    Native driver for Hims displays (#7712)
    
    * Implemented a native Hims driver. This driver makes use of a new hwIo.Bulk class that facilitates bulk USB communication using separate end points for i/o.
    
    * Theoretically support SyncBraille
    
    * Automatically force syncBraille drivers to the new native driver for a smooth upgrade
    
    * Sanity fix, line length
    
    * Merge Sync Braille and Hims sections in the user guide and remove dependencies from readme
    
    * Up to date bulk implementation from @bramd
    
    * Add many more gestures to the map, and improved map layout
    
    * Increase onReceiveSize and some detection changes and sanity fixes.
    
    * Update user guide and add previous/next line commands
    
    * Migrate syncBraille users to the new driver
    
    * Add SyncBraille to model map, add extra debugging statement
    
    * Add bluetoothPrefix to base model class
    
    * Limit manual ports to bluetooth only
    
    * Last fixes and cleanups

commit c4864c3fb1ef70127a01457bc93a2e3754667467
Merge: 36a03f179 cb36f40f9
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 8 11:29:14 2017 +1000

    Update translations.
    
    From translation svn revision: 37437

commit cb36f40f96c3912ab5bef38ed287ab1e5edbe04d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 8 11:28:42 2017 +1000

    L10n updates for: hr
    From translation svn revision: 37437
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <zvonimirek222@webczatnet.pl>
    Mario Percinic <mario.percinic@gmail.com>
    Tea Turkovic <tturkovi@gmail.com>
    
    Stats:
    31      31      source/locale/hr/LC_MESSAGES/nvda.po
     1 file changed, 31 insertions(+), 31 deletions(-)

commit 36a03f179873d686c6bfa2fdf764d63ef57c4f55
Merge: 6aa892b3e e146ba740
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 8 00:06:01 2017 +1000

    Update translations.
    
    From translation svn revision: 37397

commit e146ba740aa6b95e5fe32e6fe52d8084a8bb6dc3
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 8 00:06:01 2017 +1000

    L10n updates for: zh_TW
    From translation svn revision: 37397
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    32      32      source/locale/zh_TW/LC_MESSAGES/nvda.po
    8       8       source/locale/zh_TW/characterDescriptions.dic
     2 files changed, 40 insertions(+), 40 deletions(-)

commit 16523befbc3aaf14d6b087afb684da44d686a38f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 8 00:05:57 2017 +1000

    L10n updates for: vi
    From translation svn revision: 37397
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    143     161     source/locale/vi/symbols.dic
     1 file changed, 143 insertions(+), 161 deletions(-)

commit 6cb0e33ca85d38e83b655c1d6ed22b391606e317
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 8 00:05:51 2017 +1000

    L10n updates for: sl
    From translation svn revision: 37397
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    6       6       user_docs/sl/userGuide.t2t
     1 file changed, 6 insertions(+), 6 deletions(-)

commit 32085e4aa4008defb69071b3da64359543c5c3e4
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 8 00:05:50 2017 +1000

    L10n updates for: sk
    From translation svn revision: 37397
    
    Authors:
    Ondrej Rosik <ondrej.rosik@gmail.com>
    Peter Vagner <peter.v@datagate.sk>
    
    Stats:
    55      0       user_docs/sk/changes.t2t
     1 file changed, 55 insertions(+)

commit a7d4584940dd611ad1a2bb5ffdf66423131fe64f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 8 00:05:45 2017 +1000

    L10n updates for: pt_PT
    From translation svn revision: 37397
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    31      31      source/locale/pt_PT/LC_MESSAGES/nvda.po
    3       0       user_docs/pt_PT/changes.t2t
     2 files changed, 34 insertions(+), 31 deletions(-)

commit 5cb0fbc17a89308420771283bd167bb653b98536
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 8 00:05:35 2017 +1000

    L10n updates for: ko
    From translation svn revision: 37397
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    
    Stats:
    8       0       user_docs/ko/changes.t2t
     1 file changed, 8 insertions(+)

commit f0d5ae9d5eddeac0d1f4de45ffaa3def87eea458
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 8 00:05:33 2017 +1000

    L10n updates for: ja
    From translation svn revision: 37397
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    1       1       user_docs/ja/changes.t2t
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 23c37a583c27fa5bec2236a7297f3962d18270c9
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 8 00:05:08 2017 +1000

    L10n updates for: ar
    From translation svn revision: 37397
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    8       0       user_docs/ar/changes.t2t
     1 file changed, 8 insertions(+)

commit 6aa892b3e89f29b1995be6d0c105898744200cd4
Merge: f2bf88848 782727936
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Dec 4 14:36:52 2017 +1000

    Merge branch 'rc'

commit 78272793666b7354f6be373a73aa62426116d884
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Mon Dec 4 10:42:49 2017 +1000

    Remove all eSpeak emoji dictsource files before compiling eSpeak as these cause crashes at runtime for many languages. (#7810)

commit f2bf8884822535a84630819366b2fd2e009ad78a
Merge: 47a0147d0 ba44d4798
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 1 00:06:00 2017 +1000

    Update translations.
    
    From translation svn revision: 37272

commit ba44d479846bf2310cb9592969a68b3043e886d6
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 1 00:05:58 2017 +1000

    L10n updates for: zh_CN
    From translation svn revision: 37272
    
    Authors:
    vgjh2005@gmail.com
    
    Stats:
    106     79      source/locale/zh_CN/LC_MESSAGES/nvda.po
     1 file changed, 106 insertions(+), 79 deletions(-)

commit 3669eb483e4d7fd5f99481b1417e6f78e72ccc02
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 1 00:05:46 2017 +1000

    L10n updates for: ro
    From translation svn revision: 37272
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    
    Stats:
    45      32      user_docs/ro/changes.t2t
     1 file changed, 45 insertions(+), 32 deletions(-)

commit 8922f2824355bf681afaa8aa2d4eb2e586d97907
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 1 00:05:45 2017 +1000

    L10n updates for: pt_PT
    From translation svn revision: 37272
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    Ângelo Abrantes <ampa4374@gmail.com>
    
    Stats:
    13      0       user_docs/pt_PT/changes.t2t
     1 file changed, 13 insertions(+)

commit e6079c88d5ce24e49e264f5aea3a135a78f49e98
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 1 00:05:37 2017 +1000

    L10n updates for: mk
    From translation svn revision: 37272
    
    Authors:
    zvonimir stanecic <zvonimirek222@webczatnet.pl>
    Kiko Lazarev <kristijan.lazarev@gmail.com>
    
    Stats:
    72      38      source/locale/mk/LC_MESSAGES/nvda.po
     1 file changed, 72 insertions(+), 38 deletions(-)

commit 140f8f1170f6d570b75236986151025b3747e59d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 1 00:05:25 2017 +1000

    L10n updates for: gl
    From translation svn revision: 37272
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    
    Stats:
    14      1       user_docs/gl/changes.t2t
     1 file changed, 14 insertions(+), 1 deletion(-)

commit da983cc3f12f436c0fd4bd557feb2314d1e2609e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 1 00:05:23 2017 +1000

    L10n updates for: fr
    From translation svn revision: 37272
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    15      2       user_docs/fr/changes.t2t
     1 file changed, 15 insertions(+), 2 deletions(-)

commit 48b11caf256e8d1c086f0ef94b17a1acff6888a8
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 1 00:05:22 2017 +1000

    L10n updates for: fi
    From translation svn revision: 37272
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    12      0       user_docs/fi/changes.t2t
     1 file changed, 12 insertions(+)

commit aa73dc8f40351a1f27a1fed7acc0f33ab7a28b13
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 1 00:05:20 2017 +1000

    L10n updates for: fa
    From translation svn revision: 37272
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    9       48      user_docs/fa/changes.t2t
     1 file changed, 9 insertions(+), 48 deletions(-)

commit 33f73f3f8bad31cd2a10cb4234d579560e5d840d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 1 00:05:19 2017 +1000

    L10n updates for: es
    From translation svn revision: 37272
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    
    Stats:
    18      5       user_docs/es/changes.t2t
     1 file changed, 18 insertions(+), 5 deletions(-)

commit eb98576a34dd2fd3dbd1b8ef6e4a5ec5503457d5
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Dec 1 00:05:15 2017 +1000

    L10n updates for: de
    From translation svn revision: 37272
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    
    Stats:
    19      5       user_docs/de/changes.t2t
     1 file changed, 19 insertions(+), 5 deletions(-)

commit 47a0147d045554f13dd074cef10af5656c8a465a
Merge: 92815bcd6 338fb3eff
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Nov 30 08:50:42 2017 +1000

    Merge branch 'rc'

commit 338fb3eff7e93e121e7fe347b391a100ed0003c5
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Thu Nov 30 08:48:22 2017 +1000

    Revert "displayModel: second try at recording the actual background color for text when a transparant background color is set. (#7440)" (#7803)
    
    This reverts commit edcf518a405823d439f3c5fea23d4434267c3992.
    
    As reported in #7440, this again caused a significant performance hit.  We must avoid using GetPixel. It is just too slow.

commit 92815bcd69b26a542ea7bf00ef076d6886694e02
Merge: 4723fb54b 6dd306d9a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 24 00:06:01 2017 +1000

    Update translations.
    
    From translation svn revision: 37170

commit 6dd306d9a68fb26655e4cfd0fc23ef2ee79875e0
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 24 00:06:01 2017 +1000

    L10n updates for: zh_TW
    From translation svn revision: 37170
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    44      30      source/locale/zh_TW/LC_MESSAGES/nvda.po
     1 file changed, 44 insertions(+), 30 deletions(-)

commit 4f253f8c63c9d5ae6beb0dc12bfc75b28d856180
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 24 00:05:56 2017 +1000

    L10n updates for: tr
    From translation svn revision: 37170
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    4       4       user_docs/tr/userGuide.t2t
     1 file changed, 4 insertions(+), 4 deletions(-)

commit 3ef014aa7238e11a158f1f89764dd9cff9263733
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 24 00:05:51 2017 +1000

    L10n updates for: sl
    From translation svn revision: 37170
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    137     5       source/locale/sl/LC_MESSAGES/nvda.po
     1 file changed, 137 insertions(+), 5 deletions(-)

commit 46d3430937dad8339362fa541cc703ac40b23811
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 24 00:05:47 2017 +1000

    L10n updates for: ro
    From translation svn revision: 37170
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    
    Stats:
    2       2       source/locale/ro/LC_MESSAGES/nvda.po
     1 file changed, 2 insertions(+), 2 deletions(-)

commit a5e7c76921cd4122ecef685e69c6db7943bef63e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 24 00:05:45 2017 +1000

    L10n updates for: pt_PT
    From translation svn revision: 37170
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    
    Stats:
    6       5       source/locale/pt_PT/LC_MESSAGES/nvda.po
    2       0       user_docs/pt_PT/userGuide.t2t
     2 files changed, 8 insertions(+), 5 deletions(-)

commit be26510f81558faa6114e5c1b91483fb304c0acc
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 24 00:05:24 2017 +1000

    L10n updates for: fr
    From translation svn revision: 37170
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    2       2       source/locale/fr/LC_MESSAGES/nvda.po
     1 file changed, 2 insertions(+), 2 deletions(-)

commit aa715d69ab9203d70631cbc96a75b91d678c3018
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 24 00:05:22 2017 +1000

    L10n updates for: fi
    From translation svn revision: 37170
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    23      23      user_docs/fi/changes.t2t
     1 file changed, 23 insertions(+), 23 deletions(-)

commit 55d5aca428c415cf6ced63ba37261287f9290ad2
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 24 00:05:20 2017 +1000

    L10n updates for: es
    From translation svn revision: 37170
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    
    Stats:
    1       1       user_docs/es/changes.t2t
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 34e6400bc95ced6e13d91463c448284c52bcc568
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 24 00:05:16 2017 +1000

    L10n updates for: de
    From translation svn revision: 37170
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    
    Stats:
    11      11      user_docs/de/changes.t2t
    2       2       user_docs/de/userGuide.t2t
     2 files changed, 13 insertions(+), 13 deletions(-)

commit 04674975965b7c174b6837f97424932e539955a2
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 24 00:05:14 2017 +1000

    L10n updates for: da
    From translation svn revision: 37170
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    533     846     source/locale/da/LC_MESSAGES/nvda.po
    3       3       user_docs/da/userGuide.t2t
     2 files changed, 536 insertions(+), 849 deletions(-)

commit 753cfbb3001dfc74f4dd1744dd83b28dffd65e78
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 24 00:05:06 2017 +1000

    L10n updates for: an
    From translation svn revision: 37170
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    
    Stats:
    63      32      source/locale/an/LC_MESSAGES/nvda.po
    66      0       user_docs/an/changes.t2t
    34      15      user_docs/an/userGuide.t2t
     3 files changed, 163 insertions(+), 47 deletions(-)

commit 4723fb54b71458186aedbf9a9645f86af9e22daf
Author: Leonard de Ruijter <leonard_dev@babbage.com>
Date:   Thu Nov 23 06:55:02 2017 +0100

    Use scons 3.0 commit 6a72c4de3e92cae65016578270e6f68e66c4f1e8 from upstream (#7725)
    
    * Use scons 3.0 commit 6a72c4de3e92cae65016578270e6f68e66c4f1e8 from upstream
    
    * Updated readme to reflect the update to SCons 3. Even though we were already on SCons 3, the readme still mentioned 2.41

commit 1e18b8f88627fa60ba88cd105d986d7b5dbb203d
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Thu Nov 23 12:42:49 2017 +0800

    Resolve orphaned changes on next (#7739)
    
    These changes bring master into line with what is on next.

commit 3388378081058c647aaf1967ccfd603624f17278
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Nov 23 14:33:34 2017 +1000

    Update what's new

commit 15aba2ab39c94b04fdf923da9520630367168f57
Author: Leonard de Ruijter <leonard_dev@babbage.com>
Date:   Thu Nov 23 05:31:54 2017 +0100

    Make Liblouis pass1Only configurable using a new settings flag: outputPass1Only in the braille category. This is not GUI configurable (#7702)

commit e8546d8ee7e7e38fd68e00d0ccae00d8d39b1b3e
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Nov 23 14:28:21 2017 +1000

    Update what's new

commit 73bc01d26ae7d61a74108b620e32458ef30c75c6
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Thu Nov 23 14:27:16 2017 +1000

    Ensure NVDA updates succeed with Controlled folder Access enabled (#7697)
    
    * installer.createShortcut: only physically save the shortcut if it didn't exist before, or  some of the properties were different.

commit 5ce35bf25c1d87911e793e1fa79c843c367e3509
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Nov 23 14:25:37 2017 +1000

    Update what's new

commit bb35a6e492fd7e96847d11b2e86328dce982e516
Author: James Teh <jamie@jantrid.net>
Date:   Thu Nov 23 14:24:52 2017 +1000

    Update Spotify app module to support recent versions of Spotify. (#7689)
    
    * Update Spotify app module to support recent versions of Spotify.
    
    Spotify still fires focus on an ancestor window instead of the correct focus. However, the trick we previously used to get the correct focus no longer works. Switch to a new trick which does work.

commit 94a8e0af97a0fadcc270d3baccb63e37cbfca1ba
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Wed Nov 22 20:21:45 2017 -0800

    Use routines introduced or changed past Windows XP and Vista (#7685)
    
    * nvda.pyw: use user32.ChangeWindowMessageFilter with no exception statement anymore.
    
    ChangeWindowMessageFilter was introduced in Windows Vista, with Windows 7 introducing the extended version. Because NVDA does not run on XP anymore, just call this function with no try/except block.
    Also, decodeMBCS function uses tabs instead of spaces.
    
    * Ap module handler: use Windows Vista functions for obtaining process handle and process image name.
    
    Partly modifies the code added to suppoort appMod.productName and appMod,productVersion: no more support for Windows XP, so use functions from Vista directly. This simplifies the process handle and product name retrieval routine simpler.
    
    * Core: call SetProcessDPIAware directly instaed of through a try/except block.
    
    SetProcessDPIAware is available in Windows Vista and later, so call this function directly.

commit f1a34a2d6008b9e78d0a69952b5b1a6115bb508b
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Nov 23 14:17:00 2017 +1000

    Update what's new

commit 5b475a8aaf37c819ed2f1501062e116d6ec34e47
Author: André-Abush Clause <dev@andreabc.net>
Date:   Thu Nov 23 05:12:22 2017 +0100

    `ui.browseableMessage()`: Fix an Unicode problem when NVDA is installed in a path containing a non-ASCII character. (#7474)

commit 1e131410148af3486004f4a04728ebc032759573
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Nov 23 14:09:43 2017 +1000

    Bump version for 2018.1 dev.

commit e2e76d08fb6296eaf009575f2fca66021cd0a3c3
Merge: 07e74bde1 f4d56a1e1
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Nov 22 10:27:14 2017 +1000

    Merge branch 'master' into rc

commit f4d56a1e1e5d505870367f1f84abab90446551a5
Author: Leonard de Ruijter <leonard_dev@babbage.com>
Date:   Wed Nov 22 01:26:05 2017 +0100

    Handy Tech: Correct Bluetooth name for Braille Star 40 and fix gesture identifiers when braille input is on (#7785)
    
    * Correct Bluetooth name for Braille Star 40
    
    * Fix malformed gesture identifiers when braille input is on
    
    * Also fix input for some other keys while in braille input mode

commit 07e74bde1745c20d97b38774cadb27275ba29751
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Nov 22 10:09:37 2017 +1000

    make sure About dialog text is shown localized (#7773)
    
    * Split out non-localizable version data from versionInfo into a new buildVersion module. This allows importing of buildVersion in places where the version is needed before languageHandler is initialized. Specifically, this is now used in logHandler to stop versionInfo being accidentally imported too early.
    
    * Add module-level docstring to versionInfo and buildVersion.

commit b6c4d81f53cb10a2d7dda1b0d24a095f36febdbd
Merge: 92da1aa3f 34ea1e620
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 17 14:09:38 2017 +1000

    Update translations.
    
    From translation svn revision: 37052

commit 34ea1e62013fb66861803eb1e7977e6556575b31
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 17 14:09:37 2017 +1000

    L10n updates for: zh_TW
    From translation svn revision: 37052
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    14      14      source/locale/zh_TW/LC_MESSAGES/nvda.po
     1 file changed, 14 insertions(+), 14 deletions(-)

commit c81add54f5afe9e4eb30e7e01df528b2bef4d1db
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 17 14:09:23 2017 +1000

    L10n updates for: ro
    From translation svn revision: 37052
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    
    Stats:
    4       4       source/locale/ro/LC_MESSAGES/nvda.po
     1 file changed, 4 insertions(+), 4 deletions(-)

commit fe3eff104fec1aec63c5fbcc7ada184bc9cca6da
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 17 14:09:21 2017 +1000

    L10n updates for: pt_PT
    From translation svn revision: 37052
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    
    Stats:
    80      81      source/locale/pt_PT/LC_MESSAGES/nvda.po
    6       6       user_docs/pt_PT/changes.t2t
    78      54      user_docs/pt_PT/userGuide.t2t
     3 files changed, 164 insertions(+), 141 deletions(-)

commit c597ef9d3d2d0b8124319a19b3ca90b9f5776eb8
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 17 14:09:16 2017 +1000

    L10n updates for: nl
    From translation svn revision: 37052
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <leonard_dev@babbage.com>
    
    Stats:
    14      14      source/locale/nl/LC_MESSAGES/nvda.po
    6       6       user_docs/nl/changes.t2t
     2 files changed, 20 insertions(+), 20 deletions(-)

commit f711ab65e8470af8573c52db442e4f8751f3a750
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 17 14:09:07 2017 +1000

    L10n updates for: it
    From translation svn revision: 37052
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    1       1       source/locale/it/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 7270f8e56699506554fb77ef28fbf635403c4867
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 17 14:09:04 2017 +1000

    L10n updates for: hr
    From translation svn revision: 37052
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <zvonimirek222@webczatnet.pl>
    Mario Percinic <mario.percinic@gmail.com>
    Tea Turkovic <tturkovi@gmail.com>
    
    Stats:
    1       1       user_docs/hr/userGuide.t2t
     1 file changed, 1 insertion(+), 1 deletion(-)

commit fb7a0c06996bce4d8da4127c8e740bcdfc32e037
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 17 14:09:02 2017 +1000

    L10n updates for: he
    From translation svn revision: 37052
    
    Authors:
    Shmuel Naaman <shmuel_naaman@yahoo.com>
    Afik Sofir <afik.sofer@gmail.com>
    
    Stats:
    15      22      source/locale/he/LC_MESSAGES/nvda.po
     1 file changed, 15 insertions(+), 22 deletions(-)

commit cdecf610aaf9a40c5dab0c2a1df790b77c60fb96
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 17 14:08:52 2017 +1000

    L10n updates for: el
    From translation svn revision: 37052
    
    Authors:
    Irene Nakas <irnakas@gmail.com>
    Nikos Demetriou <nikosdemetriou@googlemail.com>
    access@e-rhetor.com
    
    Stats:
    3       3       source/locale/el/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 3 deletions(-)

commit 155e88e444f837160ea93d1b8a484c652eb22512
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 17 14:08:49 2017 +1000

    L10n updates for: da
    From translation svn revision: 37052
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    14      0       user_docs/da/changes.t2t
    37      25      user_docs/da/userGuide.t2t
     2 files changed, 51 insertions(+), 25 deletions(-)

commit 6be5e63f18eed280f8053c1991ee6d546cd06c4b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 17 14:08:47 2017 +1000

    L10n updates for: ca
    From translation svn revision: 37052
    
    Authors:
    Ruben Alcaraz <ruben.hangar1.8@gmail.com>
    Dr. Mireia Ribera <mireia.ribera@gmail.com>
    Santi Moese <santispock@gmail.com>
    Marina Salse Rovira <salse@ub.edu>
    
    Stats:
    55      22      source/locale/ca/LC_MESSAGES/nvda.po
    66      48      source/locale/ca/symbols.dic
     2 files changed, 121 insertions(+), 70 deletions(-)

commit 92da1aa3fbe6ce3f11212b6dd2b84bcfafc0b5c2
Merge: 3e5cb83d6 68588df14
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 17 00:06:06 2017 +1000

    Update translations.
    
    From translation svn revision: 37031

commit 68588df14eaa17cbb08a50bcda9d06a0f75227a9
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 17 00:06:01 2017 +1000

    L10n updates for: uk
    From translation svn revision: 37031
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    2       0       source/locale/uk/symbols.dic
     1 file changed, 2 insertions(+)

commit 5d49d34e57e3f5c95186cf2e28120a694039cc3c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 17 00:05:59 2017 +1000

    L10n updates for: ta
    From translation svn revision: 37031
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    654     564     source/locale/ta/LC_MESSAGES/nvda.po
    27      17      user_docs/ta/userGuide.t2t
     2 files changed, 681 insertions(+), 581 deletions(-)

commit 817c2a82fb078f8a9036d87342a696046e0b9531
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 17 00:05:56 2017 +1000

    L10n updates for: sr
    From translation svn revision: 37031
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <zvonimirek222@webczatnet.pl>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    1       1       user_docs/sr/changes.t2t
     1 file changed, 1 insertion(+), 1 deletion(-)

commit e3a1d3ac5b0fce70d086d0af31f36b846b37e952
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 17 00:05:55 2017 +1000

    L10n updates for: sl
    From translation svn revision: 37031
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    63      161     source/locale/sl/LC_MESSAGES/nvda.po
    58      32      user_docs/sl/userGuide.t2t
     2 files changed, 121 insertions(+), 193 deletions(-)

commit 33aa857cee8c9f9a447c97bafb4523033e5b1f67
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 17 00:05:54 2017 +1000

    L10n updates for: sk
    From translation svn revision: 37031
    
    Authors:
    Ondrej Rosik <ondrej.rosik@gmail.com>
    Peter Vagner <peter.v@datagate.sk>
    
    Stats:
    62      29      source/locale/sk/LC_MESSAGES/nvda.po
    58      32      user_docs/sk/userGuide.t2t
     2 files changed, 120 insertions(+), 61 deletions(-)

commit b17ef9e1a002a00740e12a35ebabf3e501ce06c9
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 17 00:05:52 2017 +1000

    L10n updates for: ru
    From translation svn revision: 37031
    
    Authors:
    Ruslan Kolodyazhni <eye0@rambler.ru>
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    66      0       user_docs/ru/changes.t2t
    108     82      user_docs/ru/userGuide.t2t
     2 files changed, 174 insertions(+), 82 deletions(-)

commit 80d52e367a991bcd0269926a6e920773002339d0
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 17 00:05:50 2017 +1000

    L10n updates for: ro
    From translation svn revision: 37031
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    
    Stats:
    4       4       source/locale/ro/LC_MESSAGES/nvda.po
    1       1       user_docs/ro/userGuide.t2t
     2 files changed, 5 insertions(+), 5 deletions(-)

commit 301b9d7cdf26400ebd9af46cc08d883851e833fa
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 17 00:05:47 2017 +1000

    L10n updates for: pt_BR
    From translation svn revision: 37031
    
    Authors:
    Cleverson Casarin Uliana <clever97@gmail.com>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    
    Stats:
    53      56      source/locale/pt_BR/LC_MESSAGES/nvda.po
     1 file changed, 53 insertions(+), 56 deletions(-)

commit 4a6b64fad62f1568d13df2737f29f2df9ca00460
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 17 00:05:45 2017 +1000

    L10n updates for: pl
    From translation svn revision: 37031
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <zvonimirek222@webczatnet.pl>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <killer@tyflonet.com>
    
    Stats:
    68      35      source/locale/pl/LC_MESSAGES/nvda.po
    57      0       user_docs/pl/changes.t2t
    301     95      user_docs/pl/userGuide.t2t
     3 files changed, 426 insertions(+), 130 deletions(-)

commit 41ad056b2500f18369253269403d17766332a107
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 17 00:05:43 2017 +1000

    L10n updates for: nl
    From translation svn revision: 37031
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <leonard_dev@babbage.com>
    
    Stats:
    20      13      user_docs/nl/changes.t2t
     1 file changed, 20 insertions(+), 13 deletions(-)

commit 56f222013b6a689aa878678fdfeeccd413e58cad
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 17 00:05:38 2017 +1000

    L10n updates for: ko
    From translation svn revision: 37031
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    
    Stats:
    4       5       source/locale/ko/LC_MESSAGES/nvda.po
    1       1       source/locale/ko/symbols.dic
    7       7       user_docs/ko/changes.t2t
     3 files changed, 12 insertions(+), 13 deletions(-)

commit a7d69cf9c520c4d228d6a56856826e8fec4f9967
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 17 00:05:35 2017 +1000

    L10n updates for: ja
    From translation svn revision: 37031
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    66      0       user_docs/ja/changes.t2t
    1       1       user_docs/ja/userGuide.t2t
     2 files changed, 67 insertions(+), 1 deletion(-)

commit a967f1ab3d17828595c22c01315a9a50400161d7
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 17 00:05:34 2017 +1000

    L10n updates for: it
    From translation svn revision: 37031
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    5       5       source/locale/it/LC_MESSAGES/nvda.po
    11      58      user_docs/it/userGuide.t2t
     2 files changed, 16 insertions(+), 63 deletions(-)

commit 9d0e1da11eba62aeccd10f1fd5fa359a2ad4324f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 17 00:05:31 2017 +1000

    L10n updates for: hu
    From translation svn revision: 37031
    
    Authors:
    Aron OcsvAri <oaron@nvda.hu>
    
    Stats:
    61      28      source/locale/hu/LC_MESSAGES/nvda.po
    54      0       user_docs/hu/changes.t2t
     2 files changed, 115 insertions(+), 28 deletions(-)

commit d57eb9cae7939f47271b2f4da4d9e49d76a07da6
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 17 00:05:28 2017 +1000

    L10n updates for: he
    From translation svn revision: 37031
    
    Authors:
    Shmuel Naaman <shmuel_naaman@yahoo.com>
    Afik Sofir <afik.sofer@gmail.com>
    
    Stats:
    57      18      source/locale/he/LC_MESSAGES/nvda.po
    6       6       source/locale/he/symbols.dic
     2 files changed, 63 insertions(+), 24 deletions(-)

commit 97fc8959bdf77bf09bcb276d84ae3c23eef5b7b3
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 17 00:05:22 2017 +1000

    L10n updates for: fa
    From translation svn revision: 37031
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    43      69      user_docs/fa/changes.t2t
    42      32      user_docs/fa/userGuide.t2t
     2 files changed, 85 insertions(+), 101 deletions(-)

commit 207c3df0754eb6e9d0a52c32ef44b53d1dccef2e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 17 00:05:18 2017 +1000

    L10n updates for: el
    From translation svn revision: 37031
    
    Authors:
    Irene Nakas <irnakas@gmail.com>
    Nikos Demetriou <nikosdemetriou@googlemail.com>
    access@e-rhetor.com
    
    Stats:
    46      10      source/locale/el/LC_MESSAGES/nvda.po
    25      0       user_docs/el/userGuide.t2t
     2 files changed, 71 insertions(+), 10 deletions(-)

commit ac5170c164549440603bd00334f091201d713647
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 17 00:05:16 2017 +1000

    L10n updates for: de
    From translation svn revision: 37031
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    
    Stats:
    6       6       user_docs/de/changes.t2t
    15      15      user_docs/de/userGuide.t2t
     2 files changed, 21 insertions(+), 21 deletions(-)

commit 2ac9aa51045f6c48394a8a67f926f4725c2e9f17
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 17 00:05:14 2017 +1000

    L10n updates for: cs
    From translation svn revision: 37031
    
    Authors:
    Martina Letochova <letochova@seznam.cz>
    
    Stats:
    18      5       user_docs/cs/changes.t2t
    9       9       user_docs/cs/userGuide.t2t
     2 files changed, 27 insertions(+), 14 deletions(-)

commit 4d5648b38a0f468506b35204c9251324c448c09a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 17 00:05:11 2017 +1000

    L10n updates for: bg
    From translation svn revision: 37031
    
    Authors:
    Zahari Yurukov <zahari.yurukov@gmail.com>
    Kostadin Kolev <k_kolev1985@mail.bg>
    
    Stats:
    66      31      source/locale/bg/LC_MESSAGES/nvda.po
    67      2       user_docs/bg/changes.t2t
    225     200     user_docs/bg/userGuide.t2t
     3 files changed, 358 insertions(+), 233 deletions(-)

commit e1961b59b78acff3e8e365db529aeaba59b54458
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 17 00:05:08 2017 +1000

    L10n updates for: ar
    From translation svn revision: 37031
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    189     56      source/locale/ar/LC_MESSAGES/nvda.po
    2       1       user_docs/ar/changes.t2t
     2 files changed, 191 insertions(+), 57 deletions(-)

commit 3e5cb83d630df8a07da86b89cacc6d219d092cc4
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Nov 15 07:30:21 2017 +1000

    No longer crash Foobar2000 due to an uninitialized VARIANT (#7737)
    
    * nvdaHelperRemote's ia2LiveRegions support:  ensure a variant is initialized before using it to fetch an MSAA state as accState may try to clear it and crash.

commit 14253857afb79bbaeae8894a76eb7da10d8e4ed2
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue Nov 14 17:42:22 2017 +0800

    Fix espeak freeze with certain Tamil symbol (PR #7751)
    
    The introduction of an emoji file seems to cause an issue with certain
    symbols being read by espeak.
    
    Fixes #7740

commit 14811579383de8c4637ce7f3f8969443080bce57
Merge: 5efe71c8b 5d78b4490
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 10 00:06:07 2017 +1000

    Update translations.
    
    From translation svn revision: 36879

commit 5d78b4490b40739e121e7d22651863b5ecaec64c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 10 00:06:06 2017 +1000

    L10n updates for: zh_TW
    From translation svn revision: 36879
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    44      10      source/locale/zh_TW/LC_MESSAGES/nvda.po
    64      64      source/locale/zh_TW/characterDescriptions.dic
    81      71      user_docs/zh_TW/userGuide.t2t
     3 files changed, 189 insertions(+), 145 deletions(-)

commit ce7f09ca2d1ca4ff8184561f4fcb09e31b2a6d5c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 10 00:06:04 2017 +1000

    L10n updates for: zh_HK
    From translation svn revision: 36879
    
    Authors:
    Eric Yip <ericycy@gmail.com>
    
    Stats:
    129     98      source/locale/zh_HK/LC_MESSAGES/nvda.po
     1 file changed, 129 insertions(+), 98 deletions(-)

commit 4e2f1a228bba72b3582a8e7943e34552db309f30
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 10 00:06:02 2017 +1000

    L10n updates for: vi
    From translation svn revision: 36879
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    44      10      source/locale/vi/LC_MESSAGES/nvda.po
     1 file changed, 44 insertions(+), 10 deletions(-)

commit 667a98562078ee8a4eea077c2fb95c2812e130c8
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 10 00:06:01 2017 +1000

    L10n updates for: uk
    From translation svn revision: 36879
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    44      10      source/locale/uk/LC_MESSAGES/nvda.po
    34      25      user_docs/uk/userGuide.t2t
     2 files changed, 78 insertions(+), 35 deletions(-)

commit adfb2c743f2215c6a7c162b326d9c8347b30d183
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 10 00:05:59 2017 +1000

    L10n updates for: tr
    From translation svn revision: 36879
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    45      9       source/locale/tr/LC_MESSAGES/nvda.po
    23      9       user_docs/tr/changes.t2t
    27      16      user_docs/tr/userGuide.t2t
     3 files changed, 95 insertions(+), 34 deletions(-)

commit 21d7bda1d5bac87aa360587507b5fec428ff4559
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 10 00:05:56 2017 +1000

    L10n updates for: sr
    From translation svn revision: 36879
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <zvonimirek222@webczatnet.pl>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    2       1       user_docs/sr/userGuide.t2t
     1 file changed, 2 insertions(+), 1 deletion(-)

commit 53513229a667befe7ecc9c07cf52956008bec94c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 10 00:05:52 2017 +1000

    L10n updates for: ru
    From translation svn revision: 36879
    
    Authors:
    Ruslan Kolodyazhni <eye0@rambler.ru>
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    46      10      source/locale/ru/LC_MESSAGES/nvda.po
     1 file changed, 46 insertions(+), 10 deletions(-)

commit 9971ba3ae5b7d2baa941d3a79586067c1d422df3
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 10 00:05:50 2017 +1000

    L10n updates for: ro
    From translation svn revision: 36879
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    
    Stats:
    46      10      source/locale/ro/LC_MESSAGES/nvda.po
    15      1       user_docs/ro/changes.t2t
    29      19      user_docs/ro/userGuide.t2t
     3 files changed, 90 insertions(+), 30 deletions(-)

commit bbe4053610ed2c143b72734cd23df33c2c322a01
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 10 00:05:49 2017 +1000

    L10n updates for: pt_PT
    From translation svn revision: 36879
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    
    Stats:
    59      23      source/locale/pt_PT/LC_MESSAGES/nvda.po
    72      3       user_docs/pt_PT/changes.t2t
    1       1       user_docs/pt_PT/userGuide.t2t
     3 files changed, 132 insertions(+), 27 deletions(-)

commit 85318aa02b82637a086e947f480dcc07d0b3ee23
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 10 00:05:47 2017 +1000

    L10n updates for: pt_BR
    From translation svn revision: 36879
    
    Authors:
    Cleverson Casarin Uliana <clever97@gmail.com>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    
    Stats:
    61      29      source/locale/pt_BR/LC_MESSAGES/nvda.po
     1 file changed, 61 insertions(+), 29 deletions(-)

commit 6d104aa2779dd35f21d83028ccff0300190c91a4
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 10 00:05:44 2017 +1000

    L10n updates for: nl
    From translation svn revision: 36879
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <leonard_dev@babbage.com>
    
    Stats:
    42      8       source/locale/nl/LC_MESSAGES/nvda.po
    8       1       user_docs/nl/changes.t2t
    30      19      user_docs/nl/userGuide.t2t
     3 files changed, 80 insertions(+), 28 deletions(-)

commit 455b7eabc4e600d2c1c36342a53bb73ac147098c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 10 00:05:40 2017 +1000

    L10n updates for: mk
    From translation svn revision: 36879
    
    Authors:
    zvonimir stanecic <zvonimirek222@webczatnet.pl>
    Kiko Lazarev <kristijan.lazarev@gmail.com>
    
    Stats:
    4       3       user_docs/mk/userGuide.t2t
     1 file changed, 4 insertions(+), 3 deletions(-)

commit f1bb9d3d08be674197a0c6abf944c6f041fcd4ec
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 10 00:05:38 2017 +1000

    L10n updates for: ko
    From translation svn revision: 36879
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    
    Stats:
    297     312     source/locale/ko/LC_MESSAGES/nvda.po
    30      30      source/locale/ko/symbols.dic
    58      48      user_docs/ko/changes.t2t
    28      18      user_docs/ko/userGuide.t2t
     4 files changed, 413 insertions(+), 408 deletions(-)

commit 306f72c6c7e13d407fd88b7c3ddf54ee39c3b820
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 10 00:05:36 2017 +1000

    L10n updates for: ja
    From translation svn revision: 36879
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    4       4       source/locale/ja/LC_MESSAGES/nvda.po
    58      32      user_docs/ja/userGuide.t2t
     2 files changed, 62 insertions(+), 36 deletions(-)

commit cda6164df0d59f91edd61c8c3107f0794298886d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 10 00:05:34 2017 +1000

    L10n updates for: it
    From translation svn revision: 36879
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    7       7       source/locale/it/LC_MESSAGES/nvda.po
    76      0       user_docs/it/changes.t2t
    99      33      user_docs/it/userGuide.t2t
     3 files changed, 182 insertions(+), 40 deletions(-)

commit f75db428ae237980b913ac59d2f62dc9104f1d80
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 10 00:05:30 2017 +1000

    L10n updates for: hr
    From translation svn revision: 36879
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <zvonimirek222@webczatnet.pl>
    Mario Percinic <mario.percinic@gmail.com>
    Tea Turkovic <tturkovi@gmail.com>
    
    Stats:
    43      9       source/locale/hr/LC_MESSAGES/nvda.po
    20      6       user_docs/hr/changes.t2t
    26      16      user_docs/hr/userGuide.t2t
     3 files changed, 89 insertions(+), 31 deletions(-)

commit 9d5255a302cba2234f2ee37167a9ef33e04cb854
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 10 00:05:27 2017 +1000

    L10n updates for: gl
    From translation svn revision: 36879
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    
    Stats:
    43      9       source/locale/gl/LC_MESSAGES/nvda.po
    16      2       user_docs/gl/changes.t2t
    28      18      user_docs/gl/userGuide.t2t
     3 files changed, 87 insertions(+), 29 deletions(-)

commit 3f16f4304f64441fd4bbd9bc70b8ebac27eba396
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 10 00:05:25 2017 +1000

    L10n updates for: fr
    From translation svn revision: 36879
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    3       3       user_docs/fr/changes.t2t
     1 file changed, 3 insertions(+), 3 deletions(-)

commit 8649592472e251e222166378724cd2c738b0e305
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 10 00:05:23 2017 +1000

    L10n updates for: fi
    From translation svn revision: 36879
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    132     94      source/locale/fi/LC_MESSAGES/nvda.po
    90      219     user_docs/fi/changes.t2t
    50      40      user_docs/fi/userGuide.t2t
     3 files changed, 272 insertions(+), 353 deletions(-)

commit 51ae3f3793ad7e1b8319209934f388d3a5acaace
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 10 00:05:21 2017 +1000

    L10n updates for: fa
    From translation svn revision: 36879
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    52      19      source/locale/fa/LC_MESSAGES/nvda.po
    0       1       user_docs/fa/userGuide.t2t
     2 files changed, 52 insertions(+), 20 deletions(-)

commit ee8316820422afc2384cb26c151e5168234dddab
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 10 00:05:19 2017 +1000

    L10n updates for: es
    From translation svn revision: 36879
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    
    Stats:
    44      9       source/locale/es/LC_MESSAGES/nvda.po
    16      2       user_docs/es/changes.t2t
    28      18      user_docs/es/userGuide.t2t
     3 files changed, 88 insertions(+), 29 deletions(-)

commit 17bf624d04c01cb3bd4541fde0eb8aeaad1490c3
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 10 00:05:15 2017 +1000

    L10n updates for: de
    From translation svn revision: 36879
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    
    Stats:
    6       6       source/locale/de/LC_MESSAGES/nvda.po
     1 file changed, 6 insertions(+), 6 deletions(-)

commit 99e9682d4353f4c0af880a10dc64cba294da9245
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 10 00:05:08 2017 +1000

    L10n updates for: ar
    From translation svn revision: 36879
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    408     457     source/locale/ar/LC_MESSAGES/nvda.po
    17      2       user_docs/ar/changes.t2t
    56      30      user_docs/ar/userGuide.t2t
     3 files changed, 481 insertions(+), 489 deletions(-)

commit 5efe71c8b272d7500aaadf8277e7d4e35566c8d2
Merge: 087a8c162 5f79cf892
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 3 00:05:59 2017 +1000

    Update translations.
    
    From translation svn revision: 36701

commit 5f79cf892d075deb83200091bc78a46c72d65443
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 3 00:05:51 2017 +1000

    L10n updates for: sr
    From translation svn revision: 36701
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <zvonimirek222@webczatnet.pl>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    43      8       source/locale/sr/LC_MESSAGES/nvda.po
    16      3       user_docs/sr/changes.t2t
    27      18      user_docs/sr/userGuide.t2t
     3 files changed, 86 insertions(+), 29 deletions(-)

commit 389345b423b3fa1ad4952009874a22eaac442954
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 3 00:05:36 2017 +1000

    L10n updates for: ko
    From translation svn revision: 36701
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    
    Stats:
    379     340     source/locale/ko/LC_MESSAGES/nvda.po
     1 file changed, 379 insertions(+), 340 deletions(-)

commit b5bc0cf0b7dbc89537c893c9f5beb1247311ab5b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 3 00:05:33 2017 +1000

    L10n updates for: ja
    From translation svn revision: 36701
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    44      10      source/locale/ja/LC_MESSAGES/nvda.po
    1       1       user_docs/ja/changes.t2t
     2 files changed, 45 insertions(+), 11 deletions(-)

commit 63f84fc62927d3d615d9fd3d0643670bcea93369
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 3 00:05:31 2017 +1000

    L10n updates for: it
    From translation svn revision: 36701
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    46      10      source/locale/it/LC_MESSAGES/nvda.po
     1 file changed, 46 insertions(+), 10 deletions(-)

commit 4b12222c9ef374748f848308ef2487bbba08ae55
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 3 00:05:24 2017 +1000

    L10n updates for: fr
    From translation svn revision: 36701
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    43      9       source/locale/fr/LC_MESSAGES/nvda.po
    14      1       user_docs/fr/changes.t2t
    30      20      user_docs/fr/userGuide.t2t
     3 files changed, 87 insertions(+), 30 deletions(-)

commit 7e2372afb24e03183fce3a2eedff87e7e6ac0f90
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 3 00:05:15 2017 +1000

    L10n updates for: de
    From translation svn revision: 36701
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    
    Stats:
    43      9       source/locale/de/LC_MESSAGES/nvda.po
    19      2       user_docs/de/changes.t2t
    27      17      user_docs/de/userGuide.t2t
     3 files changed, 89 insertions(+), 28 deletions(-)

commit 142b862fd951f882f1693f56c123c637dbdb18fc
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Nov 3 00:05:13 2017 +1000

    L10n updates for: cs
    From translation svn revision: 36701
    
    Authors:
    Martina Letochova <letochova@seznam.cz>
    
    Stats:
    45      143     source/locale/cs/LC_MESSAGES/nvda.po
     1 file changed, 45 insertions(+), 143 deletions(-)

commit 087a8c162098bc009cb4f0d1b941922efa29d00e
Merge: bc197f922 bd93a667d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Nov 2 17:11:16 2017 +1000

    Update translations.
    
    From translation svn revision: 36636

commit bd93a667dac60ff4706cc7396415b1cf226c17b2
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Nov 2 17:11:15 2017 +1000

    L10n updates for: zh_TW
    From translation svn revision: 36636
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    3       33      source/locale/zh_TW/LC_MESSAGES/nvda.po
    1       1       user_docs/zh_TW/changes.t2t
    1       1       user_docs/zh_TW/userGuide.t2t
     3 files changed, 5 insertions(+), 35 deletions(-)

commit 58d655d99daa32801274214fe9b6904d239da4f0
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Nov 2 17:11:13 2017 +1000

    L10n updates for: zh_HK
    From translation svn revision: 36636
    
    Authors:
    Eric Yip <ericycy@gmail.com>
    
    Stats:
    73      46      source/locale/zh_HK/LC_MESSAGES/nvda.po
     1 file changed, 73 insertions(+), 46 deletions(-)

commit 5c4047e26fa938ceaf5282ccf9a38865384f64bf
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Nov 2 17:11:12 2017 +1000

    L10n updates for: zh_CN
    From translation svn revision: 36636
    
    Authors:
    vgjh2005@gmail.com
    
    Stats:
    72      45      source/locale/zh_CN/LC_MESSAGES/nvda.po
    1       1       user_docs/zh_CN/changes.t2t
    1       1       user_docs/zh_CN/userGuide.t2t
     3 files changed, 74 insertions(+), 47 deletions(-)

commit 7d4a2853c73244aadc93b87d95e781d73e6f8e69
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Nov 2 17:11:11 2017 +1000

    L10n updates for: vi
    From translation svn revision: 36636
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    3       37      source/locale/vi/LC_MESSAGES/nvda.po
    1       1       user_docs/vi/changes.t2t
     2 files changed, 4 insertions(+), 38 deletions(-)

commit f656ae4971cd5c4a7db8bd8b234fe146364d0c51
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Nov 2 17:11:09 2017 +1000

    L10n updates for: uk
    From translation svn revision: 36636
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    3       35      source/locale/uk/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 35 deletions(-)

commit e53d72b4607db6fcf5b394292c8a72c06379bb87
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Nov 2 17:11:08 2017 +1000

    L10n updates for: tr
    From translation svn revision: 36636
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    15      62      source/locale/tr/LC_MESSAGES/nvda.po
    1       0       source/locale/tr/symbols.dic
    10      10      user_docs/tr/userGuide.t2t
     3 files changed, 26 insertions(+), 72 deletions(-)

commit 1a7e2c526ee6aed746fe94b88c003c35fd6b3401
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Nov 2 17:11:06 2017 +1000

    L10n updates for: ta
    From translation svn revision: 36636
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    549     635     source/locale/ta/LC_MESSAGES/nvda.po
    30      30      user_docs/ta/userGuide.t2t
     2 files changed, 579 insertions(+), 665 deletions(-)

commit cfdb4150506e9577980676334bc61aacaf23c9e5
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Nov 2 17:11:04 2017 +1000

    L10n updates for: sv
    From translation svn revision: 36636
    
    Authors:
    Daniel Johansson <daniel.johansson@coeptus.se>
    Niklas Johansson <sleeping.pillow@gmail.com>
    
    Stats:
    3067    1045    source/locale/sv/LC_MESSAGES/nvda.po
    1       1       user_docs/sv/changes.t2t
     2 files changed, 3068 insertions(+), 1046 deletions(-)

commit f8a411dcd6caa560f0df449e9b81a3dca046ef85
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Nov 2 17:11:03 2017 +1000

    L10n updates for: sr
    From translation svn revision: 36636
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <zvonimirek222@webczatnet.pl>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    2       36      source/locale/sr/LC_MESSAGES/nvda.po
    1       1       user_docs/sr/changes.t2t
    1       1       user_docs/sr/userGuide.t2t
     3 files changed, 4 insertions(+), 38 deletions(-)

commit 5d2d0e8549bbc8d55970c20f2b7acbeb7f63c1ab
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Nov 2 17:11:02 2017 +1000

    L10n updates for: sl
    From translation svn revision: 36636
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    205     42      source/locale/sl/LC_MESSAGES/nvda.po
    1       1       user_docs/sl/userGuide.t2t
     2 files changed, 206 insertions(+), 43 deletions(-)

commit 9e9e8af3eb492eac582050980d3b9eb80e2a9a4f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Nov 2 17:11:01 2017 +1000

    L10n updates for: sk
    From translation svn revision: 36636
    
    Authors:
    Ondrej Rosik <ondrej.rosik@gmail.com>
    Peter Vagner <peter.v@datagate.sk>
    
    Stats:
    73      47      source/locale/sk/LC_MESSAGES/nvda.po
     1 file changed, 73 insertions(+), 47 deletions(-)

commit c8ca525018a5de759945caf443def6a84d31f65f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Nov 2 17:10:59 2017 +1000

    L10n updates for: ru
    From translation svn revision: 36636
    
    Authors:
    Ruslan Kolodyazhni <eye0@rambler.ru>
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    3       37      source/locale/ru/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 37 deletions(-)

commit e02ceee0ede00b51293540d4bb1fc99cd8cc9d24
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Nov 2 17:10:56 2017 +1000

    L10n updates for: ro
    From translation svn revision: 36636
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    
    Stats:
    3       35      source/locale/ro/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 35 deletions(-)

commit 44ed689d7b713361b66a4b7415f0cc27f8f67e10
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Nov 2 17:10:55 2017 +1000

    L10n updates for: pt_PT
    From translation svn revision: 36636
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    
    Stats:
    48      42      source/locale/pt_PT/LC_MESSAGES/nvda.po
    1       1       user_docs/pt_PT/changes.t2t
    1       1       user_docs/pt_PT/userGuide.t2t
     3 files changed, 50 insertions(+), 44 deletions(-)

commit 2c3bc3672129704ed3851c3ce92332477b4ef570
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Nov 2 17:10:53 2017 +1000

    L10n updates for: pt_BR
    From translation svn revision: 36636
    
    Authors:
    Cleverson Casarin Uliana <clever97@gmail.com>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    
    Stats:
    51      42      source/locale/pt_BR/LC_MESSAGES/nvda.po
    1       1       user_docs/pt_BR/changes.t2t
    1       1       user_docs/pt_BR/userGuide.t2t
     3 files changed, 53 insertions(+), 44 deletions(-)

commit 909206a93e4e549f2bcc8024569c0af6da2e19f3
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Nov 2 17:10:52 2017 +1000

    L10n updates for: pl
    From translation svn revision: 36636
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <zvonimirek222@webczatnet.pl>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <killer@tyflonet.com>
    
    Stats:
    73      46      source/locale/pl/LC_MESSAGES/nvda.po
    1       1       user_docs/pl/changes.t2t
    1       1       user_docs/pl/userGuide.t2t
     3 files changed, 75 insertions(+), 48 deletions(-)

commit 121aa1cbc04cee8ac395785cb75c60fc7f9bac90
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Nov 2 17:10:50 2017 +1000

    L10n updates for: pa
    From translation svn revision: 36636
    
    Authors:
    Maheshinder Singh Khosla <mahesh.khosla@gmail.com>
    Dinesh Mittal <punjabimaster259@gmail.com>
    
    Stats:
    5178    3264    source/locale/pa/LC_MESSAGES/nvda.po
    1       1       user_docs/pa/changes.t2t
     2 files changed, 5179 insertions(+), 3265 deletions(-)

commit 2f43f78286a8dbcef17bdc06f413d7672f7b175d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Nov 2 17:10:49 2017 +1000

    L10n updates for: nl
    From translation svn revision: 36636
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <leonard_dev@babbage.com>
    
    Stats:
    2       35      source/locale/nl/LC_MESSAGES/nvda.po
    1       1       user_docs/nl/changes.t2t
    1       1       user_docs/nl/userGuide.t2t
     3 files changed, 4 insertions(+), 37 deletions(-)

commit 4d3ce057841dc9d4c4b872ddc367101fbe033dce
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Nov 2 17:10:48 2017 +1000

    L10n updates for: ne
    From translation svn revision: 36636
    
    Authors:
    him Prasad Gautam <drishtibachak@gmail.com>
    
    Stats:
    3288    1420    source/locale/ne/LC_MESSAGES/nvda.po
     1 file changed, 3288 insertions(+), 1420 deletions(-)

commit be7e75a8e2502ce96df9127d73c03255af63dfe8
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Nov 2 17:10:46 2017 +1000

    L10n updates for: nb_NO
    From translation svn revision: 36636
    
    Authors:
    David Hole <balubathebrave@gmail.com>
    Bjornar Seppola <bjornar@seppola.net>
    
    Stats:
    71      42      source/locale/nb_NO/LC_MESSAGES/nvda.po
     1 file changed, 71 insertions(+), 42 deletions(-)

commit 106cce258ca234d3bbdec2c4677062864a53759c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Nov 2 17:10:46 2017 +1000

    L10n updates for: my
    From translation svn revision: 36636
    
    Authors:
    Benedict La hkun <lkbenedict@gmail.com>
    
    Stats:
    23      43      source/locale/my/LC_MESSAGES/nvda.po
    1       1       user_docs/my/changes.t2t
    1       2       user_docs/my/userGuide.t2t
     3 files changed, 25 insertions(+), 46 deletions(-)

commit 6751137d93e8ad9b97e1d30c141addca22af0f47
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Nov 2 17:10:44 2017 +1000

    L10n updates for: mk
    From translation svn revision: 36636
    
    Authors:
    zvonimir stanecic <zvonimirek222@webczatnet.pl>
    Kiko Lazarev <kristijan.lazarev@gmail.com>
    
    Stats:
    3       23      source/locale/mk/LC_MESSAGES/nvda.po
    33      7       user_docs/mk/changes.t2t
    4       6       user_docs/mk/userGuide.t2t
     3 files changed, 40 insertions(+), 36 deletions(-)

commit ccdeb5c228c5e5b7d70d441d36a4b8463bd9c13d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Nov 2 17:10:43 2017 +1000

    L10n updates for: lt
    From translation svn revision: 36636
    
    Authors:
    Paulius Leveris <paulius.leveris@gmail.com>
    Rimas Kudelis <rq@akl.lt>
    
    Stats:
    73      47      source/locale/lt/LC_MESSAGES/nvda.po
     1 file changed, 73 insertions(+), 47 deletions(-)

commit c1b37388a8d95282d26fa3b376a0ffd372c90dc0
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Nov 2 17:10:42 2017 +1000

    L10n updates for: ko
    From translation svn revision: 36636
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    
    Stats:
    47      53      source/locale/ko/LC_MESSAGES/nvda.po
    9       2       user_docs/ko/changes.t2t
     2 files changed, 56 insertions(+), 55 deletions(-)

commit 1bef35c264821cb466b17e94d1a54bb1583d6120
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Nov 2 17:10:40 2017 +1000

    L10n updates for: kn
    From translation svn revision: 36636
    
    Authors:
    Siddalingeshwar Ingalagi <ingalagisiddu@gmail.com>
    
    Stats:
    3409    1499    source/locale/kn/LC_MESSAGES/nvda.po
    1       1       user_docs/kn/changes.t2t
     2 files changed, 3410 insertions(+), 1500 deletions(-)

commit d4b9800ec8b2d8f7d03ce2d7e50bb56fcc962807
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Nov 2 17:10:39 2017 +1000

    L10n updates for: ka
    From translation svn revision: 36636
    
    Authors:
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Goderdzi Gogoladze <goderdzigogoladze@gmail.com>
    
    Stats:
    2581    908     source/locale/ka/LC_MESSAGES/nvda.po
     1 file changed, 2581 insertions(+), 908 deletions(-)

commit 766c35936760a31b2818b17dc099fc887c423908
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Nov 2 17:10:39 2017 +1000

    L10n updates for: ja
    From translation svn revision: 36636
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    3       33      source/locale/ja/LC_MESSAGES/nvda.po
    1       1       user_docs/ja/changes.t2t
     2 files changed, 4 insertions(+), 34 deletions(-)

commit 3a3e374f3ab253c38799cc06c3dba7015dbace65
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Nov 2 17:10:36 2017 +1000

    L10n updates for: it
    From translation svn revision: 36636
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    3       37      source/locale/it/LC_MESSAGES/nvda.po
    1       1       user_docs/it/changes.t2t
    1       1       user_docs/it/userGuide.t2t
     3 files changed, 5 insertions(+), 39 deletions(-)

commit 9aee87ee7aba25a5eb786c7de8ecfd750ed77806
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Nov 2 17:10:35 2017 +1000

    L10n updates for: is
    From translation svn revision: 36636
    
    Authors:
    Birkir R. Gunnarsson <birkir.gunnarsson@gmail.com>
    Hlynur Hreinsson <hm.hreinsson@gmail.com>
    
    Stats:
    3070    1050    source/locale/is/LC_MESSAGES/nvda.po
    1       1       user_docs/is/userGuide.t2t
     2 files changed, 3071 insertions(+), 1051 deletions(-)

commit db0b8f222c4c6a3c10e9fdd4f53238c06f910885
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Nov 2 17:10:34 2017 +1000

    L10n updates for: hu
    From translation svn revision: 36636
    
    Authors:
    Aron OcsvAri <oaron@nvda.hu>
    
    Stats:
    73      48      source/locale/hu/LC_MESSAGES/nvda.po
    1       1       user_docs/hu/changes.t2t
    1       1       user_docs/hu/userGuide.t2t
     3 files changed, 75 insertions(+), 50 deletions(-)

commit 357e5911404ccf49d1d963c69120fce549a6887b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Nov 2 17:10:32 2017 +1000

    L10n updates for: hr
    From translation svn revision: 36636
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <zvonimirek222@webczatnet.pl>
    Mario Percinic <mario.percinic@gmail.com>
    Tea Turkovic <tturkovi@gmail.com>
    
    Stats:
    29      42      source/locale/hr/LC_MESSAGES/nvda.po
    4       0       user_docs/hr/changes.t2t
     2 files changed, 33 insertions(+), 42 deletions(-)

commit fb8ed4f18085d0b1ff6f493afbbaa84fb54ed1b3
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Nov 2 17:10:30 2017 +1000

    L10n updates for: hi
    From translation svn revision: 36636
    
    Authors:
    Bhavya Shah <bhavya.shah125@gmail.com>
    dipendra.lists@gmail.com
    
    Stats:
    5373    3491    source/locale/hi/LC_MESSAGES/nvda.po
     1 file changed, 5373 insertions(+), 3491 deletions(-)

commit 77edb536380f822a6febd7be1dc914440df9f0fd
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Nov 2 17:10:29 2017 +1000

    L10n updates for: he
    From translation svn revision: 36636
    
    Authors:
    Shmuel Naaman <shmuel_naaman@yahoo.com>
    Afik Sofir <afik.sofer@gmail.com>
    
    Stats:
    73      45      source/locale/he/LC_MESSAGES/nvda.po
    1       1       user_docs/he/changes.t2t
    1       1       user_docs/he/userGuide.t2t
     3 files changed, 75 insertions(+), 47 deletions(-)

commit 5124a674b06edef5af4a0b48af0198b74f740483
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Nov 2 17:10:28 2017 +1000

    L10n updates for: gl
    From translation svn revision: 36636
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    
    Stats:
    3       36      source/locale/gl/LC_MESSAGES/nvda.po
    1       1       user_docs/gl/userGuide.t2t
     2 files changed, 4 insertions(+), 37 deletions(-)

commit 99a2d6eefaaff6b27d5871e91745a64aa5a94848
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Nov 2 17:10:26 2017 +1000

    L10n updates for: ga
    From translation svn revision: 36636
    
    Authors:
    Cearbhall OMeadhra <cearbhall.omeadhra@blbc.ie>
    Ronan McGuirk <ronan.p.mcguirk@gmail.com>
    Kevin Scannell <kscanne@gmail.com>
    
    Stats:
    74      48      source/locale/ga/LC_MESSAGES/nvda.po
     1 file changed, 74 insertions(+), 48 deletions(-)

commit 6ce2db596742be1b3adf43b0d55e8f70c1bedcfd
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Nov 2 17:10:26 2017 +1000

    L10n updates for: fr
    From translation svn revision: 36636
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    3       11      source/locale/fr/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 11 deletions(-)

commit ba7a8af9c74e2ce13b491d4d43bb31b9a26647b2
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Nov 2 17:10:24 2017 +1000

    L10n updates for: fi
    From translation svn revision: 36636
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    3       35      source/locale/fi/LC_MESSAGES/nvda.po
    1       1       user_docs/fi/changes.t2t
    1       1       user_docs/fi/userGuide.t2t
     3 files changed, 5 insertions(+), 37 deletions(-)

commit 6b23bb1817ecb1942d5f61cb7e77f1a179de77a0
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Nov 2 17:10:20 2017 +1000

    L10n updates for: es
    From translation svn revision: 36636
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    Remy Ruiz <remyruiz@gmail.com>
    
    Stats:
    3       36      source/locale/es/LC_MESSAGES/nvda.po
    1       1       user_docs/es/userGuide.t2t
     2 files changed, 4 insertions(+), 37 deletions(-)

commit ae3c4f0714e220ac25034336aee3c9c34ab1af78
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Nov 2 17:10:19 2017 +1000

    L10n updates for: es_CO
    From translation svn revision: 36636
    
    Authors:
    Jorge Zarache <reydelasmaquinas@outlook.com>
    
    Stats:
    2645    985     source/locale/es_CO/LC_MESSAGES/nvda.po
    0       1       user_docs/es_CO/userGuide.t2t
     2 files changed, 2645 insertions(+), 986 deletions(-)

commit b710b0e75f3a678f69e1523297ccedf89b737d36
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Nov 2 17:10:17 2017 +1000

    L10n updates for: el
    From translation svn revision: 36636
    
    Authors:
    Irene Nakas <irnakas@gmail.com>
    Nikos Demetriou <nikosdemetriou@googlemail.com>
    access@e-rhetor.com
    
    Stats:
    75      54      source/locale/el/LC_MESSAGES/nvda.po
    1       1       user_docs/el/changes.t2t
    1       1       user_docs/el/userGuide.t2t
     3 files changed, 77 insertions(+), 56 deletions(-)

commit 3a3f2240e1ef90d98b5335a05d1266ee65fdc65c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Nov 2 17:10:15 2017 +1000

    L10n updates for: de
    From translation svn revision: 36636
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    
    Stats:
    2       36      source/locale/de/LC_MESSAGES/nvda.po
    1       1       user_docs/de/changes.t2t
    1       1       user_docs/de/userGuide.t2t
     3 files changed, 4 insertions(+), 38 deletions(-)

commit 4cae97a82db4140c52b3bf98b72a48a5e1cb30f2
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Nov 2 17:10:14 2017 +1000

    L10n updates for: da
    From translation svn revision: 36636
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    50      82      source/locale/da/LC_MESSAGES/nvda.po
    8       8       user_docs/da/changes.t2t
    4       4       user_docs/da/userGuide.t2t
     3 files changed, 62 insertions(+), 94 deletions(-)

commit 3e4afc165a6a7a3d2dc6145139f25de8dc739c39
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Nov 2 17:10:12 2017 +1000

    L10n updates for: cs
    From translation svn revision: 36636
    
    Authors:
    Martina Letochova <letochova@seznam.cz>
    
    Stats:
    136     35      source/locale/cs/LC_MESSAGES/nvda.po
    3       1       user_docs/cs/changes.t2t
    1       1       user_docs/cs/userGuide.t2t
     3 files changed, 140 insertions(+), 37 deletions(-)

commit d84aa9d8a290883b8a06998743627e34df58f2da
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Nov 2 17:10:11 2017 +1000

    L10n updates for: ca
    From translation svn revision: 36636
    
    Authors:
    Ruben Alcaraz <ruben.hangar1.8@gmail.com>
    Dr. Mireia Ribera <mireia.ribera@gmail.com>
    Santi Moese <santispock@gmail.com>
    Marina Salse Rovira <salse@ub.edu>
    
    Stats:
    76      47      source/locale/ca/LC_MESSAGES/nvda.po
    1       0       user_docs/ca/userGuide.t2t
     2 files changed, 77 insertions(+), 47 deletions(-)

commit 0a4bbe6a5dcc2e432404925b7aad351856365687
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Nov 2 17:10:09 2017 +1000

    L10n updates for: bg
    From translation svn revision: 36636
    
    Authors:
    Zahari Yurukov <zahari.yurukov@gmail.com>
    Kostadin Kolev <k_kolev1985@mail.bg>
    
    Stats:
    73      49      source/locale/bg/LC_MESSAGES/nvda.po
    1       1       user_docs/bg/changes.t2t
    1       1       user_docs/bg/userGuide.t2t
     3 files changed, 75 insertions(+), 51 deletions(-)

commit 29b9c54f6186dfac19ba32c786293432cd1b8ede
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Nov 2 17:10:06 2017 +1000

    L10n updates for: ar
    From translation svn revision: 36636
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    368     395     source/locale/ar/LC_MESSAGES/nvda.po
    1       1       user_docs/ar/changes.t2t
     2 files changed, 369 insertions(+), 396 deletions(-)

commit 42684efead97bbb77ee941d095147db2ac69180b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Nov 2 17:10:04 2017 +1000

    L10n updates for: an
    From translation svn revision: 36636
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    
    Stats:
    74      46      source/locale/an/LC_MESSAGES/nvda.po
    1       1       user_docs/an/userGuide.t2t
     2 files changed, 75 insertions(+), 47 deletions(-)

commit 51af40d062c04216ff9db0b2a462b1938ffcbae9
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Nov 2 17:10:02 2017 +1000

    L10n updates for: am
    From translation svn revision: 36636
    
    Authors:
    KETEMA ZEREGAW <kzeregaw@msn.com>
    Dr. Tamru E. Belay <g.braille@sympatico.ca>
    
    Stats:
    3069    1069    source/locale/am/LC_MESSAGES/nvda.po
    2       34      user_docs/am/userGuide.t2t
     2 files changed, 3071 insertions(+), 1103 deletions(-)

commit bc197f92239e6e19b3989b87f24b371307396a33
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Nov 2 16:56:36 2017 +1000

    Update what's new.

commit be177e945d7071a0738bda05be61c0cd8593117a
Author: Bram Duvigneau <bram@bramd.nl>
Date:   Thu Nov 2 07:51:36 2017 +0100

    Native driver for Handy Tech braille displays (#7590)

commit 868bbe557e40258460906c637f080d5ffc3c0de7
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Wed Nov 1 19:30:44 2017 -0700

    Docs17.4 (#7662)
    
    * What's new: style, wording.
    
    * WDAG: clarified which version of Windows 10 introduced it (Fall Creators Update).
    * espeak-ng: shortened commit hash to eight characters.
    * Addons -> add-ons.
    * Portable copy command line: remove 'support for' to make the entry consistent.
    * Braille dispaly key assignment: punctuation change.
    
    * New language: Macedonian.
    
    * MathPlayer documentation URL encased in t2t link markup for consistency.
    
    * User guide: change http to https for add-ons website, change addresses for developer Guide and extra voices wiki page.
    
    * Final notes
    
    * What's new: linguistic fixes.
    
    * What's new: capitalization
    
    * Switch eSpeak back to 1.49.2 (NVDA master)

commit 41a8953fe7a22e1c54fa6de1ef3d04e74606ecd7
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Nov 2 08:51:55 2017 +1000

    Added release highlights paragraph to what's  new.

commit 81ae59ca94a84a68b2c34558517c96762b978431
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Nov 2 07:47:10 2017 +1000

    Update what's new

commit 7a3ab02bfe63443f01929df08250a5db5bb8c46d
Author: Leonard de Ruijter <leonard_dev@babbage.com>
Date:   Wed Nov 1 22:45:07 2017 +0100

    Fix broken gesture identifier in freedomscientific driver (#7716)
    
    * Fix identifier error in gesture for Freedom Scientific displays and provide a unit test to make this happen no more in the future.
    This also changes braille.getDisplayList to allow getting a full list of displays, ignoring the result of every check function.
    
    * No longer raise a ValueError for BrailleDisplayGesture.getDisplayTextForIdentifier, as this prevents the input gestures dialog from launching. Note that this should never happen for core drivers, as a unit test should take care of this

commit 053849ca1226de5781a2ddfa7dc731ddffd71b49
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Wed Nov 1 13:38:58 2017 +0800

    Underlined the accelerator key W for Windows 10 OCR... in the NVDA preferences menu. (PR #7670)
    
    Fixes #7477

commit 1e98ea7a500aa442ffa07f9b7d42acd5d6a36179
Author: Reef Turner <reef@nvaccess.org>
Date:   Wed Nov 1 13:34:02 2017 +0800

    Update changes file for PR #7666
    
    - Voice dictionary files are now versioned and have been moved to the
      'speechDicts/voiceDicts.v1' directory. (#7592)
    - Versioned files (user configuration, voice dictionaries)
      modifications are no longer saved when NVDA is run from the launcher.
      (#7688)

commit d63f4ed4710631e773aca13246bf52049fa7c605
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Wed Nov 1 13:27:33 2017 +0800

    Move voice dict files (PR #7666)
    
    Backup and move voice dict files, introduce a versioning scheme.
    Espeak voice dictionaries are renamed to use the new name for voices to
    avoid "lost" dictionaries.
    
    Fixes #7592
    
    When running from the launcher, dont upgrade NVDA config or move espeak
    voice dictionaries.
    
    Fixes #7688

commit 0ff1224ad84762ae75242047af2b76de779d58f7
Author: Reef Turner <reef@nvaccess.org>
Date:   Wed Nov 1 13:23:54 2017 +0800

    Update changes file for PR #7583
    
    Espeak-ng has been updated (to release 1.49.2), this resolves some
    issues with producing release builds. (#7385, #7583)

commit 9e8c05fbdba102bef7ce334e21a439ec8be82bb2
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Wed Nov 1 13:20:35 2017 +0800

    Update espeak (PR #7583)
    
    * Update espeak-ng to 1.49.2

commit d232c913f73134168a4b57f22472fc1f3bc7bad0
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Wed Nov 1 11:07:42 2017 +0800

    Revert "Improved eclipse code editing support" (PR #7715)
    
    * Revert "Update changes file for PR #5680"
    
    This reverts commit 5298ee3cd816673381922f3f7a838246a44f9c09.
    
    * Revert "Improved eclipse code editing support (PR #5680)"
    
    This reverts commit 204023e599590a3e9c673348263e937bc695c028.

commit 5298ee3cd816673381922f3f7a838246a44f9c09
Author: Reef Turner <reef@nvaccess.org>
Date:   Tue Oct 31 16:28:20 2017 +0800

    Update changes file for PR #5680

commit 204023e599590a3e9c673348263e937bc695c028
Author: Francisco R. Del Roio <francipvb@users.noreply.github.com>
Date:   Tue Oct 31 05:31:21 2017 -0300

    Improved eclipse code editing support (PR #5680)
    
    Fixes #5667

commit 0aca7dbe44f3a31b6cae9a58291556cc7d8b6020
Author: Reef Turner <reef@nvaccess.org>
Date:   Tue Oct 31 16:20:08 2017 +0800

    Update changes file for PR #7656
    
    The hotkey for the regular expression radio button in the dictionary
    dialog is changed from alt+r to alt+e (issue #6782)

commit 9731a72b71b80620097dd6d2e1e364addb9f6440
Author: Ethan Holliger <21368115+ehollig@users.noreply.github.com>
Date:   Tue Oct 31 02:21:53 2017 -0600

    Change excelerator for regular expression (PR #7656)
    
    Fixes #6782

commit 6307b861df079fc31761d7e7033ee105329dedbb
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue Oct 31 11:06:08 2017 +0800

    Fix wx assertion when loading the welcome dialog (#7711)
    
    Fixes #7692

commit 54945e47135c170d8add5c7d8f9749c2c5d76595
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Oct 31 13:00:36 2017 +1000

    Update what's new

commit 1e37666d474a0558119f1ea9549106e91074b2ea
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Mon Oct 30 19:58:45 2017 -0700

    liblouis 3.3.0: new and renamed Croatian tables, removed wrappers.c (#7566)
    
    * Liblouis 3.3.0: rename hr.ctb to hr-comp8-utb due to change of table purpose. re #7565.
    
    * liblouis 3.3.0: rename hr.ctb to the comp8 table in UI. re #7565
    
    * Liblouis 3.3.0: add Croatian grade 1 table introduced in Liblouis 3.3.0. re #7565
    
    * Liblouis 3.3.0: remove wrappers.c dependency for liblouis.dll, as this file is gone in Liblouis 3.3.0. re #7565
    
    * Officially upgrade to Liblouis 3.3.0. re #7565

commit cdb8c4ba62c5d3744c0b33cf67d41970d5d108cb
Author: Leonard de Ruijter <leonard_dev@babbage.com>
Date:   Tue Oct 31 03:53:51 2017 +0100

    Add a windowRawText property to braille.BrailleBuffer (#7354)
    
    * Added the following to the braille.BrailleBuffer class:
    
    * Properties rawText, rawToBraillePos and brailleToRawPos; based on the properties for braille.Region, but for the entire buffer
            + These are updated in braille.brailleBuffer.update
    * bufferPositionsToRawText method: accepts two buffer positions and returns the portion of raw text associated with the given positions
    * windowRawText property: contains the raw text for the current window
    
    * rawToBraillePos and brailleToRawPos are now dynamic
    
    * Cache brailleToRawPos and rawTobraillePos

commit 3a7b30d3e7324f81136e1f44fce15fea89781f84
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Oct 31 12:51:47 2017 +1000

    Update what's new

commit b1e7873233becd75ceba3a4b0222ff93f84886ec
Author: Davy Kager <dkager@users.noreply.github.com>
Date:   Tue Oct 31 03:51:01 2017 +0100

    Add Vietnamese grade 1 braille table. (#7619)

commit eaad556a41056fe00b5f9795f814cd49999b11ff
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Oct 31 12:49:52 2017 +1000

    Update what's new

commit 36beb9600f15220c74a4a879a0fd2845694719dc
Author: Leonard de Ruijter <leonard_dev@babbage.com>
Date:   Tue Oct 31 03:48:34 2017 +0100

    Add a script to browse mode to toggle inclusion of layout tables (#7634)
    
    * Add a script to browse mode to toggle inclusion of layout tables
    
    * Review actions

commit e9fbe6fd2eca898d68fe83776ebeb5aebcbf1f78
Merge: 7789b1dc9 509ec761d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Oct 30 20:14:07 2017 +1000

    Update translations.
    
    From translation svn revision: 36502

commit 509ec761dc20555aa8746480777b0298e54f67c2
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Oct 30 20:13:33 2017 +1000

    L10n updates for: hr
    From translation svn revision: 36502
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <zvonimirek222@webczatnet.pl>
    Mario Percinic <mario.percinic@gmail.com>
    Tea Turkovic <tturkovi@gmail.com>
    
    Stats:
    3       3       source/locale/hr/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 3 deletions(-)

commit 7789b1dc926136f63f6d7fa2338c176cb622404d
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Oct 30 20:10:00 2017 +1000

    Empty commit to bump translations

commit ff08e5bcdfbbf5fab2532989fbacf708ccb0fc8d
Merge: 61bdc3f91 cb6dc4205
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Oct 30 10:09:39 2017 +1000

    Update translations.
    
    From translation svn revision: 36500

commit cb6dc4205a971ed4a73e69b5463f1315d4d0d719
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Oct 30 10:09:25 2017 +1000

    L10n updates for: ro
    From translation svn revision: 36500
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    
    Stats:
    2       2       source/locale/ro/symbols.dic
     1 file changed, 2 insertions(+), 2 deletions(-)

commit c264fccd6b7aa07df31a4ba24826d0b23ec8b073
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Oct 30 10:09:20 2017 +1000

    L10n updates for: nl
    From translation svn revision: 36500
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <leonard_dev@babbage.com>
    
    Stats:
    17      15      source/locale/nl/LC_MESSAGES/nvda.po
    8       0       user_docs/nl/changes.t2t
     2 files changed, 25 insertions(+), 15 deletions(-)

commit 8105c72a105bd6a4b3155dceb524ddc2e45397cf
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Oct 30 10:09:14 2017 +1000

    L10n updates for: ko
    From translation svn revision: 36500
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    
    Stats:
    18      16      source/locale/ko/LC_MESSAGES/nvda.po
    185     182     user_docs/ko/changes.t2t
    12      1       user_docs/ko/userGuide.t2t
     3 files changed, 215 insertions(+), 199 deletions(-)

commit 4f17d5a89dacababa9044e129b3ee28e91e23b79
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Oct 30 10:09:07 2017 +1000

    L10n updates for: hr
    From translation svn revision: 36500
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <zvonimirek222@webczatnet.pl>
    Mario Percinic <mario.percinic@gmail.com>
    Tea Turkovic <tturkovi@gmail.com>
    
    Stats:
    27      7       source/locale/hr/LC_MESSAGES/nvda.po
    10      7       user_docs/hr/changes.t2t
    4       1       user_docs/hr/userGuide.t2t
     3 files changed, 41 insertions(+), 15 deletions(-)

commit f17804d66bc56ba1bab951bb044f3b59f5561e9e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Oct 30 10:09:02 2017 +1000

    L10n updates for: fr
    From translation svn revision: 36500
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    1       1       user_docs/fr/changes.t2t
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 576df6ebd157d2180cc150f79fb4c0bc99705928
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Oct 30 10:08:52 2017 +1000

    L10n updates for: da
    From translation svn revision: 36500
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    59      22      source/locale/da/LC_MESSAGES/nvda.po
    22      5       user_docs/da/userGuide.t2t
     2 files changed, 81 insertions(+), 27 deletions(-)

commit 45f4e85f5bd22731de96fa107bec8d4ac8ca32a3
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon Oct 30 10:08:50 2017 +1000

    L10n updates for: cs
    From translation svn revision: 36500
    
    Authors:
    Martina Letochova <letochova@seznam.cz>
    
    Stats:
    17      15      source/locale/cs/LC_MESSAGES/nvda.po
     1 file changed, 17 insertions(+), 15 deletions(-)

commit 61bdc3f91c6b339d4e80f0fc788fb40d71fc3927
Merge: 326c59271 696dcff93
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 27 00:06:13 2017 +1000

    Update translations.
    
    From translation svn revision: 36434

commit 696dcff931b4b52139c9d27a7e156a1f4c2f2154
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 27 00:06:12 2017 +1000

    L10n updates for: zh_TW
    From translation svn revision: 36434
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    21      16      source/locale/zh_TW/LC_MESSAGES/nvda.po
    7       7       source/locale/zh_TW/characterDescriptions.dic
     2 files changed, 28 insertions(+), 23 deletions(-)

commit 4ae59244eb534c71baafba2ff923698ca005f232
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 27 00:06:08 2017 +1000

    L10n updates for: vi
    From translation svn revision: 36434
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    75      19      source/locale/vi/LC_MESSAGES/nvda.po
     1 file changed, 75 insertions(+), 19 deletions(-)

commit 85ceba0e2a9b679fc280c75768a42e108139c9af
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 27 00:06:07 2017 +1000

    L10n updates for: uk
    From translation svn revision: 36434
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    46      25      source/locale/uk/LC_MESSAGES/nvda.po
    871     495     user_docs/uk/userGuide.t2t
     2 files changed, 917 insertions(+), 520 deletions(-)

commit a9238f27f7c7f7ee34ecebb073c9a7eecbe11c70
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 27 00:06:06 2017 +1000

    L10n updates for: tr
    From translation svn revision: 36434
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    11      8       source/locale/tr/LC_MESSAGES/nvda.po
    23      5       source/locale/tr/symbols.dic
    3       0       user_docs/tr/changes.t2t
    38      27      user_docs/tr/userGuide.t2t
     4 files changed, 75 insertions(+), 40 deletions(-)

commit c64d168d0ab3be3081d4b84e904b41c9eac49a97
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 27 00:06:04 2017 +1000

    L10n updates for: ta
    From translation svn revision: 36434
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    22      19      source/locale/ta/LC_MESSAGES/nvda.po
     1 file changed, 22 insertions(+), 19 deletions(-)

commit d5a2a471bb25e9a0dc4d86eee6731153455ada15
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 27 00:06:01 2017 +1000

    L10n updates for: sr
    From translation svn revision: 36434
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <zvonimirek222@webczatnet.pl>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    8       5       source/locale/sr/LC_MESSAGES/nvda.po
    1       0       user_docs/sr/changes.t2t
     2 files changed, 9 insertions(+), 5 deletions(-)

commit 718b0565f3f66db7315979d4666a3bf03c8094eb
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 27 00:05:58 2017 +1000

    L10n updates for: ru
    From translation svn revision: 36434
    
    Authors:
    Ruslan Kolodyazhni <eye0@rambler.ru>
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    13      10      source/locale/ru/LC_MESSAGES/nvda.po
     1 file changed, 13 insertions(+), 10 deletions(-)

commit fbc50ca242000b9977546ee46dde76edbd2e0609
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 27 00:05:55 2017 +1000

    L10n updates for: ro
    From translation svn revision: 36434
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    
    Stats:
    10      7       source/locale/ro/LC_MESSAGES/nvda.po
    9       6       user_docs/ro/changes.t2t
     2 files changed, 19 insertions(+), 13 deletions(-)

commit f8a7742cfd7af39fdb10129f48a16d4ed01eca78
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 27 00:05:45 2017 +1000

    L10n updates for: mk
    From translation svn revision: 36434
    
    Authors:
    zvonimir stanecic <zvonimirek222@webczatnet.pl>
    Kiko Lazarev <kristijan.lazarev@gmail.com>
    
    Stats:
    14      11      source/locale/mk/LC_MESSAGES/nvda.po
     1 file changed, 14 insertions(+), 11 deletions(-)

commit 998558d1fe3af99c6fbf608904bf42e7959050f1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 27 00:05:40 2017 +1000

    L10n updates for: ja
    From translation svn revision: 36434
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    10      7       source/locale/ja/LC_MESSAGES/nvda.po
     1 file changed, 10 insertions(+), 7 deletions(-)

commit df0f950aaea54cc9243d05fb4af13ae31665f485
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 27 00:05:38 2017 +1000

    L10n updates for: it
    From translation svn revision: 36434
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    11      8       source/locale/it/LC_MESSAGES/nvda.po
     1 file changed, 11 insertions(+), 8 deletions(-)

commit ead659431061487359749060540b3f47f9d3c95d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 27 00:05:32 2017 +1000

    L10n updates for: gl
    From translation svn revision: 36434
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    
    Stats:
    10      7       source/locale/gl/LC_MESSAGES/nvda.po
    3       0       user_docs/gl/changes.t2t
     2 files changed, 13 insertions(+), 7 deletions(-)

commit 22613712b66d91f23311d2b55bd3d01034c4035e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 27 00:05:30 2017 +1000

    L10n updates for: fr
    From translation svn revision: 36434
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    13      10      source/locale/fr/LC_MESSAGES/nvda.po
    4       1       user_docs/fr/changes.t2t
    22      5       user_docs/fr/userGuide.t2t
     3 files changed, 39 insertions(+), 16 deletions(-)

commit 35fd6201872ae8f8f6e905fa8aff15f1993c86b4
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 27 00:05:28 2017 +1000

    L10n updates for: fi
    From translation svn revision: 36434
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    9       6       source/locale/fi/LC_MESSAGES/nvda.po
    3       0       user_docs/fi/changes.t2t
     2 files changed, 12 insertions(+), 6 deletions(-)

commit f27404c3efe2eeca37072b8adfc6def4e2f79842
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 27 00:05:26 2017 +1000

    L10n updates for: fa
    From translation svn revision: 36434
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    11      8       source/locale/fa/LC_MESSAGES/nvda.po
    5       2       user_docs/fa/changes.t2t
     2 files changed, 16 insertions(+), 10 deletions(-)

commit 7e34b9b0ba9a768ada2810017ad2eaa8d1794198
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 27 00:05:24 2017 +1000

    L10n updates for: es
    From translation svn revision: 36434
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    
    Stats:
    10      7       source/locale/es/LC_MESSAGES/nvda.po
    3       0       user_docs/es/changes.t2t
     2 files changed, 13 insertions(+), 7 deletions(-)

commit 0ed4955e81fb7d9ec7154140d8fa0bdd4d111aa8
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 27 00:05:19 2017 +1000

    L10n updates for: de
    From translation svn revision: 36434
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    
    Stats:
    11      8       source/locale/de/LC_MESSAGES/nvda.po
    10      10      user_docs/de/changes.t2t
     2 files changed, 21 insertions(+), 18 deletions(-)

commit af684a7525745261cebc88e2f5683c157baf6e2b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 27 00:05:17 2017 +1000

    L10n updates for: da
    From translation svn revision: 36434
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    17      0       user_docs/da/changes.t2t
     1 file changed, 17 insertions(+)

commit 326c59271c04198a08b247926eae49c8059f8ade
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Wed Oct 25 11:48:27 2017 -0700

    Remove NVDA service, no longer needed as NVDA will require Windows 7 SP1 or higher (#7625)
    
    * NVDA service: py2exe will no longer build the service module, as the service is only needed on XP and Server 2003.
    
    * Installer: no longer need to start NVDA service, as Windows 7 SP1 or higher is required now.
    
    * NVDA service is hereby removed.
    
    * Just assume Ease of Access is available.
    
    Noted by Leonard de Ruijter: just assume Ease of Access is present.
    
    * NVDA slave: proper copyright header, no longer manages NVDA service.
    
    Added proper copyright header for the slave process. Also, as XP is no longer supported, service launcher is no more.
    
    * Config: simplify secure screen startup by checking if NVDA is installed.
    
    No more support for XP/Vista/7 RTM means:
    * No more NVDA service.
    * No more check for presence of Ease of Access.
    Thus, the secure screen startup checker just returns if NVDA is installed, thus ready to be transformed into a flag in a future release.
    
    * SConstruct: no more service builder.
    
    Reviewed by Mick Curran (NV Access): knew something was incomplete when working on removing NVDA service - SCons should no longer be told to build the service executable, thereby allowing signed builds to proceed.
    
    * NvDA service: include win32api so some add-ons can function properly.
    
    The following add-on is known for using win32api: Golden Cursor. Because of the impact of this add-on, include win32api in 2017.4, to be removed in 2018 as part of Python 3 transition or a major code rewrite.

commit 1fcc7fe7b53fdda9273c699ae623f855df6b0793
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Thu Oct 26 04:33:28 2017 +1000

    Installer: try to clean up old library files at the end of installation with out affecting the rest of a successful install (#7649)
    
    * nvda_slave: ensure nvdaHelperRemote.dll is correctly loaded so that nvda_slave can log installer errors. this broke when libraries  were moved to a version-specific directory.
    
    * Unit tests: ensure gettext is initialized before logHandler is imported
    
    * Remove old lib files at the very end of installation.
    
    * Ensure that removeOldLibFiles deals with unicode paths.
    
    * Allow delete on reboot for old lib files for portable copies as  the user *may* have admin access which means it would work. Also it ensures the file, deleted or not, will still be kept renamed as a temp file out of the way.

commit 5c81664d730775b86232d02cbf1a22cb5cf8cedf
Merge: 58e1946e4 3066fd6dc
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 20 00:06:14 2017 +1000

    Update translations.
    
    From translation svn revision: 36266

commit 3066fd6dc658e2be0b6af19f45a4055e446cb322
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 20 00:06:13 2017 +1000

    L10n updates for: zh_TW
    From translation svn revision: 36266
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    44      6       source/locale/zh_TW/LC_MESSAGES/nvda.po
    62      62      source/locale/zh_TW/characterDescriptions.dic
    32      16      user_docs/zh_TW/userGuide.t2t
     3 files changed, 138 insertions(+), 84 deletions(-)

commit c33013cbc4f5b7b555bea789f94163b4a5ebbed1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 20 00:06:07 2017 +1000

    L10n updates for: tr
    From translation svn revision: 36266
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    20      2       source/locale/tr/LC_MESSAGES/nvda.po
    2       0       user_docs/tr/changes.t2t
     2 files changed, 22 insertions(+), 2 deletions(-)

commit 560b7ae2013ed0d7984ab6cfdde193da4542bcf2
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 20 00:06:05 2017 +1000

    L10n updates for: ta
    From translation svn revision: 36266
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    20      2       source/locale/ta/LC_MESSAGES/nvda.po
     1 file changed, 20 insertions(+), 2 deletions(-)

commit 4d50f3f69fa1aaaa9e9375e7eebdde47f34d1f18
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 20 00:06:02 2017 +1000

    L10n updates for: sr
    From translation svn revision: 36266
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <zvonimirek222@webczatnet.pl>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    20      2       source/locale/sr/LC_MESSAGES/nvda.po
    2       0       user_docs/sr/changes.t2t
     2 files changed, 22 insertions(+), 2 deletions(-)

commit cf37c51ee46def5a77ed4dd6459f8f760d76b16b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 20 00:05:58 2017 +1000

    L10n updates for: ru
    From translation svn revision: 36266
    
    Authors:
    Ruslan Kolodyazhni <eye0@rambler.ru>
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    30      12      source/locale/ru/LC_MESSAGES/nvda.po
     1 file changed, 30 insertions(+), 12 deletions(-)

commit 709602a99c6c24733193fd553fe35f0eb86d17ab
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 20 00:05:56 2017 +1000

    L10n updates for: ro
    From translation svn revision: 36266
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    
    Stats:
    21      3       source/locale/ro/LC_MESSAGES/nvda.po
    3       0       user_docs/ro/changes.t2t
    1       1       user_docs/ro/userGuide.t2t
     3 files changed, 25 insertions(+), 4 deletions(-)

commit d5d15019f0725713c891c0fb645fbe07dfbfd298
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 20 00:05:49 2017 +1000

    L10n updates for: nl
    From translation svn revision: 36266
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <leonard_dev@babbage.com>
    
    Stats:
    45      7       source/locale/nl/LC_MESSAGES/nvda.po
    2       2       user_docs/nl/userGuide.t2t
     2 files changed, 47 insertions(+), 9 deletions(-)

commit c10fc1c621313cb450f7924f6052889bea03be02
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 20 00:05:46 2017 +1000

    L10n updates for: my
    From translation svn revision: 36266
    
    Authors:
    Benedict La hkun <lkbenedict@gmail.com>
    
    Stats:
    2053    308     source/locale/my/LC_MESSAGES/nvda.po
     1 file changed, 2053 insertions(+), 308 deletions(-)

commit 2acbed3dbd762429518dba9abe1d6680d288dc26
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 20 00:05:44 2017 +1000

    L10n updates for: mk
    From translation svn revision: 36266
    
    Authors:
    zvonimir stanecic <zvonimirek222@webczatnet.pl>
    Kiko Lazarev <kristijan.lazarev@gmail.com>
    
    Stats:
    51      13      source/locale/mk/LC_MESSAGES/nvda.po
     1 file changed, 51 insertions(+), 13 deletions(-)

commit 0c935d73ce107e9c3e6cee49810a8f289c68e75b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 20 00:05:42 2017 +1000

    L10n updates for: ko
    From translation svn revision: 36266
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    
    Stats:
    47      12      source/locale/ko/LC_MESSAGES/nvda.po
    6       6       user_docs/ko/changes.t2t
    15      8       user_docs/ko/userGuide.t2t
     3 files changed, 68 insertions(+), 26 deletions(-)

commit a97e8eae02f6dc656c8f15e8a40e0edc11e2b8f2
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 20 00:05:40 2017 +1000

    L10n updates for: ja
    From translation svn revision: 36266
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    20      2       source/locale/ja/LC_MESSAGES/nvda.po
     1 file changed, 20 insertions(+), 2 deletions(-)

commit e0f83d1e2e362f8287fed863224d8fd7aed2a58f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 20 00:05:38 2017 +1000

    L10n updates for: it
    From translation svn revision: 36266
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    21      3       source/locale/it/LC_MESSAGES/nvda.po
     1 file changed, 21 insertions(+), 3 deletions(-)

commit 28c8884d005fa2e5d6a93158d209f24c2b74a3a4
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 20 00:05:32 2017 +1000

    L10n updates for: gl
    From translation svn revision: 36266
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    
    Stats:
    20      2       source/locale/gl/LC_MESSAGES/nvda.po
    2       0       user_docs/gl/changes.t2t
    1       1       user_docs/gl/userGuide.t2t
     3 files changed, 23 insertions(+), 3 deletions(-)

commit 9affd1c706fe893a2b431091ca41eb428f374451
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 20 00:05:29 2017 +1000

    L10n updates for: fr
    From translation svn revision: 36266
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    23      5       source/locale/fr/LC_MESSAGES/nvda.po
    2       0       user_docs/fr/changes.t2t
     2 files changed, 25 insertions(+), 5 deletions(-)

commit a6126d838cca3f79408248cd36388f72d559a32a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 20 00:05:28 2017 +1000

    L10n updates for: fi
    From translation svn revision: 36266
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    20      2       source/locale/fi/LC_MESSAGES/nvda.po
    2       0       user_docs/fi/changes.t2t
     2 files changed, 22 insertions(+), 2 deletions(-)

commit 49cad49f5009a7b6fc8546a4eabe7b9f2202021b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 20 00:05:26 2017 +1000

    L10n updates for: fa
    From translation svn revision: 36266
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    20      2       source/locale/fa/LC_MESSAGES/nvda.po
    2       0       user_docs/fa/changes.t2t
     2 files changed, 22 insertions(+), 2 deletions(-)

commit 20b246aed6afc893647b374e752ae425ccb9d202
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 20 00:05:23 2017 +1000

    L10n updates for: es
    From translation svn revision: 36266
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    
    Stats:
    20      2       source/locale/es/LC_MESSAGES/nvda.po
    2       0       user_docs/es/changes.t2t
    1       1       user_docs/es/userGuide.t2t
     3 files changed, 23 insertions(+), 3 deletions(-)

commit fd1ea75a405aa45f54d141b282028e31f257ac37
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 20 00:05:19 2017 +1000

    L10n updates for: de
    From translation svn revision: 36266
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    
    Stats:
    30      12      source/locale/de/LC_MESSAGES/nvda.po
    60      58      user_docs/de/changes.t2t
    21      18      user_docs/de/userGuide.t2t
     3 files changed, 111 insertions(+), 88 deletions(-)

commit b6d639762d32f5a878fa01ad4eea9dec85f65829
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 20 00:05:16 2017 +1000

    L10n updates for: cs
    From translation svn revision: 36266
    
    Authors:
    Martina Letochova <letochova@seznam.cz>
    
    Stats:
    30      12      source/locale/cs/LC_MESSAGES/nvda.po
    39      0       user_docs/cs/changes.t2t
    26      12      user_docs/cs/userGuide.t2t
     3 files changed, 95 insertions(+), 24 deletions(-)

commit e265e48d077ce19712aff13b7f71252551f0bf20
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 20 00:05:10 2017 +1000

    L10n updates for: ar
    From translation svn revision: 36266
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    43      0       user_docs/ar/changes.t2t
     1 file changed, 43 insertions(+)

commit 58e1946e415b8ffcea836b953310696e1d452b3c
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Oct 18 12:03:10 2017 +1000

    Compile NVDA with Visual Studio 2017. (#7568)
    
        * Switch to using SCons 3.0 from a git mirror we manage.
        * Compile NVDA with the Windows 10 SDK, replace GetVersion with versionHelper macros, and remove a pre-vista TSF check.
                           * Instruct appveyor to use its Visual Studio 2017 image
    * Update readme to mention Visual Studio 2017
    * iSimpleDOMNode_sconscript:  don't lose existing flags when adding c_ext and /I to MIDLFLAGS as this was dropping /x64 which is needed for compiling when 64 bit.
    * nvdaHelper sconscripts: now we are always using the Windows 10 SDK, we can compile nvdaHelperLocalWin10 using the same infrastructure as nvdaHelperRemote and nvdaHelperLocal etc, except that rather than /mt, /ZW should be used. This removes a great deal of code from the nvdaHelperLocalWin10 sconscript.
    * Readme.md: update VS 2017 section with extra needed dependency
    * Clarify error message when VC++ 14.1 is missing.
    * Ensure that all Python directories exist, eitherwise raise an error alerting the user to the fact they may need to run git submodule update --init
    * nvdaHelperLocalWin10 sconscript:  search versioned directories from newest to oldest to find the vc restributables.

commit 2221babfd6c9a1a0bb93305b7df1cb419e362b74
Author: Reef Turner <reef@nvaccess.org>
Date:   Tue Oct 17 14:57:04 2017 +0800

    Update changes file for PR #7567
    
    - When using a content recognition command (e.g. NVDA+r), NVDA now
      reports an error message instead of nothing if the navigator object
      has disappeared. (#7567)

commit 6ac86c8844ec87b4c1ccf0262f6bbf678dd2b095
Author: James Teh <jamie@jantrid.net>
Date:   Tue Oct 17 16:52:21 2017 +1000

    recognizeNavigatorObject: Fail gracefully if object's location property returns None. (PR #7567)
    
    We now report "Content is not visible" to the user and log a debugWarning instead of throwing an unhandled exception.

commit a8d0a043d8afa6e76781ba965b9c2f5ebce087a8
Author: Reef Turner <reef@nvaccess.org>
Date:   Mon Oct 16 12:47:39 2017 +0800

    Update changes file for PR #7607
    
    The hotkey for the filter field in the elements list in browse mode is
    changed from alt+f to alt+e (#7569)

commit 3eb7126dca268d2075c4b77d2337c0cf3032ab2f
Author: Bram Duvigneau <bram@bramd.nl>
Date:   Mon Oct 16 06:44:02 2017 +0200

    Change hotkey for filter field in Elements List from alt+f to alt+e  (PR #7607)
    
    Fixes #7569

commit 5bb6aed374cc8c47f97e8d4987449453692070a6
Author: Ethan Holliger <21368115+ehollig@users.noreply.github.com>
Date:   Sun Oct 15 20:58:20 2017 -0600

    Added translator comments to browseMode.py (#7591)
    
    * Added translator comments
    * Removed focus mode from tests/checkpot.py
    
    Fixes #5822

commit edfa745b5ec71abdc3db6b72afaf3e3b8fb43c2d
Author: Leonard de Ruijter <leonard_dev@babbage.com>
Date:   Mon Oct 16 03:59:31 2017 +0200

    Fixes typo in MS Word elements list, Errors is now properly capitalized (#7655)

commit 2fc602c883da5567f3d8fe78920faa4dc26e9c65
Merge: 17763fde0 a2e68bef1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 13 00:06:13 2017 +1000

    Update translations.
    
    From translation svn revision: 36131

commit a2e68bef126fb75387ffcbce3fed2fec5ed970fd
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 13 00:06:07 2017 +1000

    L10n updates for: uk
    From translation svn revision: 36131
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    2050    302     source/locale/uk/LC_MESSAGES/nvda.po
     1 file changed, 2050 insertions(+), 302 deletions(-)

commit 79fc55f4b47df436dd3b7c2affc9fc4c79bd2de5
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 13 00:06:06 2017 +1000

    L10n updates for: tr
    From translation svn revision: 36131
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    27      7       source/locale/tr/LC_MESSAGES/nvda.po
    25      1       user_docs/tr/changes.t2t
     2 files changed, 52 insertions(+), 8 deletions(-)

commit 7a77c90107dcccb954f298574c25b9ff0d004ad3
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 13 00:06:04 2017 +1000

    L10n updates for: ta
    From translation svn revision: 36131
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    23      6       source/locale/ta/LC_MESSAGES/nvda.po
    22      5       user_docs/ta/userGuide.t2t
     2 files changed, 45 insertions(+), 11 deletions(-)

commit 76e49b432a4ccb41db92e190bf15ec6fab0605db
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 13 00:06:01 2017 +1000

    L10n updates for: sr
    From translation svn revision: 36131
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <zvonimirek222@webczatnet.pl>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    25      6       source/locale/sr/LC_MESSAGES/nvda.po
    4       0       user_docs/sr/changes.t2t
    4       1       user_docs/sr/userGuide.t2t
     3 files changed, 33 insertions(+), 7 deletions(-)

commit 9e7760f093295842778c6cb3a487932d397af1ef
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 13 00:05:57 2017 +1000

    L10n updates for: ru
    From translation svn revision: 36131
    
    Authors:
    Ruslan Kolodyazhni <eye0@rambler.ru>
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    158     138     source/locale/ru/LC_MESSAGES/nvda.po
     1 file changed, 158 insertions(+), 138 deletions(-)

commit 1c1591b289069cd32e1f76f6ebfd284daf445826
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 13 00:05:55 2017 +1000

    L10n updates for: ro
    From translation svn revision: 36131
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    
    Stats:
    26      7       source/locale/ro/LC_MESSAGES/nvda.po
    4       4       source/locale/ro/symbols.dic
    9       1       user_docs/ro/changes.t2t
    4       1       user_docs/ro/userGuide.t2t
     4 files changed, 43 insertions(+), 13 deletions(-)

commit 01c554f64fe3403fa7ab34c59732ba86f596fd58
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 13 00:05:49 2017 +1000

    L10n updates for: nl
    From translation svn revision: 36131
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <leonard_dev@babbage.com>
    
    Stats:
    3       1       user_docs/nl/userGuide.t2t
     1 file changed, 3 insertions(+), 1 deletion(-)

commit a1b1f07cca3885fd5b3dc4ffb5dbe47c3ca01701
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 13 00:05:43 2017 +1000

    L10n updates for: ko
    From translation svn revision: 36131
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    
    Stats:
    3       0       user_docs/ko/changes.t2t
     1 file changed, 3 insertions(+)

commit b5b799767a3ec8ef795c24f13a113136ab67135f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 13 00:05:41 2017 +1000

    L10n updates for: ja
    From translation svn revision: 36131
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    25      7       source/locale/ja/LC_MESSAGES/nvda.po
     1 file changed, 25 insertions(+), 7 deletions(-)

commit 83088046747ce7e9097d292152bed7e6fcdd60d5
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 13 00:05:39 2017 +1000

    L10n updates for: it
    From translation svn revision: 36131
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    25      6       source/locale/it/LC_MESSAGES/nvda.po
     1 file changed, 25 insertions(+), 6 deletions(-)

commit a0065f34eb8f7500e79a72250a70234feeea2d24
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 13 00:05:33 2017 +1000

    L10n updates for: gl
    From translation svn revision: 36131
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    
    Stats:
    25      6       source/locale/gl/LC_MESSAGES/nvda.po
    8       0       user_docs/gl/changes.t2t
    4       1       user_docs/gl/userGuide.t2t
     3 files changed, 37 insertions(+), 7 deletions(-)

commit 19c7659073a631e3da6d455befeb92526194bc23
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 13 00:05:30 2017 +1000

    L10n updates for: fr
    From translation svn revision: 36131
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    26      8       source/locale/fr/LC_MESSAGES/nvda.po
    8       0       user_docs/fr/changes.t2t
     2 files changed, 34 insertions(+), 8 deletions(-)

commit 43730f53b1fbbe7ef7b679137d2f60530da167eb
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 13 00:05:29 2017 +1000

    L10n updates for: fi
    From translation svn revision: 36131
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    28      9       source/locale/fi/LC_MESSAGES/nvda.po
    8       0       user_docs/fi/changes.t2t
    4       1       user_docs/fi/userGuide.t2t
     3 files changed, 40 insertions(+), 10 deletions(-)

commit 5e41d24461ddaf3e9f41088ae9a3b09826fccb47
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 13 00:05:26 2017 +1000

    L10n updates for: fa
    From translation svn revision: 36131
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    25      6       source/locale/fa/LC_MESSAGES/nvda.po
    8       0       user_docs/fa/changes.t2t
    4       1       user_docs/fa/userGuide.t2t
     3 files changed, 37 insertions(+), 7 deletions(-)

commit 054459208683d3eea2b12fe8c25f24d371c65032
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 13 00:05:24 2017 +1000

    L10n updates for: es
    From translation svn revision: 36131
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    
    Stats:
    25      6       source/locale/es/LC_MESSAGES/nvda.po
    8       0       user_docs/es/changes.t2t
    4       1       user_docs/es/userGuide.t2t
     3 files changed, 37 insertions(+), 7 deletions(-)

commit 59f90d54a4e592d7fe16a1b99dd988ee8ae1c13f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 13 00:05:20 2017 +1000

    L10n updates for: de
    From translation svn revision: 36131
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    
    Stats:
    25      7       source/locale/de/LC_MESSAGES/nvda.po
    8       0       user_docs/de/changes.t2t
     2 files changed, 33 insertions(+), 7 deletions(-)

commit 85bcff2d226ae019bcd29e50e8aa3f223038701e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 13 00:05:17 2017 +1000

    L10n updates for: cs
    From translation svn revision: 36131
    
    Authors:
    Martina Letochova <letochova@seznam.cz>
    
    Stats:
    24      6       source/locale/cs/LC_MESSAGES/nvda.po
     1 file changed, 24 insertions(+), 6 deletions(-)

commit 17763fde023346b01a6a2eb06c3c971ad4b07e2a
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Mon Oct 9 17:05:16 2017 +1000

    When NVDA is running from source, dlls are no longer stored in a version-specific directory as this was forcing developers to run scons source every time they made a git commit. Rather now only binary copies of NVDA have version-specific dlls. (#7644)

commit 69359c184aa9c492778bae87feb9048b51c165c4
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Oct 9 12:12:45 2017 +1000

    Update what's new

commit dc75aea1145613b98a9dc3183da07f28653cd627
Author: Derek Riemer <derek.riemer@colorado.edu>
Date:   Sun Oct 8 20:09:48 2017 -0600

    If you are running a laptop, NVDA will now announce changes to whether a charger is plugged in and more. #4612 (#6320)
    
    * If you are running a laptop, NVDA will now announce changes to whether a charger is plugged in.
    Changes to the orientation of the screen are now announced, For example, turning a laptop so it is situated with the longer side horizontal, you'll hear or feel "Landscape"
    
    * Add copyright info
    
    * Fix gramar error
    
    * Address review actions
    
    * Remove the initializing cache, and add it as an argument.
    
    * Move comment into block
    
    * Use hiword and lowword
    
    * Move the comment up
    
    * Review actions, change from using an init param to using a try/except/finally
    
    * fix this last review action
    I took a longer but more clear approach.
    
    * Fix NIT
    
    * Add caching
    
    * Fix review actions, and implement screen flip detection.
    
    * Fix review actions

commit c12d9a8c594a505655bac377bfa4aa5d8b683779
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Oct 9 12:07:04 2017 +1000

    Update what's new

commit 05789d27bba3542df25166c5d259397f9d96e4bd
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Mon Oct 9 12:05:41 2017 +1000

    Support UI Automation within a Windows Defender Application Guard process (#7600)
    
    * Prototype support for WDAG (Windows Defender Application Guard)
    
    changes:
    * UIAHandler.getNearestWindowHandle: If this UIAElement's processID is for a local WDAG container process, jump up to its root (UIA className of "ApplicationFrameWindow") and use that element's windowHandle. Any windowHandle from UIAElements below this root are not valid on this machine. However before we check for the WDAG process, if the processID of the original element is 0, search up for the first valid one (Known WDAG bug)
    * UIAHandler.IsNativeUIAElement: If the processID is 0 (such as with UIAElements currently in WDAG), treat this UIAElement as having a native UIA implementation
    * UIA NVDAObject: don't get the processID of the UIAElement, instead fallback to getting it off its window. Currently a UIAElement in WDAG may have a processID of 0. This is a known bug. It should be the processID of the local container process.
    
    * * UIAHandler.isNativeUIAElement: if the processID is for the local wdag container process, then this element should be classed as being native.
    * Ensure IUIAutomationElement.cachedNativeWindowHandle is never used when it is not local -- needs to be rethought a bit.
    
    * UIAHandler.isUIAWindow: mark RAIL_WINDOW as always being native UIA. this allows screen hittesting, and allows us to remove some other code from UIAHandler.isNativeUIAElement.
    
    * remove some unneeded code
    
    * Remove more unneeded changes
    
    * Address review actions
    
    * UIAHandler's getNearestWindowHandle:  partial support for File Explorer in WDAG by also looking for File Explorer's UIA class name.

commit 4b8896c9ae7886a33307f72f1174097f3d73f763
Merge: 3356cd6c1 dbf18bf0f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 6 00:06:08 2017 +1000

    Update translations.
    
    From translation svn revision: 35964

commit dbf18bf0f0e2b2da6804f9a1a7bb4ce3ed2e7dee
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 6 00:06:00 2017 +1000

    L10n updates for: ta
    From translation svn revision: 35964
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    1       0       source/locale/ta/symbols.dic
     1 file changed, 1 insertion(+)

commit 973b334b4279c66282007e7c46c014a11856c2e5
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 6 00:05:51 2017 +1000

    L10n updates for: pt_BR
    From translation svn revision: 35964
    
    Authors:
    Cleverson Casarin Uliana <clever97@gmail.com>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    
    Stats:
    8       8       source/locale/pt_BR/LC_MESSAGES/nvda.po
    6       5       source/locale/pt_BR/symbols.dic
     2 files changed, 14 insertions(+), 13 deletions(-)

commit 1779d45f3f84af760211f080aa0b66ddbffac743
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 6 00:05:47 2017 +1000

    L10n updates for: nl
    From translation svn revision: 35964
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <leonard_dev@babbage.com>
    
    Stats:
    18      5       user_docs/nl/userGuide.t2t
     1 file changed, 18 insertions(+), 5 deletions(-)

commit e170ee3950ea427bf57232fa11202b165fc6430b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 6 00:05:43 2017 +1000

    L10n updates for: mk
    From translation svn revision: 35964
    
    Authors:
    zvonimir stanecic <zvonimirek222@webczatnet.pl>
    Kiko Lazarev <kristijan.lazarev@gmail.com>
    
    Stats:
    527     505     source/locale/mk/LC_MESSAGES/nvda.po
    76      76      source/locale/mk/symbols.dic
     2 files changed, 603 insertions(+), 581 deletions(-)

commit 6323219d2ab88ef17bd5983f9c2e8074cde96be9
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 6 00:05:41 2017 +1000

    L10n updates for: ko
    From translation svn revision: 35964
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    
    Stats:
    27      36      source/locale/ko/LC_MESSAGES/nvda.po
    12      1       user_docs/ko/changes.t2t
     2 files changed, 39 insertions(+), 37 deletions(-)

commit edb5cb4f4fdeb7872f2fe26bdf0b32de7348df5b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Oct 6 00:05:20 2017 +1000

    L10n updates for: de
    From translation svn revision: 35964
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    
    Stats:
    18      4       user_docs/de/userGuide.t2t
     1 file changed, 18 insertions(+), 4 deletions(-)

commit 3356cd6c106ae39b4d91bdfc263e45ca7a8a7701
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Oct 3 18:00:16 2017 +1000

    Update what's new

commit 3a4c13a5150d2014a612660e8010f7d2f3c10355
Author: Leonard de Ruijter <leonard_dev@babbage.com>
Date:   Tue Oct 3 09:55:27 2017 +0200

    Add the possibility to assign braille display model specific gestures (#7517)
    
    * Add model specific gestures
    
    * Implemented support for model based gestures in the baum driver
    
    * Raise exception for identifiers which do not match the regular expression
    
    * Provide unit tests
    
    * Review actions

commit 79dcb5c91c9996df70f6698d4bc3cc452c2ceb3c
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Oct 3 16:47:34 2017 +1000

    Update what's new

commit f1ba4caec4b2542698d7d40aab4efa3bcfbd2aa0
Author: Leonard de Ruijter <leonard_dev@babbage.com>
Date:   Tue Oct 3 08:39:13 2017 +0200

    Basic support for braille display key modifiers (#7503)
    
    * Implemented support for braille display key modifiers:
    
            * For example, if L{self.id} is 'key1+key2', key1 is bound to 'kb:control' and key2 to 'kb:tab', this gesture should execute 'kb:control+tab'
            * Combining modifiers with braille input (#7306) is not yet supported
    
    * Review action
    
    * Removed line of code which has become obsolete after the review action

commit 1e3674552b3803d1c598724bc31369fcfa7532e8
Author: James Teh <jamie@jantrid.net>
Date:   Tue Oct 3 01:32:24 2017 -0400

    Update brailleNote driver to use hwIo and thus make it thread safe. (#7581)

commit 81d4cd754d9548dc34886ef5bddaec645cc3f3df
Author: Reef Turner <reef@nvaccess.org>
Date:   Tue Oct 3 16:23:58 2017 +1100

    Update changes file for PR #7577

commit aee1fbc761af5d1d72e86ad77c4ea1926ad31e21
Author: Ethan Holliger <21368115+ehollig@users.noreply.github.com>
Date:   Mon Oct 2 23:15:45 2017 -0600

    Copy to clipboard on third activation of the read status bar command (PR #7577)
    
    On the third activation of the Read status bar command, its contents is copied to the clipboard
    
    Fixes #1785

commit a826028e510feaf1277e816d7433c2c43a1fa6b4
Author: Reef Turner <reef@nvaccess.org>
Date:   Mon Oct 2 18:25:21 2017 +1100

    Update changes file for PRs #7542 #6329

commit 14898e7e8f0b83d218cf1d616ba9b5d3489acf05
Author: Leonard de Ruijter <leonard_dev@babbage.com>
Date:   Mon Oct 2 09:24:28 2017 +0200

    Added the possibility to create a portable copy with the use of command line parameters (PR #6329)
    
    * Added the possibility to create a portable copy with the use of command line parameters:
      * --create-portable: creates a new portable copy and starts it after creation
      * --create-portable-silent: creates a new portable copy and shuts down NVDA
    
    Both parameters depend on the --portable-path parameter, which has to contain the path to the new portable copy.
    
    IN the process, added a new checkbox to the create portable copy dialog which allows for starting the new copy after installation.

commit 89681b950f2e28d450e50f151eabb116aaf34487
Author: Leonard de Ruijter <leonard_dev@babbage.com>
Date:   Mon Oct 2 08:48:48 2017 +0200

    Enhance add-on installation messages to display version information (PR #7542)
    
    * addonManager: show current version and version beeing updated when updating an addon.
    
    Fixes #5324

commit 55932c316c3b0202384be838513e1b18f5112ee9
Merge: f54e44c22 221219910
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 29 00:06:12 2017 +1000

    Update translations.
    
    From translation svn revision: 35863

commit 221219910fe19ec314a4314a88b052eb2cdbfe16
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 29 00:06:11 2017 +1000

    L10n updates for: zh_TW
    From translation svn revision: 35863
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    95      95      source/locale/zh_TW/LC_MESSAGES/nvda.po
    12      12      source/locale/zh_TW/characterDescriptions.dic
     2 files changed, 107 insertions(+), 107 deletions(-)

commit f98d6ce26352feaed426de65f2123f2306a6ad6a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 29 00:06:02 2017 +1000

    L10n updates for: sr
    From translation svn revision: 35863
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <zvonimirek222@webczatnet.pl>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    11      2       user_docs/sr/changes.t2t
    18      4       user_docs/sr/userGuide.t2t
     2 files changed, 29 insertions(+), 6 deletions(-)

commit 7ce273ec19c1c6771bc98658993e6444287c2b11
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 29 00:05:56 2017 +1000

    L10n updates for: ro
    From translation svn revision: 35863
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    
    Stats:
    3       3       source/locale/ro/LC_MESSAGES/nvda.po
    11      0       user_docs/ro/changes.t2t
    16      5       user_docs/ro/userGuide.t2t
     3 files changed, 30 insertions(+), 8 deletions(-)

commit 9de20eeb46f9f48704d49f1fcefeb0ac3e7f827f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 29 00:05:55 2017 +1000

    L10n updates for: pt_PT
    From translation svn revision: 35863
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    
    Stats:
    24      8       source/locale/pt_PT/LC_MESSAGES/nvda.po
     1 file changed, 24 insertions(+), 8 deletions(-)

commit 50211753d425ef7c32a2f0d9bdbb49b80a65f978
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 29 00:05:53 2017 +1000

    L10n updates for: pt_BR
    From translation svn revision: 35863
    
    Authors:
    Cleverson Casarin Uliana <clever97@gmail.com>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    
    Stats:
    164     98      source/locale/pt_BR/symbols.dic
     1 file changed, 164 insertions(+), 98 deletions(-)

commit 4d8fbac179b0b56500983ab026d5918b750edc40
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 29 00:05:49 2017 +1000

    L10n updates for: nl
    From translation svn revision: 35863
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <leonard_dev@babbage.com>
    
    Stats:
    24      8       source/locale/nl/LC_MESSAGES/nvda.po
    37      0       user_docs/nl/changes.t2t
     2 files changed, 61 insertions(+), 8 deletions(-)

commit c3d613f75399c162275b2787ac9eff6ad875b945
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 29 00:05:45 2017 +1000

    L10n updates for: mk
    From translation svn revision: 35863
    
    Authors:
    zvonimir stanecic <zvonimirek222@webczatnet.pl>
    Kiko Lazarev <kristijan.lazarev@gmail.com>
    
    Stats:
    389     378     source/locale/mk/LC_MESSAGES/nvda.po
    39      39      source/locale/mk/symbols.dic
    906     906     user_docs/mk/userGuide.t2t
     3 files changed, 1334 insertions(+), 1323 deletions(-)

commit fb260fd19d0139a3d69772f0222862e77d9915a1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 29 00:05:41 2017 +1000

    L10n updates for: ja
    From translation svn revision: 35863
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    1       1       user_docs/ja/changes.t2t
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 7144c32290618022934df18a5ab80870a1fa631e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 29 00:05:36 2017 +1000

    L10n updates for: hr
    From translation svn revision: 35863
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <zvonimirek222@webczatnet.pl>
    Mario Percinic <mario.percinic@gmail.com>
    Tea Turkovic <tturkovi@gmail.com>
    
    Stats:
    5       5       source/locale/hr/LC_MESSAGES/nvda.po
    16      7       user_docs/hr/changes.t2t
    19      5       user_docs/hr/userGuide.t2t
     3 files changed, 40 insertions(+), 17 deletions(-)

commit 0f811d70ee2b35be44be0b83d259423458977329
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 29 00:05:32 2017 +1000

    L10n updates for: gl
    From translation svn revision: 35863
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    
    Stats:
    11      0       user_docs/gl/changes.t2t
    18      4       user_docs/gl/userGuide.t2t
     2 files changed, 29 insertions(+), 4 deletions(-)

commit 342df979d76bf366cbb7dedd5fde73d17a73f8ab
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 29 00:05:30 2017 +1000

    L10n updates for: fr
    From translation svn revision: 35863
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    11      0       user_docs/fr/changes.t2t
     1 file changed, 11 insertions(+)

commit 45c1f842f1e14e8c5113b2409ac55dd5f0dc0586
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 29 00:05:29 2017 +1000

    L10n updates for: fi
    From translation svn revision: 35863
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    12      1       user_docs/fi/changes.t2t
    20      6       user_docs/fi/userGuide.t2t
     2 files changed, 32 insertions(+), 7 deletions(-)

commit b538047f28b2feed550c60868c7402d62242331f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 29 00:05:27 2017 +1000

    L10n updates for: fa
    From translation svn revision: 35863
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    11      0       user_docs/fa/changes.t2t
    19      5       user_docs/fa/userGuide.t2t
     2 files changed, 30 insertions(+), 5 deletions(-)

commit b2095e8893c3d70425cb4027d6370e72dd7aa742
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 29 00:05:25 2017 +1000

    L10n updates for: es
    From translation svn revision: 35863
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    
    Stats:
    11      0       user_docs/es/changes.t2t
    18      4       user_docs/es/userGuide.t2t
     2 files changed, 29 insertions(+), 4 deletions(-)

commit b79b8a62753d490e0d5f4caa2928591f8233073c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 29 00:05:20 2017 +1000

    L10n updates for: de
    From translation svn revision: 35863
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    
    Stats:
    5       5       source/locale/de/LC_MESSAGES/nvda.po
    11      0       user_docs/de/changes.t2t
     2 files changed, 16 insertions(+), 5 deletions(-)

commit f54e44c2225caee0f6573da6b972663459d8c5fd
Merge: dd4ad5c3a 7612ad219
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 22 00:05:56 2017 +1000

    Update translations.
    
    From translation svn revision: 35716

commit 7612ad219e2267e6cd75eb224e134df26b74d390
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 22 00:05:41 2017 +1000

    L10n updates for: pt_BR
    From translation svn revision: 35716
    
    Authors:
    Cleverson Casarin Uliana <clever97@gmail.com>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    
    Stats:
    25      9       source/locale/pt_BR/LC_MESSAGES/nvda.po
     1 file changed, 25 insertions(+), 9 deletions(-)

commit 5c09ccac34f425b3e57750153942b7c438bda395
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 22 00:05:35 2017 +1000

    L10n updates for: mk
    From translation svn revision: 35716
    
    Authors:
    zvonimir stanecic <zvonimirek222@yandex.com>
    Kiko Lazarev <kristijan.lazarev@gmail.com>
    
    Stats:
    142     142     user_docs/mk/userGuide.t2t
     1 file changed, 142 insertions(+), 142 deletions(-)

commit dd635a601f702273e66864370f004b6e27c63057
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 22 00:05:23 2017 +1000

    L10n updates for: fr
    From translation svn revision: 35716
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    2       2       user_docs/fr/changes.t2t
    8       9       user_docs/fr/userGuide.t2t
     2 files changed, 10 insertions(+), 11 deletions(-)

commit 1e8749dde21f4d8ae1e3c1380cefd3218c27abe3
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 22 00:05:21 2017 +1000

    L10n updates for: fi
    From translation svn revision: 35716
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    9       10      source/locale/fi/LC_MESSAGES/nvda.po
    31      31      user_docs/fi/changes.t2t
    16      16      user_docs/fi/userGuide.t2t
     3 files changed, 56 insertions(+), 57 deletions(-)

commit dd4ad5c3a005da5e7ab598d7ce8b48193f7156da
Author: Reef Turner <reef@nvaccess.org>
Date:   Wed Sep 20 17:36:48 2017 +0800

    Update changes file for PR #5858
    
    Added support for the Azardi e-book reader. Issue #5848

commit 38a66c39edceb34b659f67bec5f6e567227282d2
Author: nvdaes <nrm1977@gmail.com>
Date:   Wed Sep 20 11:22:44 2017 +0200

    i5848 Add support for Azardi (PR #5858)

commit e8144a091a13a1d8bd1fe160f4db80f330d6d947
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Sep 19 10:32:43 2017 +1000

    Update what's new

commit bfee0f5d6d124cb1db85052babe4967e194312b3
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Tue Sep 19 10:29:31 2017 +1000

    Ensure IAccessible2 remains available in Firefox after restarting NVDA on Windows 10 Creaters update, register ISimpleDOM proxy to allow math in Google Chrome without Firefox installed, and Allow the user to get back a virtualBuffer when restarting NVDA with a Firefox document in focus (#7535)
    
    * Allow IAccessible2 to be used again in Firefox after a restart of NVDA on Windows 10 Creaters update. Also abstract code making it easy to register other COM proxy dlls.
    
    * Build and register ISimpleDOM proxy ourselves allowing for math in Google chrome.
    
    * VirtualBuffer.prepare: do not do anything at all if the rootNVDAObject's appModule's helperLocalBindingHandle is missing.
    There may not be any binding handle yet if NVDA was started and the document in question already had focus. All though the virtualBuffer will still not yet work, at least the user can now move focus away and back again and prepare will be tried again once the binding handle is there.
    
    * Make sure to unhook the inproc winEvent on normal termination!
    
    * Place all NVDA dlls in a version-specific lib directory to ensure that Windows will always load the correct dll when hooking, rather than possibly falling back to a dll in a previous version that may currently still be loaded in a process.

commit b73a95832f5490f21e3afdc6d75ff66b695fda08
Merge: c626dd6dd 2c11c1b29
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 15 00:29:13 2017 +1000

    Update translations.
    
    From translation svn revision: 35614

commit 2c11c1b29a6959ccb6e88f83d6bfd3aba5bb5a98
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 15 00:29:06 2017 +1000

    L10n updates for: ta
    From translation svn revision: 35614
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    7       8       user_docs/ta/userGuide.t2t
     1 file changed, 7 insertions(+), 8 deletions(-)

commit 5373cc41b3c1334bd02183ca547bf67648c55721
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 15 00:29:04 2017 +1000

    L10n updates for: sr
    From translation svn revision: 35614
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <zvonimirek222@yandex.com>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    5       0       user_docs/sr/changes.t2t
    8       9       user_docs/sr/userGuide.t2t
     2 files changed, 13 insertions(+), 9 deletions(-)

commit 42798254e73125eb1c74fde5a697a3d9be45a985
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 15 00:28:59 2017 +1000

    L10n updates for: ro
    From translation svn revision: 35614
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    
    Stats:
    3       3       source/locale/ro/LC_MESSAGES/nvda.po
    5       0       user_docs/ro/changes.t2t
    5       7       user_docs/ro/userGuide.t2t
     3 files changed, 13 insertions(+), 10 deletions(-)

commit 69f7cb4154e839a7659d07eb583cfe39c6a7836f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 15 00:28:54 2017 +1000

    L10n updates for: nl
    From translation svn revision: 35614
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <leonard_dev@babbage.com>
    
    Stats:
    8       9       user_docs/nl/userGuide.t2t
     1 file changed, 8 insertions(+), 9 deletions(-)

commit d762415fe0db7a4491c4ffb0dac18879892d4ddf
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 15 00:28:50 2017 +1000

    L10n updates for: mk
    From translation svn revision: 35614
    
    Authors:
    zvonimir stanecic <zvonimirek222@yandex.com>
    Kiko Lazarev <kristijan.lazarev@gmail.com>
    
    Stats:
    4       4       source/locale/mk/LC_MESSAGES/nvda.po
    156     156     user_docs/mk/userGuide.t2t
     2 files changed, 160 insertions(+), 160 deletions(-)

commit 6b3468b29155b23c471ea8fe8b06aa05859f987c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 15 00:28:49 2017 +1000

    L10n updates for: lt
    From translation svn revision: 35614
    
    Authors:
    Paulius Leveris <paulius.leveris@gmail.com>
    Rimas Kudelis <rq@akl.lt>
    
    Stats:
    8       8       source/locale/lt/characterDescriptions.dic
    48      10      source/locale/lt/symbols.dic
     2 files changed, 56 insertions(+), 18 deletions(-)

commit 3bd94dab8890910d089815a5c5e203659ee3afd9
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 15 00:28:44 2017 +1000

    L10n updates for: it
    From translation svn revision: 35614
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    24      7       source/locale/it/LC_MESSAGES/nvda.po
     1 file changed, 24 insertions(+), 7 deletions(-)

commit dfcf65505b38b5cc29bfabf244ccdebb139fbfcc
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 15 00:28:41 2017 +1000

    L10n updates for: hr
    From translation svn revision: 35614
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <zvonimirek222@yandex.com>
    Mario Percinic <mario.percinic@gmail.com>
    Tea Turkovic <tturkovi@gmail.com>
    
    Stats:
    25      9       source/locale/hr/LC_MESSAGES/nvda.po
    5       0       user_docs/hr/changes.t2t
    8       9       user_docs/hr/userGuide.t2t
     3 files changed, 38 insertions(+), 18 deletions(-)

commit 5e6d1f3472cb783253167dd00a30244cf6a63a12
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 15 00:28:38 2017 +1000

    L10n updates for: gl
    From translation svn revision: 35614
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    
    Stats:
    5       0       user_docs/gl/changes.t2t
    7       8       user_docs/gl/userGuide.t2t
     2 files changed, 12 insertions(+), 8 deletions(-)

commit 2a61763592ee66325b1bab481a4248779cafc3cb
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 15 00:28:36 2017 +1000

    L10n updates for: fr
    From translation svn revision: 35614
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    5       0       user_docs/fr/changes.t2t
     1 file changed, 5 insertions(+)

commit 3efad2cbf9341d41dfd03f6c62c91879f1c8079f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 15 00:28:35 2017 +1000

    L10n updates for: fi
    From translation svn revision: 35614
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    5       0       user_docs/fi/changes.t2t
    6       7       user_docs/fi/userGuide.t2t
     2 files changed, 11 insertions(+), 7 deletions(-)

commit 29f2baecb00dcc090049a1adffd6de325c9c943e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 15 00:28:33 2017 +1000

    L10n updates for: fa
    From translation svn revision: 35614
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    5       0       user_docs/fa/changes.t2t
    45      46      user_docs/fa/userGuide.t2t
     2 files changed, 50 insertions(+), 46 deletions(-)

commit df769458693540e2e6a9d30e95488c813c5c3550
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 15 00:28:32 2017 +1000

    L10n updates for: es
    From translation svn revision: 35614
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    
    Stats:
    5       0       user_docs/es/changes.t2t
    7       8       user_docs/es/userGuide.t2t
     2 files changed, 12 insertions(+), 8 deletions(-)

commit 36b60b00ef8d20d3047d548833336734c60ab807
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 15 00:28:28 2017 +1000

    L10n updates for: de
    From translation svn revision: 35614
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    
    Stats:
    5       0       user_docs/de/changes.t2t
    11      11      user_docs/de/userGuide.t2t
     2 files changed, 16 insertions(+), 11 deletions(-)

commit 915d07fac6d35e32ad162deeca8a8adfb13b65d3
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 15 00:28:27 2017 +1000

    L10n updates for: da
    From translation svn revision: 35614
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    6       2       user_docs/da/changes.t2t
    8       9       user_docs/da/userGuide.t2t
     2 files changed, 14 insertions(+), 11 deletions(-)

commit c626dd6dd74598a18e1e5790a580f09124bae1d3
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Sep 14 07:44:52 2017 +1000

    Update what's new

commit 19bbe2e094475f9354e86469d5c92f84b9f3b82d
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Thu Sep 14 07:41:10 2017 +1000

    Gecko: Report label in browse mode if it isn't rendered anywhere else  (#7513)
    
    * Gecko vbufBackend:  convey that NVDA should always report the name of a node if the name was set explicitly, the name was not used for the content, and the name did not come from another visible label.

commit 4138af147b4c03c6c69999928f48afbe1165656c
Author: James Teh <jamie@nvaccess.org>
Date:   Wed Sep 13 11:36:54 2017 +1000

    Update What's New.

commit 95c986dd4ef7b90459c97e5ba579286fe3095127
Author: James Teh <jamie@nvaccess.org>
Date:   Wed Sep 13 11:35:29 2017 +1000

    Early support for mathematical content in Kindle for PC. (#7536)
    
    Kindle implementation:
    
    1. A future version of Kindle will expose MathML on embedded objects with ROLE_SYSTEM_EQUATION via a "mathml" IAccessible2 object attribute.
    2. Alternatively, if there is no MathML, alt text might be exposed instead via accName.
    3. Both MathML and alt text can be exposed, in which case we should always use the MathML.
    
    In this commit:
    
    1. Update the Kindle app module to fetch MathML accordingly. It also ensures that alt text (which is placed in the "content" ControlField attribute) doesn't get reported if there is MathML.
    2. MozillaCompoundTextInfo NVDAObjectAtStart property: Return the embedded object for graphics, math, etc. instead of the parent document. This is necessary to allow for interaction with math.
    3. BrowseModeTreeInterceptor: When activating an NVDAObject, if doAction isn't implemented, just ignore it rather than throwing an exception. Otherwise, pressing enter on a graphic (which can't be activated in Kindle) throws an exception.
    4. Update the User Guide with details about this, as well as adding a link to the MathPlayer documentation about navigation commands.

commit 39d33288f4d5ed2b2ff709342613d3be5818dd02
Author: Reef Turner <reef@nvaccess.org>
Date:   Mon Sep 11 15:18:37 2017 +0800

    Update changes file for PR #7332
    
    Also fix a missing new line character at the end of the changes section.

commit 21973a13f3ff2cf8ea6cc9dcc1d57ad646859322
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Mon Sep 11 15:27:31 2017 +0800

    Don't block caret show events (PR #7332)
    
    * Don't block caret show events
    
    Fixes #511.
    Dont block caret show events.
    When simplifying show/hide events, always leave the last state change in the list of events. Except for Scintilla based editors, where these caret show/hide events cause unexpected braille cursor movements. See #7149

commit 22c94725021e5ee2928188dd205ef275fe97d2a0
Author: Reef Turner <reef@nvaccess.org>
Date:   Mon Sep 11 15:15:35 2017 +0800

    Update changes file for PR #7385

commit fe6b2ec0ce2593c4ed3582450c0eb063a274ca17
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Mon Sep 11 14:31:59 2017 +0800

    Update espeak (PR #7385)
    
    * zhy has been excluded as it wont compile.
    * Allow unicode characters in espeak language names
    * Compiling mbrowrap was causing an issue, and we don't use mbrola anyway, so this was removed. It was noticed that a bunch of mbrola voices were listed in espeak but did not seem to do anything. The sconscript has been modified to exclude the 'espeak-ng-data/voice/mb' directory. This means that we can no longer recursively install espeak-ng-data and must instead manually install the files, and then recursive install for lang and voices/!v subfolders.
    * Espeak-ng has been updated to 01919cd48a566cdf34347784b2e74554b376e900 which fixes several issues with compiling dictionary files. See https://github.com/espeak-ng/espeak-ng/issues/287

commit 43350e8975026b4c8b61a48c9522e7068d5c8055
Author: James Teh <jamie@nvaccess.org>
Date:   Fri Sep 8 15:48:04 2017 +1000

    Update What's New.

commit e3f8a4fd80f9bf2f859698f43dc961b2628dda0e
Author: James Teh <jamie@nvaccess.org>
Date:   Fri Sep 8 15:45:56 2017 +1000

    Add generic framework to enable extensibility at specific points in the code by way of actions, filters and deciders. (issue #3393, PR #7484)
    
    This allows interested parties to register to be notified when some action occurs, to modify a specific kind of data or to participate in deciding whether something should be done.
    
    There are three types of extension points:
    
    1. An Action might be used to notify interested parties that the configuration profile has been switched.
    2. A Filter might be used to allow interested parties to modify spoken messages before they are passed to the synthesizer.
    3. A Decider might be used to allow interested parties to prevent execution of input gestures under specific circumstances.
    
    Handlers for extension points are always called in the order they were registered so that the order is determinate, which should make behaviour more predictable and easier to reproduce.
    
    Handlers can be called with keyword arguments.
    If a handler doesn't support a particular keyword argument, it will still be called with the keyword arguments that it does support.
    This means that additional keyword arguments can be added to actions and filters in future without breaking existing handlers.
    
    Add a config.configProfileSwitched action and have synthDriverHandler, braille, etc. register for it instead of explicitly calling each handler from the config module.

commit bb7afa25ca155e0678f7a5491aca0227b478fd51
Merge: f982ba3c5 4d25deca7
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 8 00:06:01 2017 +1000

    Update translations.
    
    From translation svn revision: 35499

commit 4d25deca75860e317a5bed98b1f9827ff21d332c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 8 00:06:00 2017 +1000

    L10n updates for: zh_TW
    From translation svn revision: 35499
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    25      9       source/locale/zh_TW/LC_MESSAGES/nvda.po
     1 file changed, 25 insertions(+), 9 deletions(-)

commit 2fb1487fabd16927d94154fc164f70da45d7ed19
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 8 00:05:56 2017 +1000

    L10n updates for: tr
    From translation svn revision: 35499
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    25      11      source/locale/tr/LC_MESSAGES/nvda.po
    60      37      user_docs/tr/changes.t2t
    10      10      user_docs/tr/userGuide.t2t
     3 files changed, 95 insertions(+), 58 deletions(-)

commit 677e8555e21dafb2cde7997bf73ef0dc2be15583
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 8 00:05:54 2017 +1000

    L10n updates for: ta
    From translation svn revision: 35499
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    25      139     source/locale/ta/LC_MESSAGES/nvda.po
    1       1       user_docs/ta/userGuide.t2t
     2 files changed, 26 insertions(+), 140 deletions(-)

commit 24b001976d8ba9fa952c847e4603cd694ba80054
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 8 00:05:52 2017 +1000

    L10n updates for: sr
    From translation svn revision: 35499
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <zvonimirek222@yandex.com>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    24      7       source/locale/sr/LC_MESSAGES/nvda.po
    25      2       user_docs/sr/changes.t2t
    1       1       user_docs/sr/userGuide.t2t
     3 files changed, 50 insertions(+), 10 deletions(-)

commit 177fcb0e7051c2205663ac332f02e6b4ba829cc4
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 8 00:05:49 2017 +1000

    L10n updates for: ru
    From translation svn revision: 35499
    
    Authors:
    Ruslan Kolodyazhni <eye0@rambler.ru>
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    34      18      source/locale/ru/LC_MESSAGES/nvda.po
     1 file changed, 34 insertions(+), 18 deletions(-)

commit fc7404a247a472f85c5496fe4e089e7919fe2f25
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 8 00:05:47 2017 +1000

    L10n updates for: ro
    From translation svn revision: 35499
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    
    Stats:
    27      11      source/locale/ro/LC_MESSAGES/nvda.po
    23      0       user_docs/ro/changes.t2t
    1       1       user_docs/ro/userGuide.t2t
     3 files changed, 51 insertions(+), 12 deletions(-)

commit 8d403e21d90110314e88832c2918cf216fbe4a1b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 8 00:05:38 2017 +1000

    L10n updates for: mk
    From translation svn revision: 35499
    
    Authors:
    zvonimir stanecic <zvonimirek222@yandex.com>
    Kiko Lazarev <kristijan.lazarev@gmail.com>
    
    Stats:
    86      57      source/locale/mk/LC_MESSAGES/nvda.po
    39      39      source/locale/mk/symbols.dic
    20      1       user_docs/mk/changes.t2t
    437     438     user_docs/mk/userGuide.t2t
     4 files changed, 582 insertions(+), 535 deletions(-)

commit fb5863ccb174532c3cfa06d140edb2fb7604eb4f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 8 00:05:37 2017 +1000

    L10n updates for: ko
    From translation svn revision: 35499
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    
    Stats:
    11      3       user_docs/ko/changes.t2t
    4       6       user_docs/ko/userGuide.t2t
     2 files changed, 15 insertions(+), 9 deletions(-)

commit f50635067e27f43263d75237803728562363d0ab
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 8 00:05:35 2017 +1000

    L10n updates for: ja
    From translation svn revision: 35499
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    24      7       source/locale/ja/LC_MESSAGES/nvda.po
    1       1       user_docs/ja/userGuide.t2t
     2 files changed, 25 insertions(+), 8 deletions(-)

commit c541c387e7994a0e5a9c6a44696b8768e4ecd813
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 8 00:05:30 2017 +1000

    L10n updates for: hr
    From translation svn revision: 35499
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <zvonimirek222@yandex.com>
    Mario Percinic <mario.percinic@gmail.com>
    Tea Turkovic <tturkovi@gmail.com>
    
    Stats:
    24      0       user_docs/hr/changes.t2t
    1       1       user_docs/hr/userGuide.t2t
     2 files changed, 25 insertions(+), 1 deletion(-)

commit 57d0357bb4d3c0f4c49f2922365193248fde839a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 8 00:05:27 2017 +1000

    L10n updates for: gl
    From translation svn revision: 35499
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    
    Stats:
    24      7       source/locale/gl/LC_MESSAGES/nvda.po
    23      0       user_docs/gl/changes.t2t
    1       1       user_docs/gl/userGuide.t2t
     3 files changed, 48 insertions(+), 8 deletions(-)

commit 50323196788872b2e2f276852d8850a2f2a029aa
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 8 00:05:25 2017 +1000

    L10n updates for: fr
    From translation svn revision: 35499
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    820     269     source/locale/fr/LC_MESSAGES/nvda.po
    23      0       user_docs/fr/changes.t2t
     2 files changed, 843 insertions(+), 269 deletions(-)

commit 9d0c0f16d7cfbfc38ad1ff6038dcbbc9dbfc64fe
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 8 00:05:23 2017 +1000

    L10n updates for: fi
    From translation svn revision: 35499
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    24      8       source/locale/fi/LC_MESSAGES/nvda.po
    24      1       user_docs/fi/changes.t2t
    2       2       user_docs/fi/userGuide.t2t
     3 files changed, 50 insertions(+), 11 deletions(-)

commit 9a0aaf01fc2bf9e882e243e30ab5839d684f2b4b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 8 00:05:22 2017 +1000

    L10n updates for: fa
    From translation svn revision: 35499
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    24      8       source/locale/fa/LC_MESSAGES/nvda.po
    24      1       user_docs/fa/changes.t2t
    3       3       user_docs/fa/userGuide.t2t
     3 files changed, 51 insertions(+), 12 deletions(-)

commit ce276639122d62852219459158a34210f2b8755e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 8 00:05:20 2017 +1000

    L10n updates for: es
    From translation svn revision: 35499
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    
    Stats:
    24      8       source/locale/es/LC_MESSAGES/nvda.po
    24      1       user_docs/es/changes.t2t
    1       1       user_docs/es/userGuide.t2t
     3 files changed, 49 insertions(+), 10 deletions(-)

commit d316b91f3fca3659498b35dcf96715b9366bf4a8
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 8 00:05:16 2017 +1000

    L10n updates for: de
    From translation svn revision: 35499
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    
    Stats:
    28      12      source/locale/de/LC_MESSAGES/nvda.po
    38      15      user_docs/de/changes.t2t
    1       1       user_docs/de/userGuide.t2t
     3 files changed, 67 insertions(+), 28 deletions(-)

commit 29bc7302013bb07e7e8db00f2ac2b23401e0e297
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 8 00:05:14 2017 +1000

    L10n updates for: da
    From translation svn revision: 35499
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    29      11      source/locale/da/LC_MESSAGES/nvda.po
    21      3       source/locale/da/symbols.dic
    9       63      user_docs/da/changes.t2t
    6       6       user_docs/da/userGuide.t2t
     4 files changed, 65 insertions(+), 83 deletions(-)

commit 1580bc9b950ede8455fe0a81ec994a50dcf41a50
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 8 00:05:13 2017 +1000

    L10n updates for: cs
    From translation svn revision: 35499
    
    Authors:
    Martina Letochova <letochova@seznam.cz>
    
    Stats:
    24      8       source/locale/cs/LC_MESSAGES/nvda.po
     1 file changed, 24 insertions(+), 8 deletions(-)

commit f982ba3c5f8490a60f93506766f7042988f57cb1
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Sep 5 10:27:10 2017 +1000

    Update what's new

commit b55db1e9b56857064a6829f35bd3195fbd7e07d5
Author: Leonard de Ruijter <leonard_dev@babbage.com>
Date:   Tue Sep 5 02:26:10 2017 +0200

    Include application, dialog elements and audio and video tags for embedded object navigation in browse mode (#7290)
    
    * In Gecko and MSHTML based browse mode, quick navigation for embedded objects now includes audio and video tags, dialogs and applications
    
    * In Microsoft Edge browse mode, quick navigation for embedded objects is now supported                         for objects with the Pane UIA Control Type and either the application, alertdialog or dialog aria role
    
    * Edited user guide

commit 9cd1ae949fcc882144fd8ec10085d1729a9e8e7a
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Sep 5 10:24:03 2017 +1000

    Update what's new

commit 985144fb187b1c39e80a70c51b4acd0acb9fd980
Author: Leonard de Ruijter <leonard_dev@babbage.com>
Date:   Tue Sep 5 02:22:07 2017 +0200

    Support the HTML5 required attribute in MSHTML documents (#7321)
    
    * Support the HTML5 required attribute in MSHTML documents
    
    * Add a new __contains__ function to the HTMLAttribCache
    
    * Support HTML5 required in MSHTML focus mode

commit 808db3e8ac08491b30cd1bcd1ba91ef32fd3fa2d
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Sep 5 10:19:39 2017 +1000

    Update what's new

commit 27a6e85626dcc0e6f106fb88eb053645e24734d4
Author: Leonard de Ruijter <leonard_dev@babbage.com>
Date:   Tue Sep 5 02:16:30 2017 +0200

    Fix cursor routing for the MDV Lilli Braille display driver (#7472)
    
    * Converted some decimal values to hexadecimal values and fixed routing indexes for the MDV Lilli braille display driver
    
    * Remove trailing whitespace.

commit 9f161586fd38593e4eecf05157a176ad6c377eeb
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Sep 5 10:09:59 2017 +1000

    Update what's new

commit f0f47613775833d8d2de304a5e8ba331bc4d1850
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Tue Sep 5 10:08:21 2017 +1000

    Improve compatibility of NVDA for Windows 10 on ARM64.   (#7508)
    
    * When running on Windows for ARM64, it is currently impossible for NVDA to inject in-process, therefore if we have not injected, support speak typed characters the same way we currently do for UWP apps (I.e. with ToUnicodeEx).  Of course this is only possible on Windows 10 Creators update and above as ToUnicodeEx had a bug before that.
    
    * ApModule.is64BitProcess: As well as AMD64, also detect ARM64. This allows NVDA's 64 bit specific code for SysListview32 etc to function on ARM64 when being emulated as x86.

commit 977b1cbe3ca2502ec6686607433e15e9192869e0
Author: James Teh <jamie@nvaccess.org>
Date:   Mon Sep 4 14:43:31 2017 +1000

    Fix error in docstring for RecogImageInfo.convertYToScreen.

commit 3c182f5f93920897d24822dc17b8cead7a8a8f62
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Sep 4 10:06:11 2017 +1000

    Update what's new

commit f9348683fe2d28a5de1cf05e64b0198003f293d3
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Mon Sep 4 10:04:33 2017 +1000

    Limit NVDA to running only on at least Windows 7 SP1 or Windows Server 2008 R2 SP1 (#7546)

commit 21b308680340f43d851d3b5b5e69f13c8f5a4845
Merge: a7eff0b29 bc052d737
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 1 00:05:59 2017 +1000

    Update translations.
    
    From translation svn revision: 35233

commit bc052d7376db40b51dd5b20b6b4d6c2ed6fe8ad4
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 1 00:05:58 2017 +1000

    L10n updates for: zh_CN
    From translation svn revision: 35233
    
    Authors:
    vgjh2005@gmail.com
    
    Stats:
    75      0       user_docs/zh_CN/changes.t2t
     1 file changed, 75 insertions(+)

commit 6cac4c4a35c23b303574f9124bd8c551f4298be8
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 1 00:05:46 2017 +1000

    L10n updates for: ro
    From translation svn revision: 35233
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    
    Stats:
    39      38      source/locale/ro/LC_MESSAGES/nvda.po
     1 file changed, 39 insertions(+), 38 deletions(-)

commit 1516f72d8b47c3f51c7d39a85a5403383ba25ab8
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 1 00:05:37 2017 +1000

    L10n updates for: mk
    From translation svn revision: 35233
    
    Authors:
    zvonimir stanecic <zvonimirek222@yandex.com>
    Kiko Lazarev <kristijan.lazarev@gmail.com>
    
    Stats:
    35      35      source/locale/mk/LC_MESSAGES/nvda.po
    175     175     user_docs/mk/userGuide.t2t
     2 files changed, 210 insertions(+), 210 deletions(-)

commit 7b65b2f36c39abc5bf8c26c23bb4fbed4141ab15
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 1 00:05:36 2017 +1000

    L10n updates for: ko
    From translation svn revision: 35233
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    
    Stats:
    16      0       user_docs/ko/changes.t2t
     1 file changed, 16 insertions(+)

commit d475d688e31de2652cb0247b0f17924a928953c5
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 1 00:05:32 2017 +1000

    L10n updates for: it
    From translation svn revision: 35233
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    3       0       user_docs/it/changes.t2t
     1 file changed, 3 insertions(+)

commit 7cdeb0c1c6df230f677175d1bd4f0e4b3cb4bc05
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 1 00:05:20 2017 +1000

    L10n updates for: es
    From translation svn revision: 35233
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    
    Stats:
    1       1       user_docs/es/changes.t2t
     1 file changed, 1 insertion(+), 1 deletion(-)

commit b550c08fa6d61577b494d904c10a237a9e9e5f45
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Sep 1 00:05:15 2017 +1000

    L10n updates for: da
    From translation svn revision: 35233
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    1       1       source/locale/da/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit a7eff0b294a9de63eeea9cb8588db278315c46b7
Author: James Teh <jamie@nvaccess.org>
Date:   Thu Aug 31 12:10:07 2017 +1000

    Update What's New.

commit d8692535ea73453da2bd9dd97dd7c59889058a77
Author: Leonard de Ruijter <leonard_dev@babbage.com>
Date:   Thu Aug 31 04:07:56 2017 +0200

    In web browsers, the Elements List can now list form fields and buttons. (issue #588, PR #6131)

commit e71a06a3ec59ba3ffa61e7a33bf0f737bbfc9799
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Tue Aug 29 20:07:50 2017 -0700

    sconstruct: build dev docs for content recognition framework introduced with NVDA 2017.3. (#7524)

commit 4635b91b08009b7ad034671f78d5869426c3c4a7
Author: James Teh <jamie@nvaccess.org>
Date:   Wed Aug 30 09:02:13 2017 +1000

    Update What's New.

commit 5b636a3397b14d09864288de6293ee251d79885c
Author: James Teh <jamie@nvaccess.org>
Date:   Wed Aug 30 09:00:14 2017 +1000

    Add some missing translator comments and check for missing translator comments in future. (#7492)
    
    1. Add a few missing translator comments inspired by reports from translators.
    2. Add some code (`checkPot`) to check for missing translator comments in the translation template (pot). For now, we have a set of expected failures, since fixing all existing 87 messages that don't have translator comments is going to take some work. However, we want to fail for any new messages that get introduced without comments.
    3. Run `checkPot` as part of `scons tests`. This means tests (and thus builds) will fail so we learn about these problems early.
    4. `checkPot` can also be run alone with `scons checkPot`.
    5. Now that `scons tests` runs `checkPot` (which depends on `pot`), don't explicitly run `scons pot` on AppVeyor.

commit 95e3ab56667332ca1c6ca132530cd8cc901aadb2
Author: Reef Turner <reef@nvaccess.org>
Date:   Tue Aug 29 16:42:12 2017 +0800

    Ignore untracked files in sonic
    
    Fixes #6357

commit d6e7cdf288bf6cd7fd610f6bb81309476a16a8a3
Author: Reef Turner <reef@nvaccess.org>
Date:   Tue Aug 29 15:49:35 2017 +0800

    Fix error in changes file.

commit 507d7b480f2732d2fa03e225d9a9e996ded7589a
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Aug 29 16:49:02 2017 +1000

    Update what's new

commit 0115a3c1f4097f9eedd9364d2de9200468ed913b
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Tue Aug 29 16:48:02 2017 +1000

    FF/Chrome/IE browseMode quicknav includes rich text widgets (contentEditable) in edit and formField commands (#7461)
    
    * VBufStorage_fieldNode_t::matchAttributes: allow an attribute to be prefixed by 'parent::' which means that the parent node should be checked for this attribute, rather than this node.
    
    * Gecko VBufBackend: remove the editable state from ARIA grids as Gecko seems to incorrectly expose this. Not only is it incorrect info for the user, but it can affect jumping to editable elements with quicknav.
    
    * Firefox / Chrome browseMode: quicknav commands e (edit) and f (formFields) now include editable content (E.g. div with contentEditable=true).
    
    * Internet Explorer browseMode: quicknav commands e (edit) and f (formFields) now includes editable content (E.g. div contentEditable=true).
    Also read-only edit fields (I.e. <input type="text" readonly />) are again included.

commit c06311d43d4e389ee37dbc5c37a79c2011d1851e
Author: Leonard de Ruijter <leonard_dev@babbage.com>
Date:   Tue Aug 29 08:45:35 2017 +0200

    DisplayModel: Treat integers in screen locations as signed ints to allow coordinates to be negative (#7444)
    
    * Added GET_X_LPARAM and GET_Y_LPARAM from windowsx.h to the winUser module
    
    * Use the new winUser functions in NVDAObjects.window.edit
    
    * use the new winUsers in touchHandler and winConsoleHandler
    
    * No longer use casting for new winUser functions and converted decimal numbers to hexadecimal
    
    * use c_short(i).value instead of i if i<0x8000 else i-0x10000

commit 360ef81d1a989f6096f019a8d70ad9ce0ef2320c
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Aug 29 16:42:41 2017 +1000

    Update what's new

commit e54ae8266d7f2cdc9abdd1e01e25946389132169
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Tue Aug 29 16:41:42 2017 +1000

    Gecko_ia2 virtualBuffer's isAlive property: provide a roughly 14x speed-up by no longer calling AccessibleObjectFromevent, and calling IAccessible2::States directly to check for defunct. A COMError when calling IAccessible2::States (such as with Chrome) is treated as the object also being defunct as it is truely dead or disconnected. (#7443)

commit edcf518a405823d439f3c5fea23d4434267c3992
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Tue Aug 29 16:39:56 2017 +1000

    displayModel: second try at recording the actual background color for text when a transparant background color is set. (#7440)
    
    * GDI hooks: In the TextOut and ExtTextOut functions, get the previous color at the provided X, Y coordinates before calling the original function, so we at least have a chance of knowing the correct background color if the text is being drawn in transparent mode. This is necessary to detect highlighted text in some parts of Dragon NaturallySpeaking.
    
    * GDI hooks: Document the new prevColor parameter for ExtTextOutHelper
    
    * GDIHooks: only call GetPixel if the background color when writing text is transparent. GetPixel can be slow so we want to limit its use.
    
    * gdiHooks: no need to check if bkMode  is transparent twice.

commit 7e5b3b3c8f7ed5bd86d7fedeb91e5732a54f8f8e
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Aug 29 16:38:04 2017 +1000

    Update what's new

commit c4c3da6ae0bb5fbdf1a6ece665081087ac90a1af
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Tue Aug 29 16:37:14 2017 +1000

    BrowseModeDocumentTextInfo.getControlFieldSpeech: Report the name of groupings (such as fieldsets) for quicknav and focus jumps, similar to how landmark labels are reported. (#7435)
    
    * BrowseModeDocumentTextInfo.getControlFieldSpeech: Report the name of groupings (such as fieldsets) for quicknav and focus jumps, similar to how landmark labels are reported.
    
    * * speech.speakTextInfo: take an onlyCache keyword argument, set to False by default. If true, then speakTextInfo will process/cache controlFields and indenting info etc, but not actually speak anything. This is needed to allow browseMode to update its speech cache when moving around in focus mode, so that the next browseMode speech has the latest controlFields.
    * BrowseMode: Ensure that browseMode's textInfo speech cache is updated even when moving around in focus mode, so that when switching back to browse mode, NVDA does not inappropriately announce entering/exiting controlFields from before focus mode.
    * BrowseMode: don't speak new focus ancestors via focusEntered event when speaking focus in browseMode straight after being in focus mode.
    
    * Address review actions: just use controlTypes.REASON_ONLYCACHE with speech.speakTextInfo rather than requiring a new argument. Also comment why BrowseModeDocumentTreeInterceptor.event_focusEntered drops all events.

commit a9a0bff8cf6e5ffa435f8a5e09f3122a6a43827b
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Aug 29 16:34:42 2017 +1000

    Update what's new

commit 9239db5eaf75182b15481ac125c7632bc6a62808
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Tue Aug 29 16:33:54 2017 +1000

    speech.speakTextInfo: only announce exiting old controlFields if the reason is not reason_focus. (#7434)
    
    * speech.speakTextInfo: only announce exiting old controlFields if the reason is not reason_focus. This ensures that quicknav / tabbing etc does not announce many exit messages when jumping to an arbitrary part of the page.

commit 06be1df8a35940040e98aa5d962032041decbc91
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Aug 29 16:32:23 2017 +1000

    Update what's new

commit bbc4c9167397b2132ec19033d16bf893cdac45b9
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Tue Aug 29 16:31:09 2017 +1000

    Dialogs in web pages in Firefox and Chrome  now get browseMode if the parent document also has browseMode (#7433)
    
    * NVDAObjects.behaviors.FocusableUnFocusableContainer: allow a way for a sub or super class to turn off automatic focusing of the first focusable descendant, by setting a special attribute.
    
    * Dialogs in Firefox and Chrome content now will get browseMode if the parent document has a treeInterceptor.
    
    * MSHTML VBufBackend: Although applications and dialogs should render their label when embedded in a document, we should not do this when the dialog or application is the root of the buffer as we lose all the content if this particular application or dialog gets browse mode itself.
    
    * Move WebDialog into behaviors and add more detail to docstring.
    
    * MSHTML virtualBuffer: dialogs embedded in a browseMode document now get browseMode by default themselves.
    
    * textInfos.TextInfo.getPresentationCategory: applications and dialogs should not be reported as a marker if they themselves are the root of the content.

commit 9f18c6f44cf8e321141cce973a124c60075c4d16
Author: James Teh <jamie@nvaccess.org>
Date:   Fri Aug 25 09:22:42 2017 +1000

    Update What's New.

commit 41fd5f40d32f3fd3fc1a23e6c6e02ae843b8b269
Author: Davy Kager <dkager@users.noreply.github.com>
Date:   Fri Aug 25 01:11:53 2017 +0200

    Links are now indicated in braille in applications such as Microsoft Word. (issue #6780, PR #6802)

commit 0429faa79af8caa7ac551f319d2eed14eceafb63
Author: Derek Riemer <derek.riemer@colorado.edu>
Date:   Thu Aug 24 17:08:26 2017 -0600

    In browse mode, it is now possible to skip past/to the start of landmarks using the skip to end/beginning of container commands. (issue #5482, PR #6474)

commit 009b8dd746edbe1e2058cea47ec92f4a7d8d657c
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Aug 25 06:24:13 2017 +1000

    Switch to 2017.4dev

commit 58bc4ef202c153488f2760af1225b4a888b09ddc
Merge: c6379eb34 8724a9899
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 25 00:06:08 2017 +1000

    Update translations.
    
    From translation svn revision: 35152

commit 8724a9899eeca70be54e4d30938a37e9a7b00be4
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 25 00:06:07 2017 +1000

    L10n updates for: zh_TW
    From translation svn revision: 35152
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    4       4       source/locale/zh_TW/LC_MESSAGES/nvda.po
    30      30      source/locale/zh_TW/characterDescriptions.dic
    8       8       user_docs/zh_TW/userGuide.t2t
     3 files changed, 42 insertions(+), 42 deletions(-)

commit 905a4a06f1096133f9d9cb3d7f546b1c588ceee2
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 25 00:06:05 2017 +1000

    L10n updates for: zh_HK
    From translation svn revision: 35152
    
    Authors:
    Eric Yip <ericycy@gmail.com>
    
    Stats:
    12      11      source/locale/zh_HK/LC_MESSAGES/nvda.po
     1 file changed, 12 insertions(+), 11 deletions(-)

commit a6634d2a5a981fc6ac761a7449bc915e634327eb
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 25 00:06:05 2017 +1000

    L10n updates for: zh_CN
    From translation svn revision: 35152
    
    Authors:
    vgjh2005@gmail.com
    
    Stats:
    1810    260     source/locale/zh_CN/LC_MESSAGES/nvda.po
     1 file changed, 1810 insertions(+), 260 deletions(-)

commit c02cc19775cc869644234ed27ff7c2693e5a29ab
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 25 00:05:59 2017 +1000

    L10n updates for: ta
    From translation svn revision: 35152
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    1       1       user_docs/ta/userGuide.t2t
     1 file changed, 1 insertion(+), 1 deletion(-)

commit dda234b50f9b2ad413642b2d2de3a8eb6c4a21a2
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 25 00:05:52 2017 +1000

    L10n updates for: ro
    From translation svn revision: 35152
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    
    Stats:
    1       1       user_docs/ro/changes.t2t
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 399ecc82cfabeeed3b30f174ee2e3643e06213ac
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 25 00:05:46 2017 +1000

    L10n updates for: nl
    From translation svn revision: 35152
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <leonard_dev@babbage.com>
    
    Stats:
    2       2       source/locale/nl/LC_MESSAGES/nvda.po
    1       1       user_docs/nl/changes.t2t
    1       1       user_docs/nl/userGuide.t2t
     3 files changed, 4 insertions(+), 4 deletions(-)

commit 1fcbe00e72c2f04dedae64c53f7d0eb7a51f14ef
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 25 00:05:41 2017 +1000

    L10n updates for: mk
    From translation svn revision: 35152
    
    Authors:
    zvonimir stanecic <zvonimirek222@yandex.com>
    Kiko Lazarev <kristijan.lazarev@gmail.com>
    
    Stats:
    10517   0       source/locale/mk/LC_MESSAGES/nvda.po
    32      0       source/locale/mk/characterDescriptions.dic
    182     0       source/locale/mk/symbols.dic
    6       0       user_docs/mk/changes.t2t
    2491    0       user_docs/mk/userGuide.t2t
     5 files changed, 13228 insertions(+)

commit e7277a03e9925b26f85e21b570cf5e53203dd446
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 25 00:05:26 2017 +1000

    L10n updates for: fi
    From translation svn revision: 35152
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    4       4       source/locale/fi/LC_MESSAGES/nvda.po
    8       8       user_docs/fi/changes.t2t
    2       2       user_docs/fi/userGuide.t2t
     3 files changed, 14 insertions(+), 14 deletions(-)

commit 452e36307c349a92d78de07271210012cef9a99a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 25 00:05:25 2017 +1000

    L10n updates for: fa
    From translation svn revision: 35152
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    1       1       user_docs/fa/changes.t2t
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 2d5a33a75d744eab729253359365b8b810d1bf15
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 25 00:05:23 2017 +1000

    L10n updates for: es
    From translation svn revision: 35152
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    
    Stats:
    5       4       source/locale/es/LC_MESSAGES/nvda.po
     1 file changed, 5 insertions(+), 4 deletions(-)

commit 72d6c4a9c068598513bd7521854629be1c3cc141
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 25 00:05:17 2017 +1000

    L10n updates for: da
    From translation svn revision: 35152
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    355     72      source/locale/da/LC_MESSAGES/nvda.po
    24      13      user_docs/da/changes.t2t
    115     14      user_docs/da/userGuide.t2t
     3 files changed, 494 insertions(+), 99 deletions(-)

commit c6379eb34f2994db7211d6a514bf1b09905877d0
Merge: 17dfc68eb 42f433ee5
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 18 00:05:57 2017 +1000

    Update translations.
    
    From translation svn revision: 35071

commit 42f433ee58832f8963d9a9e5b6db6db0334b1f34
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 18 00:05:56 2017 +1000

    L10n updates for: zh_HK
    From translation svn revision: 35071
    
    Authors:
    Eric Yip <ericycy@gmail.com>
    
    Stats:
    3       3       source/locale/zh_HK/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 3 deletions(-)

commit 78177e5c31fc35cd3ca05a034e4aa60582567def
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 18 00:05:43 2017 +1000

    L10n updates for: ro
    From translation svn revision: 35071
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    
    Stats:
    3       3       user_docs/ro/changes.t2t
     1 file changed, 3 insertions(+), 3 deletions(-)

commit 8db983b092f4edc32639416a0412304a1e17a62b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 18 00:05:41 2017 +1000

    L10n updates for: pt_BR
    From translation svn revision: 35071
    
    Authors:
    Cleverson Casarin Uliana <clever97@gmail.com>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    
    Stats:
    20      19      source/locale/pt_BR/LC_MESSAGES/nvda.po
     1 file changed, 20 insertions(+), 19 deletions(-)

commit d252a0e7a41411018990d6fa7835ab6a53429254
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 18 00:05:38 2017 +1000

    L10n updates for: nl
    From translation svn revision: 35071
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <leonard_dev@babbage.com>
    
    Stats:
    31      32      user_docs/nl/changes.t2t
    10      10      user_docs/nl/userGuide.t2t
     2 files changed, 41 insertions(+), 42 deletions(-)

commit 841699672d12fceae2e628397b4f70696fad6852
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 18 00:05:21 2017 +1000

    L10n updates for: fi
    From translation svn revision: 35071
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    14      13      source/locale/fi/LC_MESSAGES/nvda.po
    67      67      user_docs/fi/changes.t2t
    107     107     user_docs/fi/userGuide.t2t
     3 files changed, 188 insertions(+), 187 deletions(-)

commit 17dfc68eb3394e2997afec19568943cb6fc04573
Author: James Teh <jamie@nvaccess.org>
Date:   Tue May 23 16:32:58 2017 +1000

    What's New: Fix typo in entry for #7023.

commit 908864036a3cb24fbad0f6d592cb947589bf2c52
Merge: 9d1d47fae 90887a2a6
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Aug 17 12:31:21 2017 +1000

    Update translations.
    
    From translation svn revision: 35053

commit 90887a2a60f30be524fe56cce54c289a3de664e2
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Aug 17 12:31:20 2017 +1000

    L10n updates for: zh_TW
    From translation svn revision: 35053
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    55      54      source/locale/zh_TW/LC_MESSAGES/nvda.po
    325     233     user_docs/zh_TW/changes.t2t
    223     166     user_docs/zh_TW/userGuide.t2t
     3 files changed, 603 insertions(+), 453 deletions(-)

commit 125bb2fdcaf855ad9729d87c3bd2fd48770ee74a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Aug 17 12:31:19 2017 +1000

    L10n updates for: zh_HK
    From translation svn revision: 35053
    
    Authors:
    Eric Yip <ericycy@gmail.com>
    
    Stats:
    1924    402     source/locale/zh_HK/LC_MESSAGES/nvda.po
     1 file changed, 1924 insertions(+), 402 deletions(-)

commit 67e656e7f2ffd6df09c3aa38503872b108cf1c3f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Aug 17 12:31:16 2017 +1000

    L10n updates for: vi
    From translation svn revision: 35053
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    3       3       user_docs/vi/changes.t2t
    12      7       user_docs/vi/userGuide.t2t
     2 files changed, 15 insertions(+), 10 deletions(-)

commit d04a0728e9cfbf1e7dbb7bef8c9bbafe5f5b5d3d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Aug 17 12:31:14 2017 +1000

    L10n updates for: tr
    From translation svn revision: 35053
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    12      11      source/locale/tr/LC_MESSAGES/nvda.po
    243     58      user_docs/tr/userGuide.t2t
     2 files changed, 255 insertions(+), 69 deletions(-)

commit 6aa84b68bea26fa3a157ed3d6bfb733383310155
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Aug 17 12:31:12 2017 +1000

    L10n updates for: ta
    From translation svn revision: 35053
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    137     6       source/locale/ta/LC_MESSAGES/nvda.po
    141     40      user_docs/ta/userGuide.t2t
     2 files changed, 278 insertions(+), 46 deletions(-)

commit d44ee5d788e27837b545e1e59f744ffa64a6e920
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Aug 17 12:31:10 2017 +1000

    L10n updates for: sr
    From translation svn revision: 35053
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <zvonimirek222@yandex.com>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    1       1       user_docs/sr/changes.t2t
     1 file changed, 1 insertion(+), 1 deletion(-)

commit fbbc8c1b7a5976231e48df7303078247779a0769
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Aug 17 12:31:09 2017 +1000

    L10n updates for: sl
    From translation svn revision: 35053
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    87      106     source/locale/sl/LC_MESSAGES/nvda.po
    243     63      user_docs/sl/userGuide.t2t
     2 files changed, 330 insertions(+), 169 deletions(-)

commit a4f5ac12015ad443c565c1410f7b1c374ee95917
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Aug 17 12:31:07 2017 +1000

    L10n updates for: sk
    From translation svn revision: 35053
    
    Authors:
    Ondrej Rosik <ondrej.rosik@gmail.com>
    Peter Vagner <peter.v@datagate.sk>
    
    Stats:
    1846    318     source/locale/sk/LC_MESSAGES/nvda.po
    74      0       user_docs/sk/changes.t2t
    60      60      user_docs/sk/userGuide.t2t
     3 files changed, 1980 insertions(+), 378 deletions(-)

commit 80ad0b74ae45b04f1eaf36a725e3d7fdfa957a74
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Aug 17 12:31:06 2017 +1000

    L10n updates for: ru
    From translation svn revision: 35053
    
    Authors:
    Ruslan Kolodyazhni <eye0@rambler.ru>
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    81      77      source/locale/ru/LC_MESSAGES/nvda.po
    2       0       source/locale/ru/symbols.dic
    36      22      user_docs/ru/changes.t2t
    166     65      user_docs/ru/userGuide.t2t
     4 files changed, 285 insertions(+), 164 deletions(-)

commit fafbc84061cfb148b96ef41844c0777b6464bdf2
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Aug 17 12:31:03 2017 +1000

    L10n updates for: ro
    From translation svn revision: 35053
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    
    Stats:
    1       1       user_docs/ro/changes.t2t
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 37750cc9b75ac4e3256dd306af86db22092a41c6
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Aug 17 12:31:02 2017 +1000

    L10n updates for: pt_PT
    From translation svn revision: 35053
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    
    Stats:
    252     352     source/locale/pt_PT/LC_MESSAGES/nvda.po
    1       1       source/locale/pt_PT/symbols.dic
    1       1       user_docs/pt_PT/changes.t2t
    1       1       user_docs/pt_PT/userGuide.t2t
     4 files changed, 255 insertions(+), 355 deletions(-)

commit 55680963a69854a27e4061a5ac95c8059b784c1f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Aug 17 12:31:00 2017 +1000

    L10n updates for: pt_BR
    From translation svn revision: 35053
    
    Authors:
    Cleverson Casarin Uliana <clever97@gmail.com>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    
    Stats:
    114     41      user_docs/pt_BR/userGuide.t2t
     1 file changed, 114 insertions(+), 41 deletions(-)

commit 1a7a6a581c21a06e918c76b8828f943cb01a5ef6
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Aug 17 12:30:59 2017 +1000

    L10n updates for: pl
    From translation svn revision: 35053
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <zvonimirek222@yandex.com>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <killer@tyflonet.com>
    
    Stats:
    1       1       user_docs/pl/changes.t2t
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 3755851f70192e077a9b5b26f0bab51bbffc5010
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Aug 17 12:30:57 2017 +1000

    L10n updates for: nl
    From translation svn revision: 35053
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <leonard_dev@babbage.com>
    
    Stats:
    123     177     source/locale/nl/LC_MESSAGES/nvda.po
    55      57      user_docs/nl/changes.t2t
    62      62      user_docs/nl/userGuide.t2t
     3 files changed, 240 insertions(+), 296 deletions(-)

commit 3ba11ccfa96b0e6140cda78d81ddb23ceb8d6d71
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Aug 17 12:30:53 2017 +1000

    L10n updates for: lt
    From translation svn revision: 35053
    
    Authors:
    Paulius Leveris <paulius.leveris@gmail.com>
    Rimas Kudelis <rq@akl.lt>
    
    Stats:
    369     86      source/locale/lt/LC_MESSAGES/nvda.po
     1 file changed, 369 insertions(+), 86 deletions(-)

commit fdc4ede4d3bc7e3473613fed2475c89fa7509d48
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Aug 17 12:30:52 2017 +1000

    L10n updates for: ko
    From translation svn revision: 35053
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    
    Stats:
    50      51      source/locale/ko/LC_MESSAGES/nvda.po
    25      16      user_docs/ko/changes.t2t
    55      31      user_docs/ko/userGuide.t2t
     3 files changed, 130 insertions(+), 98 deletions(-)

commit 04201c05e27e72e202c2951a010501dbd71633ff
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Aug 17 12:30:49 2017 +1000

    L10n updates for: ja
    From translation svn revision: 35053
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    1       1       user_docs/ja/changes.t2t
     1 file changed, 1 insertion(+), 1 deletion(-)

commit c2a67983788c771ee7a58e97d980fed9c71cf98e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Aug 17 12:30:47 2017 +1000

    L10n updates for: it
    From translation svn revision: 35053
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    21      28      user_docs/it/changes.t2t
    1       0       user_docs/it/userGuide.t2t
     2 files changed, 22 insertions(+), 28 deletions(-)

commit d567cfef3863aeae26a4036b40d27de75360fa31
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Aug 17 12:30:45 2017 +1000

    L10n updates for: hu
    From translation svn revision: 35053
    
    Authors:
    Aron OcsvAri <oaron@nvda.hu>
    
    Stats:
    58      57      source/locale/hu/LC_MESSAGES/nvda.po
    165     1       user_docs/hu/userGuide.t2t
     2 files changed, 223 insertions(+), 58 deletions(-)

commit 07737df677c1d3218c08fa412a2aae9a779dc394
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Aug 17 12:30:44 2017 +1000

    L10n updates for: hr
    From translation svn revision: 35053
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <zvonimirek222@yandex.com>
    Mario Percinic <mario.percinic@gmail.com>
    Tea Turkovic <tturkovi@gmail.com>
    
    Stats:
    5       4       source/locale/hr/LC_MESSAGES/nvda.po
    2       2       source/locale/hr/symbols.dic
     2 files changed, 7 insertions(+), 6 deletions(-)

commit be0f13911af13a9ef2fe6b6ee1076693235bea1e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Aug 17 12:30:41 2017 +1000

    L10n updates for: he
    From translation svn revision: 35053
    
    Authors:
    Shmuel Naaman <shmuel_naaman@yahoo.com>
    Afik Sofir <afik.sofer@gmail.com>
    
    Stats:
    59      92      source/locale/he/LC_MESSAGES/nvda.po
    8       8       source/locale/he/symbols.dic
     2 files changed, 67 insertions(+), 100 deletions(-)

commit deeda3aa5b091e517eca459ddec4851087f859a2
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Aug 17 12:30:40 2017 +1000

    L10n updates for: gl
    From translation svn revision: 35053
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    
    Stats:
    1       1       user_docs/gl/changes.t2t
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 6d2ecc5bdc8f826e64ce05235b687c069eb9a5d3
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Aug 17 12:30:39 2017 +1000

    L10n updates for: ga
    From translation svn revision: 35053
    
    Authors:
    Cearbhall OMeadhra <cearbhall.omeadhra@blbc.ie>
    Ronan McGuirk <ronan.p.mcguirk@gmail.com>
    Kevin Scannell <kscanne@gmail.com>
    
    Stats:
    36      46      source/locale/ga/LC_MESSAGES/nvda.po
     1 file changed, 36 insertions(+), 46 deletions(-)

commit c816e0d5e085d9beaf167bbe5eeff07bb101b37d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Aug 17 12:30:36 2017 +1000

    L10n updates for: fi
    From translation svn revision: 35053
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    1       1       user_docs/fi/changes.t2t
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 0e9620ac3dc3cccf80b2199e3a247b80aa7f651b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Aug 17 12:30:35 2017 +1000

    L10n updates for: fa
    From translation svn revision: 35053
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    425     145     source/locale/fa/LC_MESSAGES/nvda.po
    220     2       user_docs/fa/changes.t2t
    112     10      user_docs/fa/userGuide.t2t
     3 files changed, 757 insertions(+), 157 deletions(-)

commit 176593173c331ad60f9c480b2c3644be986d1d15
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Aug 17 12:30:33 2017 +1000

    L10n updates for: es
    From translation svn revision: 35053
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    
    Stats:
    1       1       user_docs/es/changes.t2t
     1 file changed, 1 insertion(+), 1 deletion(-)

commit a9bbecb469c40ed703ab3b9eb90d55e6f0c17cea
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Aug 17 12:30:30 2017 +1000

    L10n updates for: el
    From translation svn revision: 35053
    
    Authors:
    Irene Nakas <irnakas@gmail.com>
    Nikos Demetriou <nikosdemetriou@googlemail.com>
    access@e-rhetor.com
    
    Stats:
    1865    332     source/locale/el/LC_MESSAGES/nvda.po
     1 file changed, 1865 insertions(+), 332 deletions(-)

commit 37c3e66dd4b03ac357ea02c0a0892e7d18042e61
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Aug 17 12:30:28 2017 +1000

    L10n updates for: de
    From translation svn revision: 35053
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    
    Stats:
    6       9       source/locale/de/LC_MESSAGES/nvda.po
    3       3       user_docs/de/changes.t2t
     2 files changed, 9 insertions(+), 12 deletions(-)

commit 864992d2021f3d2baaa04afc420ef61d58d622e2
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Aug 17 12:30:26 2017 +1000

    L10n updates for: cs
    From translation svn revision: 35053
    
    Authors:
    Martina Letochova <letochova@seznam.cz>
    
    Stats:
    120     133     source/locale/cs/LC_MESSAGES/nvda.po
     1 file changed, 120 insertions(+), 133 deletions(-)

commit 7384b05c31a12ca3cf47ced6cc20511593f2e0ee
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Aug 17 12:30:24 2017 +1000

    L10n updates for: ca
    From translation svn revision: 35053
    
    Authors:
    Ruben Alcaraz <ruben.hangar1.8@gmail.com>
    Dr. Mireia Ribera <mireia.ribera@gmail.com>
    Santi Moese <santispock@gmail.com>
    Marina Salse Rovira <salse@ub.edu>
    
    Stats:
    6       5       user_docs/ca/userGuide.t2t
     1 file changed, 6 insertions(+), 5 deletions(-)

commit 4fe86de245a94d953d0d7d709cae7f49f386c416
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Aug 17 12:30:23 2017 +1000

    L10n updates for: bg
    From translation svn revision: 35053
    
    Authors:
    Zahari Yurukov <zahari.yurukov@gmail.com>
    Kostadin Kolev <k_kolev1985@mail.bg>
    
    Stats:
    1860    321     source/locale/bg/LC_MESSAGES/nvda.po
    230     87      user_docs/bg/changes.t2t
    248     66      user_docs/bg/userGuide.t2t
     3 files changed, 2338 insertions(+), 474 deletions(-)

commit 29a73d5ca5f0463e52d5407493ae1f08d7b65408
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Aug 17 12:30:20 2017 +1000

    L10n updates for: ar
    From translation svn revision: 35053
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    67      98      source/locale/ar/LC_MESSAGES/nvda.po
    5       5       user_docs/ar/changes.t2t
    108     11      user_docs/ar/userGuide.t2t
     3 files changed, 180 insertions(+), 114 deletions(-)

commit 44ff7ec700cdb4b3b7b50fef9908fe704f636f96
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Thu Aug 17 12:30:17 2017 +1000

    L10n updates for: an
    From translation svn revision: 35053
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    
    Stats:
    1847    319     source/locale/an/LC_MESSAGES/nvda.po
    83      0       user_docs/an/changes.t2t
    265     97      user_docs/an/userGuide.t2t
     3 files changed, 2195 insertions(+), 416 deletions(-)

commit 9d1d47fae11d1da89d65ef0d4bb1ffeb585c7649
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Tue Aug 15 16:06:30 2017 +1000

    Add ConsoleWindowClass to badUIAWindowClasses as the UIA implementation for win32 Console windows is not usable yet. (#7497)
    
    This bad UIA implementation was added in windows 10 build 16257.  It conflicts with our existing console support, and also does not implement caret/selection.

commit baee68d5eebb4a2e7ec4a1e84be7a5d185b6b7fc
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Tue Aug 15 14:30:41 2017 +1000

    editableText.EditableText._hasCaretMoved:  only fall back to checking if the word at the caret has changed once _hasCaretMoved_minWordTimeoutMs has elapsed. I.e. 30 ms must elapse before starting to check the word. (#7496)
    
    This fixes a regression introduced by #7201 where deleting characters in Mozilla Gecko editable controls would cause the character being deleted to be spoken rather than the character that followed.

commit ffa71c7c3533e03ad37f6980c36440c86422f2bc
Author: James Teh <jamie@nvaccess.org>
Date:   Tue Aug 15 12:24:18 2017 +1000

    OneCore Voices: Fix lag when reporting characters. (#7495)
    
    When we speak characters, we include indexes, which get translated to SSML marks. Unfortunately, calling WaveOutOpen blocks for ~100 ms if called from the callback when the SSML includes marks. We're not quite sure why.
    To work around this, open the device before queuing.
    Move the call to player.idle to _processQueue so that it gets called (thus closing the audio device) even if the UWP code encounters an exception.

commit 13131933ffa65f610728d34afa2ab34901ea4a6d
Author: James Teh <jamie@nvaccess.org>
Date:   Tue Aug 15 11:25:44 2017 +1000

    OneCore Voices: Fix failure to speak some messages when several messages are spoken in quick succession. (PR #7494, issue #7473)
    
    This occurs, for example, when toggling a check box with the space bar with speak typed characters turned on. In this case, often "space" would be spoken, but not "checked"/"not checked".
    
    #7463 (cc0aa5d1) modified the oneCore driver to call  player.idle  when there was no more speech in the queue in order to fix audio ducking. Unfortunately, i neglected to realise that because  player.idle  can take some time, there might be more speech queued while it was running.
    Now, we still check the queue and only call  player.idle  if it is empty. However, we then process the queue after that so that if new utterances arrived in the queue during the  idle  call, we still process them.

commit 0680dc8d3be76873060922ebd392dd64e7a97001
Author: Leonard de Ruijter <leonard_dev@babbage.com>
Date:   Tue Aug 15 02:11:35 2017 +0200

    Implemented landmark property for the base NVDAObject (#7493)
    
    Fixes #7490 (regression) from PR #7333

commit 890528bd4bc668635934de4745d2f53a4aab5d40
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Aug 14 08:15:16 2017 +1000

    Clarify translation string

commit 4c9dd5f30de41901437e0240db4fc87f32cb5b59
Merge: 36f0a8a59 7a6d2994a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 11 00:06:13 2017 +1000

    Update translations.
    
    From translation svn revision: 34783

commit 7a6d2994a304191ee73f88ad380609907ac8f867
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 11 00:06:12 2017 +1000

    L10n updates for: zh_TW
    From translation svn revision: 34783
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    75      109     source/locale/zh_TW/LC_MESSAGES/nvda.po
     1 file changed, 75 insertions(+), 109 deletions(-)

commit 53a307c09b3f5be8e36db6805ab95af95e9c08ff
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 11 00:06:09 2017 +1000

    L10n updates for: vi
    From translation svn revision: 34783
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    348     69      source/locale/vi/LC_MESSAGES/nvda.po
    27      13      user_docs/vi/changes.t2t
    109     12      user_docs/vi/userGuide.t2t
     3 files changed, 484 insertions(+), 94 deletions(-)

commit 7cec02d084d254d50d1992beec7aa259c0c23c8e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 11 00:06:06 2017 +1000

    L10n updates for: tr
    From translation svn revision: 34783
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    2559    1005    source/locale/tr/LC_MESSAGES/nvda.po
    83      0       user_docs/tr/changes.t2t
     2 files changed, 2642 insertions(+), 1005 deletions(-)

commit 40a0ac3a0e81df8145ed032f83ef277150a65237
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 11 00:06:04 2017 +1000

    L10n updates for: ta
    From translation svn revision: 34783
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    93      256     source/locale/ta/LC_MESSAGES/nvda.po
     1 file changed, 93 insertions(+), 256 deletions(-)

commit 6c2d381ce0cdb2b02913b7741f42c37794e21198
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 11 00:06:02 2017 +1000

    L10n updates for: sr
    From translation svn revision: 34783
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <zvonimirek222@yandex.com>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    350     68      source/locale/sr/LC_MESSAGES/nvda.po
    26      14      user_docs/sr/changes.t2t
    113     12      user_docs/sr/userGuide.t2t
     3 files changed, 489 insertions(+), 94 deletions(-)

commit 19979a3f58d8c6cf364b32ec5b5639494ddde08a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 11 00:06:00 2017 +1000

    L10n updates for: sl
    From translation svn revision: 34783
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    1826    412     source/locale/sl/LC_MESSAGES/nvda.po
     1 file changed, 1826 insertions(+), 412 deletions(-)

commit bad63098e9af3a6ac1c335f46ac01c93b0f49dfc
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 11 00:05:59 2017 +1000

    L10n updates for: sk
    From translation svn revision: 34783
    
    Authors:
    Ondrej Rosik <ondrej.rosik@gmail.com>
    Peter Vagner <peter.v@datagate.sk>
    
    Stats:
    236     56      user_docs/sk/userGuide.t2t
     1 file changed, 236 insertions(+), 56 deletions(-)

commit 5af8eee5ea047da9c734d1e02aadfdf047be50ac
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 11 00:05:58 2017 +1000

    L10n updates for: ru
    From translation svn revision: 34783
    
    Authors:
    Ruslan Kolodyazhni <eye0@rambler.ru>
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    45      79      source/locale/ru/LC_MESSAGES/nvda.po
     1 file changed, 45 insertions(+), 79 deletions(-)

commit 5f6b2b186eb9eaa8f7ca80aa44af255fc19dacd1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 11 00:05:55 2017 +1000

    L10n updates for: ro
    From translation svn revision: 34783
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    
    Stats:
    355     74      source/locale/ro/LC_MESSAGES/nvda.po
    31      16      user_docs/ro/changes.t2t
    127     81      user_docs/ro/userGuide.t2t
     3 files changed, 513 insertions(+), 171 deletions(-)

commit cac65c57f2bcd3488c588a9946472a50e2478981
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 11 00:05:54 2017 +1000

    L10n updates for: pt_PT
    From translation svn revision: 34783
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    
    Stats:
    16      18      source/locale/pt_PT/LC_MESSAGES/nvda.po
    2       3       source/locale/pt_PT/symbols.dic
    48      21      user_docs/pt_PT/changes.t2t
    272     92      user_docs/pt_PT/userGuide.t2t
     4 files changed, 338 insertions(+), 134 deletions(-)

commit 1e1be76f155aeb245651bbe9e2d040a2936ee987
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 11 00:05:52 2017 +1000

    L10n updates for: pt_BR
    From translation svn revision: 34783
    
    Authors:
    Cleverson Casarin Uliana <clever97@gmail.com>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    
    Stats:
    353     67      source/locale/pt_BR/LC_MESSAGES/nvda.po
     1 file changed, 353 insertions(+), 67 deletions(-)

commit 41665b78f953ba106546bd3b7255580d7b2cf688
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 11 00:05:49 2017 +1000

    L10n updates for: nl
    From translation svn revision: 34783
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <leonard_dev@babbage.com>
    
    Stats:
    721     397     source/locale/nl/LC_MESSAGES/nvda.po
    80      0       user_docs/nl/changes.t2t
    130     25      user_docs/nl/userGuide.t2t
     3 files changed, 931 insertions(+), 422 deletions(-)

commit b8901510482b3952d9c5bf2d9ab2760b77189990
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 11 00:05:45 2017 +1000

    L10n updates for: ko
    From translation svn revision: 34783
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    
    Stats:
    26      58      source/locale/ko/LC_MESSAGES/nvda.po
    64      31      user_docs/ko/userGuide.t2t
     2 files changed, 90 insertions(+), 89 deletions(-)

commit 750b03b9a5d61203822d7e6ae11c8ec79927466e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 11 00:05:42 2017 +1000

    L10n updates for: ja
    From translation svn revision: 34783
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    57      91      source/locale/ja/LC_MESSAGES/nvda.po
    86      3       user_docs/ja/changes.t2t
    117     16      user_docs/ja/userGuide.t2t
     3 files changed, 260 insertions(+), 110 deletions(-)

commit 38b4a814ae94c876878aa77d9f8b5d8995e3c4a2
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 11 00:05:40 2017 +1000

    L10n updates for: it
    From translation svn revision: 34783
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    3       3       source/locale/it/LC_MESSAGES/nvda.po
    88      0       user_docs/it/changes.t2t
    26      0       user_docs/it/userGuide.t2t
     3 files changed, 117 insertions(+), 3 deletions(-)

commit 27b0aba6d80450da2e39a4d33098140b30c4bbad
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 11 00:05:38 2017 +1000

    L10n updates for: hu
    From translation svn revision: 34783
    
    Authors:
    Aron OcsvAri <oaron@nvda.hu>
    
    Stats:
    1860    334     source/locale/hu/LC_MESSAGES/nvda.po
    75      0       user_docs/hu/changes.t2t
     2 files changed, 1935 insertions(+), 334 deletions(-)

commit 73a209af5f23f972720e635970f4715b7e45fdcc
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 11 00:05:36 2017 +1000

    L10n updates for: hr
    From translation svn revision: 34783
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <zvonimirek222@yandex.com>
    Mario Percinic <mario.percinic@gmail.com>
    Tea Turkovic <tturkovi@gmail.com>
    
    Stats:
    27      15      user_docs/hr/changes.t2t
    55      11      user_docs/hr/userGuide.t2t
     2 files changed, 82 insertions(+), 26 deletions(-)

commit 87e93497953f7dee480c90f7da4ee5b875af0167
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 11 00:05:33 2017 +1000

    L10n updates for: gl
    From translation svn revision: 34783
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    
    Stats:
    349     68      source/locale/gl/LC_MESSAGES/nvda.po
    29      15      user_docs/gl/changes.t2t
    111     10      user_docs/gl/userGuide.t2t
     3 files changed, 489 insertions(+), 93 deletions(-)

commit ecce74f42e70c30ec533f60d2c9716104726110a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 11 00:05:31 2017 +1000

    L10n updates for: ga
    From translation svn revision: 34783
    
    Authors:
    Cearbhall OMeadhra <cearbhall.omeadhra@blbc.ie>
    Ronan McGuirk <ronan.p.mcguirk@gmail.com>
    Kevin Scannell <kscanne@gmail.com>
    
    Stats:
    2157    593     source/locale/ga/LC_MESSAGES/nvda.po
     1 file changed, 2157 insertions(+), 593 deletions(-)

commit d6a2a3c5c51a9b21d8b2945930dc8fd2a6dc16d7
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 11 00:05:31 2017 +1000

    L10n updates for: fr
    From translation svn revision: 34783
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    172     431     source/locale/fr/LC_MESSAGES/nvda.po
    259     0       source/locale/fr/symbols.dic
    2491    2389    user_docs/fr/userGuide.t2t
     3 files changed, 2922 insertions(+), 2820 deletions(-)

commit 66cfe54a4ad7d8ea17321bbd479a47559024378b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 11 00:05:28 2017 +1000

    L10n updates for: fi
    From translation svn revision: 34783
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    376     95      source/locale/fi/LC_MESSAGES/nvda.po
    38      25      user_docs/fi/changes.t2t
    125     24      user_docs/fi/userGuide.t2t
     3 files changed, 539 insertions(+), 144 deletions(-)

commit 78b31907417922bf8c187ecf88726ea589f0fb0f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 11 00:05:27 2017 +1000

    L10n updates for: fa
    From translation svn revision: 34783
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    49      21      user_docs/fa/changes.t2t
     1 file changed, 49 insertions(+), 21 deletions(-)

commit 3cc116223a16e0a3f9daf5ffb51d319fe1aa1119
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 11 00:05:25 2017 +1000

    L10n updates for: es
    From translation svn revision: 34783
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    
    Stats:
    68      99      source/locale/es/LC_MESSAGES/nvda.po
    29      15      user_docs/es/changes.t2t
    110     9       user_docs/es/userGuide.t2t
     3 files changed, 207 insertions(+), 123 deletions(-)

commit 97e79432bfb41f3c67df9221a32f596a15aec237
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 11 00:05:21 2017 +1000

    L10n updates for: de
    From translation svn revision: 34783
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    
    Stats:
    147     256     source/locale/de/LC_MESSAGES/nvda.po
    26      83      user_docs/de/changes.t2t
    2560    2464    user_docs/de/userGuide.t2t
     3 files changed, 2733 insertions(+), 2803 deletions(-)

commit 3a6223d4f3c1f960a6e35c9cd53f9dfb8a7bdfa4
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 11 00:05:18 2017 +1000

    L10n updates for: cs
    From translation svn revision: 34783
    
    Authors:
    Martina Letochova <letochova@seznam.cz>
    
    Stats:
    1785    248     source/locale/cs/LC_MESSAGES/nvda.po
     1 file changed, 1785 insertions(+), 248 deletions(-)

commit 8c64307f8578e0c9ff2930a2654fe876ed8197fe
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 11 00:05:16 2017 +1000

    L10n updates for: ca
    From translation svn revision: 34783
    
    Authors:
    Ruben Alcaraz <ruben.hangar1.8@gmail.com>
    Dr. Mireia Ribera <mireia.ribera@gmail.com>
    Santi Moese <santispock@gmail.com>
    Marina Salse Rovira <salse@ub.edu>
    
    Stats:
    156     228     source/locale/ca/LC_MESSAGES/nvda.po
     1 file changed, 156 insertions(+), 228 deletions(-)

commit 712341688fe36186eaae4b6a5418d5f3fb162c10
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 11 00:05:12 2017 +1000

    L10n updates for: ar
    From translation svn revision: 34783
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    24      12      user_docs/ar/changes.t2t
    133     55      user_docs/ar/userGuide.t2t
     2 files changed, 157 insertions(+), 67 deletions(-)

commit 36f0a8a5930404461217441d1c42cb7bc7cb380f
Author: James Teh <jamie@nvaccess.org>
Date:   Wed Aug 9 09:16:05 2017 +1000

    Fix incorrect arguments in signature of ContentRecognizer.recognize abstract method. (#7478)
    
    Because this is an abstract method, it never gets called, so this has no implication on the code that gets executed. However, it is certainly bad for developers who subclass ContentRecognizer.

commit 6c85ce597447fdcccda56153db45b8390b67f29a
Author: Leonard de Ruijter <leonard_dev@babbage.com>
Date:   Fri Aug 4 08:51:20 2017 +0200

    Fix regression in backwards panning introduced with the new focus context presentation settings (issue #7468, PR #7470)
    
    When panning backwards, the end position of the window is set to the previous start position. Thus, the end position of the window belongs to the region that was initially focused hard left. We should not check focusToHardLeft for this region again. regionStart should be less than endPos, and not less than or equal to it.

commit f2636335bc5297b9f2d66f24b45784fee1d14eca
Author: James Teh <jamie@nvaccess.org>
Date:   Fri Aug 4 10:15:23 2017 +1000

    What's New: Fix typo in issue number.

commit e209542141f6b9a06545c8215dcb52d912dedebe
Merge: 287af5739 b1859b58a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 4 00:06:15 2017 +1000

    Update translations.
    
    From translation svn revision: 34521

commit b1859b58a5344efc6843deb5819092789f387fd3
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 4 00:06:15 2017 +1000

    L10n updates for: zh_TW
    From translation svn revision: 34521
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    722     371     source/locale/zh_TW/LC_MESSAGES/nvda.po
    7       7       source/locale/zh_TW/characterDescriptions.dic
    164     86      user_docs/zh_TW/userGuide.t2t
     3 files changed, 893 insertions(+), 464 deletions(-)

commit f03f892c59e1fd111d78f558ae905a294451dec4
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 4 00:06:11 2017 +1000

    L10n updates for: vi
    From translation svn revision: 34521
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    5       0       user_docs/vi/changes.t2t
     1 file changed, 5 insertions(+)

commit 5091ee7b1c5d4d2bba0285cc9d70d1c1d9cac0b1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 4 00:06:07 2017 +1000

    L10n updates for: ta
    From translation svn revision: 34521
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    514     66      source/locale/ta/LC_MESSAGES/nvda.po
    10      0       user_docs/ta/userGuide.t2t
     2 files changed, 524 insertions(+), 66 deletions(-)

commit fce2fbd7f88a0d2c947ca3f06ecab1c0aa9a14e3
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 4 00:06:04 2017 +1000

    L10n updates for: sr
    From translation svn revision: 34521
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <zvonimirek222@yandex.com>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    5       0       user_docs/sr/changes.t2t
     1 file changed, 5 insertions(+)

commit 131a9aec85ce93ab565f489afa8fe248228bc1b7
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 4 00:06:01 2017 +1000

    L10n updates for: ru
    From translation svn revision: 34521
    
    Authors:
    Ruslan Kolodyazhni <eye0@rambler.ru>
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    379     66      source/locale/ru/LC_MESSAGES/nvda.po
    9       4       user_docs/ru/changes.t2t
    140     74      user_docs/ru/userGuide.t2t
     3 files changed, 528 insertions(+), 144 deletions(-)

commit 4a39af87e71c79e77163733f4123636719465990
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 4 00:05:58 2017 +1000

    L10n updates for: ro
    From translation svn revision: 34521
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    
    Stats:
    5       7       source/locale/ro/symbols.dic
    5       0       user_docs/ro/changes.t2t
     2 files changed, 10 insertions(+), 7 deletions(-)

commit d1339d1b5a7dbd101275ddb87c0af20654ff91cd
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 4 00:05:57 2017 +1000

    L10n updates for: pt_PT
    From translation svn revision: 34521
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    
    Stats:
    2610    981     source/locale/pt_PT/LC_MESSAGES/nvda.po
    1       1       source/locale/pt_PT/symbols.dic
    70      1       user_docs/pt_PT/changes.t2t
     3 files changed, 2681 insertions(+), 983 deletions(-)

commit 7a27576c085f5e345cc272d5f3c3e67595e55bed
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 4 00:05:54 2017 +1000

    L10n updates for: pl
    From translation svn revision: 34521
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <zvonimirek222@yandex.com>
    Grzegorz Zlotowicz <g.zlotowicz@dzdn.pl>
    Hubert Meyer <killer@tyflonet.com>
    
    Stats:
    1837    306     source/locale/pl/LC_MESSAGES/nvda.po
    78      0       user_docs/pl/changes.t2t
     2 files changed, 1915 insertions(+), 306 deletions(-)

commit f0846f2c5d4281c1643b5621ed34a5937a1fc989
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 4 00:05:51 2017 +1000

    L10n updates for: nl
    From translation svn revision: 34521
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <leonard_dev@babbage.com>
    
    Stats:
    18      6       user_docs/nl/userGuide.t2t
     1 file changed, 18 insertions(+), 6 deletions(-)

commit 6f2d4428cff5a3024afc2dfc2e4706b5b6758ff0
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 4 00:05:49 2017 +1000

    L10n updates for: nb_NO
    From translation svn revision: 34521
    
    Authors:
    David Hole <balubathebrave@gmail.com>
    Bjornar Seppola <bjornar@seppola.net>
    
    Stats:
    721     382     source/locale/nb_NO/LC_MESSAGES/nvda.po
     1 file changed, 721 insertions(+), 382 deletions(-)

commit 7b59682035ba646e64c51779e94c2a3001ef11d6
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 4 00:05:46 2017 +1000

    L10n updates for: ko
    From translation svn revision: 34521
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    
    Stats:
    365     77      source/locale/ko/LC_MESSAGES/nvda.po
    54      29      user_docs/ko/changes.t2t
    173     67      user_docs/ko/userGuide.t2t
     3 files changed, 592 insertions(+), 173 deletions(-)

commit bcdb390982d8f4ac5dde7e9037af2cfb03d31cf3
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 4 00:05:43 2017 +1000

    L10n updates for: ja
    From translation svn revision: 34521
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    381     68      source/locale/ja/LC_MESSAGES/nvda.po
    25      15      user_docs/ja/userGuide.t2t
     2 files changed, 406 insertions(+), 83 deletions(-)

commit e47920c62cb7e3499c7add8da2b77a4f812b1e9e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 4 00:05:41 2017 +1000

    L10n updates for: it
    From translation svn revision: 34521
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    350     67      source/locale/it/LC_MESSAGES/nvda.po
    41      0       user_docs/it/userGuide.t2t
     2 files changed, 391 insertions(+), 67 deletions(-)

commit c2c2b811e79199f6d5bb0fd2536a518095f413a0
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 4 00:05:36 2017 +1000

    L10n updates for: hr
    From translation svn revision: 34521
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <zvonimirek222@yandex.com>
    Mario Percinic <mario.percinic@gmail.com>
    Tea Turkovic <tturkovi@gmail.com>
    
    Stats:
    348     69      source/locale/hr/LC_MESSAGES/nvda.po
    11      6       user_docs/hr/changes.t2t
    57      0       user_docs/hr/userGuide.t2t
     3 files changed, 416 insertions(+), 75 deletions(-)

commit 44597c63f895eb89c4142f0e6fbc432355a68047
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 4 00:05:34 2017 +1000

    L10n updates for: he
    From translation svn revision: 34521
    
    Authors:
    Shmuel Naaman <shmuel_naaman@yahoo.com>
    Afik Sofir <afik.sofer@gmail.com>
    
    Stats:
    708     359     source/locale/he/LC_MESSAGES/nvda.po
     1 file changed, 708 insertions(+), 359 deletions(-)

commit 3b32968e4f7f8054b729d500d41584ad24ee0f2c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 4 00:05:33 2017 +1000

    L10n updates for: gl
    From translation svn revision: 34521
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    
    Stats:
    5       0       user_docs/gl/changes.t2t
     1 file changed, 5 insertions(+)

commit f4f560051020ce597768cf0473d336a8246bb52c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 4 00:05:31 2017 +1000

    L10n updates for: fr
    From translation svn revision: 34521
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    718     735     source/locale/fr/LC_MESSAGES/nvda.po
    33      14      user_docs/fr/changes.t2t
     2 files changed, 751 insertions(+), 749 deletions(-)

commit acf7d37e4fbedb46cb09db5e6f9f27c8d455ac16
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 4 00:05:29 2017 +1000

    L10n updates for: fi
    From translation svn revision: 34521
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    8       3       user_docs/fi/changes.t2t
     1 file changed, 8 insertions(+), 3 deletions(-)

commit 0ad0ada8cb829ad0d3d80d63e0c77ea1c205e15b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 4 00:05:25 2017 +1000

    L10n updates for: es
    From translation svn revision: 34521
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    
    Stats:
    383     65      source/locale/es/LC_MESSAGES/nvda.po
    6       0       user_docs/es/changes.t2t
     2 files changed, 389 insertions(+), 65 deletions(-)

commit 35f6161989d6cadce887009f0ddf0cfe5d173a4e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 4 00:05:21 2017 +1000

    L10n updates for: de
    From translation svn revision: 34521
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    
    Stats:
    520     148     source/locale/de/LC_MESSAGES/nvda.po
    27      0       user_docs/de/changes.t2t
     2 files changed, 547 insertions(+), 148 deletions(-)

commit c6859a3bc1e5a8d12eb0119855f0dbdcf24e5cb3
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 4 00:05:19 2017 +1000

    L10n updates for: da
    From translation svn revision: 34521
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    5       0       user_docs/da/changes.t2t
    10      0       user_docs/da/userGuide.t2t
     2 files changed, 15 insertions(+)

commit e9e5bf367aa814af356a397501c47d8f1d098012
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 4 00:05:17 2017 +1000

    L10n updates for: ca
    From translation svn revision: 34521
    
    Authors:
    Ruben Alcaraz <ruben.hangar1.8@gmail.com>
    Dr. Mireia Ribera <mireia.ribera@gmail.com>
    Santi Moese <santispock@gmail.com>
    Marina Salse Rovira <salse@ub.edu>
    
    Stats:
    2313    340     source/locale/ca/LC_MESSAGES/nvda.po
    28      0       user_docs/ca/changes.t2t
     2 files changed, 2341 insertions(+), 340 deletions(-)

commit 6f123b189fb1e3390d781952d1bd6d37debb377d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Aug 4 00:05:12 2017 +1000

    L10n updates for: ar
    From translation svn revision: 34521
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    1995    308     source/locale/ar/LC_MESSAGES/nvda.po
    9       1       user_docs/ar/changes.t2t
     2 files changed, 2004 insertions(+), 309 deletions(-)

commit 287af5739185f966d9287194e4f26f5cd4cf2281
Author: James Teh <jamie@nvaccess.org>
Date:   Thu Aug 3 10:26:17 2017 +1000

    What's New, User Guide: Linguistic fixes, other minor tweaks.

commit 1ce6e94443c7f2f879fb055c551f63a2ab104203
Merge: baf0c32f4 2794b7c2f
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Wed Aug 2 14:52:24 2017 +0800

    Merge pull request #7446 from nvaccess/updateNVDAIcon
    
    Update NVDA Icon

commit 2794b7c2f67d56f5b72882828d6a9f59f0308a82
Author: Reef Turner <reef@nvaccess.org>
Date:   Wed Aug 2 13:17:28 2017 +0800

    Update NVDA icon
    
    See PR #7446
    
    Include the source `svg` so that future modifications can be made more
    easily.
    
    The previous dark grey shaded icon has been in use for nearly 10 years.
    It was first created for Windows XP, which had a light grey system tray
    which showed up the dark grey logo very well.  Recent versions of
    Windows have moved towards a darker system tray.  There is very little
    contrast with the existing NVDA icon.  The updated icon features a
    similar logo in flat white, on a solid purple background. This ensures it
    will be visible on any colour background, and uses the purple from the
    NV Access logo.
    
    The NVDA logo is a stylised blend of the letters NVDA. It has a vertical
    line on the left with a little hook at the bottom. Then from the top, a
    straight diagonal line comes down to the right. Next, a line curves in a
    semi-circle out to the right then back up to the top, and finally there
    is a little hook down to finish. The vertical and diagonal lines make
    the first part of the letter N and also the letter A (without the cross
    bar). The diagonal and curved lines form a V, and the curve is the right
    part of the D.

commit baf0c32f44aeadca8c60466e247b57f0ff185bed
Author: James Teh <jamie@nvaccess.org>
Date:   Wed Aug 2 14:56:31 2017 +1000

    Don't allow the user to use a content recognition command when already focused in a content recognition result (e.g. pressing NVDA+r, waiting for the result and pressing NVDA+r again). (#7465)

commit 4f29d8b28ea6e1cbc2b5b95e8a8845d3af43148a
Author: Reef Turner <reef@nvaccess.org>
Date:   Wed Aug 2 12:45:08 2017 +0800

    Update changes file for PR #7180
    
    When using Braille, the cursor can be configured to be a different shape
    when tethered to focus or review. Issue #7112

commit 30230177b8833adf4faf1345a8dcc9c3e94d0a7d
Author: Davy Kager <mail@davykager.nl>
Date:   Tue May 16 15:50:22 2017 +0200

    Separate braille cursor shapes for focus and review (PR #7180)
    
    Fixes #7122
    Split braille cursor shape into separate shapes for focus and review.
    
    This makes it easier to distinguish between the two.
    The default for focus remains dots 7 and 8, with only dot 8 for review.

commit 180737929aba5b92b48532b378052c07810dc7dd
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Aug 2 12:54:22 2017 +1000

    Update what's new

commit a2e15de3a349ccc17f283373743fd271e708ab2c
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Aug 2 12:37:55 2017 +1000

    Don't disable table navigation commands for layout tables if the user has explicitly chosen to have layout tables reported. (#7464)

commit ad1dc17d7de26aedcae6e11811d87f14ed4b43bc
Author: James Teh <jamie@nvaccess.org>
Date:   Wed Aug 2 12:15:26 2017 +1000

    Change the command description for NVDA+r to say "Recognizes" instead of "Recognize" for consistency. Re #7361.

commit 6371163005b840269f5aeeb15e280342557f7f9f
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Aug 2 12:04:40 2017 +1000

    Update what's new

commit 393b55b30582615d68dc109d463de9c7205826f9
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Aug 2 11:46:40 2017 +1000

    Support ARIA table attributes, skip layout tables, and don't get stuck on hidden cells (#7410)
    
    * Add support for ARIA rowindex, colindex, rowcount and colcount in Gecko / Chrome for both browse mode and focus mode.
    
    Specifically:
    * IAccessible NVDAObject properties: rowNumber, columnNumber, rowCount and columnCount now expose the ARIA values if available, otherwise falling back to the original physical table information.
    * Gecko controlField attributes: table-rownumber, table-columnnumber, table-rowcount and table-columncount now expose the ARIA values if available, otherwise falling back to the original physical table information
    *  New Gecko controlField attributes: table-physicalrownumber, table-physicalcolumnnumber, table-physicalrowcount and table-physicalcolumncount values always expose the physical table information no matter what the presentational values may be.
    * Added new class variables to BrowseModeDocumentTreeInterceptor: navigationalTableRowNumberAttributeName and navigationalTableColumnNumberAttributeName which are used by BrowseModeDocumentTreeInterceptor._getTableCellCoords in place of  the literal strings "table-rownumber" and "table-columnnumber" respectively, to allow fetching of the correct attributes containing physical table information.
    * Gecko_ia2 VirtualBuffer: override navigationalTableRowNumberAttributeName and navigationalTableColumnNumberAttributeName To provide the use of table-physicalrownumber and table-physicalcolumnnumber.
    
    * No longer include layout tables in table navigation commands
    
    * Gecko browseMode: skip over hidden table cells in table navigation commands. MSHTML already did this.

commit 82c332e9553ee444fd8f405bc27261fd8e0ac6b3
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Aug 2 11:21:54 2017 +1000

    Update What's new.

commit b4579327bb7a21aa7fe26486451d51ed9f08e857
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Aug 2 11:17:44 2017 +1000

    Report live region changes outside of web content (E.g. settings search messages, Windows update progress on logon, and Skype for business chat messages etc) (#7287)
    
    * A very simple implementation for ARIA live regions outside of web content. UIA's liveRegionChanged event, and MSAA's object_liveRegionChanged event are mapped to a new liveRegionChange event in NVDA. the base NVDAObject handles this event by simply reporting the name of the object in speech and braille.
    
    * MSHTML NVDAObject: stub out event_liveRegionChange as MSHTML already has custom live region support via virtualBuffers that is much more accurate.
    
    * Automatically report incoming messages in Skype for Business while in a chat window.
    
    * Add the EVENT_OBJECT_LIVEREGIONCHANGED MSAA constant to winUser.
    
    * For now, do not allow UI Automation live region events with the same text within a short time of each other. Multiple apps in windows 10 (Maps, Store etc) have buggy events. No runtimeID check can be made here as in many cases multiple elements in a list (E.g. store updates for each app) are firing all at the same time.
    
    * Added a _shouldAllowUIALiveRegionChangeEvent property to UIA NVDAObject. This is private as it may be changed or removed in the future when live region events are rethought in Windows 10. this property  compairs the text and time against the last liveRegion change.

commit 8948105767ee18937604a68accd2a799cb1a35ad
Author: James Teh <jamie@nvaccess.org>
Date:   Wed Aug 2 09:59:37 2017 +1000

    Update What's New.

commit 2fdb94f3ba389b1b35fc496c9a0edec213bc8285
Author: Leonard de Ruijter <leonard_dev@babbage.com>
Date:   Wed Aug 2 01:58:03 2017 +0200

    Many more control types and states have been abbreviated for braille. Please see "Control Type, State and Landmark Abbreviations" under Braille in the User Guide for a complete list. (issue #7188, PR #7248)

commit 1785d5f326b1797765c3d144a560265cbba94e5c
Author: Leonard de Ruijter <leonard_dev@babbage.com>
Date:   Wed Aug 2 01:50:06 2017 +0200

    You can now choose what context information is shown on a braille display when an object gets focus using the new "Focus context presentation" setting in the Braille Settings dialog. (issue #217, PR #7236)

commit 5527f27ec1ab183e203386cfa90c108ad53410e9
Author: James Teh <jamie@nvaccess.org>
Date:   Wed Aug 2 09:17:14 2017 +1000

    Support for the OCR engine included in Windows 10. (#7361)
    
    This accesses the UWP OCR API via code in the nvdaHelperLocalWin10 C++/CX dll.
    Users press NVDA+r to recognize the text of the current navigator object. Once recognition is complete, the result is presented in a document which can be read with the cursor keys, etc. Enter can also be pressed to click the text at the cursor.
    Much of the base content recognition functionality has been abstracted into the new contentRecog framework, allowing other recognizers to be easily implemented in future (in both NVDA core and add-ons).

commit cc0aa5d1e9b20f6911c2a9de4796f459c5cb04df
Author: James Teh <jamie@nvaccess.org>
Date:   Wed Aug 2 07:54:17 2017 +1000

    OneCore voices: Fix "Duck when outputting speech and sounds" functionality. (issue #7431, PR #7463)
    
    The driver now calls WavePlayer.idle as it should after pushing the last chunk of audio if there is no more speech in the queue.

commit 2c818d0c11192681b993ac881c9a2b6cadce6e13
Author: James Teh <jamie@nvaccess.org>
Date:   Tue Aug 1 14:53:19 2017 +1000

    Move sounds and images from miscDeps into the NVDA repo (PR #7462)
    
    Since they're specific to NVDA (not dependencies) and are quite small.

commit 6659e07c06e412008710348a3b39d3f1dccd9431
Author: James Teh <jamie@nvaccess.org>
Date:   Tue Aug 1 13:03:20 2017 +1000

    Update What's New.

commit b90069ac80b68487e1000f65e6dc4df0e9f5b1d1
Author: James Teh <jamie@nvaccess.org>
Date:   Tue Aug 1 13:02:08 2017 +1000

    Fix spurious reporting of aria-hidden focus ancestors in Firefox. (#7357)
    
    When presentationType is unavailable, isPresentableFocusAncestor should be False, just as it is for layout. Previously, it was True.
    Unfortunately, NVDA's message dialogs are sometimes briefly treated as unavailable when they get focus. We still want them to be reported. Work around this in the app module for NVDA itself.

commit 0bc88dca3f5ba4bab2bd974d677545ffc9202568
Author: James Teh <jamie@nvaccess.org>
Date:   Tue Aug 1 12:58:26 2017 +1000

    New braille translation tables (#7364)
    
    - New braille translation tables: Danish 8 dot computer braille, Lithuanian, Persian 8 dot computer braille, Persian grade 1, Slovenian 8 dot computer braille. (#6188, #6550, #6773, #7367)
    - Improved English (U.S.) 8 dot computer braille table, including support for bullets, the euro sign and accented letters. (#6836)
    - Changed the description for "Slovene grade 1" to "Slovenian grade 1" for consistency.

commit a65d498498a94ccf48bd04acbd1ea2bf8f81c432
Author: Davy Kager <dkager@users.noreply.github.com>
Date:   Tue Aug 1 04:49:38 2017 +0200

    Braille now correctly follows the selection when selecting text beyond the width of the display. For example, if you select multiple lines with shift+downArrow, braille now shows the last line you selected. (issue #5770, PR #6775)

commit 7cec3350b04ff998108f7b1fa30ae0f6fc69a45f
Author: James Teh <jamie@nvaccess.org>
Date:   Tue Aug 1 12:29:34 2017 +1000

    Change the default braille table to Unified English Braille Code grade 1. (PR #7365, issue #6952)

commit 57432f41593655ed00b70142df2a97f046e1eeae
Merge: 8eaf9b8f8 a895bef8a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 28 00:06:05 2017 +1000

    Update translations.
    
    From translation svn revision: 34291

commit a895bef8afe0518d0f50d05b61fbbd2c6b2c1f13
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 28 00:06:02 2017 +1000

    L10n updates for: vi
    From translation svn revision: 34291
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    7       2       source/locale/vi/LC_MESSAGES/nvda.po
    3       0       user_docs/vi/changes.t2t
    10      0       user_docs/vi/userGuide.t2t
     3 files changed, 20 insertions(+), 2 deletions(-)

commit b0da6f9c7f5655aae37a8bcb0201282304af18af
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 28 00:05:56 2017 +1000

    L10n updates for: sr
    From translation svn revision: 34291
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <zvonimirek222@yandex.com>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    6       1       source/locale/sr/LC_MESSAGES/nvda.po
    3       0       user_docs/sr/changes.t2t
    10      0       user_docs/sr/userGuide.t2t
     3 files changed, 19 insertions(+), 1 deletion(-)

commit b26bad943bcdab3801efcfb1bfafa4fbc3d6399c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 28 00:05:52 2017 +1000

    L10n updates for: ru
    From translation svn revision: 34291
    
    Authors:
    Ruslan Kolodyazhni <eye0@rambler.ru>
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    87      77      source/locale/ru/LC_MESSAGES/nvda.po
    30      7       user_docs/ru/changes.t2t
     2 files changed, 117 insertions(+), 84 deletions(-)

commit 2c3fe9b1fd631fed7404c5db44e09c7eaaf15b14
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 28 00:05:50 2017 +1000

    L10n updates for: ro
    From translation svn revision: 34291
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    
    Stats:
    7       2       source/locale/ro/LC_MESSAGES/nvda.po
    4       1       user_docs/ro/changes.t2t
    99      16      user_docs/ro/userGuide.t2t
     3 files changed, 110 insertions(+), 19 deletions(-)

commit 8813c859a4b1973f0f94f4ae37d976969a5d0bd8
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 28 00:05:44 2017 +1000

    L10n updates for: nl
    From translation svn revision: 34291
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <leonard_dev@babbage.com>
    
    Stats:
    73      2       user_docs/nl/userGuide.t2t
     1 file changed, 73 insertions(+), 2 deletions(-)

commit 433820b1afd9a82745ce81691bcba4baa0c13943
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 28 00:05:40 2017 +1000

    L10n updates for: ko
    From translation svn revision: 34291
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    
    Stats:
    29      0       user_docs/ko/changes.t2t
    1       0       user_docs/ko/userGuide.t2t
     2 files changed, 30 insertions(+)

commit f8123511492985dcf8c3fdfc4e87c4aab8aae8b7
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 28 00:05:38 2017 +1000

    L10n updates for: ja
    From translation svn revision: 34291
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    7       2       source/locale/ja/LC_MESSAGES/nvda.po
     1 file changed, 7 insertions(+), 2 deletions(-)

commit c789e7ff48a1482b274319c0da7548443c6e8868
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 28 00:05:36 2017 +1000

    L10n updates for: it
    From translation svn revision: 34291
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    8       3       source/locale/it/LC_MESSAGES/nvda.po
     1 file changed, 8 insertions(+), 3 deletions(-)

commit c0eed24ef70ad9b885ae8066301cd3f03f0c8b01
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 28 00:05:32 2017 +1000

    L10n updates for: hr
    From translation svn revision: 34291
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <zvonimirek222@yandex.com>
    Mario Percinic <mario.percinic@gmail.com>
    
    Stats:
    7       2       source/locale/hr/LC_MESSAGES/nvda.po
    4       1       user_docs/hr/changes.t2t
    11      1       user_docs/hr/userGuide.t2t
     3 files changed, 22 insertions(+), 4 deletions(-)

commit dbaf40d80b7f7894d932c700dd27a2c8858f73b0
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 28 00:05:29 2017 +1000

    L10n updates for: gl
    From translation svn revision: 34291
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    
    Stats:
    7       2       source/locale/gl/LC_MESSAGES/nvda.po
    3       0       user_docs/gl/changes.t2t
    10      0       user_docs/gl/userGuide.t2t
     3 files changed, 20 insertions(+), 2 deletions(-)

commit 1d8ba00a37fa0f2b206224413eb16a0dbbd7b315
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 28 00:05:27 2017 +1000

    L10n updates for: fr
    From translation svn revision: 34291
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    286     249     source/locale/fr/LC_MESSAGES/nvda.po
    3       0       user_docs/fr/changes.t2t
    10      0       user_docs/fr/userGuide.t2t
     3 files changed, 299 insertions(+), 249 deletions(-)

commit 445119006f7bb6c3391bc071e171edd645935008
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 28 00:05:26 2017 +1000

    L10n updates for: fi
    From translation svn revision: 34291
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    7       2       source/locale/fi/LC_MESSAGES/nvda.po
    4       1       user_docs/fi/changes.t2t
    10      0       user_docs/fi/userGuide.t2t
     3 files changed, 21 insertions(+), 3 deletions(-)

commit dfe8cad068cc16ea7be36fc9e054cf454800c237
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 28 00:05:24 2017 +1000

    L10n updates for: fa
    From translation svn revision: 34291
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    343     249     source/locale/fa/LC_MESSAGES/nvda.po
    6       12      user_docs/fa/changes.t2t
    31      21      user_docs/fa/userGuide.t2t
     3 files changed, 380 insertions(+), 282 deletions(-)

commit bea0e443098783b0fb3ba02b496949a89bd21e2b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 28 00:05:22 2017 +1000

    L10n updates for: es
    From translation svn revision: 34291
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    
    Stats:
    3       0       user_docs/es/changes.t2t
    11      1       user_docs/es/userGuide.t2t
     2 files changed, 14 insertions(+), 1 deletion(-)

commit d386d5bbd9a59bf5e6db189916780d76960de037
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 28 00:05:18 2017 +1000

    L10n updates for: de
    From translation svn revision: 34291
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    
    Stats:
    484     490     source/locale/de/LC_MESSAGES/nvda.po
    10      7       user_docs/de/changes.t2t
    58      43      user_docs/de/userGuide.t2t
     3 files changed, 552 insertions(+), 540 deletions(-)

commit d57396d997c711425553dcb554f522acc6acc6ff
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 28 00:05:16 2017 +1000

    L10n updates for: da
    From translation svn revision: 34291
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    40      51      source/locale/da/LC_MESSAGES/nvda.po
    47      31      user_docs/da/changes.t2t
     2 files changed, 87 insertions(+), 82 deletions(-)

commit 8eaf9b8f85eab4db1f285a0ce292d6b80cd590c7
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Jul 26 10:07:38 2017 +1000

    Update what's new

commit 9807b033c3b1dee182fa21f92bf0483c251d1dba
Author: Leonard de Ruijter <leonard_dev@babbage.com>
Date:   Wed Jul 26 02:05:43 2017 +0200

    Fixed Edge landmark detection to work for Windows languages other than English (#7333)
    
    * Also convert the aria role to lower case for landmarks in Edge elements list
    
    * Added a new landmark property to EdgeNode objects which is used for reporting and the elements list

commit b37a3f71946163844c2fd9c345eb5f34bc3d2265
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Jul 26 09:58:48 2017 +1000

    Update what's new

commit d2976e6babc44f903a9547bda3aa9875693a7360
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Jul 26 09:55:41 2017 +1000

    Fix up support of jumping over replaced content (ARIA label etc) when reading in Edge, so that it does not accidentally skip large parts of the document. (#7341)
    
    * EdgeTextInfo.UIAElementAtStartWithReplacedContent:  Ensure the element we have found in the ancestry does include a valid name, as if it has none, we'd never use it to replace content anyway. This will stop (sometimes large) chunks of the page from being non-navigable.
    * EdgeTextInfo._moveToEdgeOfReplacedContent: Correct logic so that  we really land on the edge of replaced content. Previously this would cause the first character after the replaced content to be skipped, and also cause  you to be stuck on the first character of the replaced content when moving previous character out of it. The old logic may have been confused by very old builds of Edge with bugs pre Creators Update.

commit a2dd7832ccab102a0cce566ea0c31e951fffca27
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Jul 26 09:51:17 2017 +1000

    Update what's new

commit c2bc803e75f673446b082ce806dfd6690a8ed918
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Jul 26 09:50:11 2017 +1000

    Significantly speed up heading quick navigation in Microsoft Edge by walking heading Text elements rather than looking at all paragraphs (#7343)

commit 6c2a8d4970caf85d8ea4d4ebca0a778495078fd2
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Jul 26 09:44:30 2017 +1000

    Update what's new

commit 5041673b5b8904411156c8752837738140a21aeb
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Tue Jul 25 16:42:48 2017 -0700

    Pressing Enter to close Start menu in Windows 10 no longer results in NVDA announcing search field text. re #7370. (#7375)
    
    * UIA/Search field: do not announce search field entry when searchui (start menu) is closing. re #7370.
    
    due to use of announceNewlineText, when start menu closes and when Enter is pressed, search field value will be announced, which sometimes leads to side effects such as core freeze. Address this through initOverClass in UIA.SearchField that turns this flag off if and only if we're in start menu in Windows 10.
    
    * SearchField/searchui: an overlay class just for Start menu version that disables announcement of newline text. re #7370.
    
    Reviewed by Mick Curran (NV Access): better to create an overlay class for this just for searchui. This also allows easy modifications in the future if the need arises.

commit ef223a977235463b818df49f0160a66f5e02fa25
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Jul 26 09:37:18 2017 +1000

    Update what's new

commit 4bde28c95346bb8c72bd952d8a7d87d621aa6235
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Tue Jul 25 16:34:37 2017 -0700

    UIA/ToastWin10/build 15063 and later: before announcing toasts, consult last toast message in case a repeat event was fired. re #7128 (#7376)
    
    * UIA/ToastWin10/build 15063 and later: before announcing toasts, consult last toast message to make sure it is different, caused by possible problem in uIA Core in Creators Update and later. re #7128.
    
    According to mick Curran (NV Access), UIA Core may have bugs when it comes to firing multiple toast events after using UWP's for a while, so detect this by consulting last toast message if the build is 15063 or later. This does not affect older releases such as Anniversary Update (build 14393).
    
    * Duplicate toasts: check runtime ID and time instead of name.
    
    Reviewed by Mick Curran (NV Access): check runtime ID and timestamp instead of name alone. However, in latest Windows Insider build (1623x), toasts have same runtime ID, so both this and timestamp must be checked (leave the event if runtime ID's are the same and timestamps are less than a second apart).
    
    * ToastWin10: typo (toastTimestamt -> toastTimestamp).
    
    Caught by Mick Curran (NV Access): toastTimestamt -> toastTimestamp (thanks).

commit 0401b3bc6c0a0e667c539bb5d9e8c76a70dd75b7
Author: Leonard de Ruijter <leonard_dev@babbage.com>
Date:   Tue Jul 25 07:56:56 2017 +0200

    Fixed mistake in displayModel.DisplayModelTextInfo.getTextInChunks where the wrong function name was used for super (#7437)

commit 24cc320461ad2f4fcac99d813d33905e5c54ef5e
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Jul 24 16:40:22 2017 +1000

    Pull request template: Fix typo ("this this" -> "this")

commit 9dac6ff2332ef2c450e685d805d453cf6fcdafc7
Author: James Teh <jamie@nvaccess.org>
Date:   Fri Jul 21 11:09:26 2017 +1200

    Fix broken translation template (pot) generation. (#7425)
    
    The superBrl braille display driver includes escape sequences which produce non-ASCII characters; e.g. "\xff". Due to a gettext bug, this causes xgettext to fail even though these aren't in translatable strings. See https://github.com/nvaccess/nvda/issues/2592#issuecomment-155299911.
    
    1. To work around this, declare encoding as UTF-8 for the superBrl driver.
    2. Make AppVeyor build the translation template so that builds fail for problems like this. This way, we learn about such problems long before they get to the translation system.
    3. Explicitly exclude source\comInterfaces for scons pot to avoid unknown encoding warnings. These files never contain translatable strings anyway.

commit 4bf797ac7e3419380b298cba664e77de58f54681
Merge: 86f509271 5894fa25d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 21 00:06:03 2017 +1000

    Update translations.
    
    From translation svn revision: 34112

commit 5894fa25d27fd81c4091ebb3ec47b438a3bd6183
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 21 00:06:03 2017 +1000

    L10n updates for: zh_TW
    From translation svn revision: 34112
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    1255    46      source/locale/zh_TW/LC_MESSAGES/nvda.po
    48      48      source/locale/zh_TW/characterDescriptions.dic
     2 files changed, 1303 insertions(+), 94 deletions(-)

commit 0064e208744a7398e4bbe5054fde100e3cfbbfb5
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 21 00:05:59 2017 +1000

    L10n updates for: vi
    From translation svn revision: 34112
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    1469    228     source/locale/vi/LC_MESSAGES/nvda.po
    61      0       user_docs/vi/changes.t2t
    125     56      user_docs/vi/userGuide.t2t
     3 files changed, 1655 insertions(+), 284 deletions(-)

commit c98bc64f11b467b865b0644e7023b842fc68100e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 21 00:05:55 2017 +1000

    L10n updates for: ta
    From translation svn revision: 34112
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    285     254     source/locale/ta/LC_MESSAGES/nvda.po
    103     85      user_docs/ta/userGuide.t2t
     2 files changed, 388 insertions(+), 339 deletions(-)

commit fc3d93b29d3079fce6885b65477ad2db53425a40
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 21 00:05:53 2017 +1000

    L10n updates for: sr
    From translation svn revision: 34112
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <zvonimirek222@yandex.com>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    279     248     source/locale/sr/LC_MESSAGES/nvda.po
    6       0       user_docs/sr/changes.t2t
    81      63      user_docs/sr/userGuide.t2t
     3 files changed, 366 insertions(+), 311 deletions(-)

commit 6944168344c0f1463d905d26d319deb2c7101e81
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 21 00:05:49 2017 +1000

    L10n updates for: ru
    From translation svn revision: 34112
    
    Authors:
    Ruslan Kolodyazhni <eye0@rambler.ru>
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    413     382     source/locale/ru/LC_MESSAGES/nvda.po
    18      5       user_docs/ru/userGuide.t2t
     2 files changed, 431 insertions(+), 387 deletions(-)

commit 72871235ff9a339857d00da398e6a91efdd9645f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 21 00:05:47 2017 +1000

    L10n updates for: ro
    From translation svn revision: 34112
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    
    Stats:
    280     249     source/locale/ro/LC_MESSAGES/nvda.po
    6       0       user_docs/ro/changes.t2t
     2 files changed, 286 insertions(+), 249 deletions(-)

commit 8fe12e37021e3fc3f75bb3cd4f0e498717595346
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 21 00:05:45 2017 +1000

    L10n updates for: pt_BR
    From translation svn revision: 34112
    
    Authors:
    Cleverson Casarin Uliana <clever97@gmail.com>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    
    Stats:
    280     249     source/locale/pt_BR/LC_MESSAGES/nvda.po
     1 file changed, 280 insertions(+), 249 deletions(-)

commit a8ec166ca82769a56f8301ed0c86910025c33b1c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 21 00:05:38 2017 +1000

    L10n updates for: lt
    From translation svn revision: 34112
    
    Authors:
    Paulius Leveris <paulius.leveris@gmail.com>
    Rimas Kudelis <rq@akl.lt>
    
    Stats:
    284     248     source/locale/lt/LC_MESSAGES/nvda.po
     1 file changed, 284 insertions(+), 248 deletions(-)

commit e81fab0a99c0bba723e32a294cd93fbb58064fd2
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 21 00:05:38 2017 +1000

    L10n updates for: ko
    From translation svn revision: 34112
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    
    Stats:
    442     437     source/locale/ko/LC_MESSAGES/nvda.po
     1 file changed, 442 insertions(+), 437 deletions(-)

commit db07486500d1bb1ac096c916160dc3ce8e805299
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 21 00:05:35 2017 +1000

    L10n updates for: ja
    From translation svn revision: 34112
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    287     256     source/locale/ja/LC_MESSAGES/nvda.po
    81      63      user_docs/ja/userGuide.t2t
     2 files changed, 368 insertions(+), 319 deletions(-)

commit 4278d2d54ef2b2136f81cc1444d422fe1408623c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 21 00:05:33 2017 +1000

    L10n updates for: it
    From translation svn revision: 34112
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    462     474     source/locale/it/LC_MESSAGES/nvda.po
    108     17      user_docs/it/userGuide.t2t
     2 files changed, 570 insertions(+), 491 deletions(-)

commit 2f421a00fd0255075c812fc9711c10fadfcf5e4e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 21 00:05:30 2017 +1000

    L10n updates for: hr
    From translation svn revision: 34112
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <zvonimirek222@yandex.com>
    Mario Percinic <mario.percinic@gmail.com>
    
    Stats:
    280     249     source/locale/hr/LC_MESSAGES/nvda.po
    18      12      user_docs/hr/changes.t2t
    86      61      user_docs/hr/userGuide.t2t
     3 files changed, 384 insertions(+), 322 deletions(-)

commit 82399d67737acf12a6a907c0b435b3e844cdb227
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 21 00:05:27 2017 +1000

    L10n updates for: gl
    From translation svn revision: 34112
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    
    Stats:
    280     249     source/locale/gl/LC_MESSAGES/nvda.po
    11      5       user_docs/gl/changes.t2t
    85      67      user_docs/gl/userGuide.t2t
     3 files changed, 376 insertions(+), 321 deletions(-)

commit d21ccded93afd6d981ebef48c31a4ef57c702e91
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 21 00:05:25 2017 +1000

    L10n updates for: fr
    From translation svn revision: 34112
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    8       2       user_docs/fr/changes.t2t
    80      62      user_docs/fr/userGuide.t2t
     2 files changed, 88 insertions(+), 64 deletions(-)

commit cbd344f76629957283e929c17e3d70e5f9928027
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 21 00:05:24 2017 +1000

    L10n updates for: fi
    From translation svn revision: 34112
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    285     254     source/locale/fi/LC_MESSAGES/nvda.po
    9       3       user_docs/fi/changes.t2t
    103     85      user_docs/fi/userGuide.t2t
     3 files changed, 397 insertions(+), 342 deletions(-)

commit 836f73fbf56a62fa3fd1f2e6914e08b3985fd8ed
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 21 00:05:22 2017 +1000

    L10n updates for: fa
    From translation svn revision: 34112
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    11      5       user_docs/fa/changes.t2t
    86      68      user_docs/fa/userGuide.t2t
     2 files changed, 97 insertions(+), 73 deletions(-)

commit 12b3e7d8b2233476d51943a49481408301538d27
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 21 00:05:20 2017 +1000

    L10n updates for: es
    From translation svn revision: 34112
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    
    Stats:
    280     249     source/locale/es/LC_MESSAGES/nvda.po
    11      5       user_docs/es/changes.t2t
    86      68      user_docs/es/userGuide.t2t
     3 files changed, 377 insertions(+), 322 deletions(-)

commit 13ff51fc37ba623419e90d7bb5d98b9b9bf5cd9f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 21 00:05:16 2017 +1000

    L10n updates for: de
    From translation svn revision: 34112
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    
    Stats:
    11      1       user_docs/de/changes.t2t
    78      61      user_docs/de/userGuide.t2t
     2 files changed, 89 insertions(+), 62 deletions(-)

commit 17ed3e4c03336e65864182b84b18be5b2c0ed488
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 21 00:05:15 2017 +1000

    L10n updates for: da
    From translation svn revision: 34112
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    1702    392     source/locale/da/LC_MESSAGES/nvda.po
    124     55      user_docs/da/userGuide.t2t
     2 files changed, 1826 insertions(+), 447 deletions(-)

commit eda2fc0ba8ec700d6eff84b3b1d706c9f99aa4c2
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 21 00:05:08 2017 +1000

    L10n updates for: ar
    From translation svn revision: 34112
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    59      1       user_docs/ar/changes.t2t
     1 file changed, 59 insertions(+), 1 deletion(-)

commit 86f50927187c894333ac27db5611aa510ab0a862
Author: Davy Kager <dkager@users.noreply.github.com>
Date:   Wed Jul 19 02:54:53 2017 +0200

    Remove a redundant import. (#7405)

commit 928a1bf350a227bd65dbce9dc4aa7559fef4ed62
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Jul 19 08:51:15 2017 +1000

    Update what's new

commit 45f07875c85174c3f2293e3da487e18533525db4
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Jul 19 08:48:59 2017 +1000

    Added a Braille display driver for the SuperBraille device used primarily in Taiwan. (#7352)

commit 3947698dff5e8104971277f3a759e14cadece997
Author: James Teh <jamie@nvaccess.org>
Date:   Tue Jul 18 16:28:36 2017 +1200

    Update What's New.

commit bebff19bc5e99092bfa41030173a04a314821329
Author: Leonard de Ruijter <leonard_dev@babbage.com>
Date:   Tue Jul 18 06:23:36 2017 +0200

    Fix crashes when navigating tables in Java Swing applications. (PR #7150, issue #6992)
    
    When retrieving table cell, row and column information from a JABHandler.JABContext object, the window handle of the current object is now provided when creating new JABContext objects. This avoids the need to call JABHandler.getWindowHandleFromAccContext, which sometimes causes a crash of the java application.

commit 9c18ea4d816c6a47d16207be8d8741eeaf1007a0
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Jul 18 12:42:17 2017 +1000

    Update what's new

commit a0fdbdde88f572702fd87ac7b4f22d7af314ee1d
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Tue Jul 18 12:39:23 2017 +1000

    Support Outlook 2016 signature editor (#7254)
    
    * MS Office 2016 now has a native UI Automation implementation for _WwN controls (Outlook signature editor, spell check field etc), so use this if available. However, move previous _WwN support specifically to IAccessible, as when it is at the Window level it would conflict with UI Automation.
    This change is most important for supporting the Outlook 2016 Signature editor.
    
    * Abstract rules for when navigable text should be presented in speech and braille into a _isNavigableText property on NVDAObjects. This property is currently private as the name could change.
    The rules were taken from Braille, but the checking of no readonly state for documents has been removed as this was only to protect against browse mode, which is already handled higher up in Braille.

commit a5b17a10a3b36528fdc954601939b69d9b6ad3d6
Merge: caeb19239 400cd42fa
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 14 00:05:59 2017 +1000

    Update translations.
    
    From translation svn revision: 33942

commit 400cd42fa60e09327d2e7789040922151f18e253
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 14 00:05:52 2017 +1000

    L10n updates for: ta
    From translation svn revision: 33942
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    96      136     source/locale/ta/LC_MESSAGES/nvda.po
    14      14      user_docs/ta/userGuide.t2t
     2 files changed, 110 insertions(+), 150 deletions(-)

commit 2ed1eec77ef8f5e3f864a66fbfb930ac53486b91
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 14 00:05:50 2017 +1000

    L10n updates for: sr
    From translation svn revision: 33942
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <zvonimirek222@yandex.com>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    1       4       source/locale/sr/LC_MESSAGES/nvda.po
    4       0       user_docs/sr/changes.t2t
     2 files changed, 5 insertions(+), 4 deletions(-)

commit 9d7394620827bdbc78391b9b4fccb11f5db3be5c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 14 00:05:47 2017 +1000

    L10n updates for: ru
    From translation svn revision: 33942
    
    Authors:
    Ruslan Kolodyazhni <eye0@rambler.ru>
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    105     43      source/locale/ru/LC_MESSAGES/nvda.po
     1 file changed, 105 insertions(+), 43 deletions(-)

commit 3b5e3dc78849b9d2b15844891f18c6bc5a5624d4
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 14 00:05:44 2017 +1000

    L10n updates for: ro
    From translation svn revision: 33942
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    
    Stats:
    4       0       user_docs/ro/changes.t2t
     1 file changed, 4 insertions(+)

commit e339b245902507a861d2f46a230e0cba1131f454
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 14 00:05:39 2017 +1000

    L10n updates for: nl
    From translation svn revision: 33942
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <leonard_dev@babbage.com>
    
    Stats:
    47      53      source/locale/nl/LC_MESSAGES/nvda.po
    60      54      user_docs/nl/userGuide.t2t
     2 files changed, 107 insertions(+), 107 deletions(-)

commit 5c885213c812ed58aac3b095086c231dbcdf3570
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 14 00:05:37 2017 +1000

    L10n updates for: nb_NO
    From translation svn revision: 33942
    
    Authors:
    David Hole <balubathebrave@gmail.com>
    Bjornar Seppola <bjornar@seppola.net>
    
    Stats:
    1663    455     source/locale/nb_NO/LC_MESSAGES/nvda.po
     1 file changed, 1663 insertions(+), 455 deletions(-)

commit c12a91293f30c5408af0d2fbe898c202c9f07302
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 14 00:05:35 2017 +1000

    L10n updates for: lt
    From translation svn revision: 33942
    
    Authors:
    Paulius Leveris <paulius.leveris@gmail.com>
    Rimas Kudelis <rq@akl.lt>
    
    Stats:
    1575    135     source/locale/lt/LC_MESSAGES/nvda.po
     1 file changed, 1575 insertions(+), 135 deletions(-)

commit b0f5206c67ea78f2d129661693f9d4c3a7c0bc49
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 14 00:05:35 2017 +1000

    L10n updates for: ko
    From translation svn revision: 33942
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    
    Stats:
    88      5       source/locale/ko/LC_MESSAGES/nvda.po
     1 file changed, 88 insertions(+), 5 deletions(-)

commit fd01c6d62b778c2f5a3971faddadc04fa31f2e55
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 14 00:05:33 2017 +1000

    L10n updates for: ja
    From translation svn revision: 33942
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    9       1       user_docs/ja/userGuide.t2t
     1 file changed, 9 insertions(+), 1 deletion(-)

commit 2ee95c56b4d719b108603a5c294e71d3f9def50a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 14 00:05:28 2017 +1000

    L10n updates for: hr
    From translation svn revision: 33942
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <zvonimirek222@yandex.com>
    Mario Percinic <mario.percinic@gmail.com>
    
    Stats:
    12      0       user_docs/hr/changes.t2t
     1 file changed, 12 insertions(+)

commit 97d4cb93c9ff38e20585fb8617201ee5d12e9fbb
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 14 00:05:27 2017 +1000

    L10n updates for: he
    From translation svn revision: 33942
    
    Authors:
    Shmuel Naaman <shmuel_naaman@yahoo.com>
    Afik Sofir <afik.sofer@gmail.com>
    
    Stats:
    103     103     source/locale/he/symbols.dic
     1 file changed, 103 insertions(+), 103 deletions(-)

commit 3daf8d555bb3e6ded8260efbae014989bea5dcff
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 14 00:05:26 2017 +1000

    L10n updates for: gl
    From translation svn revision: 33942
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    
    Stats:
    4       0       user_docs/gl/changes.t2t
     1 file changed, 4 insertions(+)

commit 8c6c40f1ecd0fd0cde7bed9c2433cdcdb2dff9c2
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 14 00:05:24 2017 +1000

    L10n updates for: fr
    From translation svn revision: 33942
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    2       2       source/locale/fr/LC_MESSAGES/nvda.po
    6       2       user_docs/fr/changes.t2t
    1       1       user_docs/fr/userGuide.t2t
     3 files changed, 9 insertions(+), 5 deletions(-)

commit b360d322509c4a1a6dc0136557a18595dd62b182
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 14 00:05:22 2017 +1000

    L10n updates for: fi
    From translation svn revision: 33942
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    4       0       user_docs/fi/changes.t2t
     1 file changed, 4 insertions(+)

commit 6cf515150e9b3a3df609b94b2d9e44bf47ac6c3e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 14 00:05:21 2017 +1000

    L10n updates for: fa
    From translation svn revision: 33942
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    21      9       user_docs/fa/changes.t2t
    9       1       user_docs/fa/userGuide.t2t
     2 files changed, 30 insertions(+), 10 deletions(-)

commit 1f24b0457a8728781afd7d11d2230a2d169f41bc
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 14 00:05:19 2017 +1000

    L10n updates for: es
    From translation svn revision: 33942
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    
    Stats:
    5       0       user_docs/es/changes.t2t
     1 file changed, 5 insertions(+)

commit 5caa4dbebc23580ce2a563ab1b936284f3cc36c1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 14 00:05:16 2017 +1000

    L10n updates for: de
    From translation svn revision: 33942
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    
    Stats:
    12      12      source/locale/de/LC_MESSAGES/nvda.po
     1 file changed, 12 insertions(+), 12 deletions(-)

commit caeb1923965d06c5255ac3bd6f6e850e739098af
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Mon Jul 10 22:10:05 2017 -0700

    User guide and what's new for 2017.3: spelling fixes, grammar changes, making user guide friendlier, edits to what's new. (PR #7373, issue #7371)
    
    * User guide: spelling fixes, make use of American English spellings. re #7371.
    
    Changes include:
    * Added 'Welcome to NVDA!' at the beginning of the user guide to make it even friendlier.
    * Realising: realizing.
    * Licence: license.
    * Organised: organized.
    * Combobox: combo box.
    * Capitalized features list and language names.
    
    * User guide: appModules > settings and add-ons to make it friendlier. re #7371.
    
    * User guide: tels -> tells, self-voicing > sleep mode. re #7371.
    
    * What's new: entry fixes, mostly linguistic fixes and capitalization.

commit 0fb961db459d88407bf96b3fae2dbcf461e9a654
Author: James Teh <jamie@nvaccess.org>
Date:   Mon Jul 10 17:01:31 2017 +1000

    Update What's New.

commit e45c36aef101dcd7bd27fda85c193ea445e25983
Author: James Teh <jamie@nvaccess.org>
Date:   Mon Jul 10 16:57:14 2017 +1000

    Increase default caret move timeout from 30 to 100 ms and make it configurable (PR #7201, issue #6424)
    
    - 30 ms was chosen to ensure maximum responsiveness, but this just isn't enough in the wild; e.g. in complex web editors (particularly in Chrome) or when connecting to remote terminals with connection latency.
    - This is configurable via config.conf["editableText"]["caretMoveTimeout"]. It is not exposed in the GUI, as this should only be changed by advanced users. The value is in ms, not seconds, as that's a better unit for this purpose. However, the function continues to use seconds for its arguments for backwards compatibility.
    - Previously, _hasCaretMoved slept at the end of the loop but didn't check for caret movement again. This meant that it could return False even if the caret did actually move during the last sleep. Now, the timeout check happens after the caret movement check, ensuring the correct result.
    - _hasCaretMoved now works with ms rather than seconds to avoid floating point precision errors. These precision errors could result in an extraneous additional retry.
    - Added some debug logging to help diagnose caret tracking problems in future.
    - When pressing the delete key, we often can't detect this by comparing bookmarks. Therefore, when pressing delete, compare the word at the caret (in addition to bookmarks) to detect movement.

commit 22602cd07d8346df6279afb7b0dfb47fbf80b1b7
Author: James Teh <jamie@nvaccess.org>
Date:   Mon Jul 10 15:48:22 2017 +1000

    User Guide: Link to better article about available OneCore voices and how to install them. (#7366)

commit 86d17ab79c776e22100a61a23cbbbe91e872d7ac
Author: James Teh <jamie@nvaccess.org>
Date:   Fri Jul 7 15:04:17 2017 +1000

    Update What's New.

commit 1c0d4905c21c9277e7926e985ea22a229080f23f
Author: James Teh <jamie@nvaccess.org>
Date:   Fri Jul 7 14:57:34 2017 +1000

    Support for uncontracted and contracted braille input. (PR #6449; issues #2439, #6054, #6113, #6935)
    
    Beyond the main code in brailleInput to support uncontracted/contracted input, this includes the following changes:
    * The list of braille tables has been moved out of the braille module into a separate brailleTables module. Braille tables are now added with a function rather than directly adding them to the data structure. Aside from being necessary in order to specify and check whether a table is contracted, this also makes the data about tables more extensible in future.
    * As the data structure for braille tables has now changed and is no longer ordered, this was a good opportunity to sort the list of tables alphabetically when displaying them to the user.
    * Updated to liblouis master shortly after release 3.2.0. The post 3.2.0 commits include some important back-translation fixes for UEB.
    * brailleInput is now notified when reverting config or changing config profiles. This is necessary because brailleInput now maintains some state when the input table is changed.
    * brailleInput is now initialised before braille at startup. This is because braille depends on brailleInput to get the currently untranslated input.
    * Dot7 and dot8 are now universally bound to braille input specific scripts for erase and enter. Any braille display drivers that had bindings for backspace/enter for braille input have been adjusted accordingly.
    * In the User Guide, a "Braille" section has been added above "Application Specific Features". The "Braille Control Types and States" section has been moved to a sub-section of this, and a sub-section on Braille Input has been added.
    * Added a Unicode braille input table.

commit 6d9783dfbec09e5463dce9f0aff5d07fd75ac78d
Merge: afb447959 5cf41c07b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 7 00:06:13 2017 +1000

    Update translations.
    
    From translation svn revision: 33827

commit 5cf41c07b543f224823e0da305e21fcb7b3c553e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 7 00:06:13 2017 +1000

    L10n updates for: zh_TW
    From translation svn revision: 33827
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    57      14      user_docs/zh_TW/userGuide.t2t
     1 file changed, 57 insertions(+), 14 deletions(-)

commit c602ce99c101252a5d764b089d3cb4da1092715b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 7 00:06:05 2017 +1000

    L10n updates for: ta
    From translation svn revision: 33827
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    121     41      source/locale/ta/LC_MESSAGES/nvda.po
    12      3       user_docs/ta/userGuide.t2t
     2 files changed, 133 insertions(+), 44 deletions(-)

commit d1798fd13845611068e2d5e9006e284985312d77
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 7 00:06:02 2017 +1000

    L10n updates for: sr
    From translation svn revision: 33827
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <zvonimirek222@yandex.com>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    66      4       source/locale/sr/LC_MESSAGES/nvda.po
    9       1       user_docs/sr/changes.t2t
    9       1       user_docs/sr/userGuide.t2t
     3 files changed, 84 insertions(+), 6 deletions(-)

commit 196b33742d0a42d66503fcc208198ac7be8d6227
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 7 00:05:57 2017 +1000

    L10n updates for: ro
    From translation svn revision: 33827
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    
    Stats:
    66      7       source/locale/ro/LC_MESSAGES/nvda.po
    9       1       user_docs/ro/changes.t2t
    12      3       user_docs/ro/userGuide.t2t
     3 files changed, 87 insertions(+), 11 deletions(-)

commit 7fec70fc740caf931eb13e59e7a4c251f811b523
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 7 00:05:54 2017 +1000

    L10n updates for: pt_BR
    From translation svn revision: 33827
    
    Authors:
    Cleverson Casarin Uliana <clever97@gmail.com>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    
    Stats:
    69      6       source/locale/pt_BR/LC_MESSAGES/nvda.po
     1 file changed, 69 insertions(+), 6 deletions(-)

commit fb46ae9bc0eb7fbda8df3162f7cdcb3621d3b3fc
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 7 00:05:50 2017 +1000

    L10n updates for: nl
    From translation svn revision: 33827
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <leonard_dev@babbage.com>
    
    Stats:
    87      8       source/locale/nl/LC_MESSAGES/nvda.po
     1 file changed, 87 insertions(+), 8 deletions(-)

commit f8f8231a559f89c514fa5e7401ed5031f659f7d1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 7 00:05:43 2017 +1000

    L10n updates for: ja
    From translation svn revision: 33827
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    64      5       source/locale/ja/LC_MESSAGES/nvda.po
     1 file changed, 64 insertions(+), 5 deletions(-)

commit f44a2a832078e023656e6480df569b3b99edf82f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 7 00:05:41 2017 +1000

    L10n updates for: it
    From translation svn revision: 33827
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    84      5       source/locale/it/LC_MESSAGES/nvda.po
    35      8       user_docs/it/userGuide.t2t
     2 files changed, 119 insertions(+), 13 deletions(-)

commit 8531d23098e2ae20081472a481e7726fd3d5a7fe
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 7 00:05:37 2017 +1000

    L10n updates for: hr
    From translation svn revision: 33827
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <zvonimirek222@yandex.com>
    Mario Percinic <mario.percinic@gmail.com>
    
    Stats:
    64      5       source/locale/hr/LC_MESSAGES/nvda.po
    18      1       user_docs/hr/userGuide.t2t
     2 files changed, 82 insertions(+), 6 deletions(-)

commit dfc858235c9335b35b95bc86e5088da042bb57c0
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 7 00:05:35 2017 +1000

    L10n updates for: he
    From translation svn revision: 33827
    
    Authors:
    Shmuel Naaman <shmuel_naaman@yahoo.com>
    Afik Sofir <afik.sofer@gmail.com>
    
    Stats:
    1418    210     source/locale/he/LC_MESSAGES/nvda.po
     1 file changed, 1418 insertions(+), 210 deletions(-)

commit 3bd4bc893f813c579cc43a11aea1019416cb1b5e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 7 00:05:33 2017 +1000

    L10n updates for: gl
    From translation svn revision: 33827
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    
    Stats:
    65      6       source/locale/gl/LC_MESSAGES/nvda.po
    8       0       user_docs/gl/changes.t2t
    9       1       user_docs/gl/userGuide.t2t
     3 files changed, 82 insertions(+), 7 deletions(-)

commit 1d2e2d8d56351d881ff6e751181f10fcc4d8729b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 7 00:05:31 2017 +1000

    L10n updates for: fr
    From translation svn revision: 33827
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    81      22      source/locale/fr/LC_MESSAGES/nvda.po
    12      4       user_docs/fr/changes.t2t
    12      4       user_docs/fr/userGuide.t2t
     3 files changed, 105 insertions(+), 30 deletions(-)

commit 5933fddf426d05816611b05982fb72795d39d328
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 7 00:05:29 2017 +1000

    L10n updates for: fi
    From translation svn revision: 33827
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    73      14      source/locale/fi/LC_MESSAGES/nvda.po
    10      2       user_docs/fi/changes.t2t
    9       1       user_docs/fi/userGuide.t2t
     3 files changed, 92 insertions(+), 17 deletions(-)

commit b652e95b01788c6ce14b9a1e29ec4a8ec786b8d8
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 7 00:05:25 2017 +1000

    L10n updates for: es
    From translation svn revision: 33827
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    
    Stats:
    64      5       source/locale/es/LC_MESSAGES/nvda.po
    8       0       user_docs/es/changes.t2t
    9       1       user_docs/es/userGuide.t2t
     3 files changed, 81 insertions(+), 6 deletions(-)

commit de795b6a79004e1156cd62ef818ee6285d3a24a5
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jul 7 00:05:20 2017 +1000

    L10n updates for: de
    From translation svn revision: 33827
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    
    Stats:
    76      5       source/locale/de/LC_MESSAGES/nvda.po
    11      3       user_docs/de/changes.t2t
    9       1       user_docs/de/userGuide.t2t
     3 files changed, 96 insertions(+), 9 deletions(-)

commit afb447959d558fba529d80619fc77fba1dd54d93
Author: James Teh <jamie@nvaccess.org>
Date:   Tue Jul 4 21:16:39 2017 +1000

    Fix build failure for nvdaHelperLocalWin10 on 32 bit Windows. (#7351)
    
    32 bit systems don't have the ProgramFiles(x86) environment variable. When this isn't present, fall back to the ProgramFiles environment variable, since there's only one Program Files directory on 32 bit Windows.

commit 80222e8c895ad1bf790adb70bd09765695ddbfdd
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue Jul 4 12:15:05 2017 +0800

    Fix regression #7339 (PR #7353)
    
    Regression caused by merge or placeholder support, in commit
    c8a7c00acb38fddf76af7933390684f286a8abe7.
    
    Fixes #7339

commit 66d02a1758cc21798824c5e2c52e34e49a3f4def
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Jul 4 13:55:07 2017 +1000

    Update what's new

commit ce0691182912ee79def0aaca2fbf543f817207a7
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Tue Jul 4 13:51:07 2017 +1000

    Report alerts conveied by UI Automation's systemAlert event (#7282)
    
    * Support UI Automation's systemAlert event, and provide a basic implementation that just reports the element that received the event in speech and braille, similar to focus.
    Examples of where this alert is fired are Skype for Business notifications and Microsoft Edge notifications.
    
    * Also support UIA systemAlert in braille.

commit a8637041bd422b3a263061bb47fd1a8cc0618c41
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Jul 4 13:46:00 2017 +1000

    Update what's new

commit 0fe281c3dbb3a3952023df260267a1d7b9329e2d
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Tue Jul 4 13:44:06 2017 +1000

    Add an alias appModule (hxoutlook) for Windows 10 mail (hxmail) as it now seems to be called hxoutlook in Creaters update. (#7295)

commit 302a8b81a337fc34e3424e585d5472bb5b7f31ea
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Jul 4 13:42:18 2017 +1000

    Update what's new.

commit b8fa0dfb4e8d8b261b7addb016955ffa808c233e
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Tue Jul 4 13:39:55 2017 +1000

    Excel: correctly compare excel versions as integers, not strings, allowing navigation of worksheets in Excel 2007 and 2003 again. (#7300)

commit 13fe2449997ad6e4f9cc578a4623847655f36871
Merge: eb2ae2bf8 058c9bd0a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 30 00:06:14 2017 +1000

    Update translations.
    
    From translation svn revision: 33666

commit 058c9bd0a6c08367bf248b6300ffa5c7ccc7041e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 30 00:06:05 2017 +1000

    L10n updates for: ta
    From translation svn revision: 33666
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    12      12      source/locale/ta/LC_MESSAGES/nvda.po
    81      42      user_docs/ta/userGuide.t2t
     2 files changed, 93 insertions(+), 54 deletions(-)

commit 10bd41d2c9c0af3ea14bc0e59b56f5b0c9fc013f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 30 00:06:02 2017 +1000

    L10n updates for: sr
    From translation svn revision: 33666
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <zvonimirek222@yandex.com>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    2       0       user_docs/sr/changes.t2t
    18      2       user_docs/sr/userGuide.t2t
     2 files changed, 20 insertions(+), 2 deletions(-)

commit cce5cbf10bc3f14dd085a49ebf65dfd11a561203
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 30 00:05:55 2017 +1000

    L10n updates for: ro
    From translation svn revision: 33666
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    
    Stats:
    19      2       source/locale/ro/symbols.dic
    4       1       user_docs/ro/changes.t2t
    17      0       user_docs/ro/userGuide.t2t
     3 files changed, 40 insertions(+), 3 deletions(-)

commit 424decfec2cd334bc892f658a26ce18d085803b8
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 30 00:05:50 2017 +1000

    L10n updates for: nl
    From translation svn revision: 33666
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <leonard_dev@babbage.com>
    
    Stats:
    69      86      source/locale/nl/LC_MESSAGES/nvda.po
    16      1       user_docs/nl/userGuide.t2t
     2 files changed, 85 insertions(+), 87 deletions(-)

commit 2cd41f5a29556e3b208403505503a073135ba7ef
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 30 00:05:45 2017 +1000

    L10n updates for: ko
    From translation svn revision: 33666
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    
    Stats:
    14      19      user_docs/ko/changes.t2t
    15      3       user_docs/ko/userGuide.t2t
     2 files changed, 29 insertions(+), 22 deletions(-)

commit 7f3374d0b41d0b96294173b5a563d545a05f1225
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 30 00:05:43 2017 +1000

    L10n updates for: ja
    From translation svn revision: 33666
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    6       2       source/locale/ja/LC_MESSAGES/nvda.po
    47      4       user_docs/ja/userGuide.t2t
     2 files changed, 53 insertions(+), 6 deletions(-)

commit 2992f055e7de4713c22d03d2bff74f53913a0400
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 30 00:05:36 2017 +1000

    L10n updates for: hr
    From translation svn revision: 33666
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <zvonimirek222@yandex.com>
    Mario Percinic <mario.percinic@gmail.com>
    
    Stats:
    2       0       user_docs/hr/changes.t2t
     1 file changed, 2 insertions(+)

commit 10d5d7cf87fe0cdca7484d4c1490a3634684029f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 30 00:05:34 2017 +1000

    L10n updates for: he
    From translation svn revision: 33666
    
    Authors:
    Shmuel Naaman <shmuel_naaman@yahoo.com>
    Afik Sofir <afik.sofer@gmail.com>
    
    Stats:
    164     87      source/locale/he/symbols.dic
     1 file changed, 164 insertions(+), 87 deletions(-)

commit 708924d8cadff797dd3d917a516b3e8d28c02da4
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 30 00:05:33 2017 +1000

    L10n updates for: gl
    From translation svn revision: 33666
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    
    Stats:
    2       0       user_docs/gl/changes.t2t
    16      0       user_docs/gl/userGuide.t2t
     2 files changed, 18 insertions(+)

commit 097807a4dc6e4dd8e5e814393781187e8fbcf41c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 30 00:05:30 2017 +1000

    L10n updates for: fr
    From translation svn revision: 33666
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    2       0       user_docs/fr/changes.t2t
    16      0       user_docs/fr/userGuide.t2t
     2 files changed, 18 insertions(+)

commit 47b6b14852274c35e534926cd749efc59e5f845c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 30 00:05:28 2017 +1000

    L10n updates for: fi
    From translation svn revision: 33666
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    3       3       source/locale/fi/LC_MESSAGES/nvda.po
    2       0       user_docs/fi/changes.t2t
    17      1       user_docs/fi/userGuide.t2t
     3 files changed, 22 insertions(+), 4 deletions(-)

commit 0969e9bb5c75ce033e581b0ef98c62baa36b1715
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 30 00:05:26 2017 +1000

    L10n updates for: fa
    From translation svn revision: 33666
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    2       0       user_docs/fa/changes.t2t
    17      2       user_docs/fa/userGuide.t2t
     2 files changed, 19 insertions(+), 2 deletions(-)

commit 3ba4fe386a17b55e423a824b510339be17780efc
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 30 00:05:24 2017 +1000

    L10n updates for: es
    From translation svn revision: 33666
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    
    Stats:
    2       0       user_docs/es/changes.t2t
    17      1       user_docs/es/userGuide.t2t
     2 files changed, 19 insertions(+), 1 deletion(-)

commit 6e7eba8b81b60c52727f41c30a5a515efe5ba0ee
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 30 00:05:19 2017 +1000

    L10n updates for: de
    From translation svn revision: 33666
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    
    Stats:
    1219    20      source/locale/de/LC_MESSAGES/nvda.po
    3       1       user_docs/de/changes.t2t
    20      5       user_docs/de/userGuide.t2t
     3 files changed, 1242 insertions(+), 26 deletions(-)

commit eb2ae2bf8d285d097fe822956bb99e3f2828bc1d
Author: Davy Kager <dkager@users.noreply.github.com>
Date:   Wed Jun 28 09:00:22 2017 +0200

    Make all braille landmark abbreviations translatable. (PR #7259)

commit ead778beba304eec3480e59b783791604442c915
Author: Reef Turner <reef@nvaccess.org>
Date:   Wed Jun 28 14:55:33 2017 +0800

    Update changes file for PR #7280
    
    Espeak-ng has been updated to release 1.49.1 (#7280).

commit 37fdb3b5df22d05206625ae799b803e3edbf78d1
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Wed Jun 28 14:53:12 2017 +0800

    Update espeak-ng to most recent release 1.49.1 (PR #7280)

commit 3f9732c6bb8b371fb6ba44cb8c5be9f3890e789a
Author: Reef Turner <reef@nvaccess.org>
Date:   Tue Jun 27 18:15:02 2017 +0800

    Update changes file for PR #6776
    
    Beeps for indeterminate progress bar dialogs such as the update checker only when progress bar output is configured to include beeps. Issue #6759

commit 00c96758b7eba7bc2f9a8116678ea9e93fa774a7
Author: Davy Kager <dkager@users.noreply.github.com>
Date:   Tue Jun 27 12:13:04 2017 +0200

    Indeterminate progress dialogs: only beep when done if progress bar output is configured to include beeps. (PR #6776)
    
    Fixes #6759

commit 87220e871d57db76e201413da9afb93ad3f57592
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Jun 23 15:57:52 2017 +1000

    Update what's new

commit f7c006046f9989c9c26c8d6b1518ee93112d6282
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Thu Jun 22 22:52:51 2017 -0700

    UIA objects: introduce a global suggestion list item class for Windows 10. re #6241 (#6274)
    
    * UIA handler: add proper copyright header (based on Git log archive)
    
    * UIA objects: introduce a global suggestion list item class for Windows 10. re #6241
    
    Windows 10 uses suggestions list for vairious things, including Start menu suggestions, Store recommendations, Settings app and others. Thus introduce NVDAObjects.UIA.SuggestionListItem, which derives its power from searchui.py version (searchui.py version is gone).
    
    * SearchUI: remove unneeded imports
    
    * UIA: add support for Controller For property. re #6241
    
    Controller For property is used by an element to let another element depend on values given by the source element, useful if suggestions should be listed for a search field among other possibilities.
    For now, Controller For property has been added to property to event names map in UIA Handler. A UIA object that handles this event (a search box) is next.
    
    * Revert "UIA: add support for Controller For property. re #6241"
    
    This reverts commit a3b1ce57408fc571b1f92aa38901c243a8171fad.
    
    * UIA: add support for Controller For property. re #6241
    
    Controller For property is used by an element to let another element depend on values given by the source element, useful if suggestions should be listed for a search field among other possibilities.
    For now, Controller For property has been added to property to event names map in UIA Handler. A UIA object that handles this event (a search box) is next.
    
    * NVDAObjects.UIA: introduce Search Field that'll handle controller for and announce appearance of suggestions. re #6241
    
    Coming from Windows 10 App Essentials add-on: a Search Field is now available that'll detect controller for property event and announce either 'suggestions' or 'suggestions closed' if suggestions appear or disappear, respectively. This takes care of both Start Menu and other fields in Windows 10 (works best in Anniversary Update and later).
    
    * Search Field: check if search field is focused before asking for controller for object. re #6241
    
    Review from Mick Curran (NV Access): Do not waste a function call for fetching focused element. Besides, make sure to check if the focused control is the search field before proceeding to announce appearance of suggestions.
    
    * Update copyright years, add a docstring to UIA objects (__init__).
    
    * Suggestion: a new behavior to allow NVDA to detect and announce suggestions. re #6241.
    
    Reviewed by Mick Curran (NV Access): announcement of search suggestion is something that NVDA should handle for other API's, such as suggestions in Firefox address bar, search suggestions in universal apps and so on.
    A new behavior named 'Suggestion' has been added that allows subclasses to provide custom routines when suggestions appear and disappear. This is handled by event_suggestionOpened and event_suggestionClosed, and by default NVDA will speak and braille this event.
    
    * UIA objects/Search field: use the new NVDAObjects.behaviors.Suggestion to announce suggestion appearance. re #6241.
    
    Reviewed by Mick Curran (NV Access): Based on the new Suggestion behavior mix-in, it is now possible for various objects to provide custom routines to let users know the appearance of suggestions. Thus UIA/Search Field is the first object to use this routine.
    
    * UIA objects/suggestions list: use raw UIA base tree walker to obtain suggestion list (parent). re #6241.
    
    Reviewed by Mick Curran (NV Access): it is better to use raw UIA for obtaining parent element. However, one must be careful to catch COM and value errors (COM because the element might not be there, and value because NULL pointer access is logged). The raw UIA method was also recommended by Derek Riemer.
    
    * UIA objects: updated comments, removed reference to Redstone.
    
    * UIA objects/Search field: don't allow suggestions detection be announced in Windows 10 Start menu for consistency with earlier versions of Windows. re #6241.
    
    iN Windows 10 Start menu, suggestions are announced automaticlaly, so no need to provide suggestion announcements.
    
    * NVDAObjects/behaviors: rename 'Suggestion' to 'EditableTextWithSuggestions' so the behavior can be better described. re #6241.
    
    If one inherits from 'Suggestion', the overall impression would be that the field is only going to display suggestions nad nothing else. Many suggestions are shown when text is entered, thus it is better to say 'EditableTextWithSuggestions' to better reflect what the behavior actually does.
    Also, a sound will be played to let users know the appearance of suggestions. (default vlaue).
    
    * Auto-suggestions: add a combo box in object presentation settings to configure how auto-suggestions should be announced. re #6241
    
    * User guide: document auto-suggestions notification setting. re #6241.
    
    In the user guide, an explanatory text has been added to describe what auto-suggestions are.
    
    * Auto-suggestions: either play a sound or do nothing. re #6241.
    
    Comments from Mick Curran and Jamie Teh (NV Access): no need for a separate message option when announcing appearance of auto-suggestions, as the sound cue will let the user of this fact. However, braille users should be notified of this regardless of this flag being turned on (deaf-blind users should be notified of this).
    User guide and settings dialog: changed the control type and label for auto-suggestions setting to reflect change in behavior.
    
    * Search suggestions: allow Windows 10 Start menu and Edge to provide search suggestions. re #6241.
    
    Reviewed by Mick Curran (NV Access): allow Start menu search box and Edge's address omnibar to participate in providing auto-suggestions announcement.
    
    * Config: auto-suggestion setting is now part of configspec module. re #6241
    
    * Update to miscDeps containing auto suggestions sounds.
    
    * NVDAObjects.UIA: catch UnboundLocalError for parentElement if parentElement fetcher fails. re #6241.
    
    In some cases, when Start menu opens, it isn't announced by NVDA. As a result, parent element fetcher fails when trying to instantiate suggestions list item, with a traceback that ends with UnboundLocalError. Catch this by moving the SuggestionsListItem selector to inside of the try block.
    
    * EditableTextWithSuggestions: remove braille message shown when suggestions close for consistency with other situations (such as browse mode toggle). re #6241.
    
    * NVDAObjects.UIA.SuggestionListItem: braille suggestion results as flash messages. re #6241.
    
    Suggestion from Davy Kager: provide a way to let braille users read search suggestion items. This is done by emulating some parts of speech.SpeakObjectProperties except the name and position info map will be fetched (position info map fetching is contingent on whether report position info setting is enabled from Object Presentation dialog). Ideally, NVDA objects should have a way to fetch braille flash messages for controls.
    Also reworded docstring for SuggestionListItem so it cna include other UIA-based suggestion list items such as Windows 8.x search results.
    
    * NVDAObjects.UIA.SuggestionsListItem: flash suggestion results in braille. re #6241, #6414.
    
    Instead of constructing the likely flash message, use a function used as part of Core issue 6414, which is much simpler than constructing the flash message from scratch.
    
    * UIA/SuggestionListItem/searchui: also classify Start search results context menu as a suggestions list item. re #6241.
    
    Oddly, the same behavior that's applied to suggestion items must work in Start suggestion's context menu, otherwise menu items will not be announced.

commit 5f8e7f845caab54d5740acc76079014c23fcd01b
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Jun 23 15:41:37 2017 +1000

    Update what's new

commit bd708c2ff84c83be94ae0dad0a4efff07bc5cb16
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Fri Jun 23 15:37:12 2017 +1000

    Support the date picker  in Microsoft Outlook meeting / appointment dialogs, and stop unuseful info from being announced as the dialog description. (#7219)

commit 27028de38f0ce88fc3a8e387573e9c811438ec88
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Jun 23 15:20:22 2017 +1000

    Update what's new

commit dd684d1cb88a76f604dbffa1125b201bd6887d5f
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Thu Jun 22 22:18:04 2017 -0700

    NVDAObjects/UIA: forcefully raise value change event for combo boxes that does expose value pattern yet does not raise the said event. re #6337 (#7132)
    
    Some combo boxes do expose value pattern but do not raise value change event. To get around this, selection on its children (items) will be tracked (same trick as combo boxes with no value pattern).
    
    * NVDAObjects/UIA: catch AttributeError seen in some lists. re #6337.
    
    Caught by Jamie Teh (NV Access): when searching for items in store, the media type list is sometimes shown, and this may not have the required pattern at all. If this happens, Attribute Error is raised. When handling this, catch this error first, otherwise AttributeError will continue to be raised.

commit 77cdceedd5f0ce43119295c4edf14749403ae940
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Jun 23 15:14:18 2017 +1000

    Update what's new

commit 8782a7b64e1ba567656a536f7e90a2c25554a2f5
Author: Leonard de Ruijter <leonard_dev@babbage.com>
Date:   Fri Jun 23 07:12:18 2017 +0200

    Allow quick navigation for spelling errors in MS Word using w and shift+w (#7258)
    
    * Added spelling errors to the list of quick navigation commands
    * Support for spelling error quick navigation in MS Word
    * Allow navigatingspelling/errors in the MS Word elements list
    * W is now used for for general errors/warnings in browse mode
    * Updated the user guide to include the errors quick navigation option
    * Include spelling in the labels for the Word elements list
    * Updated copyright headers
    * Changed WordDocumentSpellingErrorQuickNavItem.label to retrieve the text of the spelling error in a similar way to how this is done for comments and revisions
    
    Fixes #6942

commit fdf76b5a7157fbaca824c0beffed133ff3c548ae
Merge: 2edb1d585 c59c1c8da
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 23 00:06:20 2017 +1000

    Update translations.
    
    From translation svn revision: 33481

commit c59c1c8dac585491ae0c55a097e2b313e9ac121a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 23 00:06:19 2017 +1000

    L10n updates for: zh_TW
    From translation svn revision: 33481
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    25      25      source/locale/zh_TW/characterDescriptions.dic
     1 file changed, 25 insertions(+), 25 deletions(-)

commit 7b92f7a80b62c0303f2331786799758645793b59
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 23 00:06:09 2017 +1000

    L10n updates for: ta
    From translation svn revision: 33481
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    1195    20      source/locale/ta/LC_MESSAGES/nvda.po
     1 file changed, 1195 insertions(+), 20 deletions(-)

commit 035e620f642f363ef6b7d6a1125b4b8d9a9718a6
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 23 00:06:05 2017 +1000

    L10n updates for: sr
    From translation svn revision: 33481
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <zvonimirek222@yandex.com>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    5       1       source/locale/sr/LC_MESSAGES/nvda.po
    2       0       user_docs/sr/changes.t2t
    12      1       user_docs/sr/userGuide.t2t
     3 files changed, 19 insertions(+), 2 deletions(-)

commit 0d661eb5abb1af5a3e20462bacd319ea7ac205fa
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 23 00:06:01 2017 +1000

    L10n updates for: ru
    From translation svn revision: 33481
    
    Authors:
    Ruslan Kolodyazhni <eye0@rambler.ru>
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    1178    22      source/locale/ru/LC_MESSAGES/nvda.po
    41      0       user_docs/ru/changes.t2t
     2 files changed, 1219 insertions(+), 22 deletions(-)

commit d23641a04e12f0eb9620f627d38341f3403ee729
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 23 00:05:58 2017 +1000

    L10n updates for: ro
    From translation svn revision: 33481
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>
    Florian Ionașcu <florianionascu@hotmail.com>
    Alexandru Matei <alexandrumateistelian@gmail.com>
    Nicuşor Untilă <nicusoruntila@yahoo.com>
    
    Stats:
    78      71      source/locale/ro/LC_MESSAGES/nvda.po
    5       1       user_docs/ro/changes.t2t
    12      1       user_docs/ro/userGuide.t2t
     3 files changed, 95 insertions(+), 73 deletions(-)

commit 404acc9fc252238ba85091d5bec502c278959c91
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 23 00:05:51 2017 +1000

    L10n updates for: nl
    From translation svn revision: 33481
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <leonard_dev@babbage.com>
    
    Stats:
    1226    24      source/locale/nl/LC_MESSAGES/nvda.po
     1 file changed, 1226 insertions(+), 24 deletions(-)

commit a6aed52dca118f0aad31f777c6c3e64f876d96a3
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 23 00:05:41 2017 +1000

    L10n updates for: it
    From translation svn revision: 33481
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    1206    31      source/locale/it/LC_MESSAGES/nvda.po
     1 file changed, 1206 insertions(+), 31 deletions(-)

commit 18c8e7aa21e7092b17a2e90a29f252d6a4dc961d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 23 00:05:37 2017 +1000

    L10n updates for: hr
    From translation svn revision: 33481
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <zvonimirek222@yandex.com>
    Mario Percinic <mario.percinic@gmail.com>
    
    Stats:
    1170    20      source/locale/hr/LC_MESSAGES/nvda.po
    38      0       user_docs/hr/changes.t2t
    29      5       user_docs/hr/userGuide.t2t
     3 files changed, 1237 insertions(+), 25 deletions(-)

commit ae6ae069d57dfcb395dfd72a8f9f8b59952b503f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 23 00:05:34 2017 +1000

    L10n updates for: gl
    From translation svn revision: 33481
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    
    Stats:
    6       2       source/locale/gl/LC_MESSAGES/nvda.po
    1       1       source/locale/gl/symbols.dic
    5       0       user_docs/gl/changes.t2t
    12      1       user_docs/gl/userGuide.t2t
     4 files changed, 24 insertions(+), 4 deletions(-)

commit cbb903574fb342002d26e2b9a3e528c919dab277
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 23 00:05:31 2017 +1000

    L10n updates for: fr
    From translation svn revision: 33481
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    6       2       source/locale/fr/LC_MESSAGES/nvda.po
    7       2       user_docs/fr/changes.t2t
    12      1       user_docs/fr/userGuide.t2t
     3 files changed, 25 insertions(+), 5 deletions(-)

commit dcb06711ecd9c57ebc6687c185ff878838088db2
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 23 00:05:29 2017 +1000

    L10n updates for: fi
    From translation svn revision: 33481
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    6       2       source/locale/fi/LC_MESSAGES/nvda.po
    5       0       user_docs/fi/changes.t2t
    12      1       user_docs/fi/userGuide.t2t
     3 files changed, 23 insertions(+), 3 deletions(-)

commit 6f17512021eaf658d26ae5431d89bbf407d59f60
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 23 00:05:27 2017 +1000

    L10n updates for: fa
    From translation svn revision: 33481
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    1182    33      source/locale/fa/LC_MESSAGES/nvda.po
    17      11      user_docs/fa/changes.t2t
    46      34      user_docs/fa/userGuide.t2t
     3 files changed, 1245 insertions(+), 78 deletions(-)

commit b8b66cfc3407b16ab41b4337bd869564e53bffaa
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 23 00:05:24 2017 +1000

    L10n updates for: es
    From translation svn revision: 33481
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    
    Stats:
    6       2       source/locale/es/LC_MESSAGES/nvda.po
    1       1       source/locale/es/symbols.dic
    5       0       user_docs/es/changes.t2t
    12      1       user_docs/es/userGuide.t2t
     4 files changed, 24 insertions(+), 4 deletions(-)

commit ae50db8cca82cba4af512e3c2e5da83fec15a81f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 23 00:05:20 2017 +1000

    L10n updates for: de
    From translation svn revision: 33481
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    
    Stats:
    16      11      user_docs/de/changes.t2t
    13      2       user_docs/de/userGuide.t2t
     2 files changed, 29 insertions(+), 13 deletions(-)

commit 2edb1d58557ee5ace8cac051bb6bc8d66e8c96ab
Author: Reef Turner <reef@nvaccess.org>
Date:   Wed Jun 21 16:55:13 2017 +0800

    Update changes file
    
    For PRs:
    - #6864 - NVDA user configuration files can now be stored in the user's local application data folder. This is enabled via a setting in the registry. See 'System wide parameters' in the user guide for more details. (Issue #6812)
    - #7055 - In web browsers, NVDA now reports placeholder values for fields (specifically, aria-placeholder is now supported). (Issue #7004)

commit c8a7c00acb38fddf76af7933390684f286a8abe7
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Wed Jun 21 16:51:24 2017 +0800

    Add support for aria placeholder (PR #7055)
    
    Fixes #7004
    
    Aria-placeholder now supported in Chrome, Firefox, Edge and IE. Placeholder is reported unless the field has some content.

commit bc94508a376937b172e42b77d748b89e9b0b9e44
Author: Leonard de Ruijter <leonard_dev@babbage.com>
Date:   Wed Jun 21 10:21:42 2017 +0200

    Allow configuration to be stored in local application data (PR #6864)
    
    Fixes #6812
    
    Allow configuration to be stored in the local instead of the roaming appdata folder. For this, the `configInLocalAppData` parameter under `x86 HKEY_LOCAL_MACHINE\SOFTWARE\nvda` must be set to a value other than `0`

commit 135061dc4dc8f70215ce9202b892caf76298a977
Merge: 35dc62131 60978e7eb
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 16 00:06:13 2017 +1000

    Update translations.
    
    From translation svn revision: 33269

commit 60978e7ebcaca29df78822138ae292d5aef52bce
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 16 00:06:03 2017 +1000

    L10n updates for: ta
    From translation svn revision: 33269
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    6       2       user_docs/ta/userGuide.t2t
     1 file changed, 6 insertions(+), 2 deletions(-)

commit 9a0cacde8e9e787b487c337a1562ef261d9f6dcb
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 16 00:05:54 2017 +1000

    L10n updates for: ro
    From translation svn revision: 33269
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>, Florian Ionașcu <florianionascu@hotmail.com>, Alexandru Matei <alexandrumateistelian@gmail.com>, Nicuşor Untilă <nicusoruntila@yahoo.com>
    
    Stats:
    42      41      source/locale/ro/LC_MESSAGES/nvda.po
    3       2       user_docs/ro/changes.t2t
     2 files changed, 45 insertions(+), 43 deletions(-)

commit 8b098e9182fe83b175854bb9cbf0bb0dbad2017a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 16 00:05:52 2017 +1000

    L10n updates for: pt_BR
    From translation svn revision: 33269
    
    Authors:
    Cleverson Casarin Uliana <clever97@gmail.com>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    
    Stats:
    1169    22      source/locale/pt_BR/LC_MESSAGES/nvda.po
     1 file changed, 1169 insertions(+), 22 deletions(-)

commit 4fa4d263558a23bd283ef92760189f92022dde8a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 16 00:05:44 2017 +1000

    L10n updates for: ko
    From translation svn revision: 33269
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    
    Stats:
    1348    22      source/locale/ko/LC_MESSAGES/nvda.po
    34      0       user_docs/ko/changes.t2t
    8       4       user_docs/ko/userGuide.t2t
     3 files changed, 1390 insertions(+), 26 deletions(-)

commit 7423c37a36c6a2a0f62883eb9273f76bc881d744
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 16 00:05:41 2017 +1000

    L10n updates for: ja
    From translation svn revision: 33269
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    1167    21      source/locale/ja/LC_MESSAGES/nvda.po
     1 file changed, 1167 insertions(+), 21 deletions(-)

commit 9b51e4ca74668f7e1bcac7fe6453064d1a083488
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 16 00:05:35 2017 +1000

    L10n updates for: hr
    From translation svn revision: 33269
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <zvonimirek222@yandex.com>
    Mario Percinic <mario.percinic@gmail.com>
    
    Stats:
    3       0       user_docs/hr/userGuide.t2t
     1 file changed, 3 insertions(+)

commit 72434634b7bb194262bde5cce5de81d6fcee029e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 16 00:05:28 2017 +1000

    L10n updates for: fi
    From translation svn revision: 33269
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    3       3       source/locale/fi/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 3 deletions(-)

commit 35dc62131817e95494f7ecc4d55ce230eee0bd71
Author: James Teh <jamie@nvaccess.org>
Date:   Tue Jun 13 14:38:12 2017 +1000

    Update What's New.

commit 2ee954f8c1888843f0363cb26a7d79830985ede6
Author: James Teh <jamie@nvaccess.org>
Date:   Tue Jun 13 14:30:01 2017 +1000

    Support for Windows OneCore voices included in Windows 10. (PR #7110, issue #6159)
    
    This uses a C++/CX dll to access the UWP SpeechSynthesizer class. There are other UWP APIs we might like to access in future (e.g. OCR), so rather than making this dll specific to OneCore speech, it's called nvdaHelperLocalWin10. The build system for this dll makes it easy to add other components in future.
    In addition, this required code to generate balanced XML from an NVDA speech sequence. Although we use SSML for eSpeak, eSpeak happily accepts unbalanced (malformed) XML. OneCore speech does not. This code is in the speechXml module. This might eventually be reused to replace the ugly balanced XML code in the SAPI5 driver.
    
    Note that NVDA can no longer be built with Visual Studio 2015 Express. You must use Visual Studio 2015 Community, as you also need the Windows 10 Tools and SDK. See the updated dependencies in the readme for details.
    Also, we now bundle the VC 2015 runtime, as some systems don't have it and it is needed for OneCore Speech.

commit d8f07d3296848a215c90f308c9cb674178ebcbe6
Author: James Teh <jamie@nvaccess.org>
Date:   Fri Jun 9 16:33:04 2017 +1000

    Update What's New.

commit 8416a4d99e8bb844e4d0ac9d2882671c5ec090d0
Author: James Teh <jamie@nvaccess.org>
Date:   Fri Jun 9 16:31:26 2017 +1000

    Mathematical content (provided as MathML) is now supported in Google Chrome. (#7184)
    
    In Chrome, we use exactly the same code to retrieve MathML as we do in Firefox, so move the math code from NVDAObjects.IAccessible.mozilla into NVDAObjects.IAccessible.ia2Web (which is used by both Firefox and Chrome). We also catch COMError because this isn't yet in Chrome stable and because this can fail in Firefox too if the ISimpleDOM COM proxy isn't registered.

commit e82c068ec6585b7a053870d45554d3c562411a1d
Merge: 47337efe2 abe2361d6
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 9 00:06:11 2017 +1000

    Update translations.
    
    From translation svn revision: 33207

commit abe2361d645974abce21e229c37709acbf3ea958
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 9 00:06:08 2017 +1000

    L10n updates for: zh_CN
    From translation svn revision: 33207
    
    Authors:
    vgjh2005@gmail.com
    
    Stats:
    65      84      source/locale/zh_CN/characterDescriptions.dic
     1 file changed, 65 insertions(+), 84 deletions(-)

commit ae593bab5a383e4096fccb8d2dd0179ef10118e1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 9 00:06:00 2017 +1000

    L10n updates for: sr
    From translation svn revision: 33207
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <zvonimirek222@yandex.com>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    1166    20      source/locale/sr/LC_MESSAGES/nvda.po
    36      0       user_docs/sr/changes.t2t
    32      16      user_docs/sr/userGuide.t2t
     3 files changed, 1234 insertions(+), 36 deletions(-)

commit c5b99df34751f773094ad20f0e6b4dd631b45669
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 9 00:05:54 2017 +1000

    L10n updates for: ro
    From translation svn revision: 33207
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>, Florian Ionașcu <florianionascu@hotmail.com>, Alexandru Matei <alexandrumateistelian@gmail.com>, Nicuşor Untilă <nicusoruntila@yahoo.com>
    
    Stats:
    1164    18      source/locale/ro/LC_MESSAGES/nvda.po
    36      1       user_docs/ro/changes.t2t
    17      2       user_docs/ro/userGuide.t2t
     3 files changed, 1217 insertions(+), 21 deletions(-)

commit 4016bc73cefd88ad350a3369cdd78309467b0d9a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 9 00:05:48 2017 +1000

    L10n updates for: nl
    From translation svn revision: 33207
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <leonard_dev@babbage.com>
    
    Stats:
    11      7       user_docs/nl/userGuide.t2t
     1 file changed, 11 insertions(+), 7 deletions(-)

commit 97b441b75f3958fd88427eb43a25594b87701dcc
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 9 00:05:32 2017 +1000

    L10n updates for: gl
    From translation svn revision: 33207
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    
    Stats:
    1167    20      source/locale/gl/LC_MESSAGES/nvda.po
    36      0       user_docs/gl/changes.t2t
    21      5       user_docs/gl/userGuide.t2t
     3 files changed, 1224 insertions(+), 25 deletions(-)

commit 19c7ad54a12fa662b1db99eb1065c22acdcfd58a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 9 00:05:30 2017 +1000

    L10n updates for: fr
    From translation svn revision: 33207
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    1168    22      source/locale/fr/LC_MESSAGES/nvda.po
    36      0       user_docs/fr/changes.t2t
    21      5       user_docs/fr/userGuide.t2t
     3 files changed, 1225 insertions(+), 27 deletions(-)

commit 10c0d71534e36b1547ec72691a554a8945f44709
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 9 00:05:28 2017 +1000

    L10n updates for: fi
    From translation svn revision: 33207
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    1170    24      source/locale/fi/LC_MESSAGES/nvda.po
    37      0       user_docs/fi/changes.t2t
    24      8       user_docs/fi/userGuide.t2t
     3 files changed, 1231 insertions(+), 32 deletions(-)

commit 5ab888effcafe88fc80ea0072c97c47baeae4490
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 9 00:05:26 2017 +1000

    L10n updates for: fa
    From translation svn revision: 33207
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    36      0       user_docs/fa/changes.t2t
    20      4       user_docs/fa/userGuide.t2t
     2 files changed, 56 insertions(+), 4 deletions(-)

commit ed91fd0926801baed6266ef709881e2910bf0727
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 9 00:05:25 2017 +1000

    L10n updates for: es
    From translation svn revision: 33207
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    
    Stats:
    1172    25      source/locale/es/LC_MESSAGES/nvda.po
    36      0       user_docs/es/changes.t2t
    21      5       user_docs/es/userGuide.t2t
     3 files changed, 1229 insertions(+), 30 deletions(-)

commit 608180be14c399205f0898734b7c6a0d0972f444
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 9 00:05:20 2017 +1000

    L10n updates for: de
    From translation svn revision: 33207
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    
    Stats:
    72      18      user_docs/de/changes.t2t
    18      1       user_docs/de/userGuide.t2t
     2 files changed, 90 insertions(+), 19 deletions(-)

commit 47337efe2722e686275b1124ae22a697a3db24cf
Author: James Teh <jamie@nvaccess.org>
Date:   Wed Jun 7 15:39:03 2017 +1000

    Revert "Display model: Try to provide the correct background color for transparent text drawing (#6844)"
    
    This has been confirmed by several users as causing severe performance regressions in certain apps.
    This reverts commit 29efeda6bd90cea2467a3aec8c55980011a88bc6.
    Fixes #7251. Reverts PR #6844. Reopens issue #6467.

commit 3c71fb344b28284381a98a3dd18efc4efb3541a2
Merge: c0b5dc5c7 dd053ab50
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 2 00:06:00 2017 +1000

    Update translations.
    
    From translation svn revision: 33072

commit dd053ab5019b64cf278ea7245ee4c94e9fb9af09
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 2 00:06:00 2017 +1000

    L10n updates for: zh_TW
    From translation svn revision: 33072
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    17      17      source/locale/zh_TW/characterDescriptions.dic
     1 file changed, 17 insertions(+), 17 deletions(-)

commit 8a817a631592de80dbce9fd355ef4a41e1a7500c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 2 00:05:58 2017 +1000

    L10n updates for: zh_CN
    From translation svn revision: 33072
    
    Authors:
    vgjh2005@gmail.com
    
    Stats:
    59      0       user_docs/zh_CN/changes.t2t
     1 file changed, 59 insertions(+)

commit aee3aa0f5d71f4e5b0cb36b95a424282f89521f7
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 2 00:05:47 2017 +1000

    L10n updates for: ro
    From translation svn revision: 33072
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>, Florian Ionașcu <florianionascu@hotmail.com>, Alexandru Matei <alexandrumateistelian@gmail.com>, Nicuşor Untilă <nicusoruntila@yahoo.com>
    
    Stats:
    3       3       source/locale/ro/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 3 deletions(-)

commit 26e89278f094da5c96813943247089035811f31b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 2 00:05:39 2017 +1000

    L10n updates for: nb_NO
    From translation svn revision: 33072
    
    Authors:
    David Hole <balubathebrave@gmail.com>
    Bjornar Seppola <bjornar@seppola.net>
    
    Stats:
    1       1       source/locale/nb_NO/symbols.dic
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 763a414a7e9dea3f114da739231ed843f7baac11
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 2 00:05:33 2017 +1000

    L10n updates for: it
    From translation svn revision: 33072
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    3       5       user_docs/it/userGuide.t2t
     1 file changed, 3 insertions(+), 5 deletions(-)

commit 6f5d9734130b4f43f8a60da693d0e85cd09a91f9
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 2 00:05:17 2017 +1000

    L10n updates for: de
    From translation svn revision: 33072
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    
    Stats:
    10      4       source/locale/de/LC_MESSAGES/nvda.po
    127     122     user_docs/de/changes.t2t
    10      10      user_docs/de/userGuide.t2t
     3 files changed, 147 insertions(+), 136 deletions(-)

commit 8f923492782d07c6646ee12560f7cae14b09cef6
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jun 2 00:05:12 2017 +1000

    L10n updates for: bg
    From translation svn revision: 33072
    
    Authors:
    Zahari Yurukov <zahari.yurukov@gmail.com>
    Kostadin Kolev <k_kolev1985@mail.bg>
    
    Stats:
    1       1       source/locale/bg/LC_MESSAGES/nvda.po
    25      7       source/locale/bg/symbols.dic
     2 files changed, 26 insertions(+), 8 deletions(-)

commit c0b5dc5c716b0fb719faf2d8846e3732553a8975
Author: James Teh <jamie@nvaccess.org>
Date:   Thu Jun 1 23:39:18 2017 +1000

    Update What's New.

commit 68081f1b9dd30f390d4dd77ca80c44d163156435
Author: Davy Kager <dkager@users.noreply.github.com>
Date:   Thu Jun 1 15:32:40 2017 +0200

    Update the whole dialog in braille if a contained progress bar changes (issue #6862, PR #6880)

commit 72c82f7186bd08c9ba4ef9bbc7f9d14b867100b9
Author: James Teh <jamie@nvaccess.org>
Date:   Thu Jun 1 23:29:16 2017 +1000

    Include milliseconds in log timestamps. (PR #7163)
    
    This will make it possible to measure response time in logs. We almost always want things to respond faster than one second, so second granularity is useless for this purpose.

commit 97ed3e5656bbb0fb56bc9f35c6cb5d4aff32acaa
Author: James Teh <jamie@nvaccess.org>
Date:   Thu Jun 1 23:27:12 2017 +1000

    In browse mode, you can now select or unselect to the end of the line using shift+end even when the caret is on the last character of the line. (issue #7157, PR #7159)

commit 33205b2baadccbccabe3f590cd9354bce5bc5dfd
Merge: 7c540b75b 8798edd88
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Wed May 31 11:55:54 2017 +0800

    Merge pull request #7230 from nvaccess/fixExceptionWithBrailleMessages
    
    Fix exception: using indefinite braille messages

commit 8798edd88333ddb346312beec57184293e94b999
Author: Reef Turner <reef@nvaccess.org>
Date:   Wed May 31 11:41:39 2017 +0800

    Fix exception: using indefinite braille messages
    
    This fixes an exception when using the indefinite braille messages
    feature. For more information see comment on PR #6669
    (https://github.com/nvaccess/nvda/issues/6669#issuecomment-304929030)
    
    STR:
    - Make sure the default profile does not have the setting to show messages indefinitely.
    - Create an app-specific config profile and choose the new feature to show messages indefinitely.
    - Go to the application and trigger a message, e.g. by pressing NVDA+t to report the title bar.
    - Go to the desktop or switch out of the application.

commit 7c540b75bf1e9f4a4e619b42465f0a0382d07ba6
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed May 31 12:22:49 2017 +1000

    Update what's new

commit 0101cc4027ea124d6813679060c4e3ba49c6b28b
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed May 31 12:21:43 2017 +1000

    In Microsoft Powerpoint, the exact type of a shape is now reported when editing a slide (Examples include: triangle, circle, video, arrow), rather than just 'shape'. (#7111)
    
    * Add audio and video roles to NVDA.
    
    * Add a 'roleText' property to NVDAObjects. If its value is a string,  this string is used in place of the label looked up from the 'role' property, in both speech and braille, allowing an NVDAObject to override the presented role.
    
    * Powerpoint: ensure that all shape types are presented to the user in speech and braille.
    This Includes mapping  media shapes to audio and video roles, and for all other shapes, exposing localizable label as role text, keeping the actual role still as shape.
    For action button shapes, the action is now exposed via the name property.
    We also no longer expose the programmatic name of the shape, as this was usually wrong and was only done in the past as a hope of giving some guess as to the shape type.
    
    * Remove accidental symbols in comments.

commit 0a381d3aa1342a35105d344e69a4126eda0bc881
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed May 31 12:10:36 2017 +1000

    Update what's new

commit 1d1cabd648700d2b496fe84054a3c8306bf34935
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed May 31 12:06:48 2017 +1000

    Support browse mode in Edge where a document has a specific ARIA role of document (#6998)

commit ed2b4affd942f819595a9122b589de28e5f1bcda
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed May 31 12:02:53 2017 +1000

    Update what's new

commit e3177b55a985c7e63ea5e316ed2bc8d23a69ab65
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed May 31 12:01:45 2017 +1000

    In Microsoft Outlook message lists, report if a message is flagged (#6374)

commit 39e0f67e9590a19fa3c619b31b1c39881c3d44d7
Author: Reef Turner <reef@nvaccess.org>
Date:   Tue May 30 18:00:04 2017 +0800

    Update changes file for several PRs
    
    - PR #7169 : Editable div elements in Chrome are no longer have their label reported as their value while in browse mode. (Issue #7153)
    - PR #6396 : An unbound gesture (script_restart) has been added to allow NVDA to be restarted quickly. (PR #6396)
    - PR #6777 : A Braille setting has been added to "show messages indefinitely". (Issue #6669)
    - PR #7133 : Pressing end while in browse mode of an empty Microsoft Word document no longer causes a runtime error. (Issue #7009)
    - PR #6868 : The keyboard layout can now be set from the NVDA Welcome dialog. (Issue #6863)
    - PR #6813 : The names of "landmarks" are abbreviated in Braille (Issue #3975)

commit a6487effaed0d38c37e80d7576a02630123fcf7c
Author: Davy Kager <dkager@users.noreply.github.com>
Date:   Tue May 30 11:53:52 2017 +0200

    Abbreviate landmark names in braille (PR #6813)
    
    The names of "landmarks" are abbreviated in Braille
    
    Fixes #3975
    
    Abbreviations:
     - "landmark": "lmk"
     - "banner": "bnnr"
     - "complementary": "comp"
     - "contentinfo": "cinf"
     - "main": "main"
     - "navigation": "nav"
     - "search": "srch"
     - "form": "frm"
     - "region": "rgn"
    
    Example: "navigation landmark" becomes "lmk nav"

commit 8737fa349d378ba482cbe055489e016e8f9ff484
Author: Davy Kager <dkager@users.noreply.github.com>
Date:   Tue May 30 11:51:53 2017 +0200

    Add Keyboard layout setting to the Welcome dialog (PR #6868)
    
    The keyboard layout can now be set from the NVDA Welcome dialog.
    Fixes #6863

commit 1c068b79d5b3ba96914c0781dc1fbb4c7ed84433
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue May 30 17:50:17 2017 +0800

    Ignore RuntimeError when moving in word. (PR #7133)
    
    Pressing end while in browse mode of an empty Microsoft Word document no longer causes a runtime error.
    
    Fix for #7009

commit 6ca7499b06247e10e9ea5b5d5e5a506295282046
Author: Davy Kager <dkager@users.noreply.github.com>
Date:   Tue May 30 11:48:17 2017 +0200

    Add "No message timeout" braille setting (PR #6777)
    
    A Braille setting has been added to "show messages indefinitely".
    Fixes #6669.

commit 9403ff1a7e1d0ffb51e129c5ed9688a6da28f071
Author: Leonard de Ruijter <leonard_dev@babbage.com>
Date:   Tue May 30 11:47:17 2017 +0200

    It is now possible to assign a gesture to restart NVDA (PR #6396)
    
    An unbound gesture (script_restart) has been added to allow NVDA to be restarted quickly. (No issue number)

commit 6562515434648686cff2cf31225e444af10a71c5
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue May 30 17:45:17 2017 +0800

    Do not allow the name to be content when the object is editable (PR #7169)
    
    Editable div elements in Chrome are no longer have their label reported as their value while in browse mode.
    
    Fixes #7153

commit 0248c95d3982a1a66f2401d9c6b9a31b2cbbc5fd
Author: James Teh <jamie@nvaccess.org>
Date:   Mon May 29 22:17:19 2017 +1000

    And just like that, 2017.3 was born.

commit 3e2045827d667a3fddebee87916f64acd7c06080
Author: James Teh <jamie@nvaccess.org>
Date:   Fri May 26 22:53:33 2017 +1000

    Fix intermittent null context handle exceptions when navigating between pages in Firefox with braille enabled. (PR #7068, issue #4859)
    
    If a buffer notifies of an update just before it is terminated, it's possible that the update handler method gets queued but the buffer gets unloaded before the handler runs. In that case, the vbuf handle will be null. The update handler method now checks for this and returns early if it occurs.

commit a13505762c086ac26ddd276563ea00e93eacdcc6
Merge: bcaacb79c 6da4cd9e3
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 26 00:06:02 2017 +1000

    Update translations.
    
    From translation svn revision: 32968

commit 6da4cd9e3afdfde44d065f42895bb858891bd35f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 26 00:05:21 2017 +1000

    L10n updates for: es
    From translation svn revision: 32968
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    
    Stats:
    3       3       source/locale/es/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 3 deletions(-)

commit bcaacb79c7499534c2808d94a64626a38ccefff0
Merge: b7029ac72 dd0722b7b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon May 22 16:37:45 2017 +1000

    Update translations.
    
    From translation svn revision: 32956

commit dd0722b7b0ac935a444814b88b919c55b275b8c2
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon May 22 16:37:34 2017 +1000

    L10n updates for: sk
    From translation svn revision: 32956
    
    Authors:
    Ondrej Rosik <ondrej.rosik@gmail.com>
    Peter Vagner <peter.v@datagate.sk>
    
    Stats:
    189     6       source/locale/sk/LC_MESSAGES/nvda.po
    22      4       source/locale/sk/symbols.dic
    40      0       user_docs/sk/changes.t2t
    5       4       user_docs/sk/userGuide.t2t
     4 files changed, 256 insertions(+), 14 deletions(-)

commit 761ec10c60ba858b9b668f296d3833b131fad4e2
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon May 22 16:37:30 2017 +1000

    L10n updates for: ro
    From translation svn revision: 32956
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>, Florian Ionașcu <florianionascu@hotmail.com>, Alexandru Matei <alexandrumateistelian@gmail.com>, Nicuşor Untilă <nicusoruntila@yahoo.com>
    
    Stats:
    5       5       source/locale/ro/LC_MESSAGES/nvda.po
     1 file changed, 5 insertions(+), 5 deletions(-)

commit d370fd6025ae8818d2d65676c73ad280dfdbf67a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon May 22 16:37:28 2017 +1000

    L10n updates for: pt_BR
    From translation svn revision: 32956
    
    Authors:
    Cleverson Casarin Uliana <clever97@gmail.com>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    
    Stats:
    7       3       source/locale/pt_BR/LC_MESSAGES/nvda.po
     1 file changed, 7 insertions(+), 3 deletions(-)

commit 03ec0c6186ed26dff019b0b0dd6b87588cdac85b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon May 22 16:37:26 2017 +1000

    L10n updates for: pl
    From translation svn revision: 32956
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <zvonimirek222@yandex.com>
    Hubert Meyer <killer@tyflonet.com>
    
    Stats:
    7       3       source/locale/pl/LC_MESSAGES/nvda.po
     1 file changed, 7 insertions(+), 3 deletions(-)

commit 5fab6b67670cb3b4dcdce67ecce6b913a463b89a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon May 22 16:37:17 2017 +1000

    L10n updates for: it
    From translation svn revision: 32956
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    4       4       source/locale/it/LC_MESSAGES/nvda.po
     1 file changed, 4 insertions(+), 4 deletions(-)

commit 52e54304f3ead67f3b2db8067522c85d4c0a3cbd
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon May 22 16:37:10 2017 +1000

    L10n updates for: ga
    From translation svn revision: 32956
    
    Authors:
    Cearbhall OMeadhra <cearbhall.omeadhra@blbc.ie>
    Ronan McGuirk <ronan.p.mcguirk@gmail.com>
    Kevin Scannell <kscanne@gmail.com>
    
    Stats:
    6       2       source/locale/ga/LC_MESSAGES/nvda.po
     1 file changed, 6 insertions(+), 2 deletions(-)

commit 6d459af1ee54f1c0c6061133dfae53a79a60e7bd
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon May 22 16:37:03 2017 +1000

    L10n updates for: el
    From translation svn revision: 32956
    
    Authors:
    Irene Nakas <irnakas@gmail.com>
    Nikos Demetriou <nikosdemetriou@googlemail.com>
    access@e-rhetor.com
    
    Stats:
    192     8       source/locale/el/LC_MESSAGES/nvda.po
     1 file changed, 192 insertions(+), 8 deletions(-)

commit f7a410e5e899c843ef4d161a0b7e2813a8de973f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon May 22 16:36:57 2017 +1000

    L10n updates for: bg
    From translation svn revision: 32956
    
    Authors:
    Zahari Yurukov <zahari.yurukov@gmail.com>
    Kostadin Kolev <k_kolev1985@mail.bg>
    
    Stats:
    233     50      source/locale/bg/LC_MESSAGES/nvda.po
     1 file changed, 233 insertions(+), 50 deletions(-)

commit a182de7513c24f5256a87a4228b1fa477c1963fb
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Mon May 22 16:36:52 2017 +1000

    L10n updates for: an
    From translation svn revision: 32956
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    
    Stats:
    58      57      user_docs/an/userGuide.t2t
     1 file changed, 58 insertions(+), 57 deletions(-)

commit b7029ac7290551a94cb06e43f40d3b895f987e83
Merge: 257505dbc 09f84cc78
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 19 00:06:17 2017 +1000

    Update translations.
    
    From translation svn revision: 32881

commit 09f84cc782797b989a82fdb6348d81e868394dce
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 19 00:06:16 2017 +1000

    L10n updates for: zh_TW
    From translation svn revision: 32881
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    14      14      user_docs/zh_TW/userGuide.t2t
     1 file changed, 14 insertions(+), 14 deletions(-)

commit 322e84df3acecf74686f8aa4e3ba8aca5dd0570f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 19 00:06:10 2017 +1000

    L10n updates for: tr
    From translation svn revision: 32881
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    190     8       source/locale/tr/LC_MESSAGES/nvda.po
    16      11      user_docs/tr/changes.t2t
     2 files changed, 206 insertions(+), 19 deletions(-)

commit c9262a6f39275363281ba2249ff4c645bd54ebb9
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 19 00:05:57 2017 +1000

    L10n updates for: pt_PT
    From translation svn revision: 32881
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    
    Stats:
    1       1       source/locale/pt_PT/symbols.dic
    0       1       user_docs/pt_PT/changes.t2t
     2 files changed, 1 insertion(+), 2 deletions(-)

commit a18290585dfcb06bb62aeb78b0b779cd89492040
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 19 00:05:54 2017 +1000

    L10n updates for: pl
    From translation svn revision: 32881
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <zvonimirek222@yandex.com>
    Hubert Meyer <killer@tyflonet.com>
    
    Stats:
    20      1       source/locale/pl/symbols.dic
    12      7       user_docs/pl/changes.t2t
     2 files changed, 32 insertions(+), 8 deletions(-)

commit 780f85d2670cd0ede47722f2ca9400dc1e88d6ec
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 19 00:05:52 2017 +1000

    L10n updates for: nl
    From translation svn revision: 32881
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <leonard_dev@babbage.com>
    
    Stats:
    2       2       source/locale/nl/LC_MESSAGES/nvda.po
     1 file changed, 2 insertions(+), 2 deletions(-)

commit 42ff63f9d6c2479e9f7572b626cd0a4a2be10eb0
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 19 00:05:49 2017 +1000

    L10n updates for: nb_NO
    From translation svn revision: 32881
    
    Authors:
    David Hole <balubathebrave@gmail.com>
    Bjornar Seppola <bjornar@seppola.net>
    
    Stats:
    1       1       source/locale/nb_NO/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 7df3e0029ff67477bf42967deab0d77d8c69f357
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 19 00:05:48 2017 +1000

    L10n updates for: my
    From translation svn revision: 32881
    
    Authors:
    Benedict La hkun <lkbenedict@gmail.com>
    
    Stats:
    207     199     user_docs/my/userGuide.t2t
     1 file changed, 207 insertions(+), 199 deletions(-)

commit fca90bb8741cc6fad11a9085dc8a437b6c8ea8e6
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 19 00:05:47 2017 +1000

    L10n updates for: ko
    From translation svn revision: 32881
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    
    Stats:
    16      142     source/locale/ko/LC_MESSAGES/nvda.po
    20      11      user_docs/ko/changes.t2t
    2       1       user_docs/ko/userGuide.t2t
     3 files changed, 38 insertions(+), 154 deletions(-)

commit 937958ae97049534ce3a87bd1fe860c1d9054c4c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 19 00:05:39 2017 +1000

    L10n updates for: hu
    From translation svn revision: 32881
    
    Authors:
    Aron OcsvAri <oaron@nvda.hu>
    
    Stats:
    192     7       source/locale/hu/LC_MESSAGES/nvda.po
    19      0       source/locale/hu/symbols.dic
    40      0       user_docs/hu/changes.t2t
     3 files changed, 251 insertions(+), 7 deletions(-)

commit d7d741c0d75b7b414ae5b6d6f666d01025fd0863
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 19 00:05:35 2017 +1000

    L10n updates for: he
    From translation svn revision: 32881
    
    Authors:
    Shmuel Naaman <shmuel_naaman@yahoo.com>
    Afik Sofir <afik.sofer@gmail.com>
    
    Stats:
    6       2       source/locale/he/LC_MESSAGES/nvda.po
     1 file changed, 6 insertions(+), 2 deletions(-)

commit d087df4f9d93520f459c6b0c121c23199d015db8
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 19 00:05:32 2017 +1000

    L10n updates for: fr
    From translation svn revision: 32881
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    11      11      source/locale/fr/LC_MESSAGES/nvda.po
    19      4       source/locale/fr/symbols.dic
    1       1       user_docs/fr/userGuide.t2t
     3 files changed, 31 insertions(+), 16 deletions(-)

commit bc235b358b3221930270a71130f3630396e2fce7
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 19 00:05:30 2017 +1000

    L10n updates for: fi
    From translation svn revision: 32881
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    1       1       user_docs/fi/userGuide.t2t
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 3819ae2bd7a80c284da8de8d506758e507a77537
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 19 00:05:28 2017 +1000

    L10n updates for: fa
    From translation svn revision: 32881
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    30      11      user_docs/fa/changes.t2t
     1 file changed, 30 insertions(+), 11 deletions(-)

commit 2c76dad58a7ab20203d4ac15b30ede3f7aa0029c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 19 00:05:24 2017 +1000

    L10n updates for: es_CO
    From translation svn revision: 32881
    
    Authors:
    Jorge Zarache <reydelasmaquinas@outlook.com>
    
    Stats:
    190     7       source/locale/es_CO/LC_MESSAGES/nvda.po
     1 file changed, 190 insertions(+), 7 deletions(-)

commit 1eb89c44730748ede3638dcd6fe6a81dc4827478
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 19 00:05:19 2017 +1000

    L10n updates for: cs
    From translation svn revision: 32881
    
    Authors:
    Martina Letochova <letochova@seznam.cz>
    
    Stats:
    180     6       source/locale/cs/LC_MESSAGES/nvda.po
     1 file changed, 180 insertions(+), 6 deletions(-)

commit 7e5ba064a24d2d7f32e5876a68ddfd0fcbe782a9
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 19 00:05:09 2017 +1000

    L10n updates for: an
    From translation svn revision: 32881
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    
    Stats:
    19      1       source/locale/an/symbols.dic
    59      0       user_docs/an/changes.t2t
     2 files changed, 78 insertions(+), 1 deletion(-)

commit 257505dbc0a808dc95a3d552e9ddd87b3b4ae1de
Merge: 5d7caf45f ef9899fea
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 12 00:06:07 2017 +1000

    Update translations.
    
    From translation svn revision: 32758

commit ef9899fea18cacccef26f8bb6a1c8bfc9128657e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 12 00:06:07 2017 +1000

    L10n updates for: zh_TW
    From translation svn revision: 32758
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    6       2       source/locale/zh_TW/LC_MESSAGES/nvda.po
    117     117     source/locale/zh_TW/characterDescriptions.dic
    54      2       user_docs/zh_TW/changes.t2t
     3 files changed, 177 insertions(+), 121 deletions(-)

commit 0f97bfd5a6581c4f4e1969772b75017975bf4fca
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 12 00:06:05 2017 +1000

    L10n updates for: zh_HK
    From translation svn revision: 32758
    
    Authors:
    Eric Yip <ericycy@gmail.com>
    
    Stats:
    189     6       source/locale/zh_HK/LC_MESSAGES/nvda.po
     1 file changed, 189 insertions(+), 6 deletions(-)

commit 683d8941b86d6a75a680a150f01361b82bb2f9f5
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 12 00:06:04 2017 +1000

    L10n updates for: zh_CN
    From translation svn revision: 32758
    
    Authors:
    vgjh2005@gmail.com
    
    Stats:
    11      5       source/locale/zh_CN/LC_MESSAGES/nvda.po
     1 file changed, 11 insertions(+), 5 deletions(-)

commit ec220b48bc52668ccc7d97cf5f3fa6224a2fea44
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 12 00:06:03 2017 +1000

    L10n updates for: vi
    From translation svn revision: 32758
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    6       2       source/locale/vi/LC_MESSAGES/nvda.po
    34      15      source/locale/vi/symbols.dic
    19      12      user_docs/vi/changes.t2t
     3 files changed, 59 insertions(+), 29 deletions(-)

commit 443f9e395a5d8e9024c404519411745ed141f2c9
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 12 00:06:00 2017 +1000

    L10n updates for: tr
    From translation svn revision: 32758
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    55      1       user_docs/tr/changes.t2t
    6       5       user_docs/tr/userGuide.t2t
     2 files changed, 61 insertions(+), 6 deletions(-)

commit df19005951330eb9b718812c3e2dfcbe04fd0e05
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 12 00:05:58 2017 +1000

    L10n updates for: ta
    From translation svn revision: 32758
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    6       2       source/locale/ta/LC_MESSAGES/nvda.po
    18      16      source/locale/ta/symbols.dic
     2 files changed, 24 insertions(+), 18 deletions(-)

commit 451dbbe0dda002b3fe93bd274063d62238080c68
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 12 00:05:56 2017 +1000

    L10n updates for: sr
    From translation svn revision: 32758
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <zvonimirek222@yandex.com>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    261     260     source/locale/sr/LC_MESSAGES/nvda.po
    148     107     source/locale/sr/symbols.dic
    9       1       user_docs/sr/changes.t2t
     3 files changed, 418 insertions(+), 368 deletions(-)

commit 68364f2a4aa87b1033a83dfbb490bf1205bb7b54
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 12 00:05:55 2017 +1000

    L10n updates for: sl
    From translation svn revision: 32758
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    136     3       source/locale/sl/LC_MESSAGES/nvda.po
     1 file changed, 136 insertions(+), 3 deletions(-)

commit 087addc93adb85601931d1693df200695d1ab25d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 12 00:05:53 2017 +1000

    L10n updates for: ru
    From translation svn revision: 32758
    
    Authors:
    Ruslan Kolodyazhni <eye0@rambler.ru>
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    6       2       source/locale/ru/LC_MESSAGES/nvda.po
    102     3       source/locale/ru/symbols.dic
    23      15      user_docs/ru/changes.t2t
     3 files changed, 131 insertions(+), 20 deletions(-)

commit ec4a4771ada2d17509016430974682d236b8f005
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 12 00:05:50 2017 +1000

    L10n updates for: ro
    From translation svn revision: 32758
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>, Florian Ionașcu <florianionascu@hotmail.com>, Alexandru Matei <alexandrumateistelian@gmail.com>, Nicuşor Untilă <nicusoruntila@yahoo.com>
    
    Stats:
    6       2       source/locale/ro/LC_MESSAGES/nvda.po
    2       0       source/locale/ro/symbols.dic
    9       1       user_docs/ro/changes.t2t
     3 files changed, 17 insertions(+), 3 deletions(-)

commit 3e4d783e7dddc944d6b65b50fa361ac763324499
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 12 00:05:49 2017 +1000

    L10n updates for: pt_PT
    From translation svn revision: 32758
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    
    Stats:
    5       1       source/locale/pt_PT/LC_MESSAGES/nvda.po
    1       1       source/locale/pt_PT/characterDescriptions.dic
    3       3       source/locale/pt_PT/gestures.ini
    92      23      source/locale/pt_PT/symbols.dic
    13      0       user_docs/pt_PT/changes.t2t
     5 files changed, 114 insertions(+), 28 deletions(-)

commit 8e386f5736fc8c5b7bab576994d5476e402f56e2
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 12 00:05:46 2017 +1000

    L10n updates for: pl
    From translation svn revision: 32758
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Zvonimir Stanecic <zvonimirek222@yandex.com>
    Hubert Meyer <killer@tyflonet.com>
    
    Stats:
    1       1       source/locale/pl/symbols.dic
    2       0       user_docs/pl/changes.t2t
     2 files changed, 3 insertions(+), 1 deletion(-)

commit 779eb01327adb030d0b819ae48cbf9514c4cd1de
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 12 00:05:44 2017 +1000

    L10n updates for: nl
    From translation svn revision: 32758
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <leonard_dev@babbage.com>
    
    Stats:
    5       1       source/locale/nl/LC_MESSAGES/nvda.po
    77      12      source/locale/nl/symbols.dic
    28      20      user_docs/nl/changes.t2t
     3 files changed, 110 insertions(+), 33 deletions(-)

commit 99ba088827cb79a45f94c8b04c04394070e45f00
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 12 00:05:42 2017 +1000

    L10n updates for: nb_NO
    From translation svn revision: 32758
    
    Authors:
    David Hole <balubathebrave@gmail.com>
    Bjornar Seppola <bjornar@seppola.net>
    
    Stats:
    335     209     source/locale/nb_NO/LC_MESSAGES/nvda.po
     1 file changed, 335 insertions(+), 209 deletions(-)

commit cd555e23d127e2594c99468d7f0c2a48aa9cecdd
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 12 00:05:40 2017 +1000

    L10n updates for: ko
    From translation svn revision: 32758
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    
    Stats:
    39      39      source/locale/ko/LC_MESSAGES/nvda.po
    22      14      source/locale/ko/symbols.dic
    18      4       user_docs/ko/changes.t2t
     3 files changed, 79 insertions(+), 57 deletions(-)

commit da29861311afd8ece7c1b2f3ee02f6099f2ca494
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 12 00:05:37 2017 +1000

    L10n updates for: ja
    From translation svn revision: 32758
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    7       3       source/locale/ja/LC_MESSAGES/nvda.po
    59      0       user_docs/ja/changes.t2t
     2 files changed, 66 insertions(+), 3 deletions(-)

commit de033ea47089201735d7504870f514eb32a294a7
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 12 00:05:35 2017 +1000

    L10n updates for: it
    From translation svn revision: 32758
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    6       2       source/locale/it/LC_MESSAGES/nvda.po
    19      2       source/locale/it/symbols.dic
    10      1       user_docs/it/changes.t2t
     3 files changed, 35 insertions(+), 5 deletions(-)

commit 2b5e49280616546cb1519db6a8ed6d6beea8f83d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 12 00:05:32 2017 +1000

    L10n updates for: hr
    From translation svn revision: 32758
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <zvonimirek222@yandex.com>
    Mario Percinic <mario.percinic@gmail.com>
    
    Stats:
    6       2       source/locale/hr/LC_MESSAGES/nvda.po
    20      2       source/locale/hr/symbols.dic
    18      11      user_docs/hr/changes.t2t
    1       1       user_docs/hr/userGuide.t2t
     4 files changed, 45 insertions(+), 16 deletions(-)

commit 525048a1c90eddfce761236387543cdf4514342b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 12 00:05:29 2017 +1000

    L10n updates for: gl
    From translation svn revision: 32758
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    
    Stats:
    7       3       source/locale/gl/LC_MESSAGES/nvda.po
    20      6       source/locale/gl/symbols.dic
    12      2       user_docs/gl/changes.t2t
     3 files changed, 39 insertions(+), 11 deletions(-)

commit 39efd341094ad390b6d9a964dc9e1d7e10197028
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 12 00:05:27 2017 +1000

    L10n updates for: fr
    From translation svn revision: 32758
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    9       5       source/locale/fr/LC_MESSAGES/nvda.po
    12      5       user_docs/fr/changes.t2t
     2 files changed, 21 insertions(+), 10 deletions(-)

commit d426572eff6930b74485e0b119bb751775d02e65
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 12 00:05:25 2017 +1000

    L10n updates for: fi
    From translation svn revision: 32758
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    6       2       source/locale/fi/LC_MESSAGES/nvda.po
    22      5       source/locale/fi/symbols.dic
    17      10      user_docs/fi/changes.t2t
     3 files changed, 45 insertions(+), 17 deletions(-)

commit dba498cefc3bfbb7f1d6910ae2e79fc66c67b7a1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 12 00:05:24 2017 +1000

    L10n updates for: fa
    From translation svn revision: 32758
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    6       2       source/locale/fa/LC_MESSAGES/nvda.po
     1 file changed, 6 insertions(+), 2 deletions(-)

commit 602468502683e4ba8f303ecd8da952b88e17e083
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 12 00:05:22 2017 +1000

    L10n updates for: es
    From translation svn revision: 32758
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    
    Stats:
    8       4       source/locale/es/LC_MESSAGES/nvda.po
    19      5       source/locale/es/symbols.dic
    12      2       user_docs/es/changes.t2t
     3 files changed, 39 insertions(+), 11 deletions(-)

commit 80097d695258dfef0772fcd9959a01fee464deb4
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 12 00:05:16 2017 +1000

    L10n updates for: da
    From translation svn revision: 32758
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    7       3       source/locale/da/LC_MESSAGES/nvda.po
    9       1       user_docs/da/changes.t2t
    3       3       user_docs/da/userGuide.t2t
     3 files changed, 19 insertions(+), 7 deletions(-)

commit 6f5b1cef668b5258cd554a3867f965d8325c6202
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 12 00:05:10 2017 +1000

    L10n updates for: ar
    From translation svn revision: 32758
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    6       2       source/locale/ar/LC_MESSAGES/nvda.po
    15      7       user_docs/ar/changes.t2t
     2 files changed, 21 insertions(+), 9 deletions(-)

commit f11a98115bd449895bf08002f856130af6422acf
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 12 00:05:07 2017 +1000

    L10n updates for: an
    From translation svn revision: 32758
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    
    Stats:
    189     7       source/locale/an/LC_MESSAGES/nvda.po
     1 file changed, 189 insertions(+), 7 deletions(-)

commit 5d7caf45fbab98f1f8ad4b42735b61d29637b43e
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Thu May 11 16:19:28 2017 +0800

    Create issue and PR github templates (PR #7166)
    
    Fixes #6129
    
    Sometimes issues and pull requests are created that do not contain information required. By using a template for the creation of these issues we can provide a reminder of the information that is useful for developers / reviewers.
    
    * Create issue_template.md
    * Create PULL_REQUEST_TEMPLATE.md

commit 6c23afe9f8581fd48c935f277a9b245e22592e2d
Author: James Teh <jamie@nvaccess.org>
Date:   Mon May 8 16:06:29 2017 +1000

    What's New: Linguistic fixes, other minor tweaks and 2017.2 release blurb.

commit be84a88630226244db8b14ad958346ef900f701f
Author: James Teh <jamie@nvaccess.org>
Date:   Mon May 8 15:49:25 2017 +1000

    Disable reporting of table cell borders by default as is the case for other formatting options. (PR #7154, issue #7031)

commit e89f8154a418b847d5862589b8a09b395e8373ab
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Mon May 8 15:00:02 2017 +1000

    Fix problems navigating text in Office 2013 Skype for Business on Windows 7. (PR #7139, issue #7124)
    
    UIAUtils.UIATextRangeAttributeValueFetcher.getValue:  catch COMError if the attribute is not supported and return UIA's reservedNotSupportedValue as expected.

commit 4780f58f96a3370fa226c26075d5d8d4b1166daa
Author: James Teh <jamie@nvaccess.org>
Date:   Mon May 8 14:27:23 2017 +1000

    Update What's New.

commit b42fe0d9dd1b9e4b77ccd0373f4e36edbfa3cdf9
Author: jage9 <jj@bestmidi.com>
Date:   Mon May 8 00:24:59 2017 -0400

    Added further unicode support (PR #7096)
    
    Added support for unicode up / down arrows and fraction symbols.
    Part of issue #3805

commit 8ae9b00807b824c787eb8a96e9c22762293190b5
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Mon May 8 12:24:26 2017 +0800

    Read config path and log file path from the command line as unicode (PR #7114, issue #7113)
    
    Fixes regression where the configuration can't be saved if the config path is passed with -c on the command line.

commit 355bd2a7a1e3777ccbf847acc01b9af7a66a3101
Merge: a030bb2a9 0eda1cb1b
Author: James Teh <jamie@nvaccess.org>
Date:   Mon May 8 14:18:46 2017 +1000

    Fix cursorManager selection bugs. (PR #7131)
    
    - In browse mode, pressing shift+home after selecting forward now unselects to the beginning of the line as expected. (#5746)
    - In browse mode, select all (control+a) no longer fails to select all text if the caret is not at the start of the text. (#6909)
    - cursorManager: Fix selecting forward, then selecting backward without unselecting, then unselecting forward, and vice versa.

commit a030bb2a939de8a72bcf475a7e5f4f3f0b7b9055
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Mon May 8 13:55:33 2017 +1000

    In browse mode in Microsoft Edge, interactive tables (ARIA grids) are no longer skipped when navigating to tables with t and shift+t. (PR #7006, issue #6977)
    
    UIA browse mode: quick navigation commands for tables should work for UIA elements with a controlType of either table or dataGrid (ARIA grids).

commit 565ab3265977cc4aa4590c5febb2ac967f89498d
Merge: a148a1779 b08b04c93
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 5 00:06:09 2017 +1000

    Update translations.
    
    From translation svn revision: 32504

commit b08b04c936f1286476dd2dcf6406bf673ec2c019
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 5 00:06:09 2017 +1000

    L10n updates for: zh_TW
    From translation svn revision: 32504
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    42      42      source/locale/zh_TW/symbols.dic
     1 file changed, 42 insertions(+), 42 deletions(-)

commit dd83ce715157b4c2fb91d67cce6851a58b4a17f0
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 5 00:06:05 2017 +1000

    L10n updates for: vi
    From translation svn revision: 32504
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    7       6       source/locale/vi/LC_MESSAGES/nvda.po
    4       3       user_docs/vi/changes.t2t
     2 files changed, 11 insertions(+), 9 deletions(-)

commit a3029346419f136833486ab1735b0f14452dc2a8
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 5 00:05:58 2017 +1000

    L10n updates for: sr
    From translation svn revision: 32504
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <zvonimirek222@yandex.com>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    3       2       user_docs/sr/changes.t2t
    833     833     user_docs/sr/userGuide.t2t
     2 files changed, 836 insertions(+), 835 deletions(-)

commit 2425e36f953b04ff62ec0860fff431e3b8384154
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 5 00:05:52 2017 +1000

    L10n updates for: ro
    From translation svn revision: 32504
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>, Florian Ionașcu <florianionascu@hotmail.com>, Alexandru Matei <alexandrumateistelian@gmail.com>, Nicuşor Untilă <nicusoruntila@yahoo.com>
    
    Stats:
    2       1       user_docs/ro/changes.t2t
     1 file changed, 2 insertions(+), 1 deletion(-)

commit 8131a5a630a248589c403b7237d322dde5b8babb
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 5 00:05:51 2017 +1000

    L10n updates for: pt_PT
    From translation svn revision: 32504
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    
    Stats:
    52      0       user_docs/pt_PT/changes.t2t
    164     164     user_docs/pt_PT/userGuide.t2t
     2 files changed, 216 insertions(+), 164 deletions(-)

commit c0824c9d75915010ecb8e5025778def388b3f4d8
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 5 00:05:50 2017 +1000

    L10n updates for: pt_BR
    From translation svn revision: 32504
    
    Authors:
    Cleverson Casarin Uliana <clever97@gmail.com>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    
    Stats:
    9       9       source/locale/pt_BR/LC_MESSAGES/nvda.po
    100     1       user_docs/pt_BR/changes.t2t
    47      4       user_docs/pt_BR/userGuide.t2t
     3 files changed, 156 insertions(+), 14 deletions(-)

commit 677a716aa08694bc4aa7ff26c2024a5cffb9fbe1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 5 00:05:48 2017 +1000

    L10n updates for: pl
    From translation svn revision: 32504
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Hubert Meyer <killer@tyflonet.com>
    
    Stats:
    186     8       source/locale/pl/LC_MESSAGES/nvda.po
    1       0       user_docs/pl/changes.t2t
    6       5       user_docs/pl/userGuide.t2t
     3 files changed, 193 insertions(+), 13 deletions(-)

commit 4375f260ad264b898ecac6eaaf95655572b4ede1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 5 00:05:46 2017 +1000

    L10n updates for: nl
    From translation svn revision: 32504
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <leonard_dev@babbage.com>
    
    Stats:
    37      1       user_docs/nl/changes.t2t
     1 file changed, 37 insertions(+), 1 deletion(-)

commit d07d94e5745e7b6b226c5e284e76e7ee9f31577e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 5 00:05:42 2017 +1000

    L10n updates for: ko
    From translation svn revision: 32504
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    
    Stats:
    21      0       user_docs/ko/changes.t2t
     1 file changed, 21 insertions(+)

commit 5ec0e1b7641f31cf97ef61f1817ad7a2d4a70fd0
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 5 00:05:34 2017 +1000

    L10n updates for: hr
    From translation svn revision: 32504
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <zvonimirek222@yandex.com>
    Mario Percinic <mario.percinic@gmail.com>
    
    Stats:
    31      30      user_docs/hr/changes.t2t
     1 file changed, 31 insertions(+), 30 deletions(-)

commit 59e97e803588016803801164138456ea188506ba
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 5 00:05:31 2017 +1000

    L10n updates for: gl
    From translation svn revision: 32504
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    
    Stats:
    4       3       user_docs/gl/changes.t2t
     1 file changed, 4 insertions(+), 3 deletions(-)

commit 0f23eceb8704bd8b0e98a8c896bb0cc98ba20dc6
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 5 00:05:30 2017 +1000

    L10n updates for: ga
    From translation svn revision: 32504
    
    Authors:
    Cearbhall OMeadhra <cearbhall.omeadhra@blbc.ie>
    Ronan McGuirk <ronan.p.mcguirk@gmail.com>
    Kevin Scannell <kscanne@gmail.com>
    
    Stats:
    189     11      source/locale/ga/LC_MESSAGES/nvda.po
     1 file changed, 189 insertions(+), 11 deletions(-)

commit 2ca548290f7a36ac038a5f8d3ce2d702e6861489
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 5 00:05:29 2017 +1000

    L10n updates for: fr
    From translation svn revision: 32504
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    4       4       source/locale/fr/LC_MESSAGES/nvda.po
    8       7       user_docs/fr/changes.t2t
     2 files changed, 12 insertions(+), 11 deletions(-)

commit ba6f4a44d7791601e53faef479e50bb21f62ae80
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 5 00:05:27 2017 +1000

    L10n updates for: fi
    From translation svn revision: 32504
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    15      15      source/locale/fi/LC_MESSAGES/nvda.po
    2       1       user_docs/fi/changes.t2t
     2 files changed, 17 insertions(+), 16 deletions(-)

commit 6db3e9d533d27fa288174374960bb2022684ca97
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 5 00:05:23 2017 +1000

    L10n updates for: es
    From translation svn revision: 32504
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    
    Stats:
    4       3       user_docs/es/changes.t2t
     1 file changed, 4 insertions(+), 3 deletions(-)

commit b44dafad99be39eaa0e079fe0cf5d685f0c99f24
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri May 5 00:05:19 2017 +1000

    L10n updates for: de
    From translation svn revision: 32504
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    
    Stats:
    21      1       user_docs/de/changes.t2t
     1 file changed, 21 insertions(+), 1 deletion(-)

commit 0eda1cb1ba54935cbca74794d01c58956c09d377
Author: James Teh <jamie@nvaccess.org>
Date:   Thu May 4 17:05:51 2017 +1000

    Rename tests for consistency.

commit 8b662c7db7f0cd1579de4aba4914bb76743a5746
Author: James Teh <jamie@nvaccess.org>
Date:   Wed May 3 21:56:55 2017 +1000

    Add additional tests.

commit 28fe5b8d91e9c020283627a21d20833ceeba2af2
Author: James Teh <jamie@nvaccess.org>
Date:   Wed May 3 15:24:35 2017 +1000

    cursorManager: Fix unselecting to the beginning of the line. (#5746)

commit 11b3136a746cd9f71ddbb7858668f8f0500dbe66
Author: James Teh <jamie@nvaccess.org>
Date:   Wed May 3 15:23:25 2017 +1000

    cursorManager: Fix selecting forward, then selecting backward without unselecting, then unselecting forward, and vice versa.
    
    The selection direction wasn't being changed appropriately in the second movement.

commit 21c18e0f8f62e4d1bb9954304c2325956492226e
Author: James Teh <jamie@nvaccess.org>
Date:   Wed May 3 15:21:10 2017 +1000

    cursorManager: Fix select all when the caret is in the middle or at the end of the text. (#6909)

commit 4d91259c649ffa42221631bdd8d135a1e5cfebdf
Author: James Teh <jamie@nvaccess.org>
Date:   Wed May 3 15:16:17 2017 +1000

    Add tests for other selection behavior in cursorManager.

commit a148a1779e5fef350a70b4c0e03ab3e746784ce9
Author: James Teh <jamie@nvaccess.org>
Date:   Tue May 2 11:55:24 2017 +1000

    Update What's New.

commit 6ce4b925c4c68dc8c927c65397817d4454473a51
Author: Takuya Nishimoto <nishimotz@gmail.com>
Date:   Tue May 2 10:51:03 2017 +0900

    The message "not pressed" (reported as appropriate for a button) is now translatable as a single string. (#7071)

commit 2e9e49f57efe828ce06b8a4733159173aedcdce2
Author: James Teh <jamie@nvaccess.org>
Date:   Tue May 2 11:46:31 2017 +1000

    Adobe Acrobat Reader no longer crashes in certain PDF documents (specifically, those containing empty ActualText attributes). (PR #7035; issues #7021, #7034)
    
    * Adobe Acrobat Reader no longer crashes in certain PDF documents (specifically, those containing empty ActualText attributes).
    
    adobeAcrobat vbuf backend: get_PDDomNode can fail and return null, so check for a null pointer before trying to use it.
    
    * Address review comments.

commit f829bdc206b627e5ff930e2946edd6f82e2aefa6
Author: James Teh <jamie@nvaccess.org>
Date:   Tue May 2 11:42:53 2017 +1000

    All existing versions of SecureCRT are now supported. (PR #6847, issue #6302)

commit dd8153bfbf1fe20fc2963b236f4b2758b474b632
Author: James Teh <jamie@nvaccess.org>
Date:   Fri Apr 28 11:30:36 2017 +1000

    Update Mozilla symbols auth token, as the previous one expired.

commit bf17f93fb038db65ef30be4dd7b2714c11bfe19a
Merge: 2c6bdcd94 022c705b1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 28 00:06:10 2017 +1000

    Update translations.
    
    From translation svn revision: 32360

commit 022c705b111154c5ec8ddcf2d08f649ae56424bc
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 28 00:05:59 2017 +1000

    L10n updates for: sr
    From translation svn revision: 32360
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <zvonimirek222@yandex.com>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    78      81      source/locale/sr/LC_MESSAGES/nvda.po
    1       1       source/locale/sr/symbols.dic
    599     598     user_docs/sr/userGuide.t2t
     3 files changed, 678 insertions(+), 680 deletions(-)

commit 6717ce24388e5df9d91bdcfadfda15bf277a8eaa
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 28 00:05:55 2017 +1000

    L10n updates for: ru
    From translation svn revision: 32360
    
    Authors:
    Ruslan Kolodyazhni <eye0@rambler.ru>
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    23      3       user_docs/ru/changes.t2t
    1       1       user_docs/ru/userGuide.t2t
     2 files changed, 24 insertions(+), 4 deletions(-)

commit 6c4b68aeab2c5c7cc43b9be9119512f727f51889
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 28 00:05:51 2017 +1000

    L10n updates for: pt_PT
    From translation svn revision: 32360
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    
    Stats:
    12      11      source/locale/pt_PT/LC_MESSAGES/nvda.po
    6       5       user_docs/pt_PT/userGuide.t2t
     2 files changed, 18 insertions(+), 16 deletions(-)

commit 4bcc7ffad7a3f481ef640e0e4f10af0ef68185b4
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 28 00:05:50 2017 +1000

    L10n updates for: pt_BR
    From translation svn revision: 32360
    
    Authors:
    Cleverson Casarin Uliana <clever97@gmail.com>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    
    Stats:
    14      0       user_docs/pt_BR/changes.t2t
    5       4       user_docs/pt_BR/userGuide.t2t
     2 files changed, 19 insertions(+), 4 deletions(-)

commit 7228d4ce88e66c80c3af8053b7920b3edd707ba2
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 28 00:05:48 2017 +1000

    L10n updates for: pl
    From translation svn revision: 32360
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Hubert Meyer <killer@tyflonet.com>
    
    Stats:
    36      0       user_docs/pl/changes.t2t
     1 file changed, 36 insertions(+)

commit e933108d324b20e7011cf767ac577d8695203c3d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 28 00:05:37 2017 +1000

    L10n updates for: it
    From translation svn revision: 32360
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    50      0       user_docs/it/changes.t2t
    3       2       user_docs/it/userGuide.t2t
     2 files changed, 53 insertions(+), 2 deletions(-)

commit 959c794505490fbf6ab45afb12baab421f5ccd04
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 28 00:05:33 2017 +1000

    L10n updates for: hr
    From translation svn revision: 32360
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <zvonimirek222@yandex.com>
    Mario Percinic <mario.percinic@gmail.com>
    
    Stats:
    24      23      user_docs/hr/changes.t2t
     1 file changed, 24 insertions(+), 23 deletions(-)

commit 3748c6e4c19dab040a3dc97232f9e877a7c43196
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 28 00:05:27 2017 +1000

    L10n updates for: fi
    From translation svn revision: 32360
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    6       6       source/locale/fi/LC_MESSAGES/nvda.po
    4       4       source/locale/fi/symbols.dic
    22      22      user_docs/fi/changes.t2t
    12      12      user_docs/fi/userGuide.t2t
     4 files changed, 44 insertions(+), 44 deletions(-)

commit 3e8f93ba677de162256147fdec59b5d63580c9f5
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 28 00:05:18 2017 +1000

    L10n updates for: da
    From translation svn revision: 32360
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    7       5       source/locale/da/LC_MESSAGES/nvda.po
    23      30      user_docs/da/changes.t2t
    6       5       user_docs/da/userGuide.t2t
     3 files changed, 36 insertions(+), 40 deletions(-)

commit aeafff8d8d23ae4090318d38c783dd30f8dafe04
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 28 00:05:10 2017 +1000

    L10n updates for: ar
    From translation svn revision: 32360
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    175     6       source/locale/ar/LC_MESSAGES/nvda.po
    3       3       user_docs/ar/changes.t2t
     2 files changed, 178 insertions(+), 9 deletions(-)

commit 2c6bdcd945fb1ab4d10de5a37f9d5e87bfbbfd29
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Tue Apr 25 16:16:06 2017 -0700

    2017.2 what's new: spelling fixes, entry consistency for some items. Also add Burmese as a supported language. (#7084)

commit 6e5b272df0b08f16b354c094ac974de604ef8102
Author: Leonard de Ruijter <leonard_dev@babbage.com>
Date:   Tue Apr 25 02:57:48 2017 +0200

    Split panes are now considered layout instead of content (PR #7049)
    
    Fixes #7063

commit c9c7839e47590605ffa05cd329f6683a25666382
Merge: ca9d544c8 75c2a9273
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 21 00:06:07 2017 +1000

    Update translations.
    
    From translation svn revision: 32311

commit 75c2a9273fc8bc1ad8ce82bae41c5ae712b8fdd4
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 21 00:06:06 2017 +1000

    L10n updates for: zh_TW
    From translation svn revision: 32311
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    26      26      source/locale/zh_TW/characterDescriptions.dic
    1       1       source/locale/zh_TW/symbols.dic
    12      12      user_docs/zh_TW/userGuide.t2t
     3 files changed, 39 insertions(+), 39 deletions(-)

commit 779fe1dd5676c36adfc74dc11709ef4b86442ef3
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 21 00:06:03 2017 +1000

    L10n updates for: vi
    From translation svn revision: 32311
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    8       8       source/locale/vi/LC_MESSAGES/nvda.po
    12      1       user_docs/vi/changes.t2t
     2 files changed, 20 insertions(+), 9 deletions(-)

commit cc4f0eda25ff861597f3206a34ddafcc011c71ca
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 21 00:05:57 2017 +1000

    L10n updates for: sr
    From translation svn revision: 32311
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <zvonimirek222@yandex.com>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    7       0       user_docs/sr/changes.t2t
    114     114     user_docs/sr/userGuide.t2t
     2 files changed, 121 insertions(+), 114 deletions(-)

commit b7f9925889a67b5e9842fc9d0c0b9a99cb9537a3
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 21 00:05:53 2017 +1000

    L10n updates for: ru
    From translation svn revision: 32311
    
    Authors:
    Ruslan Kolodyazhni <eye0@rambler.ru>
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    8       6       source/locale/ru/LC_MESSAGES/nvda.po
     1 file changed, 8 insertions(+), 6 deletions(-)

commit 4b0be5b6b333f1547119dc31a96b36ea2d7e10fa
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 21 00:05:51 2017 +1000

    L10n updates for: ro
    From translation svn revision: 32311
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>, Florian Ionașcu <florianionascu@hotmail.com>, Alexandru Matei <alexandrumateistelian@gmail.com>, Nicuşor Untilă <nicusoruntila@yahoo.com>
    
    Stats:
    11      0       user_docs/ro/changes.t2t
    2       3       user_docs/ro/userGuide.t2t
     2 files changed, 13 insertions(+), 3 deletions(-)

commit d7edf7c757ce62e4e0343405593186a274379696
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 21 00:05:50 2017 +1000

    L10n updates for: pt_PT
    From translation svn revision: 32311
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    
    Stats:
    191     9       source/locale/pt_PT/LC_MESSAGES/nvda.po
    10      9       user_docs/pt_PT/userGuide.t2t
     2 files changed, 201 insertions(+), 18 deletions(-)

commit b1a90abdaef18c80ad254c68cb92327380ba0e12
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 21 00:05:49 2017 +1000

    L10n updates for: pt_BR
    From translation svn revision: 32311
    
    Authors:
    Cleverson Casarin Uliana <clever97@gmail.com>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    
    Stats:
    4       3       source/locale/pt_BR/LC_MESSAGES/nvda.po
     1 file changed, 4 insertions(+), 3 deletions(-)

commit c2d7ac97efc282fa89a493431b2ca70becadce63
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 21 00:05:45 2017 +1000

    L10n updates for: nl
    From translation svn revision: 32311
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <leonard_dev@babbage.com>
    
    Stats:
    1       1       source/locale/nl/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit e79fa1563d6a51eb17f83b3646c3367114e61708
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 21 00:05:39 2017 +1000

    L10n updates for: ja
    From translation svn revision: 32311
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    7       7       source/locale/ja/LC_MESSAGES/nvda.po
     1 file changed, 7 insertions(+), 7 deletions(-)

commit 9ffc3a03fe6526f3cee2a0b9925f371b1e831916
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 21 00:05:33 2017 +1000

    L10n updates for: hr
    From translation svn revision: 32311
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <zvonimirek222@yandex.com>
    Mario Percinic <mario.percinic@gmail.com>
    
    Stats:
    34      0       user_docs/hr/changes.t2t
     1 file changed, 34 insertions(+)

commit 0a59788c0dc937d01b3d34f33b596dc772f0e2a8
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 21 00:05:31 2017 +1000

    L10n updates for: he
    From translation svn revision: 32311
    
    Authors:
    Shmuel Naaman <shmuel_naaman@yahoo.com>
    Afik Sofir <afik.sofer@gmail.com>
    
    Stats:
    185     6       source/locale/he/LC_MESSAGES/nvda.po
     1 file changed, 185 insertions(+), 6 deletions(-)

commit 074fb8b024136371351df3cbf4cf9360e0218cfd
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 21 00:05:29 2017 +1000

    L10n updates for: gl
    From translation svn revision: 32311
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    
    Stats:
    11      0       user_docs/gl/changes.t2t
     1 file changed, 11 insertions(+)

commit c10828e6b39d99603c5eaf62e908b33a2bc0763d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 21 00:05:27 2017 +1000

    L10n updates for: fr
    From translation svn revision: 32311
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    11      0       user_docs/fr/changes.t2t
     1 file changed, 11 insertions(+)

commit ba184d3f8d31b0232e6656fffa835336abb8c689
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 21 00:05:25 2017 +1000

    L10n updates for: fi
    From translation svn revision: 32311
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    5       5       source/locale/fi/LC_MESSAGES/nvda.po
    17      6       user_docs/fi/changes.t2t
    3       3       user_docs/fi/userGuide.t2t
     3 files changed, 25 insertions(+), 14 deletions(-)

commit f49b2cca4d7a00dfac7d8cb5778f86f1c8f45125
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 21 00:05:21 2017 +1000

    L10n updates for: es
    From translation svn revision: 32311
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    
    Stats:
    11      0       user_docs/es/changes.t2t
     1 file changed, 11 insertions(+)

commit 4d3dda6c6a37ebc676e3b3a5d5c6e82584dbb538
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 21 00:05:17 2017 +1000

    L10n updates for: de
    From translation svn revision: 32311
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    
    Stats:
    13      14      user_docs/de/changes.t2t
    5       4       user_docs/de/userGuide.t2t
     2 files changed, 18 insertions(+), 18 deletions(-)

commit fcbfc734b1299ed37ff1ab538b1b68717913cb7c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 21 00:05:09 2017 +1000

    L10n updates for: ar
    From translation svn revision: 32311
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    6       0       user_docs/ar/changes.t2t
     1 file changed, 6 insertions(+)

commit ca9d544c8c806c26b85a51044743090b264f448b
Merge: 0889f95ef 20d24180a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 14 00:06:08 2017 +1000

    Update translations.
    
    From translation svn revision: 32207

commit 20d24180a69a2e29e1d90c11a8811ac91652ea95
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 14 00:06:07 2017 +1000

    L10n updates for: zh_TW
    From translation svn revision: 32207
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    31      30      source/locale/zh_TW/LC_MESSAGES/nvda.po
    12      8       source/locale/zh_TW/characterDescriptions.dic
    224     221     user_docs/zh_TW/userGuide.t2t
     3 files changed, 267 insertions(+), 259 deletions(-)

commit a279fa165de076790c368a750afe3a73a703f30b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 14 00:06:04 2017 +1000

    L10n updates for: vi
    From translation svn revision: 32207
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    52      36      source/locale/vi/LC_MESSAGES/nvda.po
    9       0       user_docs/vi/changes.t2t
    1       1       user_docs/vi/userGuide.t2t
     3 files changed, 62 insertions(+), 37 deletions(-)

commit 2dcbd918b19bee7263b6748c773ff283c507d426
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 14 00:06:00 2017 +1000

    L10n updates for: ta
    From translation svn revision: 32207
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    6       5       source/locale/ta/LC_MESSAGES/nvda.po
    1       1       user_docs/ta/userGuide.t2t
     2 files changed, 7 insertions(+), 6 deletions(-)

commit 7a0935d537af17fd8c38791643589f55da2b2af7
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 14 00:05:58 2017 +1000

    L10n updates for: sr
    From translation svn revision: 32207
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <zvonimirek222@yandex.com>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    6       4       source/locale/sr/LC_MESSAGES/nvda.po
    33      49      user_docs/sr/changes.t2t
    496     303     user_docs/sr/userGuide.t2t
     3 files changed, 535 insertions(+), 356 deletions(-)

commit f3d9e19aeed0cc210f215608a82dbd6e222bccff
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 14 00:05:57 2017 +1000

    L10n updates for: sl
    From translation svn revision: 32207
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    6       4       source/locale/sl/LC_MESSAGES/nvda.po
    1       1       user_docs/sl/userGuide.t2t
     2 files changed, 7 insertions(+), 5 deletions(-)

commit d6ebcd484feb6f2764a8fe1e373d631351cf63c1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 14 00:05:52 2017 +1000

    L10n updates for: ro
    From translation svn revision: 32207
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>, Florian Ionașcu <florianionascu@hotmail.com>, Alexandru Matei <alexandrumateistelian@gmail.com>, Nicuşor Untilă <nicusoruntila@yahoo.com>
    
    Stats:
    6       4       source/locale/ro/LC_MESSAGES/nvda.po
    13      0       user_docs/ro/changes.t2t
    1       1       user_docs/ro/userGuide.t2t
     3 files changed, 20 insertions(+), 5 deletions(-)

commit 5b69ffedb30dfbb8a70fe6dcc741e35f57846dcc
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 14 00:05:46 2017 +1000

    L10n updates for: nl
    From translation svn revision: 32207
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <leonard_dev@babbage.com>
    
    Stats:
    37      35      source/locale/nl/LC_MESSAGES/nvda.po
    3       3       user_docs/nl/userGuide.t2t
     2 files changed, 40 insertions(+), 38 deletions(-)

commit 692729f11b6b5b0253015e9b66aff92352acb0c9
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 14 00:05:43 2017 +1000

    L10n updates for: my
    From translation svn revision: 32207
    
    Authors:
    Benedict La hkun <lkbenedict@gmail.com>
    
    Stats:
    133     0       user_docs/my/changes.t2t
    46      46      user_docs/my/userGuide.t2t
     2 files changed, 179 insertions(+), 46 deletions(-)

commit c0b5ce341b67aedf00fc02110546d4d0dab97946
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 14 00:05:42 2017 +1000

    L10n updates for: ko
    From translation svn revision: 32207
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    
    Stats:
    3       3       user_docs/ko/userGuide.t2t
     1 file changed, 3 insertions(+), 3 deletions(-)

commit 8e6281dc02e969a5d21215d419a44c249fc56721
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 14 00:05:40 2017 +1000

    L10n updates for: ja
    From translation svn revision: 32207
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    9       6       source/locale/ja/LC_MESSAGES/nvda.po
    9       7       user_docs/ja/userGuide.t2t
     2 files changed, 18 insertions(+), 13 deletions(-)

commit a278380c655a22ba9cec05448d8cd9906986e06b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 14 00:05:37 2017 +1000

    L10n updates for: it
    From translation svn revision: 32207
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    7       5       source/locale/it/LC_MESSAGES/nvda.po
     1 file changed, 7 insertions(+), 5 deletions(-)

commit 2fc934dcccd81c84f3a81fa73f07ada6fd93928d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 14 00:05:33 2017 +1000

    L10n updates for: hr
    From translation svn revision: 32207
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <zvonimirek222@yandex.com>
    Mario Percinic <mario.percinic@gmail.com>
    
    Stats:
    6       4       source/locale/hr/LC_MESSAGES/nvda.po
     1 file changed, 6 insertions(+), 4 deletions(-)

commit 400ea67a8a5d10f13e129a3413b9514aad0706cc
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 14 00:05:30 2017 +1000

    L10n updates for: gl
    From translation svn revision: 32207
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    
    Stats:
    6       4       source/locale/gl/LC_MESSAGES/nvda.po
    9       0       user_docs/gl/changes.t2t
    1       1       user_docs/gl/userGuide.t2t
     3 files changed, 16 insertions(+), 5 deletions(-)

commit 9c29efa428e9b9bb22170cd9bbd6506890a175e8
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 14 00:05:27 2017 +1000

    L10n updates for: fr
    From translation svn revision: 32207
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    5       4       source/locale/fr/LC_MESSAGES/nvda.po
    11      2       user_docs/fr/changes.t2t
    1       1       user_docs/fr/userGuide.t2t
     3 files changed, 17 insertions(+), 7 deletions(-)

commit c83fe8e83af227b2f4dc7b6f22adc4788c57eff0
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 14 00:05:25 2017 +1000

    L10n updates for: fi
    From translation svn revision: 32207
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    6       5       source/locale/fi/LC_MESSAGES/nvda.po
    22      13      user_docs/fi/changes.t2t
    80      80      user_docs/fi/userGuide.t2t
     3 files changed, 108 insertions(+), 98 deletions(-)

commit c72f6261ba07fd5b83d58d3882ce20d68273d5aa
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 14 00:05:23 2017 +1000

    L10n updates for: fa
    From translation svn revision: 32207
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    6       5       source/locale/fa/LC_MESSAGES/nvda.po
    40      0       user_docs/fa/changes.t2t
    5       4       user_docs/fa/userGuide.t2t
     3 files changed, 51 insertions(+), 9 deletions(-)

commit dde085297b9eb27e32835e16d8e67d83fbf80492
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 14 00:05:20 2017 +1000

    L10n updates for: es
    From translation svn revision: 32207
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    
    Stats:
    6       4       source/locale/es/LC_MESSAGES/nvda.po
    9       0       user_docs/es/changes.t2t
    1       1       user_docs/es/userGuide.t2t
     3 files changed, 16 insertions(+), 5 deletions(-)

commit cb86040423beeb44fc82ec8b531f6d8b8d1e9f70
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 14 00:05:08 2017 +1000

    L10n updates for: ar
    From translation svn revision: 32207
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    30      0       user_docs/ar/changes.t2t
    5       4       user_docs/ar/userGuide.t2t
     2 files changed, 35 insertions(+), 4 deletions(-)

commit 0889f95ef2d74f43b2c98f4d45bf09b0c605f1de
Author: James Teh <jamie@nvaccess.org>
Date:   Wed Apr 12 14:43:44 2017 +1000

    Remove files accidentally committed in bddfab64.

commit 8120e75cde8c7b863515abc95b9610c933b03375
Author: James Teh <jamie@nvaccess.org>
Date:   Wed Apr 12 13:46:49 2017 +1000

    Update What's New for PR #7026.

commit 948abb1bd1631ea2b13561b59b904f52f5d8b6fa
Merge: a2fc6166a bddfab64c
Author: James Teh <jamie@nvaccess.org>
Date:   Wed Apr 12 13:42:00 2017 +1000

    Initial unit testing framework and tests. (#7026)
    
    This adds an initial unit testing framework, including necessary changes for SCons and AppVeyor. It also adds some tests for the cursorManager module, which serve both as useful tests and as an example of how this can be used.
    Unit tests and infrastructure are located in the tests/unit directory. See the docstring in the tests/unit/__init__.py file for details.
    You can run tests using "scons tests". See the "Running Tests" section of readme.md for details.

commit a2fc6166ae1a2ce87a4bfad030a44472fbeb326b
Author: James Teh <jamie@nvaccess.org>
Date:   Wed Apr 12 13:38:13 2017 +1000

    Kindle: Update Kindle document object detection for future versions of Kindle. (#7024)
    
    Rather than relying on the user visible name of "Book Page View" as we did previously, Kindle now exposes a class:KindleBookPageView object attribute.

commit 06e64f100f2a09dc160e7bf09beaad114e751d5b
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Apr 12 10:46:44 2017 +1000

    Update what's new

commit c1799ee5c2e015aa52acf65d3d222d0107640cfd
Merge: a5816303a 0357e9276
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Apr 12 10:43:36 2017 +1000

    Navigating by line in Microsoft Edge is now up to 3x faster in the Windows 10 Creaters Update.
    
    Merge pull request #6994 from nvaccess/edgeSpeedup

commit a5816303a9981278d29258088acdc274d332dae0
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Apr 12 10:35:49 2017 +1000

    Microsoft Edge: Ignore invalid MSAA focus event when entering a document (#6967)

commit 4c00a78c7786a070457edf0e65c7d4efd1a274e4
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Apr 12 10:34:03 2017 +1000

    Update what's new

commit 3c6696cdc6c4ef300619f3bdd9a4891a4318d567
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Apr 12 10:27:11 2017 +1000

    UIA NVDAObject: implement a presentationType property which  only allows PresType_content if the IUAElement  itself is both a control element and content element. (#7019)

commit 8f5336fdc9c9707f4b00b1eb328ac5a306651b97
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Apr 12 10:24:39 2017 +1000

    Update what's new

commit 9686896089ea9175f8a52f8770b50ca75b564c31
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Apr 12 10:22:37 2017 +1000

    PythonConsole: the list of completions in the autocomplete context menu no longer shows  any objec path leading up to the final symbol being completed (#7023)
    
    This object path was always the same for all items for a given completion  and caused choosing an item to be inefficient for the user (especially for large menus).
     An example:
     typing nav.parent.n and pressing tab used to list:
     nav.parent.name
     nav.parent.next
     Now it lists:
     name
     next

commit 88170b95750d4961ecffd7f74d6b4641f9afde26
Merge: 31ed3493b 1adb1988c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 7 00:06:11 2017 +1000

    Update translations.
    
    From translation svn revision: 32090

commit 1adb1988c0c96cf84e7f19ed7386940e95ae2f87
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 7 00:06:10 2017 +1000

    L10n updates for: zh_TW
    From translation svn revision: 32090
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    41      41      source/locale/zh_TW/characterDescriptions.dic
     1 file changed, 41 insertions(+), 41 deletions(-)

commit f4c205337d398dbb29f10b331e67918322869800
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 7 00:06:08 2017 +1000

    L10n updates for: zh_CN
    From translation svn revision: 32090
    
    Authors:
    vgjh2005@gmail.com
    
    Stats:
    185     8       source/locale/zh_CN/LC_MESSAGES/nvda.po
    27473   21516   source/locale/zh_CN/characterDescriptions.dic
     2 files changed, 27658 insertions(+), 21524 deletions(-)

commit 4a768daf623b5f53648942365425b7b88f654d21
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 7 00:06:05 2017 +1000

    L10n updates for: vi
    From translation svn revision: 32090
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    6       0       user_docs/vi/changes.t2t
    4       4       user_docs/vi/userGuide.t2t
     2 files changed, 10 insertions(+), 4 deletions(-)

commit 8b2b313be74b3306391c65ff0fca5aeb11e5c57b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 7 00:06:01 2017 +1000

    L10n updates for: ta
    From translation svn revision: 32090
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    2       2       user_docs/ta/userGuide.t2t
     1 file changed, 2 insertions(+), 2 deletions(-)

commit 2ccea00c9f2a8fdd9b7c8bbd2479d9a6f660a7b0
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 7 00:05:59 2017 +1000

    L10n updates for: sr
    From translation svn revision: 32090
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <zvonimirek222@yandex.com>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    181     5       source/locale/sr/LC_MESSAGES/nvda.po
     1 file changed, 181 insertions(+), 5 deletions(-)

commit 3ab91f3db78c28efdbf7c8387b85cf97bdaa5393
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 7 00:05:57 2017 +1000

    L10n updates for: sl
    From translation svn revision: 32090
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    2       2       user_docs/sl/userGuide.t2t
     1 file changed, 2 insertions(+), 2 deletions(-)

commit b14a61734dcbc168dbde8c450a66616293517d25
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 7 00:05:55 2017 +1000

    L10n updates for: ru
    From translation svn revision: 32090
    
    Authors:
    Ruslan Kolodyazhni <eye0@rambler.ru>
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    31      0       user_docs/ru/changes.t2t
    4       3       user_docs/ru/userGuide.t2t
     2 files changed, 35 insertions(+), 3 deletions(-)

commit a94355f360580afdfb8cb6b91947f82393184439
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 7 00:05:53 2017 +1000

    L10n updates for: ro
    From translation svn revision: 32090
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>, Florian Ionașcu <florianionascu@hotmail.com>, Alexandru Matei <alexandrumateistelian@gmail.com>, Nicuşor Untilă <nicusoruntila@yahoo.com>
    
    Stats:
    7       7       source/locale/ro/LC_MESSAGES/nvda.po
    2       0       user_docs/ro/changes.t2t
    7       7       user_docs/ro/userGuide.t2t
     3 files changed, 16 insertions(+), 14 deletions(-)

commit 8235106ec4af0ff5eb4f2a7537c6c764b1fe9ee4
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 7 00:05:43 2017 +1000

    L10n updates for: ko
    From translation svn revision: 32090
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    
    Stats:
    315     13      source/locale/ko/LC_MESSAGES/nvda.po
     1 file changed, 315 insertions(+), 13 deletions(-)

commit e79d919f2c492e574ccec70c6f174799168b00f1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 7 00:05:40 2017 +1000

    L10n updates for: ja
    From translation svn revision: 32090
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    8       8       source/locale/ja/LC_MESSAGES/nvda.po
     1 file changed, 8 insertions(+), 8 deletions(-)

commit 3886d4a8fa29f0c4c90a77cf0d0d158ea39da6bf
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 7 00:05:38 2017 +1000

    L10n updates for: it
    From translation svn revision: 32090
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    2       2       user_docs/it/userGuide.t2t
     1 file changed, 2 insertions(+), 2 deletions(-)

commit 9e528805f83d591ad409b03ed722560db4ab20a4
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 7 00:05:30 2017 +1000

    L10n updates for: gl
    From translation svn revision: 32090
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    
    Stats:
    6       0       user_docs/gl/changes.t2t
    2       2       user_docs/gl/userGuide.t2t
     2 files changed, 8 insertions(+), 2 deletions(-)

commit 18a51c61e26e94b5a4350a61d08c51a47e686488
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 7 00:05:28 2017 +1000

    L10n updates for: fr
    From translation svn revision: 32090
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    6       0       user_docs/fr/changes.t2t
    2       2       user_docs/fr/userGuide.t2t
     2 files changed, 8 insertions(+), 2 deletions(-)

commit d36d6d1d7074001b8eb2b63eb4d9a49ed97451cb
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 7 00:05:26 2017 +1000

    L10n updates for: fi
    From translation svn revision: 32090
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    7       1       user_docs/fi/changes.t2t
    2       2       user_docs/fi/userGuide.t2t
     2 files changed, 9 insertions(+), 3 deletions(-)

commit a1a84748960cfba2fe107762a76258e00a3da16a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 7 00:05:24 2017 +1000

    L10n updates for: fa
    From translation svn revision: 32090
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    4       4       source/locale/fa/LC_MESSAGES/nvda.po
     1 file changed, 4 insertions(+), 4 deletions(-)

commit 689c9bcf4ae148391767255d273d563afb76ce06
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 7 00:05:21 2017 +1000

    L10n updates for: es
    From translation svn revision: 32090
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    
    Stats:
    6       0       user_docs/es/changes.t2t
    2       2       user_docs/es/userGuide.t2t
     2 files changed, 8 insertions(+), 2 deletions(-)

commit 75adf1dbcd3bb236ca17faf851bd8941e84d20ed
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Apr 7 00:05:16 2017 +1000

    L10n updates for: de
    From translation svn revision: 32090
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    
    Stats:
    31      0       user_docs/de/changes.t2t
     1 file changed, 31 insertions(+)

commit 31ed3493b6f131fc851e9eae148ac40e70443a73
Author: James Teh <jamie@nvaccess.org>
Date:   Wed Apr 5 12:41:42 2017 +1000

    Update What's New for PR #6894 (issues #6726, #6893).

commit 108b133731f4acb7a7e898e51c30db915e6d75f8
Author: Tyler Spivey <tspivey@pcdesk.net>
Date:   Tue Apr 4 19:37:41 2017 -0700

    Fixes to reportCurrentLine's spelling functionality (#6894)
    
    - Performing the read current line command three times quickly spells the line with character descriptions. (#6893) 
    - When performing the read current line command twice quickly to spell the line, the appropriate language is now used for the spelled characters. (#6726) 

commit be1acd682d4773b5b5f72ce329526b33c5058bb7
Author: Reef Turner <reef@nvaccess.org>
Date:   Tue Apr 4 15:34:48 2017 +0800

    Update changes file for PR: #6878, #6875, #6877, #6876, #6914, #6987
    
    - Deprecated code removed:
     - PR #6878: `speech.REASON_*` constants, `controlTypes.REASON_*` should be used
       instead. (issue #6846)
     - PR #6877: `i18nName` for synth settings, `displayName` and
       `displayNameWithAccelerator` should be used instead. (issues #6846, #5185)
     - PR #6876: `config.validateConfig`. (issues #6846, #667)
     - PR #6875: `config.save`. (issue #6846)
    
    - PR #6914: Support Windows Calculator on Windows 10 Enterprise LTSB (Long-Term
      Servicing Branch) and Server. (issue #6914)
    - PR #6987: Reduced the chance of configuration file being corrupted when
      Windows shuts down. Configuration files are now written to a temporary
      file before replacing the actual configuration file. (issue #3165)

commit 02f1d5f0ab758b7f2c017536e4c972c7dfc19f25
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Tue Apr 4 00:33:19 2017 -0700

    Remove deprecated code: `config.save` (deprecated since 2013.3). (PR #6875)
    
    Partial fix for #6846, #667:
    
    Removes deprecated `config.save`

commit 40e69d5938155989192556108408a50e1df687f3
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue Apr 4 15:28:48 2017 +0800

    Safer config saving (PR #6987)
    
    Fixes issue #3165
    
    Save configuration profiles and gesture maps as an atomic operation
    
    Instead of directly writing the file, a temporary file is created and moved to the final location. This prevents corrupt configuration files being written.
    Added a `fileUtils` module with just a `FaultTolerantFile` context manager for now to facilitate this pattern.

commit 4a7e1bdbb30100148b261c36565e0560b21cae43
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Tue Apr 4 00:26:51 2017 -0700

    Support Windows Calculator on Windows 10 Enterprise LTSB (Long-Term Servicing Branch) and Server (PR #6914)
    
    Because UWP isn't fully there, Windows 10 Enterprise LTSB and Server comes with desktop version of calculator except for a different executable name (`win32calc`).

commit f62ed09b38cb6b160105d1a83a63db0b492fd766
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Tue Apr 4 00:25:40 2017 -0700

    Removed config.validateConfig, config.conf.validator now uses Validator constructor. (PR #6876)
    
    Partial fix for #6846, and #667
    
    Remove deprecated `config.validateConfig`.
    As there's no need to store a module-level `validator`, `validator` class instantiation will be done from `config.ConfigManager` constructor.

commit 307e96092696dce34e43ff378ae63910f0bbbcb6
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Tue Apr 4 00:22:38 2017 -0700

    Synth driver handler: remove deprecated i18n name attribute. (PR #6877)
    
    partial fix for #6846, and #5185
    
    Removed deprecated `i18nName` for synth settings, replaced by `displayName` and `displayNameWithAccelerator`.

commit af4f4fa4b74f82d85fcf385ff9bb83763549584c
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Tue Apr 4 00:19:33 2017 -0700

    Speech module: remove reason_* constants. (PR #6878)
    
    Partial fix for #6846
    
    Remove deprecated `speech.REASON_*` constants, `controlTypes.REASON_*` should be used instead.

commit bddfab64c3abd7bf3457f174f2cec796f3584fea
Author: James Teh <jamie@nvaccess.org>
Date:   Mon Apr 3 13:31:34 2017 +1000

    Address code review comments.

commit 64cb7178b7e8ddf787f11ee530f7d0fd5a972ef3
Merge: e12a71dd4 694f0c6a3
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 31 00:06:00 2017 +1000

    Update translations.
    
    From translation svn revision: 31926

commit 694f0c6a379f10b208c4e0a7c1f51020505cc84c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 31 00:06:00 2017 +1000

    L10n updates for: zh_TW
    From translation svn revision: 31926
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    53      53      source/locale/zh_TW/characterDescriptions.dic
     1 file changed, 53 insertions(+), 53 deletions(-)

commit 54a15282a85a21cb74243d73ebe52daae83a0c74
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 31 00:05:57 2017 +1000

    L10n updates for: vi
    From translation svn revision: 31926
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    59      60      source/locale/vi/LC_MESSAGES/nvda.po
     1 file changed, 59 insertions(+), 60 deletions(-)

commit 7b8d8a80741e63330133cb8de6c9b2084718b17d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 31 00:05:47 2017 +1000

    L10n updates for: ru
    From translation svn revision: 31926
    
    Authors:
    Ruslan Kolodyazhni <eye0@rambler.ru>
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    182     5       source/locale/ru/LC_MESSAGES/nvda.po
     1 file changed, 182 insertions(+), 5 deletions(-)

commit f77ce3abc69d6579378f79c340d9c399afd48392
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 31 00:05:45 2017 +1000

    L10n updates for: ro
    From translation svn revision: 31926
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>, Florian Ionașcu <florianionascu@hotmail.com>, Alexandru Matei <alexandrumateistelian@gmail.com>, Nicuşor Untilă <nicusoruntila@yahoo.com>
    
    Stats:
    9       9       source/locale/ro/LC_MESSAGES/nvda.po
     1 file changed, 9 insertions(+), 9 deletions(-)

commit 58908c177cc0a3ba2dac94641de4e788348689e7
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 31 00:05:24 2017 +1000

    L10n updates for: fr
    From translation svn revision: 31926
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    0       1       source/locale/fr/symbols.dic
     1 file changed, 1 deletion(-)

commit 46ce6dd578a0519c9060096b49a90aa1ae456c15
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 31 00:05:20 2017 +1000

    L10n updates for: fa
    From translation svn revision: 31926
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    182     6       source/locale/fa/LC_MESSAGES/nvda.po
     1 file changed, 182 insertions(+), 6 deletions(-)

commit e12a71dd4fef1f47be2b2f2f0cd740281a54d70b
Author: James Teh <jamie@nvaccess.org>
Date:   Wed Mar 29 21:36:41 2017 +1000

    Update What's New for PR #6854 (issue #6845).

commit fe06e18f0fd9d598a1fb379f47edef70413f705f
Author: James Teh <jamie@nvaccess.org>
Date:   Wed Mar 29 21:30:56 2017 +1000

    Update to pySerial 2.7. (PR #6854, issue #6845)
    
    This is needed to fix a UnicodeDecodeError in some languages when opening a serial port fails. This was preventing braille display drivers from trying further ports which might have worked.
    pySerial is now included as its own git submodule, rather than as part of miscDeps. This necessitated adding its directory to the Python module search path in sourceEnv. Also, scons now sets the PYTHONPATH environment variable based on sourceEnv, rather than having the directories listed in two separate places.

commit 70d753179b3701ee8e3b9f8bf1bf5620932cf43f
Author: James Teh <jamie@nvaccess.org>
Date:   Wed Mar 29 17:01:16 2017 +1000

    Update What's New for PR #6962 (issue #6945).

commit 8f853cec88092b70ad9e3ae31944b1a8a5e27e43
Author: James Teh <jamie@nvaccess.org>
Date:   Wed Mar 29 16:45:38 2017 +1000

    Fix input gesture identifier normalization. (#6962)
    
    Previously, arbitrarily ordered items (e.g. multiple keys) were reordered using Python set order. However, different input ordering could incorrectly cause different output in some cases due to hash bucket conflicts. For example, dot4+space and space+dot4 incorrectly produced different output.
    In addition, these items were reordered *before* conversion to lower case instead of after, which could also incorrectly result in different output.
    Now, the entire identifier is converted to lower case and arbitrarily ordered items are then sorted by character.
    The InputGesture.identifiers property has been changed so that it is no longer normalized. Instead, there is now an InputGesture.normalizedIdentifiers property which returns normalized identifiers.
    This was done to make normalization changes easier to apply and to eliminate the potential for normalization errors in InputGesture subclasses.
    The InputGesture.logIdentifier property is now deprecated. InputGesture.identifiers[0] should be used instead.
    Finally, various InputGesture implementations have been changed to remove normalization code. In some cases, this may result in nicer reporting in input help mode.

commit a8f946e0ff3a26c4fdd3eb8dec696bb4e388523c
Author: James Teh <jamie@nvaccess.org>
Date:   Tue Mar 28 15:27:45 2017 +1000

    AppVeyor: Run automated tests.

commit 266c7513a6c630f5738bf39e78d31ce798d31dc1
Author: James Teh <jamie@nvaccess.org>
Date:   Wed Mar 29 13:09:18 2017 +1000

    Fix some obscure build system issues which were causing some idl and comInterfaces files to be rebuilt unnecessarily.
    
    This is not a new problem, but it's particularly annoying for automated testing because running the tests often causes files to be rebuilt unnecessarily.
    1. The ISimpleDOM and MathPlayer interfaces have multiple idl files. The targets for the idl file have an implicit dependency on midl.exe, but its position in the dependencies is different in the run before the idl files are copied versus subsequent runs. I think this is an SCons bug/quirk, probably because before the copy, the idl file must be scanned after the midl tool is considered. Explicitly specifying these extra idls as dependencies doesn't help. The only workaround I've found is to ignore midl.exe as a dependency when checking whether the targets should be rebuilt.
    2. comInterfaces generates .pyc as well as .py files. We now tell SCons about the .pyc files as well so they get considered appropriately. Previously, the .py file could be removed, so SCons would rebuild the .py file. However, the .pyc still existed, so it was just loaded without generating a .py file. Subsequently, SCons would try to rebuild the .py file on every build.

commit baad666e414116f535ce9bc03047ca7710ad327d
Author: James Teh <jamie@nvaccess.org>
Date:   Tue Mar 28 15:26:58 2017 +1000

    Add some tests for the cursorManager module.

commit f738b7d3acc9720cc5bc1929661cf47ddb4031f1
Author: James Teh <jamie@nvaccess.org>
Date:   Tue Mar 28 15:20:01 2017 +1000

    Fix "'NoneType' object is not callable" exceptions in WavePlayer.__del__ when unit tests finish (and when NVDA exits).
    
    These have existed for a long time, but they aren't normally noticed when exiting NVDA, since we normally don't see stderr when exiting.
    To fix this, nvwave and tones now register an atexit callback to clean up their WavePlayer instances before modules get cleaned up.

commit 7e21223bf286930d5a53a5f58a8d09e7804f29b3
Author: James Teh <jamie@nvaccess.org>
Date:   Tue Mar 28 15:16:41 2017 +1000

    Add initial unit testing framework.
    
    Unit tests and infrastructure are located in the tests/unit directory. See the docstring in the tests/unit/__init__.py file for details.
    You can run tests using "scons tests". See the "Running Tests" section of readme.md for details.

commit 0357e9276ae56ed42398c799f2636543bbeb0a03
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Mar 27 17:01:12 2017 +1000

    UIA NVDAObject's _getUIACacheablePropertyValue: remove the 'onlyCached' parameter as it is really not needed.

commit fc1e26ecf6d0c33cc76b3e428098966bd3b0bb84
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Sun Mar 26 23:29:55 2017 -0700

    User guide: Mention Burmese and Kannada as supported languages. Language count is now up to 51 including English. (#7020)

commit a30c21720226d82a99d72a2a40c5251f69bdc58d
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Mar 27 15:42:13 2017 +1000

    UI Automation client library cannot  support properties added in a future version of Windows, either in cache requests, or provide defaults for them. Therefore:  catch COMError when trhing to add properties to a controlFieldCacheRequest (E.g. sizeInSet on Windows 7), and also  reintroduce try blocks around some of the property fetches in  UIA NVDAObject's states property, much resembling  what it used to be, though still using _getUIACacheablePropertyValue.
    
    Fixes #7013

commit 41c147362b402200dd56d41a9f278e2eb0f818aa
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Mar 24 09:37:00 2017 +1000

    UIA NVDAObject:  don't use any UIA constants at class level unless UIA support is enabled.

commit 996ddb562e46ce01853ae9f0829d3f82292f7a68
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Mar 24 09:13:01 2017 +1000

    UIA NVDAObject: location property must return int coordinates, not float.

commit 07f4a1fedc12cde701ff289bb24eb6903b07a824
Merge: 92d5f859d ec5f373b9
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 24 00:06:21 2017 +1000

    Update translations.
    
    From translation svn revision: 31890

commit ec5f373b9a23ed2b70b50f0bc5c4cf5291c70a7f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 24 00:06:20 2017 +1000

    L10n updates for: zh_TW
    From translation svn revision: 31890
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    184     5       source/locale/zh_TW/LC_MESSAGES/nvda.po
     1 file changed, 184 insertions(+), 5 deletions(-)

commit f75c48b92067d267de698b63728e04f5b297e89b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 24 00:06:15 2017 +1000

    L10n updates for: vi
    From translation svn revision: 31890
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    213     37      source/locale/vi/LC_MESSAGES/nvda.po
    28      3       user_docs/vi/changes.t2t
    2       1       user_docs/vi/userGuide.t2t
     3 files changed, 243 insertions(+), 41 deletions(-)

commit c1e82aaf0ed1b8b57785733d4a30b50267ab11b0
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 24 00:06:11 2017 +1000

    L10n updates for: ta
    From translation svn revision: 31890
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    173     4       source/locale/ta/LC_MESSAGES/nvda.po
    4       3       user_docs/ta/userGuide.t2t
     2 files changed, 177 insertions(+), 7 deletions(-)

commit 9053459b8a594e503892d436f7105ca478f1aa85
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 24 00:06:06 2017 +1000

    L10n updates for: sl
    From translation svn revision: 31890
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    176     6       source/locale/sl/LC_MESSAGES/nvda.po
    4       3       user_docs/sl/userGuide.t2t
     2 files changed, 180 insertions(+), 9 deletions(-)

commit 663c5ab116eb9068f36eccf6e245cd6f407a98e8
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 24 00:06:00 2017 +1000

    L10n updates for: ro
    From translation svn revision: 31890
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>, Florian Ionașcu <florianionascu@hotmail.com>, Alexandru Matei <alexandrumateistelian@gmail.com>, Nicuşor Untilă <nicusoruntila@yahoo.com>
    
    Stats:
    182     5       source/locale/ro/LC_MESSAGES/nvda.po
    38      13      user_docs/ro/changes.t2t
    27      26      user_docs/ro/userGuide.t2t
     3 files changed, 247 insertions(+), 44 deletions(-)

commit 6a1173e2863335693320f14d63e7b1555133a2a8
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 24 00:05:56 2017 +1000

    L10n updates for: pt_BR
    From translation svn revision: 31890
    
    Authors:
    Cleverson Casarin Uliana <clever97@gmail.com>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    
    Stats:
    182     4       source/locale/pt_BR/LC_MESSAGES/nvda.po
     1 file changed, 182 insertions(+), 4 deletions(-)

commit 26c9a923edc906bbf03423bdb8e7d4b419ba5fe6
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 24 00:05:52 2017 +1000

    L10n updates for: nl
    From translation svn revision: 31890
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <leonard_dev@babbage.com>
    
    Stats:
    184     6       source/locale/nl/LC_MESSAGES/nvda.po
    2       1       user_docs/nl/userGuide.t2t
     2 files changed, 186 insertions(+), 7 deletions(-)

commit b9a757c7188bf6b4912d6f220ad31c2092f05672
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 24 00:05:49 2017 +1000

    L10n updates for: my
    From translation svn revision: 31890
    
    Authors:
    Benedict La hkun <lkbenedict@gmail.com>
    
    Stats:
    1835    5       user_docs/my/userGuide.t2t
     1 file changed, 1835 insertions(+), 5 deletions(-)

commit 78c606c819c996c77d316e13f3d24cda7212e78b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 24 00:05:45 2017 +1000

    L10n updates for: ka
    From translation svn revision: 31890
    
    Authors:
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Goderdzi Gogoladze <goderdzigogoladze@gmail.com>
    
    Stats:
    415     35      source/locale/ka/LC_MESSAGES/nvda.po
     1 file changed, 415 insertions(+), 35 deletions(-)

commit 2d427ef0cd92e9b00024628af066697e74bad1a9
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 24 00:05:44 2017 +1000

    L10n updates for: ja
    From translation svn revision: 31890
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    181     5       source/locale/ja/LC_MESSAGES/nvda.po
     1 file changed, 181 insertions(+), 5 deletions(-)

commit 0047bf9b28b966f533776693a0b0ba6558ff74ca
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 24 00:05:41 2017 +1000

    L10n updates for: it
    From translation svn revision: 31890
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    183     5       source/locale/it/LC_MESSAGES/nvda.po
     1 file changed, 183 insertions(+), 5 deletions(-)

commit 54d113da09dc5e1e6195c13f8870d52dccd0185d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 24 00:05:37 2017 +1000

    L10n updates for: hr
    From translation svn revision: 31890
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <zvonimirek222@yandex.com>
    Mario Percinic <mario.percinic@gmail.com>
    
    Stats:
    182     6       source/locale/hr/LC_MESSAGES/nvda.po
    2       1       user_docs/hr/userGuide.t2t
     2 files changed, 184 insertions(+), 7 deletions(-)

commit f1ac926b446257b50d8d85666d87686263ea4261
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 24 00:05:32 2017 +1000

    L10n updates for: gl
    From translation svn revision: 31890
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    
    Stats:
    181     4       source/locale/gl/LC_MESSAGES/nvda.po
    25      0       user_docs/gl/changes.t2t
    2       1       user_docs/gl/userGuide.t2t
     3 files changed, 208 insertions(+), 5 deletions(-)

commit c09c2242e2e6d02c82d49a8c7254bf921edeafd1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 24 00:05:30 2017 +1000

    L10n updates for: fr
    From translation svn revision: 31890
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    181     5       source/locale/fr/LC_MESSAGES/nvda.po
    24      0       user_docs/fr/changes.t2t
    2       1       user_docs/fr/userGuide.t2t
     3 files changed, 207 insertions(+), 6 deletions(-)

commit 1cc73eea1f6c59a3e91d25a7baa51b2ca412bbaf
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 24 00:05:28 2017 +1000

    L10n updates for: fi
    From translation svn revision: 31890
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    180     4       source/locale/fi/LC_MESSAGES/nvda.po
    25      0       user_docs/fi/changes.t2t
    2       1       user_docs/fi/userGuide.t2t
     3 files changed, 207 insertions(+), 5 deletions(-)

commit 9bb98ccd6f2187c898ce1f12ee29b2d94cc00473
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 24 00:05:23 2017 +1000

    L10n updates for: es
    From translation svn revision: 31890
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    
    Stats:
    181     4       source/locale/es/LC_MESSAGES/nvda.po
    25      0       user_docs/es/changes.t2t
    2       1       user_docs/es/userGuide.t2t
     3 files changed, 208 insertions(+), 5 deletions(-)

commit 2944c59050bb9a5d2650d60345e5ddcf2220a5ab
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 24 00:05:18 2017 +1000

    L10n updates for: de
    From translation svn revision: 31890
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    
    Stats:
    187     4       source/locale/de/LC_MESSAGES/nvda.po
     1 file changed, 187 insertions(+), 4 deletions(-)

commit 8c9af92614f2471a8c119be5f1fcf81f765fec90
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 24 00:05:15 2017 +1000

    L10n updates for: da
    From translation svn revision: 31890
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    182     5       source/locale/da/LC_MESSAGES/nvda.po
     1 file changed, 182 insertions(+), 5 deletions(-)

commit 46cd6e65bbbdc980a37c68717c27b74db498b1a8
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Mar 23 08:01:40 2017 +1000

    UIA: fetching boundingRectangle via getCurrentPropertyValueEx rather than currentBoundingRectangle returns a tuple of left,top,width,height, rather than a specific rectangle object with members of left,top,right and bottom.

commit bb400d098c439c0149fe8f4bc1e1d1ce51ce9293
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Mar 22 08:35:47 2017 +1000

    Address review actions.

commit f55b431c6a7a9b231e3a76022507051bd6a53199
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Mar 22 06:56:31 2017 +1000

    UIA caching:  make sure to cache UIA_IsEnabledPropertyId  for control fields.

commit f66ce5d067f1abba47ea553b328434afd4abdda6
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Mar 21 09:16:39 2017 +1000

    Manually include precompiled UI Automation com interfaces.

commit 509131315d76a14b8cd7b758d871a298e41f7eec
Author: Michael Curran <mick@nvaccess.org>
Date:   Sun Mar 19 15:36:26 2017 +1000

    Edge: split out pre gap removal code into its own TextInfo class and use it in Windows builds less 15048. Windows builds above this now can use the generic UI Automation textWithFields code. Along with the added caching, these changes provide up to a 3x speed-up in reading lines in Microsoft Edge.

commit fa768843f33c1962cdfa307caae933859c6a7ec3
Author: Michael Curran <mick@nvaccess.org>
Date:   Sat Mar 11 01:14:07 2017 +1000

    Build a caching framework into the UIA NVDAObject class so as to allow for instantiating a UIA NVDAObject with a UIAElement containing prefetched UI Automation property values via a UI Automation CacheRequest, available for the remainder of the core cycle the NVDAObject was instantiated in. This is useful when instantiating an NVDAObject purely to  generate a control field, where the caller knows what properties are needed.
    
    All code within UIA NVDAObject and its subclasses should use the new _getUIACacheablePropertyValue method to fetch UI Automation properties as this will check the cache first.
    
    Make use of the new Win 10 RS2 bulk-fetch UIA APIs available on IUIAutomationTextRange3 such as getChildrenBuildCache, getEnclosingElementBuildCache and getAttributeValues. When not available, compatibility code falls back to the older APIs, providing the same cached results, but over multiple calls.
    
     UIATextInfo._getTextWithFieldsForUIARange and related content fetching code has been updated to use cacheRequests where possible. E.g. getChildrenBuildCache, getEnclosingElementBuildCache etc.

commit 92d5f859d1f62f7b0a215f309bcbcf7b1534b389
Author: Vikash Kesarwani <tibabit@users.noreply.github.com>
Date:   Mon Mar 20 11:50:00 2017 +0530

    Fix typo in docstring. (#6927)

commit b9ae3c52c440a53d83e1406a31f89d8bd40dae9c
Merge: 0b1b0ee1f 924929ac2
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 17 00:06:03 2017 +1000

    Update translations.
    
    From translation svn revision: 31763

commit 924929ac2d0eaa47a600dbf945ac9278ebba359d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 17 00:05:59 2017 +1000

    L10n updates for: vi
    From translation svn revision: 31763
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    40      30      source/locale/vi/LC_MESSAGES/nvda.po
     1 file changed, 40 insertions(+), 30 deletions(-)

commit 1600a8e51d48169ee2440a3c9887ebafcdc86cb1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 17 00:05:48 2017 +1000

    L10n updates for: ro
    From translation svn revision: 31763
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>, Florian Ionașcu <florianionascu@hotmail.com>, Alexandru Matei <alexandrumateistelian@gmail.com>, Nicuşor Untilă <nicusoruntila@yahoo.com>
    
    Stats:
    14      14      source/locale/ro/LC_MESSAGES/nvda.po
     1 file changed, 14 insertions(+), 14 deletions(-)

commit 7a40c4de8978a4d48b30feb22093770096fb36ec
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 17 00:05:31 2017 +1000

    L10n updates for: hr
    From translation svn revision: 31763
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <zvonimirek222@yandex.com>
    Mario Percinic <mario.percinic@gmail.com>
    
    Stats:
    3       3       source/locale/hr/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 3 deletions(-)

commit 0b1b0ee1f2860c610874d2569bf3d17e16ff41a8
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Wed Mar 15 21:47:10 2017 -0700

    User Guide: Kindle: Document the new 'Screen Reader: Supported' designation instead of 'enhanced typesetting'. (PR #6983, issue #6982)

commit dee91f551f89bac90dd1e6d993cc0c2dc81e2f55
Author: James Teh <jamie@nvaccess.org>
Date:   Wed Mar 15 11:03:58 2017 +1000

    Update What's New for PR #6792.

commit f55a3f56f9329688260382c26ab375ac650ef05a
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Tue Mar 14 18:02:02 2017 -0700

    Fix errors or extraneous spaces when retrieving UIA keyboard shortcuts. (PR #6992)
    
    - NVDA will no longer fail to navigate to or report certain (UIA) controls where a keyboard shortcut is not defined. (#6779)
    - Two empty spaces are no longer added in keyboard shortcut information for certain (UIA) controls. (#6790)

commit 8a0886b24821602f306431250f878bfedc7cc6b1
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Mar 15 08:33:00 2017 +1000

    Revert "Fall back to Microsoft's own dynamic ducking, and disable our 'always ducking' mode, for Windows builds 14986 and up. (#6799)"
    
    Audio ducking in Windows was restored to its original functionality in Windows build 15048
    
    This reverts commit a0a06d91d757a62e367ab2bcdb1ca58682828be9.
    
    Fixes #6933

commit df06f1d55a48b5b7c487f522852cc63e9ed29839
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Mar 15 08:26:22 2017 +1000

    Update what's new

commit db11e37aca6dd1a61fd05138946074b4ddb46057
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Mar 15 08:24:28 2017 +1000

    Support automatic language switching in Microsoft Edge and other UI Automation text implementations  (#6853)
    
    * Expose language in formatFields for  formatted text coming from UI Automation (including Microsoft Edge).
    * languageHandler:  support mappings of all Windows primary language locale identifiers to locale names. This has been manually calculated from locale.windows_locale. Oddly windows_locale does not contain them directly.
    
    Both UI Automation and ITextDocument may expose these primary language locale identifiers if country specific information is not available.
    For example, the html <p lang="de"> exposes LCID 0x7 (German) as opposed to <p lang="de-DE"> which exposes 0x407 (German, Germany).

commit 829f31c6a5d97d53520e74b1050a82f17939a8a9
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Mar 15 08:21:18 2017 +1000

    Update what's new

commit 8d6a5117c4eff76f02272176f5db8c29f110e0f7
Author: kanggeon <geon@epic.com>
Date:   Tue Mar 14 17:16:46 2017 -0500

    handle DescribedBy in iframe and multiple DescribedBy IDs (#6738)
    
    Fixes #5784

commit 9b995fcfcaca63d3d4d8f578392680030fdb73f0
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Mar 15 08:12:44 2017 +1000

    Update what's new

commit 29efeda6bd90cea2467a3aec8c55980011a88bc6
Author: Matthew Campbell <mwc+github@mwcampbell.us>
Date:   Tue Mar 14 17:09:44 2017 -0500

    Display model: Try to provide the correct background color for transparent text drawing (#6844)
    
    * GDI hooks: In the TextOut and ExtTextOut functions, get the previous color at the provided X, Y coordinates before calling the original function, so we at least have a chance of knowing the correct background color if the text is being drawn in transparent mode. This is necessary to detect highlighted text in some parts of Dragon NaturallySpeaking.
    
    Fixes #6467

commit 78e7ce942951473cea2db1b7f6e8259daeb07099
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Mar 15 08:06:48 2017 +1000

    Update what's new

commit 8c52923c0c86156bd608218a9bd1d96411ddc94f
Author: Leonard de Ruijter <leonard_dev@babbage.com>
Date:   Tue Mar 14 22:45:22 2017 +0100

    Switch from optparser to argparser for parsing command line arguments (#6865)
    
    * Switch from optparse to argparse for parsing of command line arguments
    
    * Added mutual exclusivity functionality to some command line arguments as well as added choices for log level
    
    * Added globalVars.appArgsExtra to allow additional arguments to be parsed by add-ons or plugins.

commit 4c5cb0d1e225c1176d8fd674a35f80a27d0c6923
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Mar 15 07:43:17 2017 +1000

    Replace execInWindow with execInThread (#6885)
    
    * Revert "Fix freeze when pressing enter to dismiss a dialog while focused in a text box in Mozilla applications."
    
    This changes execInWindow to again use PostMessage rather than SendMessageCallback.
    
    This reverts commit 657fb56a2dfee855cb998ed0903d60d33866079a.
    
    * Replace nvdaHelperRemote's execInWindow with execInThread, which uses PostThreadMessage rather than PostMessage. This still allows us to execute code in a thread via the message queue (avoiding Gecko E10s issues with SendMessage) but also still fixes #6422 as the message will still be received even if the window is destroyed.

commit fb86a751434e2777a9d85a31ea175548f35acd62
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Mar 15 07:39:26 2017 +1000

    core.callLater: After the given delay, the callable is now queued so that it gets executed  within NVDA's core pump, rather than executed directly.  (#6892)
    
    This will implicitly ensure that watchdog is alive during its execution. This is rather than waking watchdog specifically for this callable, which had the possibility of accidentally putting watchdog back to sleep during a core pump that caused wx to yield or start a modal loop. (#6797)

commit c9f5b2df7091f6984bcffde938f8e8fc214f0df2
Author: Reef Turner <reef@nvaccess.org>
Date:   Tue Mar 14 07:30:47 2017 +0100

    Update changes file for several PRs
    
    For PR #6761 - Web page menu items (menu item checkbox's and radio buttons) can now be activated while in browse mode.  Issue #6735
    For PR #6866 - Excel sheet name reporting is now translated. Issue #6848
    For PR #6884 - Pressing ESC while the configuration profile "Confirm Deletion" prompt is active now dismisses the dialog. Issue #6851
    For PR #6895 - Cell border information can now be reported in Microsoft Excel by using `NVDA+f`. Issue #3044
    For PR #6860 - Added support for aria-current attributes. Issue #6358

commit 9880a8c97f04927e62469713756ea566b2cf643d
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue Mar 14 14:26:05 2017 +0800

    Translate excel sheet name reporting message (PR #6866)
    
    Translate excel sheet name reporting message.
    
    Fixes #6848

commit 08c2f3ebcb674286e23a907247e21d937f580069
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue Mar 14 14:25:22 2017 +0800

    Fix excel merged cell regression (PR #6895)
    
    Information about the cell border is given in an Excel sheet, if the cell border is different from the adjacent cells. `NVDA+F` should work on Excel as well.
    
    Fixes #3044

commit 2fde87e202bdb27f58215db034c1e812ac25178e
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue Mar 14 14:24:20 2017 +0800

    Support aria current (PR #6860)
    
    Support for aria-current in focus mode for chrome
    
    Fixes #6358

commit ea6bdf749127e66788498dfbce2d8c137a177a6a
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue Mar 14 14:24:07 2017 +0800

    Change wording of delete profile confirmation (PR #6884)
    
    Pressing `ESC` while the configuration profile "Confirm Deletion" prompt is active now dismisses the dialog. To do this, the wording was changed, and the `yes/no` buttons were replaced with `ok/cancel` buttons.
    
    Fixes #6851

commit 94e874b32ca8b04a1f12851b09d06869fc915974
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue Mar 14 14:23:32 2017 +0800

    Activating menu items on webpages in browse mode (PR #6761)
    
    Fixes #6735
    
    Menu items (as well as menu item checkbox and menu item radio) can be now be activated while in browse mode.

commit ca28eda8fff637242a47f65486fc74b3635b7d16
Merge: e222ca477 a73c578ad
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 10 00:06:08 2017 +1000

    Update translations.
    
    From translation svn revision: 31747

commit a73c578adc065af8ef571127fc880da0c3bac7df
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 10 00:06:08 2017 +1000

    L10n updates for: zh_TW
    From translation svn revision: 31747
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    16      16      source/locale/zh_TW/characterDescriptions.dic
    52      0       user_docs/zh_TW/changes.t2t
     2 files changed, 68 insertions(+), 16 deletions(-)

commit 3004e7a471a45fafe530e56441e0b3ae8642e836
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 10 00:06:05 2017 +1000

    L10n updates for: vi
    From translation svn revision: 31747
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    50      50      source/locale/vi/LC_MESSAGES/nvda.po
    4       4       user_docs/vi/userGuide.t2t
     2 files changed, 54 insertions(+), 54 deletions(-)

commit 958548b454ec1a48af253f8302787c0fee964932
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 10 00:05:57 2017 +1000

    L10n updates for: sl
    From translation svn revision: 31747
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    5       5       source/locale/sl/LC_MESSAGES/nvda.po
     1 file changed, 5 insertions(+), 5 deletions(-)

commit 606b6886ca486cfba4a4c395ad5c864151602054
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 10 00:05:52 2017 +1000

    L10n updates for: ro
    From translation svn revision: 31747
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>, Florian Ionașcu <florianionascu@hotmail.com>, Alexandru Matei <alexandrumateistelian@gmail.com>, Nicuşor Untilă <nicusoruntila@yahoo.com>
    
    Stats:
    39      40      source/locale/ro/LC_MESSAGES/nvda.po
    2       2       source/locale/ro/characterDescriptions.dic
    1       1       user_docs/ro/changes.t2t
    26      26      user_docs/ro/userGuide.t2t
     4 files changed, 68 insertions(+), 69 deletions(-)

commit d29e94c2d5dc597517b1d3165ed3c0f450408b4c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 10 00:05:48 2017 +1000

    L10n updates for: pl
    From translation svn revision: 31747
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Hubert Meyer <killer@tyflonet.com>
    
    Stats:
    648     648     user_docs/pl/userGuide.t2t
     1 file changed, 648 insertions(+), 648 deletions(-)

commit e4a904aef53f870e590231dd35c756f4f0662b0c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 10 00:05:43 2017 +1000

    L10n updates for: nb_NO
    From translation svn revision: 31747
    
    Authors:
    David Hole <balubathebrave@gmail.com>
    Bjornar Seppola <bjornar@seppola.net>
    
    Stats:
    431     393     source/locale/nb_NO/LC_MESSAGES/nvda.po
     1 file changed, 431 insertions(+), 393 deletions(-)

commit e222ca477b0448858f27a75f8b453b2ef329833c
Merge: 0c799d166 62520307b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 3 00:05:59 2017 +1000

    Update translations.
    
    From translation svn revision: 31659

commit 62520307bd26b7378488a4814379b88acfc12681
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 3 00:05:56 2017 +1000

    L10n updates for: vi
    From translation svn revision: 31659
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    27      27      source/locale/vi/LC_MESSAGES/nvda.po
    1       1       source/locale/vi/symbols.dic
     2 files changed, 28 insertions(+), 28 deletions(-)

commit cd57d2ae8880d557909d7dfaa95917f0ff1d83e2
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 3 00:05:51 2017 +1000

    L10n updates for: sr
    From translation svn revision: 31659
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <zvonimirek222@yandex.com>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    16      20      source/locale/sr/LC_MESSAGES/nvda.po
     1 file changed, 16 insertions(+), 20 deletions(-)

commit 96393289102eefa16125a6651e2b1e1b86702918
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 3 00:05:46 2017 +1000

    L10n updates for: ro
    From translation svn revision: 31659
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>, Florian Ionașcu <florianionascu@hotmail.com>, Alexandru Matei <alexandrumateistelian@gmail.com>, Nicuşor Untilă <nicusoruntila@yahoo.com>
    
    Stats:
    56      56      source/locale/ro/LC_MESSAGES/nvda.po
    4       4       source/locale/ro/characterDescriptions.dic
    8       8       source/locale/ro/symbols.dic
     3 files changed, 68 insertions(+), 68 deletions(-)

commit 72fc2c9a3e48e689e24f2054b6fb14613a35404e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 3 00:05:42 2017 +1000

    L10n updates for: pl
    From translation svn revision: 31659
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Hubert Meyer <killer@tyflonet.com>
    
    Stats:
    1       1       source/locale/pl/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 1d7c72a7199318c698a5cbf3ee1bae30da265eab
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 3 00:05:40 2017 +1000

    L10n updates for: nl
    From translation svn revision: 31659
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <leonard_dev@babbage.com>
    
    Stats:
    70      35      source/locale/nl/LC_MESSAGES/nvda.po
    19      19      user_docs/nl/changes.t2t
     2 files changed, 89 insertions(+), 54 deletions(-)

commit 12ea77fbc10b1bacf59b44def4b2b0c6bc14a27e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 3 00:05:37 2017 +1000

    L10n updates for: my
    From translation svn revision: 31659
    
    Authors:
    Benedict La hkun <lkbenedict@gmail.com>
    
    Stats:
    260     0       user_docs/my/userGuide.t2t
     1 file changed, 260 insertions(+)

commit 99aeb09178546f73f774171c9770cd0dd7df42f6
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 3 00:05:19 2017 +1000

    L10n updates for: es_CO
    From translation svn revision: 31659
    
    Authors:
    Jorge Zarache <reydelasmaquinas@outlook.com>
    
    Stats:
    5       5       source/locale/es_CO/LC_MESSAGES/nvda.po
     1 file changed, 5 insertions(+), 5 deletions(-)

commit 93a66f77e25ab3cb4573d29fa9ad8dfd06c37e49
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Mar 3 00:05:16 2017 +1000

    L10n updates for: de
    From translation svn revision: 31659
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    
    Stats:
    1       1       source/locale/de/symbols.dic
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 0c799d1665dc66cb98547d4ea1d001a4a4a428d3
Merge: 92cf300d9 0208637b8
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 24 00:06:09 2017 +1000

    Update translations.
    
    From translation svn revision: 31589

commit 0208637b8638ae87c2d6acc5cf68871a44163a17
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 24 00:06:06 2017 +1000

    L10n updates for: zh_HK
    From translation svn revision: 31589
    
    Authors:
    Eric Yip <ericycy@gmail.com>
    
    Stats:
    1       1       source/locale/zh_HK/LC_MESSAGES/nvda.po
     1 file changed, 1 insertion(+), 1 deletion(-)

commit feb6aec96bedd4f3177d72c916c052723fdedc8c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 24 00:06:06 2017 +1000

    L10n updates for: zh_CN
    From translation svn revision: 31589
    
    Authors:
    vgjh2005@gmail.com
    
    Stats:
    5       5       source/locale/zh_CN/LC_MESSAGES/nvda.po
     1 file changed, 5 insertions(+), 5 deletions(-)

commit df44bfa72dc6ed5a6ed2f301c9ff09a5d48ffc43
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 24 00:06:04 2017 +1000

    L10n updates for: vi
    From translation svn revision: 31589
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    59      54      source/locale/vi/LC_MESSAGES/nvda.po
    7       8       source/locale/vi/characterDescriptions.dic
    36      36      source/locale/vi/symbols.dic
    464     464     user_docs/vi/userGuide.t2t
     4 files changed, 566 insertions(+), 562 deletions(-)

commit e7e9231ca8c1a4c1c1ba4290d2274f1e37553aff
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 24 00:05:51 2017 +1000

    L10n updates for: ro
    From translation svn revision: 31589
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>, Florian Ionașcu <florianionascu@hotmail.com>, Alexandru Matei <alexandrumateistelian@gmail.com>, Nicuşor Untilă <nicusoruntila@yahoo.com>
    
    Stats:
    6       6       source/locale/ro/LC_MESSAGES/nvda.po
    1       1       user_docs/ro/userGuide.t2t
     2 files changed, 7 insertions(+), 7 deletions(-)

commit c9822f5e17e16d9f89e105b4d0117280862b13c5
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 24 00:05:49 2017 +1000

    L10n updates for: pt_BR
    From translation svn revision: 31589
    
    Authors:
    Cleverson Casarin Uliana <clever97@gmail.com>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    
    Stats:
    16      0       user_docs/pt_BR/changes.t2t
    4       4       user_docs/pt_BR/userGuide.t2t
     2 files changed, 20 insertions(+), 4 deletions(-)

commit d7dc3a12e963eb5e3b5b320657a455cc44cc1379
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 24 00:05:47 2017 +1000

    L10n updates for: pl
    From translation svn revision: 31589
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Hubert Meyer <killer@tyflonet.com>
    
    Stats:
    656     219     source/locale/pl/LC_MESSAGES/nvda.po
     1 file changed, 656 insertions(+), 219 deletions(-)

commit 2a3b593795cdf58cbe429257b3de5d54efc8ac65
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 24 00:05:42 2017 +1000

    L10n updates for: lt
    From translation svn revision: 31589
    
    Authors:
    Paulius Leveris <paulius.leveris@gmail.com>
    Rimas Kudelis <rq@akl.lt>
    
    Stats:
    3       3       source/locale/lt/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 3 deletions(-)

commit 74a745a8227426bbf1cf2f22a6a7444d6ab21e67
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 24 00:05:41 2017 +1000

    L10n updates for: ko
    From translation svn revision: 31589
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    
    Stats:
    7       7       user_docs/ko/changes.t2t
     1 file changed, 7 insertions(+), 7 deletions(-)

commit 437b7d9b72fe4fac6126a4a9049c0b135ebba90b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 24 00:05:37 2017 +1000

    L10n updates for: it
    From translation svn revision: 31589
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    3       3       source/locale/it/LC_MESSAGES/nvda.po
    3       0       user_docs/it/changes.t2t
     2 files changed, 6 insertions(+), 3 deletions(-)

commit bd27d1a0a784ecf7e0032a164c8964d5c430d6bd
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 24 00:05:28 2017 +1000

    L10n updates for: fr
    From translation svn revision: 31589
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    2       2       source/locale/fr/LC_MESSAGES/nvda.po
     1 file changed, 2 insertions(+), 2 deletions(-)

commit 854fd52a48ad7b0104a5ea8cc188fc16f525a1f1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 24 00:05:26 2017 +1000

    L10n updates for: fi
    From translation svn revision: 31589
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    5       5       source/locale/fi/LC_MESSAGES/nvda.po
     1 file changed, 5 insertions(+), 5 deletions(-)

commit ad728efc7fd11357ae0af6de6c96c25b1b2f1ff9
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 24 00:05:18 2017 +1000

    L10n updates for: de
    From translation svn revision: 31589
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    
    Stats:
    6       6       source/locale/de/LC_MESSAGES/nvda.po
    2073    2073    user_docs/de/changes.t2t
     2 files changed, 2079 insertions(+), 2079 deletions(-)

commit 1dda6203d1e80f5a1b9cc7bc7c98b1a309198159
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 24 00:05:16 2017 +1000

    L10n updates for: da
    From translation svn revision: 31589
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    5       5       user_docs/da/userGuide.t2t
     1 file changed, 5 insertions(+), 5 deletions(-)

commit 92cf300d980b875e17e39b5f061a73565d72c757
Merge: 3ebf08c4c a9fe75365
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 17 00:06:06 2017 +1000

    Update translations.
    
    From translation svn revision: 31537

commit a9fe75365110ed01e84b3ac5dbb10c6649a82775
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 17 00:06:05 2017 +1000

    L10n updates for: zh_TW
    From translation svn revision: 31537
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    9       9       user_docs/zh_TW/userGuide.t2t
     1 file changed, 9 insertions(+), 9 deletions(-)

commit 187060cb43ed17d1e1cac3c594f57d876d5aa76e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 17 00:06:03 2017 +1000

    L10n updates for: zh_CN
    From translation svn revision: 31537
    
    Authors:
    vgjh2005@gmail.com
    
    Stats:
    221     31      source/locale/zh_CN/LC_MESSAGES/nvda.po
     1 file changed, 221 insertions(+), 31 deletions(-)

commit 01c82acb4e05aa37c7aca29dfe4bf3e39ea7d868
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 17 00:06:01 2017 +1000

    L10n updates for: vi
    From translation svn revision: 31537
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    158     164     source/locale/vi/LC_MESSAGES/nvda.po
    4       4       user_docs/vi/userGuide.t2t
     2 files changed, 162 insertions(+), 168 deletions(-)

commit 92ccbc47afdff4293e481d81030d490c1d765aef
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 17 00:05:41 2017 +1000

    L10n updates for: lt
    From translation svn revision: 31537
    
    Authors:
    Paulius Leveris <paulius.leveris@gmail.com>
    Rimas Kudelis <rq@akl.lt>
    
    Stats:
    3       4       source/locale/lt/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 4 deletions(-)

commit 128694708e7665030777107f8b2a6183691da2db
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 17 00:05:33 2017 +1000

    L10n updates for: hr
    From translation svn revision: 31537
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <zvonimirek222@yandex.com>
    Mario Percinic <mario.percinic@gmail.com>
    
    Stats:
    3       0       user_docs/hr/changes.t2t
     1 file changed, 3 insertions(+)

commit b9d830e8ac4af673dbb2fc9440d0c3419141fd26
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 17 00:05:26 2017 +1000

    L10n updates for: fi
    From translation svn revision: 31537
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    8       8       source/locale/fi/LC_MESSAGES/nvda.po
    3       3       user_docs/fi/changes.t2t
    7       7       user_docs/fi/userGuide.t2t
     3 files changed, 18 insertions(+), 18 deletions(-)

commit 4b2cdd257654c1c8d138268b96194397c6147c5d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 17 00:05:17 2017 +1000

    L10n updates for: de
    From translation svn revision: 31537
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    
    Stats:
    34      37      user_docs/de/userGuide.t2t
     1 file changed, 34 insertions(+), 37 deletions(-)

commit 3ebf08c4c25e82018718c84b0de74d6fa8d9193a
Author: James Teh <jamie@nvaccess.org>
Date:   Wed Feb 15 16:07:27 2017 +1000

    Add missing locale t2t configuration for Hebrew.

commit 7e6b9d6fa5f310f5a9a7a5cabc5aeea9a16baf6b
Merge: 524ae8bbc d4df09368
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Feb 15 15:45:53 2017 +1000

    Update translations.
    
    From translation svn revision: 31511

commit d4df09368ad447dbd9bf70f677808c26201b3b74
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Feb 15 15:45:52 2017 +1000

    L10n updates for: zh_TW
    From translation svn revision: 31511
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    58      29      source/locale/zh_TW/LC_MESSAGES/nvda.po
    13      13      source/locale/zh_TW/characterDescriptions.dic
    39      2       user_docs/zh_TW/userGuide.t2t
     3 files changed, 110 insertions(+), 44 deletions(-)

commit 5ac31120cd16408ad91f1b9ea9221ec4dec29b49
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Feb 15 15:45:50 2017 +1000

    L10n updates for: zh_HK
    From translation svn revision: 31511
    
    Authors:
    Eric Yip <ericycy@gmail.com>
    
    Stats:
    58      29      source/locale/zh_HK/LC_MESSAGES/nvda.po
     1 file changed, 58 insertions(+), 29 deletions(-)

commit 6af2ae50c9174f3fcc77a14b98af699b2cba77d3
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Feb 15 15:45:48 2017 +1000

    L10n updates for: vi
    From translation svn revision: 31511
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    109     109     source/locale/vi/LC_MESSAGES/nvda.po
    3       0       user_docs/vi/changes.t2t
    1403    319     user_docs/vi/userGuide.t2t
     3 files changed, 1515 insertions(+), 428 deletions(-)

commit f2bfbc222e7f1dc02ca1494570eaec72df04bb35
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Feb 15 15:45:47 2017 +1000

    L10n updates for: uk
    From translation svn revision: 31511
    
    Authors:
    Volodymyr Pyrig <vp88.mobile@gmail.com>
    
    Stats:
    271     119     source/locale/uk/LC_MESSAGES/nvda.po
    19      18      source/locale/uk/symbols.dic
    326     140     user_docs/uk/userGuide.t2t
     3 files changed, 616 insertions(+), 277 deletions(-)

commit de89b773ee63536e73e8df2e108394ec6e541f95
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Feb 15 15:45:46 2017 +1000

    L10n updates for: tr
    From translation svn revision: 31511
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    3       0       user_docs/tr/changes.t2t
     1 file changed, 3 insertions(+)

commit c1bba68e7505d923dff8071269fe8cef2096a5ef
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Feb 15 15:45:44 2017 +1000

    L10n updates for: ta
    From translation svn revision: 31511
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    4       126     source/locale/ta/LC_MESSAGES/nvda.po
    47      6       user_docs/ta/userGuide.t2t
     2 files changed, 51 insertions(+), 132 deletions(-)

commit a80ec9fc997643fac52ab116890388aea50083d6
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Feb 15 15:45:41 2017 +1000

    L10n updates for: sl
    From translation svn revision: 31511
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    8       7       source/locale/sl/LC_MESSAGES/nvda.po
    38      1       user_docs/sl/userGuide.t2t
     2 files changed, 46 insertions(+), 8 deletions(-)

commit 64536b36ae474037d8660d4c304bf9105d0ab5cc
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Feb 15 15:45:40 2017 +1000

    L10n updates for: sk
    From translation svn revision: 31511
    
    Authors:
    Ondrej Rosik <ondrej.rosik@gmail.com>
    Peter Vagner <peter.v@datagate.sk>
    
    Stats:
    221     31      source/locale/sk/LC_MESSAGES/nvda.po
    41      1       user_docs/sk/changes.t2t
    53      12      user_docs/sk/userGuide.t2t
     3 files changed, 315 insertions(+), 44 deletions(-)

commit eebf837042ffedba54fe4fbfa29ed77d02a7aa55
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Feb 15 15:45:38 2017 +1000

    L10n updates for: ru
    From translation svn revision: 31511
    
    Authors:
    Ruslan Kolodyazhni <eye0@rambler.ru>
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    3       0       user_docs/ru/changes.t2t
     1 file changed, 3 insertions(+)

commit dd70dbfb488079bb60f94a472c8687fe3440107c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Feb 15 15:45:36 2017 +1000

    L10n updates for: ro
    From translation svn revision: 31511
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>, Florian Ionașcu <florianionascu@hotmail.com>, Alexandru Matei <alexandrumateistelian@gmail.com>, Nicuşor Untilă <nicusoruntila@yahoo.com>
    
    Stats:
    4       4       source/locale/ro/symbols.dic
    8       5       user_docs/ro/changes.t2t
    26      26      user_docs/ro/userGuide.t2t
     3 files changed, 38 insertions(+), 35 deletions(-)

commit 9e40f70316a6b72abe7ecca66cc4ba68563e9eba
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Feb 15 15:45:35 2017 +1000

    L10n updates for: pt_PT
    From translation svn revision: 31511
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    
    Stats:
    4       1       user_docs/pt_PT/changes.t2t
    1       2       user_docs/pt_PT/userGuide.t2t
     2 files changed, 5 insertions(+), 3 deletions(-)

commit 1fcd140f46a67d160640ee54d37818d3d50c8865
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Feb 15 15:45:33 2017 +1000

    L10n updates for: pl
    From translation svn revision: 31511
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Hubert Meyer <killer@tyflonet.com>
    
    Stats:
    228     665     source/locale/pl/LC_MESSAGES/nvda.po
    3       0       user_docs/pl/changes.t2t
    38      1       user_docs/pl/userGuide.t2t
     3 files changed, 269 insertions(+), 666 deletions(-)

commit 338b0c1fca7f577414aa81242d4cee7abada66d5
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Feb 15 15:45:31 2017 +1000

    L10n updates for: nl
    From translation svn revision: 31511
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <leonard_dev@babbage.com>
    
    Stats:
    20      17      user_docs/nl/changes.t2t
     1 file changed, 20 insertions(+), 17 deletions(-)

commit 8b81ddd683dcca3c62fc4dd15b2c7624625b9e5e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Feb 15 15:45:28 2017 +1000

    L10n updates for: my
    From translation svn revision: 31511
    
    Authors:
    Benedict La hkun <lkbenedict@gmail.com>
    
    Stats:
    287     288     source/locale/my/LC_MESSAGES/nvda.po
     1 file changed, 287 insertions(+), 288 deletions(-)

commit c33bddc0f056bc90e518e4c0c2b50fbb55edec9b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Feb 15 15:45:27 2017 +1000

    L10n updates for: ko
    From translation svn revision: 31511
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    
    Stats:
    3       4       source/locale/ko/LC_MESSAGES/nvda.po
    6       3       user_docs/ko/changes.t2t
    8       8       user_docs/ko/userGuide.t2t
     3 files changed, 17 insertions(+), 15 deletions(-)

commit 8b1fb81f2cc7b52a09333cb233f28aa51c7d8ad9
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Feb 15 15:45:25 2017 +1000

    L10n updates for: ja
    From translation svn revision: 31511
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    22      18      user_docs/ja/changes.t2t
    1       1       user_docs/ja/userGuide.t2t
     2 files changed, 23 insertions(+), 19 deletions(-)

commit 9d6193a3a3081b2d056861f02c5eefe106693063
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Feb 15 15:45:21 2017 +1000

    L10n updates for: hu
    From translation svn revision: 31511
    
    Authors:
    Aron OcsvAri <oaron@nvda.hu>
    
    Stats:
    223     33      source/locale/hu/LC_MESSAGES/nvda.po
    40      0       user_docs/hu/changes.t2t
     2 files changed, 263 insertions(+), 33 deletions(-)

commit a0cb7d7d71ccaf3287d8493f666c058f1827b4f5
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Feb 15 15:45:18 2017 +1000

    L10n updates for: he
    From translation svn revision: 31511
    
    Authors:
    Shmuel Naaman <shmuel_naaman@yahoo.com>
    Afik Sofir <afik.sofer@gmail.com>
    
    Stats:
    11      11      source/locale/he/LC_MESSAGES/nvda.po
    18      18      source/locale/he/characterDescriptions.dic
    1       0       user_docs/he/changes.t2t
    661     602     user_docs/he/userGuide.t2t
     4 files changed, 691 insertions(+), 631 deletions(-)

commit ddaea1fb950ae3dc417c32218941145dadd70a1b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Feb 15 15:45:17 2017 +1000

    L10n updates for: gl
    From translation svn revision: 31511
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    
    Stats:
    3       0       user_docs/gl/changes.t2t
     1 file changed, 3 insertions(+)

commit b40b8894fec0427d00ca4130f39e8cdac5afa437
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Feb 15 15:45:15 2017 +1000

    L10n updates for: fr
    From translation svn revision: 31511
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    3       1       user_docs/fr/changes.t2t
     1 file changed, 3 insertions(+), 1 deletion(-)

commit 58500cc42097f14782ed7dd7d61de4ea41864954
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Feb 15 15:45:13 2017 +1000

    L10n updates for: fi
    From translation svn revision: 31511
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    5       5       source/locale/fi/LC_MESSAGES/nvda.po
    4       1       user_docs/fi/changes.t2t
    3       3       user_docs/fi/userGuide.t2t
     3 files changed, 12 insertions(+), 9 deletions(-)

commit daffec4ba3755520e8e27b818844824da50f7620
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Feb 15 15:45:10 2017 +1000

    L10n updates for: fa
    From translation svn revision: 31511
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    3       0       user_docs/fa/changes.t2t
     1 file changed, 3 insertions(+)

commit c48408f4249fe2f34ac16de942d5cf14708856d1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Feb 15 15:45:08 2017 +1000

    L10n updates for: es
    From translation svn revision: 31511
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    
    Stats:
    3       0       user_docs/es/changes.t2t
     1 file changed, 3 insertions(+)

commit 7d40e06ce892bbb1481aba0ba18ac44f539726bb
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Feb 15 15:45:04 2017 +1000

    L10n updates for: el
    From translation svn revision: 31511
    
    Authors:
    Irene Nakas <irnakas@gmail.com>
    Nikos Demetriou <nikosdemetriou@googlemail.com>
    access@e-rhetor.com
    
    Stats:
    224     32      source/locale/el/LC_MESSAGES/nvda.po
     1 file changed, 224 insertions(+), 32 deletions(-)

commit 09246b076bca4a21965b89f2c9e7eece27cf96a1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Feb 15 15:45:03 2017 +1000

    L10n updates for: de
    From translation svn revision: 31511
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    
    Stats:
    5       2       user_docs/de/changes.t2t
     1 file changed, 5 insertions(+), 2 deletions(-)

commit e191754944bca5429af8fe69e354dbab57b17cc3
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Feb 15 15:45:02 2017 +1000

    L10n updates for: da
    From translation svn revision: 31511
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    3       0       user_docs/da/changes.t2t
     1 file changed, 3 insertions(+)

commit 3e914f1c49c9688005cf9ca453344e2f429c3571
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Feb 15 15:44:58 2017 +1000

    L10n updates for: bg
    From translation svn revision: 31511
    
    Authors:
    Zahari Yurukov <zahari.yurukov@gmail.com>
    Kostadin Kolev <k_kolev1985@mail.bg>
    
    Stats:
    226     35      source/locale/bg/LC_MESSAGES/nvda.po
    45      1       user_docs/bg/changes.t2t
    45      4       user_docs/bg/userGuide.t2t
     3 files changed, 316 insertions(+), 40 deletions(-)

commit f4a74e7fd2e76bceaa31257f59df8a79f86f6db3
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Feb 15 15:44:55 2017 +1000

    L10n updates for: ar
    From translation svn revision: 31511
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    3       0       user_docs/ar/changes.t2t
     1 file changed, 3 insertions(+)

commit 11b4569b2043a88563894434cd7a300ea1fcb85f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Wed Feb 15 15:44:53 2017 +1000

    L10n updates for: an
    From translation svn revision: 31511
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    
    Stats:
    3       0       user_docs/an/changes.t2t
    10      8       user_docs/an/userGuide.t2t
     2 files changed, 13 insertions(+), 8 deletions(-)

commit 524ae8bbc760028ad0e8f7bb3beb74dfbda231ef
Author: Ole Guldberg <ole@omgwtf.dk>
Date:   Wed Feb 15 04:11:16 2017 +0100

    Developer guide: correct link to the "Translating NVDA" page on Github. (#6867)

commit aabbbd75ba4ccda1f406c9ed93b088ad1018dd5c
Merge: 0b24cb325 dfcea902b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 10 00:06:14 2017 +1000

    Update translations.
    
    From translation svn revision: 31298

commit dfcea902bfd9570b19ee07db69f7bdca268b38ad
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 10 00:06:10 2017 +1000

    L10n updates for: vi
    From translation svn revision: 31298
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    20      25      source/locale/vi/LC_MESSAGES/nvda.po
    19      10      user_docs/vi/changes.t2t
     2 files changed, 39 insertions(+), 35 deletions(-)

commit a08d8b2743dcc0a8798125402387ddcf7d0f6991
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 10 00:06:07 2017 +1000

    L10n updates for: tr
    From translation svn revision: 31298
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    222     31      source/locale/tr/LC_MESSAGES/nvda.po
    0       1       source/locale/tr/symbols.dic
    33      33      user_docs/tr/changes.t2t
     3 files changed, 255 insertions(+), 65 deletions(-)

commit 9517e4f5c828a4b33bc2e3fe4a1921617b8741e9
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 10 00:06:02 2017 +1000

    L10n updates for: sr
    From translation svn revision: 31298
    
    Authors:
    Nikola Jovic <wwenikola123@gmail.com>
    Janko Valencik <janko.valencik@alfanum.co.rs>
    Zvonimir <zvonimirek222@yandex.com>
    Danijela Popovic <vlajna95@gmail.com>
    
    Stats:
    220     30      source/locale/sr/LC_MESSAGES/nvda.po
     1 file changed, 220 insertions(+), 30 deletions(-)

commit aaf568d3b5e231fc9f91c3166d790228b4010d0c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 10 00:06:01 2017 +1000

    L10n updates for: sl
    From translation svn revision: 31298
    
    Authors:
    Jozko Gregorc <jozko.gregorc@gmail.com>
    
    Stats:
    100     30      source/locale/sl/LC_MESSAGES/nvda.po
    17      13      user_docs/sl/userGuide.t2t
     2 files changed, 117 insertions(+), 43 deletions(-)

commit 93156dc7d0d82d2dd4d6676a5a8ab4aee8265cac
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 10 00:05:58 2017 +1000

    L10n updates for: ru
    From translation svn revision: 31298
    
    Authors:
    Ruslan Kolodyazhni <eye0@rambler.ru>
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    60      29      source/locale/ru/LC_MESSAGES/nvda.po
    21      9       user_docs/ru/changes.t2t
    38      1       user_docs/ru/userGuide.t2t
     3 files changed, 119 insertions(+), 39 deletions(-)

commit eab890a37c459a0fc4196189d79a3f2156e535af
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 10 00:05:56 2017 +1000

    L10n updates for: ro
    From translation svn revision: 31298
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>, Florian Ionașcu <florianionascu@hotmail.com>, Alexandru Matei <alexandrumateistelian@gmail.com>, Nicuşor Untilă <nicusoruntila@yahoo.com>
    
    Stats:
    2       1       user_docs/ro/userGuide.t2t
     1 file changed, 2 insertions(+), 1 deletion(-)

commit 8b6dc737490752373dad06565435e25d6e95b475
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 10 00:05:55 2017 +1000

    L10n updates for: pt_PT
    From translation svn revision: 31298
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    
    Stats:
    2       2       source/locale/pt_PT/LC_MESSAGES/nvda.po
    1       0       user_docs/pt_PT/changes.t2t
    37      0       user_docs/pt_PT/userGuide.t2t
     3 files changed, 40 insertions(+), 2 deletions(-)

commit 2772aad8d5cdf5387c00db49c4cf12d539c00e08
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 10 00:05:51 2017 +1000

    L10n updates for: pl
    From translation svn revision: 31298
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Hubert Meyer <killer@tyflonet.com>
    
    Stats:
    3       4       source/locale/pl/LC_MESSAGES/nvda.po
    13      5       user_docs/pl/changes.t2t
    8       4       user_docs/pl/userGuide.t2t
     3 files changed, 24 insertions(+), 13 deletions(-)

commit 1bbb1481244f89f1d69c52f1e06651ea28203d4c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 10 00:05:49 2017 +1000

    L10n updates for: nl
    From translation svn revision: 31298
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <leonard_dev@babbage.com>
    
    Stats:
    19      0       user_docs/nl/changes.t2t
    6       5       user_docs/nl/userGuide.t2t
     2 files changed, 25 insertions(+), 5 deletions(-)

commit 738822591254a6ce29b644e2bb4d597cac20b11a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 10 00:05:46 2017 +1000

    L10n updates for: my
    From translation svn revision: 31298
    
    Authors:
    Benedict La hkun <lkbenedict@gmail.com>
    
    Stats:
    8443    8361    source/locale/my/LC_MESSAGES/nvda.po
     1 file changed, 8443 insertions(+), 8361 deletions(-)

commit 920dd902b028edf4d526f4e20610476a6f79ae67
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 10 00:05:45 2017 +1000

    L10n updates for: ko
    From translation svn revision: 31298
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    
    Stats:
    23      18      user_docs/ko/changes.t2t
    42      1       user_docs/ko/userGuide.t2t
     2 files changed, 65 insertions(+), 19 deletions(-)

commit 147fd00c8e6de56487343fd26c48b7c1bf69133e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 10 00:05:43 2017 +1000

    L10n updates for: ja
    From translation svn revision: 31298
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    41      1       user_docs/ja/changes.t2t
     1 file changed, 41 insertions(+), 1 deletion(-)

commit ae70de04dc36fdc84aa9013971591c0e153a13e4
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 10 00:05:41 2017 +1000

    L10n updates for: it
    From translation svn revision: 31298
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    3       3       source/locale/it/LC_MESSAGES/nvda.po
    48      7       user_docs/it/userGuide.t2t
     2 files changed, 51 insertions(+), 10 deletions(-)

commit 11ab86b32ca68352c248002fa17b8f26a7248ac8
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 10 00:05:37 2017 +1000

    L10n updates for: hr
    From translation svn revision: 31298
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <zvonimirek222@yandex.com>
    Mario Percinic <mario.percinic@gmail.com>
    
    Stats:
    31      22      user_docs/hr/changes.t2t
    3       2       user_docs/hr/userGuide.t2t
     2 files changed, 34 insertions(+), 24 deletions(-)

commit 6d2c9f8cb4a53c0b1090e74605dbc8186cfd30ec
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 10 00:05:35 2017 +1000

    L10n updates for: he
    From translation svn revision: 31298
    
    Authors:
    Shmuel Naaman <shmuel_naaman@yahoo.com>
    Afik Sofir <afik.sofer@gmail.com>
    
    Stats:
    3       4       source/locale/he/LC_MESSAGES/nvda.po
     1 file changed, 3 insertions(+), 4 deletions(-)

commit 94f8df69467cfa993c3aa8f9a8248155abecbef1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 10 00:05:32 2017 +1000

    L10n updates for: fr
    From translation svn revision: 31298
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    5       4       user_docs/fr/changes.t2t
    10      10      user_docs/fr/userGuide.t2t
     2 files changed, 15 insertions(+), 14 deletions(-)

commit 5074168028405eee5bf3aa7d5300796f5c6680be
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 10 00:05:30 2017 +1000

    L10n updates for: fi
    From translation svn revision: 31298
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    4       4       source/locale/fi/LC_MESSAGES/nvda.po
    1       1       user_docs/fi/changes.t2t
    1       1       user_docs/fi/userGuide.t2t
     3 files changed, 6 insertions(+), 6 deletions(-)

commit 20cc2e6cd8def4a5f9807e8b6bdcccc91644d39d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 10 00:05:28 2017 +1000

    L10n updates for: fa
    From translation svn revision: 31298
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    3       4       source/locale/fa/LC_MESSAGES/nvda.po
    16      7       user_docs/fa/changes.t2t
    4       3       user_docs/fa/userGuide.t2t
     3 files changed, 23 insertions(+), 14 deletions(-)

commit 8a1864572d3757e203a4fcc748b2a72d7d8ca3ec
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 10 00:05:23 2017 +1000

    L10n updates for: es_CO
    From translation svn revision: 31298
    
    Authors:
    Jorge Zarache <reydelasmaquinas@outlook.com>
    
    Stats:
    352     241     source/locale/es_CO/LC_MESSAGES/nvda.po
    18      18      source/locale/es_CO/characterDescriptions.dic
     2 files changed, 370 insertions(+), 259 deletions(-)

commit 01908ba900c22efb6f9ae2e96d48e73fdb7dd52a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 10 00:05:19 2017 +1000

    L10n updates for: de
    From translation svn revision: 31298
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    
    Stats:
    40      3       user_docs/de/userGuide.t2t
     1 file changed, 40 insertions(+), 3 deletions(-)

commit 023c8d329fb0211707ec35135a5afd757a8b1135
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 10 00:05:18 2017 +1000

    L10n updates for: da
    From translation svn revision: 31298
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    67      34      source/locale/da/LC_MESSAGES/nvda.po
    9       1       user_docs/da/changes.t2t
    44      3       user_docs/da/userGuide.t2t
     3 files changed, 120 insertions(+), 38 deletions(-)

commit a67724ddc53549d96f814134f0f1a3bf06ec0c2f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 10 00:05:10 2017 +1000

    L10n updates for: ar
    From translation svn revision: 31298
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    98      29      source/locale/ar/LC_MESSAGES/nvda.po
    12      0       user_docs/ar/changes.t2t
    37      0       user_docs/ar/userGuide.t2t
     3 files changed, 147 insertions(+), 29 deletions(-)

commit f4e8991c5f6a938531b1ca65cfebc9fef4722b54
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 10 00:05:06 2017 +1000

    L10n updates for: an
    From translation svn revision: 31298
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    
    Stats:
    18      9       user_docs/an/changes.t2t
     1 file changed, 18 insertions(+), 9 deletions(-)

commit 0b24cb325b3957b5efce3ef0001dd1ceca855a70
Author: James Teh <jamie@nvaccess.org>
Date:   Thu Feb 9 22:21:59 2017 +1000

    What's New: Minor linguistic tweak.

commit 3b86bce2066b1934df14b96f2e83369900860ecf
Author: James Teh <jamie@nvaccess.org>
Date:   Wed Feb 8 22:19:14 2017 +1000

    Fix wx assertions in updateCheck caused by manipulating timers from a background thread. (PR #6798, issue #6152)
    
    There are two places where we were setting a timer in updateCheck from a background thread:
    1. We do automatic update checks in a background thread, and when it's done, we then set up the next check in that thread.
    2. We download updates in a background thread and use a timer to push progress updates from that thread to the GUI.
    This fixes both of those to use CallAfter.

commit f2423e642664832516e120b198b5066211ad9c79
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Feb 8 11:24:38 2017 +1000

    Update What's new.

commit ffb39c489644aa56248ae4298e28ed2a0a1ead5c
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Feb 8 11:22:48 2017 +1000

    NVDA no longer becomes unusable after exiting Windows Media Player while focused on a slider control. (#6787)
    
    api.setFocusObject: ensure that the newAppModules list passed to appModuleHandler.handleAppSwitch contains the appModule for the new focus, rather than only the appmodule for an original focus ancestor that happened to match the new focus.
    Fixes #5467.

commit 9a6353ce3df1433a3e80fb00cad102282aee6d3a
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Feb 8 11:20:44 2017 +1000

    Support for Microsoft Edge from Windows build 15002 and up (#6789)
    
    * eventHandler.shouldAcceptEvent: As Windows.UI.Core windows no longer will be a descendant of the foreground window in Edge (and soon to be other UWP apps), for these windows, ensure the window is equal to or a descendant of the active window in the current input thread.
    
    * eventHandler.shouldAcceptEvent: allow all events from Windows.UI.Core windows, as Edge, and soon to be all UWP apps,  will no longer have  their windows as a descendant of the foreground window.
    
    * Allow matching of the root of Edge documents by seeing if its parent is not  marked as being in a framework of MicrosoftEdge, rather than only seeing if the document is inside an EdgeRootContainer.
    This change is necessary for Windows builds 15002 and up where the root container is now gone.
    
    * Edge: ensure we don't go into an endless recursion when fetching text with fields due to a collapsed range due to  the range from an enclosing element ending on or before this range. Quite common in Edge builds once the 'gap' is removed.

commit 3255ade241fa27b4e9992a29c9e512253834075c
Author: Michael Curran <mick@nvaccess.org>
Date:   Wed Feb 8 11:15:11 2017 +1000

    Update What's new.

commit a0a06d91d757a62e367ab2bcdb1ca58682828be9
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Feb 8 10:58:37 2017 +1000

    Fall back to Microsoft's own dynamic ducking, and disable our 'always ducking' mode, for Windows builds 14986 and up. (#6799)
    
    As this is hopefully temporary, the quickfix solution is to force  usage of our own 'always duck' mode, which  allows microsoft to dynamic duck how ever it likes.
    
    Fixes #6684

commit de55d36cdc84f7137af5205f45b007905d612cd4
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Wed Feb 8 10:55:49 2017 +1000

    Make a string in Microsoft Excel unicode. (#6849)
    
    Fixes #6848

commit 2dd9048b8a8400c49f007ecef6c6556134c63164
Merge: 38cec2878 4ee21124c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 3 00:06:25 2017 +1000

    Update translations.
    
    From translation svn revision: 31157

commit 4ee21124ca92cd601f7c33335d426dabf979d2d9
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 3 00:06:24 2017 +1000

    L10n updates for: zh_TW
    From translation svn revision: 31157
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    85      87      source/locale/zh_TW/characterDescriptions.dic
     1 file changed, 85 insertions(+), 87 deletions(-)

commit ec1ab47f57cd2eb21543b47fe295ab1c7076a57a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 3 00:06:19 2017 +1000

    L10n updates for: vi
    From translation svn revision: 31157
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    73      41      source/locale/vi/LC_MESSAGES/nvda.po
    24      14      user_docs/vi/changes.t2t
     2 files changed, 97 insertions(+), 55 deletions(-)

commit 2a3d8c1ef6fbbcdeaa2bd5b954b2cf2caf504ab9
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 3 00:06:16 2017 +1000

    L10n updates for: tr
    From translation svn revision: 31157
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    33      4       user_docs/tr/changes.t2t
    43      2       user_docs/tr/userGuide.t2t
     2 files changed, 76 insertions(+), 6 deletions(-)

commit a8dac05cc9eb1acb7716c4c68202d9bb9cbf64f5
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 3 00:06:15 2017 +1000

    L10n updates for: ta
    From translation svn revision: 31157
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    187     30      source/locale/ta/LC_MESSAGES/nvda.po
     1 file changed, 187 insertions(+), 30 deletions(-)

commit 93c0bd4bf11756f34339ef48813ad4472336d925
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 3 00:06:05 2017 +1000

    L10n updates for: ro
    From translation svn revision: 31157
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>, Florian Ionașcu <florianionascu@hotmail.com>, Nicuşor Untilă <nicusoruntila@yahoo.com>
    
    Stats:
    59      30      source/locale/ro/LC_MESSAGES/nvda.po
    13      1       user_docs/ro/changes.t2t
    43      3       user_docs/ro/userGuide.t2t
     3 files changed, 115 insertions(+), 34 deletions(-)

commit cee63dfff0ab689db6c03040adc1a32a107983c1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 3 00:06:03 2017 +1000

    L10n updates for: pt_PT
    From translation svn revision: 31157
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    
    Stats:
    60      29      source/locale/pt_PT/LC_MESSAGES/nvda.po
    18      3       user_docs/pt_PT/changes.t2t
     2 files changed, 78 insertions(+), 32 deletions(-)

commit fda6b11f55fe69c9f4471fc94d6303ea02eac1e2
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 3 00:06:00 2017 +1000

    L10n updates for: pt_BR
    From translation svn revision: 31157
    
    Authors:
    Cleverson Casarin Uliana <clever97@gmail.com>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    
    Stats:
    62      29      source/locale/pt_BR/LC_MESSAGES/nvda.po
     1 file changed, 62 insertions(+), 29 deletions(-)

commit b2b8a239780e708f2b65f8f5215f6282e869f8c2
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 3 00:05:58 2017 +1000

    L10n updates for: pl
    From translation svn revision: 31157
    
    Authors:
    Grzegorz Zlotowicz <grzezlo@wp.pl>
    Patryk Faliszewski <patric3031@wp.pl>
    Hubert Meyer <killer@tyflonet.com>
    
    Stats:
    223     31      source/locale/pl/LC_MESSAGES/nvda.po
    33      0       user_docs/pl/changes.t2t
     2 files changed, 256 insertions(+), 31 deletions(-)

commit c92054aa79f363bb24c24ea1d13c8fdef4bb25b5
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 3 00:05:56 2017 +1000

    L10n updates for: nl
    From translation svn revision: 31157
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <leonard_dev@babbage.com>
    
    Stats:
    40      0       user_docs/nl/userGuide.t2t
     1 file changed, 40 insertions(+)

commit 624afba97a5fa568648a33a9b7b2372d6d49d539
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 3 00:05:52 2017 +1000

    L10n updates for: lt
    From translation svn revision: 31157
    
    Authors:
    Paulius Leveris <paulius.leveris@gmail.com>
    Rimas Kudelis <rq@akl.lt>
    
    Stats:
    225     32      source/locale/lt/LC_MESSAGES/nvda.po
     1 file changed, 225 insertions(+), 32 deletions(-)

commit b0914f22da45a9c304c5e3472e19b548ce0e8b47
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 3 00:05:52 2017 +1000

    L10n updates for: ko
    From translation svn revision: 31157
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    
    Stats:
    66      33      source/locale/ko/LC_MESSAGES/nvda.po
    10      0       user_docs/ko/changes.t2t
     2 files changed, 76 insertions(+), 33 deletions(-)

commit 34f71a858c36871db136d0b51ac06d4a40e123ac
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 3 00:05:49 2017 +1000

    L10n updates for: ja
    From translation svn revision: 31157
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    58      29      source/locale/ja/LC_MESSAGES/nvda.po
    36      0       user_docs/ja/userGuide.t2t
     2 files changed, 94 insertions(+), 29 deletions(-)

commit 29503db74dd7434ba6b3b30735010843c7b92d39
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 3 00:05:46 2017 +1000

    L10n updates for: it
    From translation svn revision: 31157
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    60      29      source/locale/it/LC_MESSAGES/nvda.po
    13      1       user_docs/it/changes.t2t
    5       5       user_docs/it/userGuide.t2t
     3 files changed, 78 insertions(+), 35 deletions(-)

commit c5176814db0ddbd77903911b6c8585a1d40e2434
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 3 00:05:42 2017 +1000

    L10n updates for: hr
    From translation svn revision: 31157
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <zvonimirek222@yandex.com>
    Mario Percinic <mario.percinic@gmail.com>
    
    Stats:
    223     32      source/locale/hr/LC_MESSAGES/nvda.po
    5       2       user_docs/hr/changes.t2t
    44      4       user_docs/hr/userGuide.t2t
     3 files changed, 272 insertions(+), 38 deletions(-)

commit 29929d3cd4435edfcaefcf2068cc8241fa7ab16e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 3 00:05:40 2017 +1000

    L10n updates for: he
    From translation svn revision: 31157
    
    Authors:
    Shmuel Naaman <shmuel_naaman@yahoo.com>
    Afik Sofir <afik.sofer@gmail.com>
    
    Stats:
    70      36      source/locale/he/LC_MESSAGES/nvda.po
     1 file changed, 70 insertions(+), 36 deletions(-)

commit 53bac2fd945164381d85e809b5f72ee35124c519
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 3 00:05:38 2017 +1000

    L10n updates for: gl
    From translation svn revision: 31157
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    
    Stats:
    58      29      source/locale/gl/LC_MESSAGES/nvda.po
    13      1       user_docs/gl/changes.t2t
    37      0       user_docs/gl/userGuide.t2t
     3 files changed, 108 insertions(+), 30 deletions(-)

commit 42ef9be5b7d97eee43e344acc4d65bbd2eed9189
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 3 00:05:36 2017 +1000

    L10n updates for: ga
    From translation svn revision: 31157
    
    Authors:
    Cearbhall OMeadhra <cearbhall.omeadhra@blbc.ie>
    Ronan McGuirk <ronan.p.mcguirk@gmail.com>
    Kevin Scannell <kscanne@gmail.com>
    
    Stats:
    60      29      source/locale/ga/LC_MESSAGES/nvda.po
     1 file changed, 60 insertions(+), 29 deletions(-)

commit 61f1d22653d8ea235a44f25171b317c79c6e3890
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 3 00:05:35 2017 +1000

    L10n updates for: fr
    From translation svn revision: 31157
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    60      29      source/locale/fr/LC_MESSAGES/nvda.po
    552     15      user_docs/fr/changes.t2t
    37      0       user_docs/fr/userGuide.t2t
     3 files changed, 649 insertions(+), 44 deletions(-)

commit eb1ec7887f5c8bb221be4b04486e829f89394b4c
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 3 00:05:33 2017 +1000

    L10n updates for: fi
    From translation svn revision: 31157
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    63      32      source/locale/fi/LC_MESSAGES/nvda.po
    16      4       user_docs/fi/changes.t2t
    39      2       user_docs/fi/userGuide.t2t
     3 files changed, 118 insertions(+), 38 deletions(-)

commit 72cd6152a96561ffa2602f51c40345d9ebf61352
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 3 00:05:30 2017 +1000

    L10n updates for: fa
    From translation svn revision: 31157
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    62      32      source/locale/fa/LC_MESSAGES/nvda.po
    3       0       user_docs/fa/changes.t2t
    37      1       user_docs/fa/userGuide.t2t
     3 files changed, 102 insertions(+), 33 deletions(-)

commit 79e7e24fe028f9472c398ac1681650ab48de56a9
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 3 00:05:28 2017 +1000

    L10n updates for: es
    From translation svn revision: 31157
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    
    Stats:
    59      29      source/locale/es/LC_MESSAGES/nvda.po
    13      1       user_docs/es/changes.t2t
    37      0       user_docs/es/userGuide.t2t
     3 files changed, 109 insertions(+), 30 deletions(-)

commit 1543bc7d7339d70dc4e825a0abac3995c9053d10
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 3 00:05:22 2017 +1000

    L10n updates for: de
    From translation svn revision: 31157
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    
    Stats:
    58      28      source/locale/de/LC_MESSAGES/nvda.po
    27      15      user_docs/de/changes.t2t
     2 files changed, 85 insertions(+), 43 deletions(-)

commit 63106ba4de9d6cd9fe9bdf295e46df6a0d9eea65
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 3 00:05:19 2017 +1000

    L10n updates for: cs
    From translation svn revision: 31157
    
    Authors:
    Martina Letochova <letochova@seznam.cz>
    
    Stats:
    62      29      source/locale/cs/LC_MESSAGES/nvda.po
     1 file changed, 62 insertions(+), 29 deletions(-)

commit e3e2ce6bbcd7f7a292e9c504c0080f718d97489f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Feb 3 00:05:08 2017 +1000

    L10n updates for: an
    From translation svn revision: 31157
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    
    Stats:
    93      63      source/locale/an/LC_MESSAGES/nvda.po
    3       0       user_docs/an/changes.t2t
    56      17      user_docs/an/userGuide.t2t
     3 files changed, 152 insertions(+), 80 deletions(-)

commit 38cec2878ae1af214654c1c9741703b014901422
Author: James Teh <jamie@nvaccess.org>
Date:   Thu Feb 2 12:12:25 2017 +1000

    What's New: Restore entries truncated in commit b4e99f0c.

commit b6c27daa4aa7d909fe4df7a60bb606d27266b298
Author: James Teh <jamie@nvaccess.org>
Date:   Wed Feb 1 17:10:32 2017 +1000

    What's New: Add release blurb. Linguistic and other fixes.

commit 4e91a0711c99b4599f698416f7cb8c706731a6a5
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue Jan 31 09:15:10 2017 +0100

    Dont report error for column count failure (PR #6744)
    
    When getting the column count in word fails, do not report it as an error. The call to get the column count fails when in comments.
    
    Fixes #6711

commit a61bf3673d5b3ef08f0cb20df28528714f36856f
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue Jan 31 09:12:23 2017 +0100

    Update changes file for PR #6721
    
    - Added an option to the exit dialog to restart with debug level logging. (Issue #6689)

commit a2ac3dad7c5ead5c7f3d2bfb6929bf1e3606b535
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue Jan 31 09:12:18 2017 +0100

    Add restart with debug level logging (PR #6721)
    
    Fixes #6689
    
    - An option has been added to the exit dialog to restart with debug level logging. This provides a convenience to users who wish to enable debug level logging temporarily (one run of nvda).
    - A start up command line argument (`--debug-logging`) has been added to make it easier to start nvda with debug level logging.
    
    Enabling debug logging in this way sets the log level earlier than setting it via the configuration file. In particular, this allows the debug messages that occur during the loading of the configuration file to be present in the log file.

commit b4e99f0c84a44da5112b0752ee85eb28648842c8
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue Jan 31 08:25:41 2017 +0100

    Update changes file for PR #6736
    
    - Added a command to report the name of the worksheet and the cell location while in Microsoft Ecel. This can be triggered with `NVDA+numpadDelete` or for laptop layout `NVDA+delete`. (Issue #6613)

commit 97b0dd416c9d64398bfad467b1daed641656f68b
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue Jan 31 08:25:36 2017 +0100

    Report current worksheet in excel (PR #6736)
    
    Provide a command to report the name of the worksheet and the cell
    location while in MS excel. This can be triggered with `NVDA+numpadDelete` or for laptop layout `NVDA+delete`
    
    Fixes #6613

commit d6c33d10b9e527fd6b60dfe2d8568752a576aedd
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue Jan 31 07:59:44 2017 +0100

    Update changes file for PR #6645
    
    - Mouse tracking now works across all screens on computers with multiple monitors. (Issue #6598)

commit 8d95b2a1beb01c68f668e7fd5a23d69eed322ec2
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Tue Jan 31 14:59:37 2017 +0800

    Handle multiple monitors with mouse tracking (PR #6645)
    
    Fixes #6598
    
    The position of the mouse is now considered within multi-monitor space.

commit d46228fc64de6a96bc3f2b32fc96ff689eb865e5
Author: Michael Curran <mick@nvaccess.org>
Date:   Tue Jan 31 16:18:30 2017 +1000

    Update what's new.

commit 8d0f19627009c70f7602e778b179a34d5f4b9e0a
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Tue Jan 31 16:15:45 2017 +1000

    Support browse mode table navigation in Microsoft Edge (#6617)
    
    * Abstract virtualBuffer table navigation support so it can be available in all browse mode documents.
    
    If an API has the ability to look up a cell by row and column (and correctly handles row/col spans) then only BrowseModeDocumentTreeInterceptor._getTableCellAt needs to be overridden. For more complex cases, BrowseModeDocumentTreeInterceptor._getnearestTableCell may have to be overridden.
    
    * Support browse mode table navigation for UI Automation (such as Microsoft Edge).

commit 02e8a7ffaf745b4854e50b208829f29d2451dac2
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Mon Jan 30 22:07:53 2017 -0800

    Documentation:  Fix up What's new and user guide (#6784)
    
    * Documentation: grammar fixes, Wordpad -> WordPad, fixed missing parenthesis and full stops.
    
    * What's new: added back entries earlier than 2010.2. re #6814.

commit 08af4cef7e83fa33ada0678b495af44b00d8c843
Author: James Teh <jamie@nvaccess.org>
Date:   Mon Jan 30 16:38:15 2017 +1000

    Upload appropriate debug symbols to Mozilla crash-stats for branch snapshots and releases (but not try builds). (PR #6816, issue #6646)

commit 13f973a6e178602973f0705e967f723ee3a0d594
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Jan 30 09:16:28 2017 +1000

    Update What's new.

commit 466651ed90708602280fb48fe97d7f63d344fa58
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Mon Jan 30 09:13:03 2017 +1000

    Update to latest espeak-ng master (#6717)

commit 1e4d8023afdbf08bc8c9110958c70ecda28fd6bd
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Sat Jan 28 14:22:32 2017 +1000

    Add an 'analyze' flag to scons nvdaHelperDebugFlags which causes MSVC to run code analysis on all of our own nvdaHelper code, stopping on any warning. (#6795)

commit 9fe839665a9feb762bd7a4ebcd41bc6893fd0991
Merge: d9b009291 0f818e639
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 27 00:05:58 2017 +1000

    Update translations.
    
    From translation svn revision: 30898

commit 0f818e6398931175aa33abcc3521044e69d7b996
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 27 00:05:57 2017 +1000

    L10n updates for: zh_TW
    From translation svn revision: 30898
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    178     17      source/locale/zh_TW/LC_MESSAGES/nvda.po
    30      30      source/locale/zh_TW/characterDescriptions.dic
    18      14      user_docs/zh_TW/userGuide.t2t
     3 files changed, 226 insertions(+), 61 deletions(-)

commit cd37ee402398489d24cb86738972d7833c9a416b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 27 00:05:55 2017 +1000

    L10n updates for: zh_HK
    From translation svn revision: 30898
    
    Authors:
    Eric Yip <ericycy@gmail.com>
    
    Stats:
    165     4       source/locale/zh_HK/LC_MESSAGES/nvda.po
     1 file changed, 165 insertions(+), 4 deletions(-)

commit ec4813d378a8bff1bdb9f50f8a43b1eb5e399716
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 27 00:05:53 2017 +1000

    L10n updates for: vi
    From translation svn revision: 30898
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    134     128     source/locale/vi/LC_MESSAGES/nvda.po
     1 file changed, 134 insertions(+), 128 deletions(-)

commit 0fd712a54673373e903323f6327aa3a1a77b917e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 27 00:05:46 2017 +1000

    L10n updates for: ru
    From translation svn revision: 30898
    
    Authors:
    Ruslan Kolodyazhni <eye0@rambler.ru>
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    9       5       source/locale/ru/LC_MESSAGES/nvda.po
    10      3       user_docs/ru/changes.t2t
    63      59      user_docs/ru/userGuide.t2t
     3 files changed, 82 insertions(+), 67 deletions(-)

commit 7151a0b68e171b1c42080855eff1a560b68b63af
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 27 00:05:44 2017 +1000

    L10n updates for: ro
    From translation svn revision: 30898
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>, Florian Ionașcu <florianionascu@hotmail.com>, Nicuşor Untilă <nicusoruntila@yahoo.com>
    
    Stats:
    9       4       source/locale/ro/LC_MESSAGES/nvda.po
    7       0       user_docs/ro/changes.t2t
     2 files changed, 16 insertions(+), 4 deletions(-)

commit 69f6fd6dd3846ba477baa85fa59092a50d499ecd
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 27 00:05:43 2017 +1000

    L10n updates for: pt_PT
    From translation svn revision: 30898
    
    Authors:
    Diogo Costa <diogojoca@gmail.com>
    Rui Batista <ruiandrebatista@gmail.com>
    Rui Fontes <rui.fontes@tiflotecnia.com>
    
    Stats:
    164     3       source/locale/pt_PT/LC_MESSAGES/nvda.po
    29      0       user_docs/pt_PT/changes.t2t
    9       5       user_docs/pt_PT/userGuide.t2t
     3 files changed, 202 insertions(+), 8 deletions(-)

commit 673986398130b1020b24b5c13c16fd8876f0047d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 27 00:05:39 2017 +1000

    L10n updates for: nl
    From translation svn revision: 30898
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <leonard_dev@babbage.com>
    
    Stats:
    5       5       user_docs/nl/userGuide.t2t
     1 file changed, 5 insertions(+), 5 deletions(-)

commit ca1453d536bff6bb5215850c58fb44b6bc268783
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 27 00:05:36 2017 +1000

    L10n updates for: my
    From translation svn revision: 30898
    
    Authors:
    Benedict La hkun <lkbenedict@gmail.com>
    
    Stats:
    8361    0       source/locale/my/LC_MESSAGES/nvda.po
    32      0       source/locale/my/characterDescriptions.dic
    164     0       source/locale/my/symbols.dic
     3 files changed, 8557 insertions(+)

commit 5d07f59839d6683b966788f399c9cd4b43dd8db4
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 27 00:05:36 2017 +1000

    L10n updates for: ko
    From translation svn revision: 30898
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    
    Stats:
    5       1       user_docs/ko/changes.t2t
    2       2       user_docs/ko/userGuide.t2t
     2 files changed, 7 insertions(+), 3 deletions(-)

commit 11f2aca6bdf4956f51d07889be13c3a13449882f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 27 00:05:34 2017 +1000

    L10n updates for: ja
    From translation svn revision: 30898
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    6       2       source/locale/ja/LC_MESSAGES/nvda.po
    8       4       user_docs/ja/userGuide.t2t
     2 files changed, 14 insertions(+), 6 deletions(-)

commit 9580e9f0bc1278c3e85fa836d77f29a0355c310e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 27 00:05:32 2017 +1000

    L10n updates for: it
    From translation svn revision: 30898
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    6       2       source/locale/it/LC_MESSAGES/nvda.po
    7       0       user_docs/it/changes.t2t
     2 files changed, 13 insertions(+), 2 deletions(-)

commit 43e4335c6d6933a81936fea1b4e14e6018309b0a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 27 00:05:28 2017 +1000

    L10n updates for: hr
    From translation svn revision: 30898
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <zvonimirek222@yandex.com>
    Mario Percinic <mario.percinic@gmail.com>
    
    Stats:
    16      9       user_docs/hr/changes.t2t
     1 file changed, 16 insertions(+), 9 deletions(-)

commit bbf2ec699bbf551792dee0b0aa789cc95767de25
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 27 00:05:26 2017 +1000

    L10n updates for: gl
    From translation svn revision: 30898
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    
    Stats:
    6       2       source/locale/gl/LC_MESSAGES/nvda.po
    7       0       user_docs/gl/changes.t2t
    6       2       user_docs/gl/userGuide.t2t
     3 files changed, 19 insertions(+), 4 deletions(-)

commit 411ac0e2c5a7abb30e0390960256c930a091ae51
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 27 00:05:24 2017 +1000

    L10n updates for: ga
    From translation svn revision: 30898
    
    Authors:
    Cearbhall OMeadhra <cearbhall.omeadhra@blbc.ie>
    Ronan McGuirk <ronan.p.mcguirk@gmail.com>
    Kevin Scannell <kscanne@gmail.com>
    
    Stats:
    23      19      source/locale/ga/LC_MESSAGES/nvda.po
    2       2       source/locale/ga/symbols.dic
     2 files changed, 25 insertions(+), 21 deletions(-)

commit d1d306b4051ce48a53d4a0e8ac9283073af1b11d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 27 00:05:23 2017 +1000

    L10n updates for: fr
    From translation svn revision: 30898
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    6       2       source/locale/fr/LC_MESSAGES/nvda.po
    10      538     user_docs/fr/changes.t2t
    6       2       user_docs/fr/userGuide.t2t
     3 files changed, 22 insertions(+), 542 deletions(-)

commit 622374d3c768d0da234cf1dc293c11d9d4f32f5f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 27 00:05:22 2017 +1000

    L10n updates for: fi
    From translation svn revision: 30898
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    7       3       source/locale/fi/LC_MESSAGES/nvda.po
    7       0       user_docs/fi/changes.t2t
    6       2       user_docs/fi/userGuide.t2t
     3 files changed, 20 insertions(+), 5 deletions(-)

commit 7a4dac448224f4d379a85f432cc215cd69f63e26
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 27 00:05:20 2017 +1000

    L10n updates for: fa
    From translation svn revision: 30898
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    165     4       source/locale/fa/LC_MESSAGES/nvda.po
    7       0       user_docs/fa/changes.t2t
    6       2       user_docs/fa/userGuide.t2t
     3 files changed, 178 insertions(+), 6 deletions(-)

commit 6004e92cf207c82849fd8e0ee37b50eea00cb1d3
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 27 00:05:19 2017 +1000

    L10n updates for: es
    From translation svn revision: 30898
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    
    Stats:
    7       3       source/locale/es/LC_MESSAGES/nvda.po
    19      12      user_docs/es/changes.t2t
    17      13      user_docs/es/userGuide.t2t
     3 files changed, 43 insertions(+), 28 deletions(-)

commit 9373369a505c44eef5f5d26652d7c2456c1dee00
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 27 00:05:15 2017 +1000

    L10n updates for: de
    From translation svn revision: 30898
    
    Authors:
    Bernd Dorer <bdorer@mailbox.org>
    David Parduhn <xkill85@gmx.net>
    Rene Linke <rene.linke@hamburg.de>
    
    Stats:
    6       2       source/locale/de/LC_MESSAGES/nvda.po
    22      0       user_docs/de/changes.t2t
    7       2       user_docs/de/userGuide.t2t
     3 files changed, 35 insertions(+), 4 deletions(-)

commit 933964ac3595e541a49b5114218cf3a9f010952d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 27 00:05:13 2017 +1000

    L10n updates for: da
    From translation svn revision: 30898
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    14      0       user_docs/da/changes.t2t
     1 file changed, 14 insertions(+)

commit b4c0cd59112df36c61046e0bdf553fe78e423b6d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 27 00:05:07 2017 +1000

    L10n updates for: ar
    From translation svn revision: 30898
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    17      0       user_docs/ar/changes.t2t
    6       2       user_docs/ar/userGuide.t2t
     2 files changed, 23 insertions(+), 2 deletions(-)

commit b48a41083f00a2cfe7cef47e38d01f6ebea323ac
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 27 00:05:05 2017 +1000

    L10n updates for: an
    From translation svn revision: 30898
    
    Authors:
    Jorge Perez <jorgtum@gmail.com>
    
    Stats:
    6       2       source/locale/an/LC_MESSAGES/nvda.po
    30      0       user_docs/an/changes.t2t
     2 files changed, 36 insertions(+), 2 deletions(-)

commit d9b009291c1c78eaf1348ab5e655cc1e0590ed14
Author: James Teh <jamie@nvaccess.org>
Date:   Mon Jan 23 11:17:47 2017 +1000

    Update What's New.

commit 7fefb3a8cdfa5147e239ac81829db46ae0b1559a
Merge: 04282e54f 9cfc9b9b7
Author: James Teh <jamie@nvaccess.org>
Date:   Mon Jan 23 11:11:17 2017 +1000

    Support for new Kindle functionality introduced in Kindle 1.19, as well as other improvements to Kindle support. (#6638)

commit 04282e54fae6e7485a1b0de5a6ac1770ea8043f8
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Jan 23 10:50:21 2017 +1000

    Update what's new

commit 64064130a10173ab97534478a684462ec657fb04
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Mon Jan 23 10:48:36 2017 +1000

    Support Speak typed characters in UWP apps on Windows 10 RS2 and above (#6631)

commit a529a5bba7bb5fa36c3e04f151472245412e2cf3
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Jan 23 10:42:54 2017 +1000

    Update what's new

commit 87b71727aa9a9bbb228440fe1b29f2ce849445b5
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Mon Jan 23 10:42:25 2017 +1000

    Excel: ensure that set column and row headers are remembered on copied sheets. (#6629)

commit 9c89d135006fc0eb0a83be24bc0381efe5884d44
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Mon Jan 23 10:33:45 2017 +1000

    Reintroduce our custom build of wxPython with the onAssert fix and debug symbols into miscDeps. (#6642)
    
    Originally introduced in #6268, but dropped some time in September 2016.

commit 150add95939221200f7feecfb95f03ca629216be
Merge: f996cf1a7 d4347ff26
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 20 00:05:53 2017 +1000

    Update translations.
    
    From translation svn revision: 30764

commit d4347ff26c5506bdf08891e605873ae109f8573f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 20 00:05:50 2017 +1000

    L10n updates for: vi
    From translation svn revision: 30764
    
    Authors:
    Dang Hoai Phuc <danghoaiphuc@gmail.com>, Nguyen Van Dung <dungnv1984@gmail.com>
    
    Stats:
    764     919     source/locale/vi/LC_MESSAGES/nvda.po
    43      42      source/locale/vi/characterDescriptions.dic
    115     50      source/locale/vi/symbols.dic
    81      124     user_docs/vi/changes.t2t
    0       1       user_docs/vi/userGuide.t2t
     5 files changed, 1003 insertions(+), 1136 deletions(-)

commit 8d2fc91b1cd17d53ee785320185cf5d4d47eb8e8
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 20 00:05:47 2017 +1000

    L10n updates for: ta
    From translation svn revision: 30764
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    7       7       source/locale/ta/LC_MESSAGES/nvda.po
    27      27      user_docs/ta/userGuide.t2t
     2 files changed, 34 insertions(+), 34 deletions(-)

commit dd736e84c5baf8a57c26ba623ab73687e283f70d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 20 00:05:42 2017 +1000

    L10n updates for: ru
    From translation svn revision: 30764
    
    Authors:
    Ruslan Kolodyazhni <eye0@rambler.ru>
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    12      2       user_docs/ru/changes.t2t
     1 file changed, 12 insertions(+), 2 deletions(-)

commit 624f29e8b8682626838914e2b75dc887c800fd09
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 20 00:05:40 2017 +1000

    L10n updates for: ro
    From translation svn revision: 30764
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>, Florian Ionașcu <florianionascu@hotmail.com>, Nicuşor Untilă <nicusoruntila@yahoo.com>
    
    Stats:
    2       2       source/locale/ro/LC_MESSAGES/nvda.po
    10      0       user_docs/ro/changes.t2t
     2 files changed, 12 insertions(+), 2 deletions(-)

commit ff764b25e388f6bb00cbc5f3d4f565a26349d03a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 20 00:05:34 2017 +1000

    L10n updates for: nl
    From translation svn revision: 30764
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <leonard_dev@babbage.com>
    
    Stats:
    10      0       user_docs/nl/changes.t2t
     1 file changed, 10 insertions(+)

commit b42fd26564490a94ead59acdf67a867f040bc150
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 20 00:05:32 2017 +1000

    L10n updates for: ko
    From translation svn revision: 30764
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    
    Stats:
    492     589     source/locale/ko/symbols.dic
     1 file changed, 492 insertions(+), 589 deletions(-)

commit 215a522595974af959c693a981c305aae766ec39
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 20 00:05:28 2017 +1000

    L10n updates for: it
    From translation svn revision: 30764
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    9       10      source/locale/it/LC_MESSAGES/nvda.po
    22      0       user_docs/it/changes.t2t
     2 files changed, 31 insertions(+), 10 deletions(-)

commit d58143f3a96c07e71ed97801fe784cf4932d151a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 20 00:05:24 2017 +1000

    L10n updates for: hr
    From translation svn revision: 30764
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <zvonimirek222@yandex.com>
    Mario Percinic <mario.percinic@gmail.com>
    
    Stats:
    11      1       user_docs/hr/changes.t2t
     1 file changed, 11 insertions(+), 1 deletion(-)

commit e34bda818acffe8f39ed0f159026080516bb069e
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 20 00:05:22 2017 +1000

    L10n updates for: he
    From translation svn revision: 30764
    
    Authors:
    Shmuel Naaman <shmuel_naaman@yahoo.com>
    Afik Sofir <afik.sofer@gmail.com>
    
    Stats:
    2       2       source/locale/he/LC_MESSAGES/nvda.po
     1 file changed, 2 insertions(+), 2 deletions(-)

commit 8795e0719d028a80a6575c567bdae8c72a11f0da
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 20 00:05:21 2017 +1000

    L10n updates for: gl
    From translation svn revision: 30764
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    
    Stats:
    10      0       user_docs/gl/changes.t2t
     1 file changed, 10 insertions(+)

commit 5736696329fa2ab36def8afbbc43fdb744a53409
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 20 00:05:19 2017 +1000

    L10n updates for: fr
    From translation svn revision: 30764
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    12      2       user_docs/fr/changes.t2t
     1 file changed, 12 insertions(+), 2 deletions(-)

commit 5df443a2776d1b3131c2e2d6fc2d82de77d48bf5
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 20 00:05:18 2017 +1000

    L10n updates for: fi
    From translation svn revision: 30764
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    10      0       user_docs/fi/changes.t2t
     1 file changed, 10 insertions(+)

commit 01cad0ae964d6408ff3f0c6a4fafb9aa444bd009
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 20 00:05:16 2017 +1000

    L10n updates for: fa
    From translation svn revision: 30764
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    11      1       user_docs/fa/changes.t2t
     1 file changed, 11 insertions(+), 1 deletion(-)

commit a8e8b398c616feb2b0df6e627f7d3c70f3404b00
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 20 00:05:15 2017 +1000

    L10n updates for: es
    From translation svn revision: 30764
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    
    Stats:
    10      0       user_docs/es/changes.t2t
     1 file changed, 10 insertions(+)

commit f996cf1a74e7832f1a11d3d359e7feb8821b6c29
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Thu Jan 19 18:08:10 2017 +0800

    Update changes file for PR #6691
    
    NVDA will no longer announce "pane" when minimizing windows. (Issue #6671)

commit adfc03de10f159e7055835200fd076c56b932672
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Thu Jan 19 02:07:55 2017 -0800

    NVDA will no longer announce "pane" when minimizing windows. (PR #6691)
    
    Fixes #6671
    
    * added a top-level docstring describing the purpose of the explorer.exe app module.
    * Each class definition is separated by two spaces for style purposes.
    
    Original issue:
    When pressing Windows=M or Windows+D, NVDA says, 'pane'. It turns out there is a window with the window class name of 'WorkerW' that presents a focus event. Thus suppress this, which means NVDA will no longer announce 'pane' when minimizing Windows. This bug affects various versions of Windows (tested with Windows 7 and Windows 10).

commit 71b1c58f4d66f96f253c92fb83c52fcae9cb6f9a
Author: Reef Turner <feerrenrut@users.noreply.github.com>
Date:   Thu Jan 19 17:59:39 2017 +0800

    Update changes file for PR #6558
    
    - The minimum braille cursor blink rate is now 200ms. Profiles or configurations with values below this will be increased to 200ms. (Issue #6470)
    - A check box has been added to the braille settings dialog to allow enabling/disabling braille cursor blinking. Previously a value of zero was used to achieve this. (Issue #6470)
    - Profiles and configuration files are now automatically upgraded to meet the requirements of schema modifications. If there is an error during upgrade, a notification is shown, the configuration is reset, and the old configuration file is available in the NVDA log at 'Info' level. (Issue #6470)

commit 6de989962006dd66582fc8a486930e3f7b318d6b
Author: Reef Turner <reef@nvaccess.org>
Date:   Fri Dec 23 14:45:39 2016 +0800

    Fix #6470, limit the minimum blink rate to 200ms
    
    Introduce a way to use the GUI to disable cursor blinking.
    
    Rely on config update step to fix min values
    
    The config schema updates should now fix values below the minimum.
    Use validation data from config for min / max values in spin controls

commit 99608849bbdd8f87ecaf5b2853511da24958b82d
Author: Reef Turner <reef@nvaccess.org>
Date:   Fri Dec 23 14:32:08 2016 +0800

    Introduce config/profile schema upgrade framework
    
    When a schema is updated, config files (base config and profiles)
    can be upgraded to meet the new schema. The `schemaVersion` (in
    configSpec.py) should be incremented, and a new function should be added
    to the `profileUpgradeSteps.py` file to make the changes required to
    config files before they are loaded.
    
    After all upgrade steps are made the file is validated, and any errors
    will be in the log.

commit 9cfc9b9b7ab1206b3cbaa711c12e346dc288c04e
Author: James Teh <jamie@nvaccess.org>
Date:   Thu Jan 19 16:05:58 2017 +1000

    Fix failure when uninstalling add-ons that have an installTasks module which imports the gui module.
    
    This was due to the circular import of speech from textInfos and treeInterceptorHandler. We now import late to avoid this.
    Fixes #6749.

commit 3e48cf75483d11254e321c974799c6d5c0a420de
Author: Joseph Lee <joseph.lee22590@gmail.com>
Date:   Wed Jan 18 15:50:08 2017 -0800

    User guide: change URL for BRLTTY to brltty.com. (#6729)
    
    Fixes #6728

commit 2a5726f4a599fdf2864bc8894bbfac265abfe5e0
Merge: 9aa785c59 2fb831afd
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 13 00:05:55 2017 +1000

    Update translations.
    
    From translation svn revision: 30554

commit 2fb831afd0d6f3a09b49d0f82da65321acf0f452
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 13 00:05:55 2017 +1000

    L10n updates for: zh_TW
    From translation svn revision: 30554
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    11      11      source/locale/zh_TW/characterDescriptions.dic
    2       2       user_docs/zh_TW/userGuide.t2t
     2 files changed, 13 insertions(+), 13 deletions(-)

commit 31b123e90ab666d627bbdc4acd57ba10c0034fa3
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 13 00:05:50 2017 +1000

    L10n updates for: tr
    From translation svn revision: 30554
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    5       0       user_docs/tr/changes.t2t
     1 file changed, 5 insertions(+)

commit af52413574aad7f2ca703dbc72f7b51ad32d28ff
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 13 00:05:49 2017 +1000

    L10n updates for: ta
    From translation svn revision: 30554
    
    Authors:
    Dinakar T.D. <td.dinkar@gmail.com>
    
    Stats:
    38      2       source/locale/ta/LC_MESSAGES/nvda.po
     1 file changed, 38 insertions(+), 2 deletions(-)

commit c58eedd16418990e505b633b28359d471133032f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 13 00:05:44 2017 +1000

    L10n updates for: ru
    From translation svn revision: 30554
    
    Authors:
    Ruslan Kolodyazhni <eye0@rambler.ru>
    Ruslan Shukhanov <ru2020slan@yandex.ru>
    Beqa Gozalishvili <beqaprogger@gmail.com>
    Aleksandr Lin'kov <kvark128@yandex.ru>
    alexander Yashin <a.jaszyn@ya.ru>
    
    Stats:
    161     4       source/locale/ru/LC_MESSAGES/nvda.po
    9       0       user_docs/ru/changes.t2t
     2 files changed, 170 insertions(+), 4 deletions(-)

commit 0e635d5a1c27076a28a6e242b6abef50345f7640
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 13 00:05:41 2017 +1000

    L10n updates for: ro
    From translation svn revision: 30554
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>, Florian Ionașcu <florianionascu@hotmail.com>, Nicuşor Untilă <nicusoruntila@yahoo.com>
    
    Stats:
    2       2       source/locale/ro/LC_MESSAGES/nvda.po
    5       0       user_docs/ro/changes.t2t
     2 files changed, 7 insertions(+), 2 deletions(-)

commit d7cb9b25c318e8c0d0fd2c7ed5586164f6764375
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 13 00:05:39 2017 +1000

    L10n updates for: pt_BR
    From translation svn revision: 30554
    
    Authors:
    Cleverson Casarin Uliana <clever97@gmail.com>
    Marlin Rodrigues <marlincgrodrigues@yahoo.com.br>
    
    Stats:
    161     4       source/locale/pt_BR/LC_MESSAGES/nvda.po
     1 file changed, 161 insertions(+), 4 deletions(-)

commit 0198b29945fc052e51c777a458e8337efb4a7dd9
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 13 00:05:36 2017 +1000

    L10n updates for: nl
    From translation svn revision: 30554
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <leonard_dev@babbage.com>
    
    Stats:
    12      6       user_docs/nl/changes.t2t
     1 file changed, 12 insertions(+), 6 deletions(-)

commit 7e61ab264aafe3ffa99abca5838d5feb535838f1
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 13 00:05:33 2017 +1000

    L10n updates for: ko
    From translation svn revision: 30554
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    
    Stats:
    15      0       user_docs/ko/changes.t2t
     1 file changed, 15 insertions(+)

commit 05041ee5cce83fdd41a725f9556922910658c4a2
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 13 00:05:31 2017 +1000

    L10n updates for: ja
    From translation svn revision: 30554
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    1       1       user_docs/ja/changes.t2t
     1 file changed, 1 insertion(+), 1 deletion(-)

commit 75cbc0dc62ab2795e5438d4dc5d5a141c52295ad
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 13 00:05:26 2017 +1000

    L10n updates for: hr
    From translation svn revision: 30554
    
    Authors:
    Hrvoje Katic <hrvojekatic@gmail.com>
    Zvonimir Stanecic <zvonimirek222@yandex.com>
    Mario Percinic <mario.percinic@gmail.com>
    
    Stats:
    13      0       user_docs/hr/changes.t2t
     1 file changed, 13 insertions(+)

commit 53e1ecdd1c0b253674f9e7fd560f0d58c44890bf
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 13 00:05:24 2017 +1000

    L10n updates for: he
    From translation svn revision: 30554
    
    Authors:
    Shmuel Naaman <shmuel_naaman@yahoo.com>
    Afik Sofir <afik.sofer@gmail.com>
    
    Stats:
    2       2       source/locale/he/LC_MESSAGES/nvda.po
     1 file changed, 2 insertions(+), 2 deletions(-)

commit 0998a10454e7de09452c528bf10f32db93a0673f
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 13 00:05:23 2017 +1000

    L10n updates for: gl
    From translation svn revision: 30554
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    
    Stats:
    161     4       source/locale/gl/LC_MESSAGES/nvda.po
    9       0       user_docs/gl/changes.t2t
    1       1       user_docs/gl/userGuide.t2t
     3 files changed, 171 insertions(+), 5 deletions(-)

commit 27fc4c9e9d51436088dc45e8b4fefdfd0d7214bc
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 13 00:05:21 2017 +1000

    L10n updates for: fr
    From translation svn revision: 30554
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    5       0       user_docs/fr/changes.t2t
     1 file changed, 5 insertions(+)

commit 873823e44a0c89936111f6244c9ce7c90ceecb8b
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 13 00:05:20 2017 +1000

    L10n updates for: fi
    From translation svn revision: 30554
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    5       0       user_docs/fi/changes.t2t
     1 file changed, 5 insertions(+)

commit b24501d1e70da7ccf962dd1b13537ab8326b8fb2
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 13 00:05:19 2017 +1000

    L10n updates for: fa
    From translation svn revision: 30554
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    5       0       user_docs/fa/changes.t2t
    1       1       user_docs/fa/userGuide.t2t
     2 files changed, 6 insertions(+), 1 deletion(-)

commit 32b2d204ce2bac7a86caaa54c3e4600963c635d3
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 13 00:05:17 2017 +1000

    L10n updates for: es
    From translation svn revision: 30554
    
    Authors:
    Juan C. buno <oprisniki@gmail.com>
    Noelia Martinez <nrm1977@gmail.com>
    
    Stats:
    161     4       source/locale/es/LC_MESSAGES/nvda.po
    9       0       user_docs/es/changes.t2t
    1       1       user_docs/es/userGuide.t2t
     3 files changed, 171 insertions(+), 5 deletions(-)

commit 11174db8fdcbb7e72a8f916e2b6025b660f97bd7
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 13 00:05:12 2017 +1000

    L10n updates for: da
    From translation svn revision: 30554
    
    Authors:
    Daniel K. Gartmann <kontakt@nvda.dk>
    Nicolai Svendsen <chojiro1990@gmail.com>
    bue@vester-andersen.dk
    
    Stats:
    2       0       user_docs/da/changes.t2t
    4       4       user_docs/da/userGuide.t2t
     2 files changed, 6 insertions(+), 4 deletions(-)

commit 01d0cf03ac024bfb1e1fb822badd7ba4071fcb91
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 13 00:05:06 2017 +1000

    L10n updates for: ar
    From translation svn revision: 30554
    
    Authors:
    Fatma Mehanna <fatma.mehanna@gmail.com>
    Shaimaa Ibrahim <shamse1@gmail.com>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    13      0       user_docs/ar/changes.t2t
    2       2       user_docs/ar/userGuide.t2t
     2 files changed, 15 insertions(+), 2 deletions(-)

commit 9aa785c59e9ff977eeb5d6537df297f2cb2adc47
Author: Michael Curran <mick@nvaccess.org>
Date:   Thu Jan 12 15:11:43 2017 +1000

    Update what's new

commit a4f5819bf0d2680a3f62f0c182aa3839ca3625f5
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Thu Jan 12 15:09:35 2017 +1000

    UIA NVDAObject: expose state_unavailable if the UIA isEnabled property is implemented but false. (#6572)
    
    This means that Controls in the excel Ribbon that are unavailable are now reported as such.

commit 5f4c4bfe8bad36c7127810f0ffae881d5ac7032e
Author: James Teh <jamie@nvaccess.org>
Date:   Wed Jan 11 10:23:45 2017 +1000

    Kindle: In the Elements List, don't provide options for Headings and Landmarks, as these don't work in Kindle.

commit 71f54bae376f5b4e68149427bbe82599fb7a74ac
Author: James Teh <jamie@nvaccess.org>
Date:   Wed Jan 11 10:16:33 2017 +1000

    Update What's New.

commit e3336c4af5c076491d023680c2243c677ef27edd
Author: Leonard de Ruijter <leonard_dev@babbage.com>
Date:   Wed Jan 11 01:11:38 2017 +0100

    The NVDA launcher will no longer show a warning dialog when it can't play the logo sound due to no audio device being available. (issue #6289, PR #6557)

commit 70a460f82b39fc868a0cbfb441e112aa7ccf2fd6
Author: Leonard de Ruijter <leonard_dev@babbage.com>
Date:   Wed Jan 11 01:04:42 2017 +0100

    NVDA now reports when a check box is read-only. (issue #6563, PR #6568)

commit de52624f9e318df0b47edd197e53b6d4ab6b1395
Author: Leonard de Ruijter <leonard_dev@babbage.com>
Date:   Wed Jan 11 01:01:16 2017 +0100

    The Python wrapper for the Handy Tech braille driver com server type library is now bundled with NVDA, rather than being generated on the user's system. (issue #6546, PR #6548)

commit 65e4cf2a5ad27ca4b37d1e22f6e97f7670c3e9e6
Author: James Teh <jamie@nvaccess.org>
Date:   Tue Jan 10 15:13:25 2017 +1000

    We're now on Python 2.7.13 since AppVeyor upgraded, so update readme accordingly.

commit 283c69fbe0d9a233a2f0cd6af6d5d644cd008d66
Author: James Teh <jamie@nvaccess.org>
Date:   Tue Jan 10 15:11:37 2017 +1000

    Monkey patch ctypes._dlopen (used by the constructor for ctypes.CDLL, ctypes.WINDLL, etc.) so that it accepts unicode paths as it did prior to Python 2.7.13. (issue #6705, PR #6710)
    
    In Python 2.7.13, it raises an exception if you pass a unicode path. In Python < 2.7.13, it silently converted them to str, treating them as ASCII. Some add-ons (such as the Eurobraille driver) relied on the previous behaviour.
    This monkey patch actually gives slightly better results than < 2.7.13 in that it converts paths using mbcs, so it should work with non-ASCII paths as well in most cases. Aside from restoring the previous behaviour, given that we push for unicode wherever possible, I think this is a good thing.

commit 48b6d71a2d7562f782f16da99b6c372dfddb64d7
Author: Michael Curran <mick@nvaccess.org>
Date:   Mon Jan 9 14:37:14 2017 +1000

    Update what's new

commit 87764c5cabecbbceb99e3ba0f968e1c67ead5d6d
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Mon Jan 9 14:33:20 2017 +1000

    Excel: stop freeze when detecting overflow/cropped text (#6526)
    
    * Excel: stop freeze when detecting overflow/cropped text where an entire row is merged.
    
    Specifically:
    * rename _getCellWidthAndTextWidth to _getCellTextWidth and no longer return the cell width.
    * In __overlapInfo:  No longer use a for loop to calculate the total column width for a merge area, instead just use the first and last column's left and width to calculate it.
    * in __overlapInfo: Fetch coordinates and widths as points rather than units, and use Excel's own pointsToScreenPixelsX, which may solve the DPI issue.

commit 7f8de862d438d8f237a991fece1ade8e4c7252c0
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Jan 6 12:57:03 2017 +1000

    Update What's new

commit fdcd89728fb43739f6db5f0b545d726aa1b04ab1
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Fri Jan 6 12:53:19 2017 +1000

    Excel: Disable auto passThrough mode in Excel's browse mode by default, so that pressing escape before ever using browse mode does not drop into browse mode. Also ensure that NVDA disables / enables autoPassThroughMode on togglePassThroughMode for all browseMode treeInterceptors, not just browseModeDocumentTreeInterceptors. (#6569)

commit 8024c08896ba30c87ef492bee95861e58bf5acd0
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Jan 6 12:51:19 2017 +1000

    Update what's new

commit 0a80716aee968975e861af40b8f16e89cd11649e
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Fri Jan 6 12:49:23 2017 +1000

    Excel: A sound is played when typing into protected cells rather than speaking typed characters (#6571)

commit 23e436dcc540543897345d043151444c3d894230
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Jan 6 12:45:41 2017 +1000

    Update What's new

commit 2e73912dcb54f239045a89dea67bab9ec56de035
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Fri Jan 6 12:43:46 2017 +1000

    In Microsoft Edge, support quicknav to buttons (b and shift+b) where possible. (#6578)

commit ae07d42da240a3d47943af4657b47b23aec9d409
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Jan 6 12:42:33 2017 +1000

    Update what's new

commit af8902fcfcc7447566d1d5e4163a3bfd9fd4176b
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Fri Jan 6 12:40:22 2017 +1000

    Support finding text in UI Automation text controls, including Microsoft Edge. (#6581)

commit 11c9f79de1ef1da6c33d924730d01b2ceba6d82d
Author: Michael Curran <mick@nvaccess.org>
Date:   Fri Jan 6 12:38:19 2017 +1000

    Update what's new

commit 79bfddf2b49de3ca75b38d671323307d462d0b94
Author: Michael Curran <michaelDCurran@users.noreply.github.com>
Date:   Fri Jan 6 12:35:35 2017 +1000

    Only ignore Microsoft Word layout tables in Outlook browse mode, rather than in Microsoft Word also. This allows tables copied from Excel to be correctly read in Microsoft Word when in browse mode. (#6618)

commit eb5956a4a0ab2280377029f182b4c57cb2de1149
Merge: 9074ca88a a3932e185
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 6 00:05:53 2017 +1000

    Update translations.
    
    From translation svn revision: 30469

commit a3932e185850f63f0c7f8a5f2bb03fe3f129e8e4
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 6 00:05:52 2017 +1000

    L10n updates for: zh_TW
    From translation svn revision: 30469
    
    Authors:
    wangjanli@gmail.com
    maro.zhang@gmail.com
    Aaron Wu <waaron2000@gmail.com>
    Victor Cai <surfer0627@gmail.com>
    
    Stats:
    2       2       user_docs/zh_TW/userGuide.t2t
     1 file changed, 2 insertions(+), 2 deletions(-)

commit 3682869e61e0e9f77048455a52532d3bef061f38
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 6 00:05:48 2017 +1000

    L10n updates for: tr
    From translation svn revision: 30469
    
    Authors:
    Cagri Dogan <cagrid@hotmail.com>
    
    Stats:
    9       1       user_docs/tr/changes.t2t
    2       2       user_docs/tr/userGuide.t2t
     2 files changed, 11 insertions(+), 3 deletions(-)

commit c5084629190f17eac9150810b603464036da0cfe
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 6 00:05:40 2017 +1000

    L10n updates for: ro
    From translation svn revision: 30469
    
    Authors:
    Dan Pungă <dan.punga@gmail.com>, Florian Ionașcu <florianionascu@hotmail.com>, Nicuşor Untilă <nicusoruntila@yahoo.com>
    
    Stats:
    165     8       source/locale/ro/LC_MESSAGES/nvda.po
    6       6       source/locale/ro/characterDescriptions.dic
    5       1       user_docs/ro/changes.t2t
     3 files changed, 176 insertions(+), 15 deletions(-)

commit ac82aefc69a316b5f184847625530d47abb24d84
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 6 00:05:35 2017 +1000

    L10n updates for: nl
    From translation svn revision: 30469
    
    Authors:
    Bram Duvigneau <bram@bramd.nl>
    Bart Simons <bart@bartsimons.be>
    A Campen <a.campen@wxs.nl>
    Leonard de Ruijter <leonard_dev@babbage.com>
    
    Stats:
    161     4       source/locale/nl/LC_MESSAGES/nvda.po
    7       0       user_docs/nl/changes.t2t
     2 files changed, 168 insertions(+), 4 deletions(-)

commit 688465a117d0cbe8314d29fb2534953084dce2a7
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 6 00:05:32 2017 +1000

    L10n updates for: ko
    From translation svn revision: 30469
    
    Authors:
    Joseph Lee <joseph.lee22590@gmail.com>
    Chang-Hwan Jang <462356@gmail.com>
    Dong Hee Park <hi@aheu.org>
    
    Stats:
    592     0       source/locale/ko/symbols.dic
     1 file changed, 592 insertions(+)

commit 2103692409f8f92342208c8fbdc1299b891e5382
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 6 00:05:30 2017 +1000

    L10n updates for: ja
    From translation svn revision: 30469
    
    Authors:
    Takuya Nishimoto <nishimotz@gmail.com>
    Minako Nonogaki <minakonono3519@gmail.com>
    
    Stats:
    39      2       source/locale/ja/LC_MESSAGES/nvda.po
     1 file changed, 39 insertions(+), 2 deletions(-)

commit 28edcb2e83052febc5915c3cd8199072c3d5b1fd
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 6 00:05:28 2017 +1000

    L10n updates for: it
    From translation svn revision: 30469
    
    Authors:
    Simone Dal Maso <simone.dalmaso@gmail.com>
    Alberto Buffolino <a.buffolino@gmail.com>
    
    Stats:
    162     4       source/locale/it/LC_MESSAGES/nvda.po
     1 file changed, 162 insertions(+), 4 deletions(-)

commit f9abd80cee11638ac5cc64416490b78c57e2fc5a
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 6 00:05:24 2017 +1000

    L10n updates for: he
    From translation svn revision: 30469
    
    Authors:
    Shmuel Naaman <shmuel_naaman@yahoo.com>
    Afik Sofir <afik.sofer@gmail.com>
    
    Stats:
    161     4       source/locale/he/LC_MESSAGES/nvda.po
    1       1       source/locale/he/symbols.dic
     2 files changed, 162 insertions(+), 5 deletions(-)

commit 4b841a3634852aca302d0cba22182f1c26ef5be8
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 6 00:05:22 2017 +1000

    L10n updates for: ga
    From translation svn revision: 30469
    
    Authors:
    Cearbhall OMeadhra <cearbhall.omeadhra@blbc.ie>
    Ronan McGuirk <ronan.p.mcguirk@gmail.com>
    Kevin Scannell <kscanne@gmail.com>
    
    Stats:
    211     67      source/locale/ga/LC_MESSAGES/nvda.po
     1 file changed, 211 insertions(+), 67 deletions(-)

commit b6fe0b48abae8e00f957b555da466d2bf6bf358d
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 6 00:05:21 2017 +1000

    L10n updates for: fr
    From translation svn revision: 30469
    
    Authors:
    Michel such <michel.such@free.fr>
    Patrick ZAJDA <patrick@zajda.fr>
    Remy Ruiz <remyruiz@gmail.com>
    Bachir Benanou <ben_bach@yahoo.fr>, Abdelkrim Bensaid <abdelkrim.bensaid@free.fr>
    
    Stats:
    162     5       source/locale/fr/LC_MESSAGES/nvda.po
    4       0       user_docs/fr/changes.t2t
     2 files changed, 166 insertions(+), 5 deletions(-)

commit e4f3fe69b8a04f175c7b634b334ba7a7b49eb742
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 6 00:05:20 2017 +1000

    L10n updates for: fi
    From translation svn revision: 30469
    
    Authors:
    Jani Kinnunen <jani.kinnunen@wippies.fi>
    Isak Sand <isak.sand@gmail.com>
    
    Stats:
    161     4       source/locale/fi/LC_MESSAGES/nvda.po
    4       0       user_docs/fi/changes.t2t
    1       1       user_docs/fi/userGuide.t2t
     3 files changed, 166 insertions(+), 5 deletions(-)

commit daf2ffb8e5e32d0280828841b990c4d0fa730892
Author: NVDA translation automation <nvda-translations@freelists.org>
Date:   Fri Jan 6 00:05:18 2017 +1000

    L10n updates for: fa
    From translation svn revision: 30469
    
    Authors:
    Ali Aslani <aslani.ali@gmail.com>
    Mohammadreza Rashad <mohammadreza5712@gmail.com>
    
    Stats:
    4       0       user_docs/fa/changes.t2t
     1 file changed, 4 insertions(+)
