blob: 4286e9c400571f45a78098e3bce673604d85556e (
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
|
/*
* This file is automatically generated.
* Run 'pnpm run generate:locales' to update.
*/
import { Faker } from '../faker';
import base from '../locales/base';
import en from '../locales/en';
import zu_ZA from '../locales/zu_ZA';
/**
* The faker instance for the `zu_ZA` locale.
*
* - Language: Zulu (South Africa)
* - Endonym: isiZulu (Iningizimu Afrika)
*
* This instance uses the following locales internally (in descending precedence):
*
* - `zu_ZA`
* - `en`
* - `base`
*/
export const faker = new Faker({
locale: [zu_ZA, en, base],
});
|