Rename 'Liked by' to 'Reacted by'

This commit is contained in:
2023-04-29 15:04:50 -04:00
committed by William Casarin
parent 34970b38bb
commit 45a78fa14f

View File

@@ -1153,7 +1153,7 @@ func create_local_notification(profiles: Profiles, notify: LocalNotification) {
title = String(format: NSLocalizedString("Reposted by %@", comment: "Reposted by heading in local notification"), displayName)
identifier = "myBoostNotification"
case .like:
title = String(format: NSLocalizedString("Liked by %@", comment: "Liked by heading in local notification"), displayName)
title = String(format: NSLocalizedString("Reacted by %@", comment: "Reacted by heading in local notification"), displayName)
identifier = "myLikeNotification"
case .dm:
title = String(format: NSLocalizedString("%@", comment: "DM by heading in local notification"), displayName)