..
Viewing
index.ts
34 lines (32 loc) • 677.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
27
28
29
30
31
32
33
34 | import type { LocaleDefinition } from '../..';
import address from './address';
import animal from './animal';
import app from './app';
import business from './business';
import cell_phone from './cell_phone';
import commerce from './commerce';
import date from './date';
import finance from './finance';
import lorem from './lorem';
import music from './music';
import name from './name';
import team from './team';
import vehicle from './vehicle';
const ur: LocaleDefinition = {
title: 'Urdu',
separator: ' اور ',
address,
animal,
app,
business,
cell_phone,
commerce,
date,
finance,
lorem,
music,
name,
team,
vehicle,
};
export default ur;
|
|