summaryrefslogtreecommitdiff
path: root/frontend/src/i18n/locales.ts
blob: 7663848d989cc7a859cdc05cc39a0e105897b245 (plain)
1
2
3
4
5
6
7
8
9
import type Locale from '../types/Locale';

// Use the magic of TypeScript to guarantee completeness
const localesHash: { [key in Locale]: 1 } = {
  'sco': 1,
  'en-GB': 1,
};

export default Object.keys(localesHash) as Locale[];