Framework for embedding localizations into Rust types
# Selectors example from Fluent guide: https://projectfluent.org/fluent/guide/selectors.html

numbers =
    { $unreadEmails ->
        [0] You have no unread emails.
        [1] You have an unread email.
       *[other] You have { $unreadEmails } unread emails.
    }

plurals =
    { $unreadEmails ->
        [one] You have 1 unread email.
       *[other] You have { $unreadEmails } unread emails.
    }