diff --git a/Signal/src/ViewControllers/ContactViewController.swift b/Signal/src/ViewControllers/ContactViewController.swift index aa577ca15..9f8dbe9d3 100644 --- a/Signal/src/ViewControllers/ContactViewController.swift +++ b/Signal/src/ViewControllers/ContactViewController.swift @@ -570,7 +570,7 @@ class ContactViewController: OWSViewController, ContactShareViewHelperDelegate { Logger.info("\(self.logTag) \(#function)") let actionSheet = UIAlertController(title: nil, message: nil, preferredStyle: .actionSheet) - actionSheet.addAction(UIAlertAction(title: NSLocalizedString("CONTACT_VIEW_OPEN_ADDRESS_IN_MAPS_APP", + actionSheet.addAction(UIAlertAction(title: NSLocalizedString("CONTACT_VIEW_OPEN_EMAIL_IN_EMAIL_APP", comment: "Label for 'open email in email app' button in contact view."), style: .default) { [weak self] _ in self?.openEmailInEmailApp(email: email) diff --git a/Signal/translations/en.lproj/Localizable.strings b/Signal/translations/en.lproj/Localizable.strings index 97a849f8d..3a41f46ec 100644 --- a/Signal/translations/en.lproj/Localizable.strings +++ b/Signal/translations/en.lproj/Localizable.strings @@ -484,6 +484,12 @@ /* Error indicating that at least one contact field must be selected before sharing a contact. */ "CONTACT_SHARE_NO_FIELDS_SELECTED" = "No contact fields selected."; +/* Label for 'open address in maps app' button in contact view. */ +"CONTACT_VIEW_OPEN_ADDRESS_IN_MAPS_APP" = "Open in Maps"; + +/* Label for 'open email in email app' button in contact view. */ +"CONTACT_VIEW_OPEN_EMAIL_IN_EMAIL_APP" = "Send Email"; + /* Indicates that a contact has no name. */ "CONTACT_WITHOUT_NAME" = "Unnamed Contact";