Merge branch 'voip_design_updates' into voip_jitsi_remover

This commit is contained in:
ismailgulek 2021-04-22 15:15:31 +03:00
commit bf9d6a88cf
No known key found for this signature in database
GPG key ID: E96336D42D9470A9
2 changed files with 2 additions and 2 deletions

View file

@ -828,7 +828,7 @@ Tap the + to start adding people.";
"event_formatter_call_voice" = "Voice call";
"event_formatter_call_video" = "Video call";
"event_formatter_call_you_started" = "You started a call";
"event_formatter_call_has_ended" = "This call has ended %@";
"event_formatter_call_has_ended" = "Ended %@";
"event_formatter_call_you_currently_in" = "Active call";
"event_formatter_call_you_declined" = "You declined this call";
"event_formatter_call_you_missed" = "You missed this call";

View file

@ -1258,7 +1258,7 @@ internal enum VectorL10n {
internal static var eventFormatterCallDecline: String {
return VectorL10n.tr("Vector", "event_formatter_call_decline")
}
/// This call has ended %@
/// Ended %@
internal static func eventFormatterCallHasEnded(_ p1: String) -> String {
return VectorL10n.tr("Vector", "event_formatter_call_has_ended", p1)
}