diff options
| author | David Morais Ferreira <[email protected]> | 2023-01-06 00:12:09 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-01-05 23:12:09 +0000 |
| commit | c66f7bd70f930c4a080cc24cc8d09baab260f6d0 (patch) | |
| tree | f598f65e2bd6c77c827560b55adc44c0f56f39b5 /src/locale | |
| parent | 2a06b6a197d5fe6939eac05035ca8ef9a50a2e92 (diff) | |
| download | faker-c66f7bd70f930c4a080cc24cc8d09baab260f6d0.tar.xz faker-c66f7bd70f930c4a080cc24cc8d09baab260f6d0.zip | |
feat(locale): add Luxembourg (French) locale (#1693)
Diffstat (limited to 'src/locale')
| -rw-r--r-- | src/locale/fr_LU.ts | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/locale/fr_LU.ts b/src/locale/fr_LU.ts new file mode 100644 index 00000000..8e63bfdb --- /dev/null +++ b/src/locale/fr_LU.ts @@ -0,0 +1,17 @@ +/* + * This file is automatically generated. + * Run 'pnpm run generate:locales' to update. + */ + +import { Faker } from '../faker'; +import en from '../locales/en'; +import fr_LU from '../locales/fr_LU'; + +export const faker = new Faker({ + locale: 'fr_LU', + localeFallback: 'en', + locales: { + fr_LU, + en, + }, +}); |
