Skip to content

Instantly share code, notes, and snippets.

@nvdaes
Created February 6, 2017 21:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nvdaes/00e6f53f36b2be7f794eb06629691531 to your computer and use it in GitHub Desktop.
Save nvdaes/00e6f53f36b2be7f794eb06629691531 to your computer and use it in GitHub Desktop.
Get messages translated in NVDA screen reader core
# -*- coding: UTF-8 -*-
# skipTranslation: Module to get messages translated in NVDA
# Based on implementation made by Alberto Buffolino
# https://github.com/nvaccess/nvda/issues/4652
#Copyright (C) 2016 Noelia Ruiz Martínez
# Released under GPL 2
def getTranslatedMessage(message):
return _(message)
@nvdaes
Copy link
Author

nvdaes commented Feb 6, 2017

Based on previous implementations made by @ABuffEr.
For further information, see nvaccess/nvda#4652

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment