diff --git a/iOS/MasterTimeline/Cell/MasterTimelineTableViewCell.swift b/iOS/MasterTimeline/Cell/MasterTimelineTableViewCell.swift index e89ac8f2d..25047b0c0 100644 --- a/iOS/MasterTimeline/Cell/MasterTimelineTableViewCell.swift +++ b/iOS/MasterTimeline/Cell/MasterTimelineTableViewCell.swift @@ -256,7 +256,9 @@ private extension MasterTimelineTableViewCell { } func updateAccessiblityLabel() { - accessibilityLabel = "\(cellData.feedName), \(cellData.title), \(cellData.summary), \(cellData.dateString)" + var label = cellData.read ? "" : "\(NSLocalizedString("Unread", comment: "Unread")), " + label += "\(cellData.feedName), \(cellData.title), \(cellData.summary), \(cellData.dateString)" + accessibilityLabel = label } func makeIconEmpty() {