Skip to content

Commit

Permalink
Outlook appModule: report if a message is a meeting request
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelDCurran committed May 6, 2014
1 parent 195f3bc commit 482f110
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions source/appModules/outlook.py
Expand Up @@ -295,6 +295,9 @@ def _get_name(self):
importance=1
importanceLabel=importanceLabels.get(importance)
if importanceLabel: textList.append(importanceLabel)
if selection.messageClass=="IPM.Schedule.Meeting.Request":
# Translators: the email is a meeting request
textList.append(_("meeting request"))
for child in self.children:
if isinstance(child,UIAGridRow) or child.role==controlTypes.ROLE_GRAPHIC or not child.name:
continue
Expand Down

0 comments on commit 482f110

Please sign in to comment.