import { LOCALE_LABELS } from "@/lib/constants/locales";

export function getLocaleLabel(locale: string): string {
  return LOCALE_LABELS[locale] ?? locale.toUpperCase();
}

export function formatLocaleNumber(value: number, locale: string): string {
  return new Intl.NumberFormat(locale).format(value);
}
