Socialify

Folder ..

Viewing index.ts
26 lines (24 loc) • 559.0 B

 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
import type { LocaleDefinition } from '../..';
import address from './address';
import cell_phone from './cell_phone';
import commerce from './commerce';
import company from './company';
import internet from './internet';
import lorem from './lorem';
import name from './name';
import phone_number from './phone_number';
import team from './team';

const es_MX: LocaleDefinition = {
  title: 'Spanish (Mexico)',
  separator: ' & ',
  address,
  cell_phone,
  commerce,
  company,
  internet,
  lorem,
  name,
  phone_number,
  team,
};

export default es_MX;