diff --git a/Signal/src/view controllers/PrivacySettingsTableViewController.m b/Signal/src/view controllers/PrivacySettingsTableViewController.m index 638b490d8..7eeeab80c 100644 --- a/Signal/src/view controllers/PrivacySettingsTableViewController.m +++ b/Signal/src/view controllers/PrivacySettingsTableViewController.m @@ -111,6 +111,15 @@ } } +- (NSString *)tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section { + switch (section) { + case 0: + return NSLocalizedString(@"SETTINGS_SCREEN_SECURITY_DETAIL", nil); + default: + return nil; + } +} + - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { switch (indexPath.section) { case 0: diff --git a/Signal/translations/en.lproj/Localizable.strings b/Signal/translations/en.lproj/Localizable.strings index 609cbd1a7..657571369 100644 Binary files a/Signal/translations/en.lproj/Localizable.strings and b/Signal/translations/en.lproj/Localizable.strings differ