Skip to content

Commit 0855faa

Browse files
committed
Respond to CR.
// FREEBIE
1 parent efbda70 commit 0855faa

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Signal/src/ViewControllers/ShowGroupMembersViewController.m

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ - (void)addMembers:(NSArray<NSString *> *)recipientIds
201201
customRowHeight:[ContactTableViewCell rowHeight]
202202
actionBlock:^{
203203
if (useVerifyAction) {
204-
[weakSelf verifySafetyNumber:recipientId];
204+
[weakSelf showSafetyNumberView:recipientId];
205205
} else {
206206
[weakSelf didSelectRecipientId:recipientId];
207207
}
@@ -386,7 +386,7 @@ - (void)didSelectRecipientId:(NSString *)recipientId
386386
@"safety number of another user.")
387387
style:UIAlertActionStyleDefault
388388
handler:^(UIAlertAction *_Nonnull action) {
389-
[self verifySafetyNumber:recipientId];
389+
[self showSafetyNumberView:recipientId];
390390
}]];
391391
}
392392

@@ -419,7 +419,7 @@ - (void)callMember:(NSString *)recipientId
419419
[Environment callUserWithIdentifier:recipientId];
420420
}
421421

422-
- (void)verifySafetyNumber:(NSString *)recipientId
422+
- (void)showSafetyNumberView:(NSString *)recipientId
423423
{
424424
OWSAssert(recipientId.length > 0);
425425

Signal/translations/en.lproj/Localizable.strings

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -581,10 +581,10 @@
581581
"GROUP_MEMBERS_CALL" = "Call";
582582

583583
/* Label for the button that clears all verification errors in the 'group members' view. */
584-
"GROUP_MEMBERS_RESET_NO_LONGER_VERIFIED" = "Mark All As Not Verified";
584+
"GROUP_MEMBERS_RESET_NO_LONGER_VERIFIED" = "Clear Verification For All";
585585

586586
/* Label for the 'reset all no-longer-verified group members' confirmation alert. */
587-
"GROUP_MEMBERS_RESET_NO_LONGER_VERIFIED_ALERT_MESSAGE" = "This will mark all of the group members whose safety numbers have changed since they were last verified as not verified.";
587+
"GROUP_MEMBERS_RESET_NO_LONGER_VERIFIED_ALERT_MESSAGE" = "This will clear the verification of all group members whose safety numbers have changed since they were last verified.";
588588

589589
/* Title for the 'members' section of the 'group members' view. */
590590
"GROUP_MEMBERS_SECTION_TITLE_MEMBERS" = "Members";
@@ -989,7 +989,7 @@
989989
"PRIVACY_TAP_TO_SCAN" = "Tap to Scan";
990990

991991
/* Button that lets user mark another user's identity as unverified. */
992-
"PRIVACY_UNVERIFY_BUTTON" = "Mark as not Verified";
992+
"PRIVACY_UNVERIFY_BUTTON" = "Clear Verification";
993993

994994
/* Alert body when verifying with {{contact name}} */
995995
"PRIVACY_VERIFICATION_FAILED_I_HAVE_WRONG_KEY_FOR_THEM" = "This doesn't look like your safety number with %@. Are you verifying the correct contact?";

0 commit comments

Comments
 (0)