Add localizations

This commit is contained in:
ismailgulek 2021-01-20 13:10:18 +03:00
parent ad6b422127
commit e0bf1df0f9
2 changed files with 30 additions and 0 deletions

View file

@ -807,6 +807,12 @@ Tap the + to start adding people.";
"event_formatter_rerequest_keys_part1_link" = "Re-request encryption keys";
"event_formatter_rerequest_keys_part2" = " from your other sessions.";
"event_formatter_message_edited_mention" = "(edited)";
"event_formatter_call_voice" = "Voice call";
"event_formatter_call_video" = "Video call";
"event_formatter_call_has_ended" = "This call has ended";
"event_formatter_call_you_currently_in" = "You're currently in this call";
"event_formatter_call_you_declined" = "You declined this call";
"event_formatter_call_back" = "Call back";
// Events formatter with you
"event_formatter_widget_added_by_you" = "You added the widget: %@";

View file

@ -1206,6 +1206,30 @@ internal enum VectorL10n {
internal static var errorUserAlreadyLoggedIn: String {
return VectorL10n.tr("Vector", "error_user_already_logged_in")
}
/// Call back
internal static var eventFormatterCallBack: String {
return VectorL10n.tr("Vector", "event_formatter_call_back")
}
/// This call has ended
internal static var eventFormatterCallHasEnded: String {
return VectorL10n.tr("Vector", "event_formatter_call_has_ended")
}
/// Video call
internal static var eventFormatterCallVideo: String {
return VectorL10n.tr("Vector", "event_formatter_call_video")
}
/// Voice call
internal static var eventFormatterCallVoice: String {
return VectorL10n.tr("Vector", "event_formatter_call_voice")
}
/// You're currently in this call
internal static var eventFormatterCallYouCurrentlyIn: String {
return VectorL10n.tr("Vector", "event_formatter_call_you_currently_in")
}
/// You declined this call
internal static var eventFormatterCallYouDeclined: String {
return VectorL10n.tr("Vector", "event_formatter_call_you_declined")
}
/// VoIP conference added by %@
internal static func eventFormatterJitsiWidgetAdded(_ p1: String) -> String {
return VectorL10n.tr("Vector", "event_formatter_jitsi_widget_added", p1)