Add contextual menu strings

This commit is contained in:
SBiOSoftWhare 2019-05-15 21:11:55 +02:00
parent dc3b10e9f1
commit acc13b089a
2 changed files with 10 additions and 0 deletions

View file

@ -278,6 +278,8 @@
"room_event_action_cancel_send" = "Cancel Send";
"room_event_action_cancel_download" = "Cancel Download";
"room_event_action_view_encryption" = "Encryption Information";
"room_event_action_reply" = "Reply";
"room_event_action_edit" = "Edit";
"room_warning_about_encryption" = "End-to-end encryption is in beta and may not be reliable.\n\nYou should not yet trust it to secure data.\n\nDevices will not yet be able to decrypt history from before they joined the room.\n\nEncrypted messages will not be visible on clients that do not yet implement encryption.";
"room_event_failed_to_send" = "Failed to send";
"room_action_send_photo_or_video" = "Send photo or video";

View file

@ -1698,6 +1698,10 @@ internal enum VectorL10n {
internal static var roomEventActionDelete: String {
return VectorL10n.tr("Vector", "room_event_action_delete")
}
/// Edit
internal static var roomEventActionEdit: String {
return VectorL10n.tr("Vector", "room_event_action_edit")
}
/// Reason for kicking this user
internal static var roomEventActionKickPromptReason: String {
return VectorL10n.tr("Vector", "room_event_action_kick_prompt_reason")
@ -1718,6 +1722,10 @@ internal enum VectorL10n {
internal static var roomEventActionRedact: String {
return VectorL10n.tr("Vector", "room_event_action_redact")
}
/// Reply
internal static var roomEventActionReply: String {
return VectorL10n.tr("Vector", "room_event_action_reply")
}
/// Report content
internal static var roomEventActionReport: String {
return VectorL10n.tr("Vector", "room_event_action_report")