forked from mirrors/linphone-iphone
Add details text for LinphoneCallOutgoingRinging and LinphoneCallPausedByRemote states
Mantis: #130
This commit is contained in:
parent
d037211739
commit
9511a40cb0
1 changed files with 7 additions and 0 deletions
|
|
@ -532,9 +532,16 @@ int callCount(LinphoneCore* lc) {
|
|||
case LinphoneCallPaused:
|
||||
[ms appendFormat:@"%@", NSLocalizedString(@"Paused (tap to resume)", nil), nil];
|
||||
break;
|
||||
case LinphoneCallOutgoingInit:
|
||||
case LinphoneCallOutgoingProgress:
|
||||
[ms appendFormat:@"%@...", NSLocalizedString(@"In progress", nil), nil];
|
||||
break;
|
||||
case LinphoneCallOutgoingRinging:
|
||||
[ms appendFormat:@"%@...", NSLocalizedString(@"Ringing...", nil), nil];
|
||||
break;
|
||||
case LinphoneCallPausedByRemote:
|
||||
[ms appendFormat:@"%@...", NSLocalizedString(@"Paused by remote", nil), nil];
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue