aboutsummaryrefslogtreecommitdiff
path: root/src/locale
diff options
context:
space:
mode:
authorDavid Morais Ferreira <[email protected]>2023-01-06 00:12:09 +0100
committerGitHub <[email protected]>2023-01-05 23:12:09 +0000
commitc66f7bd70f930c4a080cc24cc8d09baab260f6d0 (patch)
treef598f65e2bd6c77c827560b55adc44c0f56f39b5 /src/locale
parent2a06b6a197d5fe6939eac05035ca8ef9a50a2e92 (diff)
downloadfaker-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.ts17
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,
+ },
+});