diff --git a/Resources/fr.lproj/Localizable.strings b/Resources/fr.lproj/Localizable.strings index 54f605706..1efbd4147 100644 Binary files a/Resources/fr.lproj/Localizable.strings and b/Resources/fr.lproj/Localizable.strings differ diff --git a/msgNotificationService/NotificationService.swift b/msgNotificationService/NotificationService.swift index 773b2a55a..4c4f19492 100644 --- a/msgNotificationService/NotificationService.swift +++ b/msgNotificationService/NotificationService.swift @@ -164,7 +164,18 @@ class NotificationService: UNNotificationServiceExtension { } func parseMessage(message: PushNotificationMessage) -> MsgData? { - let content = message.isIcalendar ? NSLocalizedString("You are invited to a conference", comment: "") : message.isText ? message.textContent : "🗻" + + var content = "" + if (message.isConferenceInvitationNew) { + content = NSLocalizedString("📅 You are invited to a meeting", comment: "") + } else if (message.isConferenceInvitationUpdate) { + content = NSLocalizedString("📅 Meeting has been modified", comment: "") + } else if (message.isConferenceInvitationCancellation) { + content = NSLocalizedString("📅 Meeting has been cancelled", comment: "") + } else { + content = message.isText ? message.textContent : "🗻" + } + let fromAddr = message.fromAddr?.username let callId = message.callId let localUri = message.localAddr?.asStringUriOnly()