diff options
| author | Matt Mayer <[email protected]> | 2023-04-25 22:05:52 +0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-04-25 17:05:52 +0200 |
| commit | 698fd7d909740bb9a9b7e9dfe822ef8632e3d4c6 (patch) | |
| tree | 015af666199b7ff20ac700586da7b8c47e707af5 /src/locale | |
| parent | 76c3080b758c3ced51d55e891396875a5004f5a8 (diff) | |
| download | faker-698fd7d909740bb9a9b7e9dfe822ef8632e3d4c6.tar.xz faker-698fd7d909740bb9a9b7e9dfe822ef8632e3d4c6.zip | |
feat(locale): add en_HK locale (#2083)
Diffstat (limited to 'src/locale')
| -rw-r--r-- | src/locale/en_HK.ts | 13 | ||||
| -rw-r--r-- | src/locale/index.ts | 3 |
2 files changed, 16 insertions, 0 deletions
diff --git a/src/locale/en_HK.ts b/src/locale/en_HK.ts new file mode 100644 index 00000000..a1d94947 --- /dev/null +++ b/src/locale/en_HK.ts @@ -0,0 +1,13 @@ +/* + * 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 en_HK from '../locales/en_HK'; + +export const faker = new Faker({ + locale: [en_HK, en, base], +}); diff --git a/src/locale/index.ts b/src/locale/index.ts index 8772dca6..6b52d54e 100644 --- a/src/locale/index.ts +++ b/src/locale/index.ts @@ -20,6 +20,7 @@ import { faker as fakerEN_BORK } from './en_BORK'; import { faker as fakerEN_CA } from './en_CA'; import { faker as fakerEN_GB } from './en_GB'; import { faker as fakerEN_GH } from './en_GH'; +import { faker as fakerEN_HK } from './en_HK'; import { faker as fakerEN_IE } from './en_IE'; import { faker as fakerEN_IN } from './en_IN'; import { faker as fakerEN_NG } from './en_NG'; @@ -84,6 +85,7 @@ export { fakerEN_CA, fakerEN_GB, fakerEN_GH, + fakerEN_HK, fakerEN_IE, fakerEN_IN, fakerEN_NG, @@ -149,6 +151,7 @@ export const allFakers = { en_CA: fakerEN_CA, en_GB: fakerEN_GB, en_GH: fakerEN_GH, + en_HK: fakerEN_HK, en_IE: fakerEN_IE, en_IN: fakerEN_IN, en_NG: fakerEN_NG, |
