Fix pluralized fallback on notification filters

This commit is contained in:
Marcus Kida 2024-07-30 13:53:51 +02:00
parent 5ef3a0713f
commit 25cd3b4815
No known key found for this signature in database
GPG Key ID: 19FF64E08013CA40
1 changed files with 1 additions and 1 deletions

View File

@ -1993,7 +1993,7 @@ public enum L10n {
public enum FilteredNotificationBanner {
/// Plural format key: "%#@number_of_requests@"
public static func subtitle(_ p1: Int) -> String {
return L10n.tr("Localizable", "plural.filtered_notification_banner.subtitle", p1, fallback: "Plural format key: \"%#@number_of_requests@\"")
return L10n.tr("Localizable", "plural.filtered_notification_banner.subtitle", p1, fallback: "%ld people you may know")
}
}
}