diff --git a/src/accessible_output2/outputs/jaws.py b/src/accessible_output2/outputs/jaws.py index 14e9d834..90f34fbc 100644 --- a/src/accessible_output2/outputs/jaws.py +++ b/src/accessible_output2/outputs/jaws.py @@ -22,7 +22,7 @@ class Jaws (Output): self.object.RunFunction("BrailleString(\"%s\")" % text) def speak(self, text, interrupt=False): - self.object.SayString(' %s' % text, True) + self.object.SayString(' %s' % text, interrupt) def is_active(self): try: diff --git a/src/controller/user.py b/src/controller/user.py index e4494f69..0b47580d 100644 --- a/src/controller/user.py +++ b/src/controller/user.py @@ -91,6 +91,9 @@ class profileController(object): else: protected = _(u"No") string = string+ _(u"Protected: %s\n") % (protected) string = string+_(u"Followers: %s\n Friends: %s\n") % (self.data["followers_count"], self.data["friends_count"]) + if self.data["verified"] == True: verified = _(u"Yes") + else: verified = _(u"No") + string = string+ _(u"Verified: %s\n") % (verified) string = string+ _(u"Tweets: %s\n") % (self.data["statuses_count"]) string = string+ _(u"Favourites: %s") % (self.data["favourites_count"]) return string