Merge pull request #6568 from aaronraimist/delete-leave

Change text when swiping on room from Delete to Leave
This commit is contained in:
Gil Eluard 2022-08-18 16:45:12 +02:00 committed by GitHub
commit 7d144f08b2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 0 deletions

View file

@ -1505,6 +1505,10 @@ NSString *const RecentsViewControllerDataReadyNotification = @"RecentsViewContro
}
}
- (NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath {
return [VectorL10n leave];
}
#pragma mark - UIScrollViewDelegate
- (void)scrollViewDidScroll:(UIScrollView *)scrollView

1
changelog.d/6568.change Normal file
View file

@ -0,0 +1 @@
Change text when swiping on room from Delete to Leave.