diff --git a/Signal/translations/en.lproj/Localizable.strings b/Signal/translations/en.lproj/Localizable.strings index 376104bab..85d0a727c 100644 --- a/Signal/translations/en.lproj/Localizable.strings +++ b/Signal/translations/en.lproj/Localizable.strings @@ -1161,6 +1161,21 @@ /* Section header in media gallery collection view */ "MEDIA_GALLERY_THIS_MONTH_HEADER" = "This Month"; +/* Action sheet button title */ +"MESSAGE_ACTION_COPY_TEXT" = "Copy message text"; + +/* Action sheet button title */ +"MESSAGE_ACTION_DELETE_MESSAGE" = "Delete this message"; + +/* Action sheet button subtitle */ +"MESSAGE_ACTION_DELETE_MESSAGE_SUBTITLE" = "This will delete it on this device only"; + +/* Action sheet button title */ +"MESSAGE_ACTION_REPLY" = "Reply to this message"; + +/* Action sheet button title */ +"MESSAGE_ACTION_TITLE_INFO" = "More info"; + /* Title for the 'message approval' dialog. */ "MESSAGE_APPROVAL_DIALOG_TITLE" = "Message"; diff --git a/SignalMessaging/ViewControllers/MessageActionsViewController.swift b/SignalMessaging/ViewControllers/MessageActionsViewController.swift index bfaa3f84c..748e55625 100644 --- a/SignalMessaging/ViewControllers/MessageActionsViewController.swift +++ b/SignalMessaging/ViewControllers/MessageActionsViewController.swift @@ -158,7 +158,7 @@ class MessageActionView: UIView { self.addSubview(contentRow) contentRow.autoPinToSuperviewMargins() - contentRow.autoSetDimension(.height, toSize: 42, relation: .greaterThanOrEqual) + contentRow.autoSetDimension(.height, toSize: 56, relation: .greaterThanOrEqual) } required init?(coder aDecoder: NSCoder) {