From d54f6aba0a3bb319cfda3516a1ef58d6533eb10e Mon Sep 17 00:00:00 2001 From: Matthew Chen Date: Fri, 9 Feb 2018 17:33:13 -0500 Subject: [PATCH] Refine SAE UI. --- Signal/translations/en.lproj/Localizable.strings | 6 +++--- .../attachments/SharingThreadPickerViewController.m | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Signal/translations/en.lproj/Localizable.strings b/Signal/translations/en.lproj/Localizable.strings index c21d184a5..7b624d9b1 100644 --- a/Signal/translations/en.lproj/Localizable.strings +++ b/Signal/translations/en.lproj/Localizable.strings @@ -1452,9 +1452,6 @@ /* Label for the send button in the conversation view. */ "SEND_BUTTON_TITLE" = "Send"; -/* Title for the 'send external file' view. */ -"SEND_EXTERNAL_FILE_VIEW_TITLE" = "Send File"; - /* Alert body after invite failed */ "SEND_INVITE_FAILURE" = "Sending invite failed, please try again later."; @@ -1641,6 +1638,9 @@ /* Shown when trying to share content to a Signal user for the share extension. Followed by failure details. */ "SHARE_EXTENSION_UNABLE_TO_BUILD_ATTACHMENT_ALERT_TITLE" = "Unable to Prepare Attachment"; +/* Title for the 'share extension' view. */ +"SHARE_EXTENSION_VIEW_TITLE" = "Share to Signal"; + /* Action sheet item */ "SHOW_SAFETY_NUMBER_ACTION" = "Show New Safety Number"; diff --git a/SignalMessaging/attachments/SharingThreadPickerViewController.m b/SignalMessaging/attachments/SharingThreadPickerViewController.m index b4d55a890..44e71d9cf 100644 --- a/SignalMessaging/attachments/SharingThreadPickerViewController.m +++ b/SignalMessaging/attachments/SharingThreadPickerViewController.m @@ -59,7 +59,7 @@ typedef void (^SendMessageBlock)(SendCompletionBlock completion); _messageSender = [Environment current].messageSender; _progressView = [[UIProgressView alloc] initWithProgressViewStyle:UIProgressViewStyleDefault]; - self.title = NSLocalizedString(@"SEND_EXTERNAL_FILE_VIEW_TITLE", @"Title for the 'send external file' view."); + self.title = NSLocalizedString(@"SHARE_EXTENSION_VIEW_TITLE", @"Title for the 'share extension' view."); } - (void)viewDidLoad