Compare commits

...

1 Commits

Author SHA1 Message Date
Matthew Chen
3073c98ca0 Add “declined call” interactions.
// FREEBIE
2017-06-15 10:21:49 -04:00
2 changed files with 4 additions and 0 deletions

View File

@ -17,6 +17,7 @@ typedef enum {
RPRecentCallTypeOutgoingIncomplete,
RPRecentCallTypeIncomingIncomplete,
RPRecentCallTypeMissedBecauseOfChangedIdentity,
RPRecentCallTypeDeclined,
} RPRecentCallType;
@interface TSCall : TSInteraction <OWSReadTracking>

View File

@ -76,6 +76,9 @@ NSUInteger TSCallCurrentSchemaVersion = 1;
return NSLocalizedString(@"INCOMING_INCOMPLETE_CALL", @"");
case RPRecentCallTypeMissedBecauseOfChangedIdentity:
return NSLocalizedString(@"INFO_MESSAGE_MISSED_CALL_DUE_TO_CHANGED_IDENITY", @"info message text shown in conversation view");
case RPRecentCallTypeDeclined:
return NSLocalizedString(@"INFO_MESSAGE_CALL_DECLINED",
@"Message in conversation history that indicates a declined incoming call.");
}
}