Revert plural workaround

This commit is contained in:
Marcus Kida 2024-07-30 15:09:59 +02:00
parent 2d318407cb
commit 42b47af8de
No known key found for this signature in database
GPG Key ID: 19FF64E08013CA40

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: "%ld people you may know")
return L10n.tr("Localizable", "plural.filtered_notification_banner.subtitle", p1, fallback: "Plural format key: \"%#@number_of_requests@\"")
}
}
}