commit/wintenApps: josephsl: L10n preparations, readme and min version updates

  • From: commits-noreply@xxxxxxxxxxxxx
  • To: nvda-addons-commits@xxxxxxxxxxxxx
  • Date: Fri, 16 Sep 2016 02:29:41 -0000

1 new commit in wintenApps:

https://bitbucket.org/nvdaaddonteam/wintenapps/commits/15e5b24e30cb/
Changeset:   15e5b24e30cb
Branch:      stable
User:        josephsl
Date:        2016-09-16 02:29:21+00:00
Summary:     L10n preparations, readme and min version updates

Affected #:  2 files

diff --git a/addon/appModules/skypeapp.py b/addon/appModules/skypeapp.py
index f27b8be..3c432b3 100755
--- a/addon/appModules/skypeapp.py
+++ b/addon/appModules/skypeapp.py
@@ -34,7 +34,8 @@ class AppModule(appModuleHandler.AppModule):
                                # Announce typing indicator (same as Skype for 
Desktop).
                                nextElement = obj.next.UIAElement
                                if nextElement.cachedClassName == "RichEditBox" 
and nextElement.cachedAutomationID == "ChatEditBox":
-                                       ui.message(obj.name if obj.name != "" 
else "Typing stopped")
+                                       # Translaotrs: Presented when someone 
stops typing in Skype app (same as Skype for Desktop).
+                                       ui.message(obj.name if obj.name != "" 
else _("Typing stopped"))
                        elif uiElement.cachedAutomationID == "Message" and 
uiElement.cachedClassName == "ListViewItem":
                                self.reportMessage(obj.name)
                nextHandler()
@@ -56,4 +57,7 @@ class AppModule(appModuleHandler.AppModule):
                                api.setNavigatorObject(message)
                                self.reportMessage(message.name)
                                return
-               ui.message("Chat history not found")
+               # Translators: Presented when message history isn't found in 
Skype Preview app.
+               ui.message(_("Chat history not found"))
+       # Translators: Input help mode message for a command in Skype Preview 
app.
+       script_readMessage.__doc__ = _("Reports and moves the review cursor to 
a recent message")

diff --git a/readme.md b/readme.md
index 89b3829..250f08e 100755
--- a/readme.md
+++ b/readme.md
@@ -24,7 +24,7 @@ The following app modules or support modules for some apps 
are included (see eac
 * Weather.
 * Miscellaneous modules for controls such as Start Menu tiles.
 
-Note: this add-on requires Windows 10 Version 1507 (build 10240) or later and 
NVDA 2015.4 or later.
+Note: this add-on requires Windows 10 Version 1507 (build 10240) or later and 
NVDA 2016.3 or later.
 
 ## General

Repository URL: https://bitbucket.org/nvdaaddonteam/wintenapps/

--

This is a commit notification from bitbucket.org. You are receiving
this because you have the service enabled, addressing the recipient of
this email.

Other related posts:

  • » commit/wintenApps: josephsl: L10n preparations, readme and min version updates - commits-noreply