blob: 89c43309a5267245983b0f327f5884689d9024e3 (
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 ka_GE from '../locales/ka_GE';
/**
* The faker instance for the `ka_GE` locale.
*
* - Language: Georgian (Georgia)
* - Endonym: ქართული (საქართველო)
*
* This instance uses the following locales internally (in descending precedence):
*
* - `ka_GE`
* - `en`
* - `base`
*/
export const faker = new Faker({
locale: [ka_GE, en, base],
});
|