export function getSelectedLocales() { let value = $state(localStorage.getItem("selectedLocales")); if (value == "" || !value) { return []; } return value.split(","); } export function getLocaleName(channel, id) { return channel.locales.find((locale) => locale.id === id).name; }