Socialify

Folder ..

Viewing index.ts
21 lines (19 loc) • 462.0 B

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
import type { LocaleDefinition } from '../..';
import address from './address';
import cell_phone from './cell_phone';
import commerce from './commerce';
import date from './date';
import internet from './internet';
import name from './name';
import phone_number from './phone_number';

const pt_PT: LocaleDefinition = {
  title: 'Portuguese (Portugal)',
  address,
  cell_phone,
  commerce,
  date,
  internet,
  name,
  phone_number,
};

export default pt_PT;