aboutsummaryrefslogtreecommitdiff
path: root/src/locales/base/index.ts
blob: 2e260172763310731dabbdab892ea954d3dfd14c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
 * This file is automatically generated.
 * Run 'pnpm run generate:locales' to update.
 */
import type { LocaleDefinition } from '../..';
import color from './color';
import database from './database';
import date from './date';
import hacker from './hacker';
import internet from './internet';
import location from './location';
import metadata from './metadata';
import system from './system';

/**
 * The locale data for the `base` locale.
 *
 * The base locale contains data that is shared across all locales such as ISO codes, time zones, and more.
 */
const base: LocaleDefinition = {
  color,
  database,
  date,
  hacker,
  internet,
  location,
  metadata,
  system,
};

export default base;