Add no Identity Server error strings.

This commit is contained in:
SBiOSoftWhare 2019-08-13 16:58:36 +02:00
parent 21388e22de
commit 1a6dbc103d
2 changed files with 10 additions and 0 deletions

View file

@ -144,6 +144,7 @@
"room_creation_make_private" = "Make private";
"room_creation_wait_for_creation" = "A room is already being created. Please wait.";
"room_creation_invite_another_user" = "Search / invite by User ID, Name or email";
"room_creation_error_invite_user_by_email_without_identity_server" = "No Identity Server is configured so you cannot add a participant with an email.";
// Room recents
"room_recents_directory_section" = "ROOM DIRECTORY";
@ -218,6 +219,7 @@
"room_participants_invite_malformed_id_title" = "Invite Error";
"room_participants_invite_malformed_id" = "Malformed ID. Should be an email address or a Matrix ID like '@localpart:domain'";
"room_participants_invited_section" = "INVITED";
"room_participants_start_new_chat_error_using_user_email_without_identity_server" = "No Identity Server is configured so you cannot start a chat with a contact using an email.";
"room_participants_online" = "Online";
"room_participants_offline" = "Offline";

View file

@ -1498,6 +1498,10 @@ internal enum VectorL10n {
internal static var roomCreationAppearancePicture: String {
return VectorL10n.tr("Vector", "room_creation_appearance_picture")
}
/// No Identity Server is configured so you cannot add a participant with an email.
internal static var roomCreationErrorInviteUserByEmailWithoutIdentityServer: String {
return VectorL10n.tr("Vector", "room_creation_error_invite_user_by_email_without_identity_server")
}
/// Search / invite by User ID, Name or email
internal static var roomCreationInviteAnotherUser: String {
return VectorL10n.tr("Vector", "room_creation_invite_another_user")
@ -2118,6 +2122,10 @@ internal enum VectorL10n {
internal static var roomParticipantsRemoveThirdPartyInviteMsg: String {
return VectorL10n.tr("Vector", "room_participants_remove_third_party_invite_msg")
}
/// No Identity Server is configured so you cannot start a chat with a contact using an email.
internal static var roomParticipantsStartNewChatErrorUsingUserEmailWithoutIdentityServer: String {
return VectorL10n.tr("Vector", "room_participants_start_new_chat_error_using_user_email_without_identity_server")
}
/// Participants
internal static var roomParticipantsTitle: String {
return VectorL10n.tr("Vector", "room_participants_title")