diff --git a/iOS/MasterTimeline/Cell/MasterTimelineTableViewCell.swift b/iOS/MasterTimeline/Cell/MasterTimelineTableViewCell.swift index 55183f29b..813420cf6 100644 --- a/iOS/MasterTimeline/Cell/MasterTimelineTableViewCell.swift +++ b/iOS/MasterTimeline/Cell/MasterTimelineTableViewCell.swift @@ -237,7 +237,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() {