diff options
| author | Matt Mayer <[email protected]> | 2023-04-22 23:26:46 +0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-04-22 18:26:46 +0200 |
| commit | a49aa0d7831a949728b6831b96f15c4971f1e1d9 (patch) | |
| tree | 92db99904c58afea9a6bdc2909138767e82aacec /src/locales/th | |
| parent | ed19befb04dbb7a8c5b59b1c015c6ccbce109869 (diff) | |
| download | faker-a49aa0d7831a949728b6831b96f15c4971f1e1d9.tar.xz faker-a49aa0d7831a949728b6831b96f15c4971f1e1d9.zip | |
feat(locale): add additional metadata properties (#2025)
Diffstat (limited to 'src/locales/th')
| -rw-r--r-- | src/locales/th/metadata.ts | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/locales/th/metadata.ts b/src/locales/th/metadata.ts index 373affbd..ae53d4ac 100644 --- a/src/locales/th/metadata.ts +++ b/src/locales/th/metadata.ts @@ -1,7 +1,12 @@ -import type { MetadataDefinitions } from '../..'; +import type { PreBuiltMetadataDefinitions } from '../../definitions/metadata'; -const metadata: MetadataDefinitions = { +const metadata: PreBuiltMetadataDefinitions = { title: 'Thai', + code: 'th', + language: 'th', + endonym: 'ไทย', + dir: 'ltr', + script: 'Thai', }; export default metadata; |
