Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

selectors.ftl
# 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.
    }