mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-04-19 16:13:42 +02:00
Wording for no local addresses
This commit is contained in:
@@ -2652,7 +2652,14 @@ NSString *const kRoomSettingsAdvancedE2eEnabledCellViewIdentifier = @"kRoomSetti
|
||||
addressCell.accessoryView = nil;
|
||||
addressCell.accessoryType = UITableViewCellAccessoryNone;
|
||||
addressCell.selectionStyle = UITableViewCellSelectionStyleNone;
|
||||
addressCell.textLabel.text = NSLocalizedStringFromTable(@"room_details_no_local_addresses", @"Vector", nil);
|
||||
if (mxRoom.isDirect)
|
||||
{
|
||||
addressCell.textLabel.text = NSLocalizedStringFromTable(@"dm_room_details_no_local_addresses", @"Vector", nil);
|
||||
}
|
||||
else
|
||||
{
|
||||
addressCell.textLabel.text = NSLocalizedStringFromTable(@"room_details_no_local_addresses", @"Vector", nil);
|
||||
}
|
||||
|
||||
cell = addressCell;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user